From d6550d9b31e8244090bbef40e04860d6716ad320 Mon Sep 17 00:00:00 2001 From: Calixte Denizet Date: Thu, 19 Mar 2020 20:35:53 +0100 Subject: [PATCH 1/3] Allow 'default' and 'union' in paths --- corpus/declarations.txt | 18 + grammar.js | 5 +- src/grammar.json | 4 + src/parser.c | 171405 +++++++++++++++++++------------------ 4 files changed, 85860 insertions(+), 85572 deletions(-) diff --git a/corpus/declarations.txt b/corpus/declarations.txt index 3c7b25f0..55fa032b 100644 --- a/corpus/declarations.txt +++ b/corpus/declarations.txt @@ -1384,3 +1384,21 @@ crate const X: u32 = 0; (visibility_modifier (crate)) (identifier) (parameters) (block)) (const_item (visibility_modifier (crate)) (identifier) (primitive_type) (integer_literal))) + +=================================== +Reserved keywords in path +=================================== + +struct A { + a: default::B, + b: union::C, +} + +--- + +(source_file + (struct_item + (type_identifier) + (field_declaration_list + (field_declaration (field_identifier) (scoped_type_identifier (identifier) (type_identifier))) + (field_declaration (field_identifier) (scoped_type_identifier (identifier) (type_identifier)))))) diff --git a/grammar.js b/grammar.js index 86a4be20..67907c4a 100644 --- a/grammar.js +++ b/grammar.js @@ -1429,7 +1429,8 @@ module.exports = grammar({ $.super, $.crate, $.identifier, - $.scoped_identifier + $.scoped_identifier, + $._reserved_identifier, ), identifier: $ => /(r#)?[_\p{XID_Start}][_\p{XID_Continue}]*/, @@ -1445,7 +1446,7 @@ module.exports = grammar({ self: $ => 'self', super: $ => 'super', crate: $ => 'crate', - + metavariable: $ => /\$[a-zA-Z_]\w*/ } }) diff --git a/src/grammar.json b/src/grammar.json index 1f301eb6..0fe0b9cc 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -8213,6 +8213,10 @@ { "type": "SYMBOL", "name": "scoped_identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" } ] }, diff --git a/src/parser.c b/src/parser.c index abcab6f6..1b1ba564 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,8 +6,8 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2418 -#define LARGE_STATE_COUNT 546 +#define STATE_COUNT 2435 +#define LARGE_STATE_COUNT 589 #define SYMBOL_COUNT 313 #define ALIAS_COUNT 3 #define TOKEN_COUNT 138 @@ -2452,79 +2452,79 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [148] = {.index = 219, .length = 1}, [149] = {.index = 220, .length = 2}, [150] = {.index = 222, .length = 2}, - [151] = {.index = 194, .length = 2}, - [152] = {.index = 224, .length = 4}, - [153] = {.index = 228, .length = 3}, - [154] = {.index = 231, .length = 3}, - [155] = {.index = 234, .length = 3}, - [156] = {.index = 231, .length = 3}, - [157] = {.index = 237, .length = 3}, - [158] = {.index = 240, .length = 3}, - [159] = {.index = 243, .length = 4}, - [160] = {.index = 247, .length = 3}, - [161] = {.index = 250, .length = 2}, + [151] = {.index = 224, .length = 2}, + [152] = {.index = 194, .length = 2}, + [153] = {.index = 226, .length = 4}, + [154] = {.index = 230, .length = 3}, + [155] = {.index = 233, .length = 3}, + [156] = {.index = 236, .length = 3}, + [157] = {.index = 233, .length = 3}, + [158] = {.index = 239, .length = 3}, + [159] = {.index = 242, .length = 3}, + [160] = {.index = 245, .length = 4}, + [161] = {.index = 249, .length = 3}, [162] = {.index = 252, .length = 2}, - [163] = {.index = 254, .length = 3}, - [164] = {.index = 257, .length = 4}, - [165] = {.index = 261, .length = 3}, - [166] = {.index = 220, .length = 2}, - [167] = {.index = 264, .length = 2}, - [168] = {.index = 266, .length = 3}, - [169] = {.index = 269, .length = 3}, - [170] = {.index = 272, .length = 2}, - [171] = {.index = 274, .length = 3}, - [172] = {.index = 194, .length = 2}, - [173] = {.index = 277, .length = 3}, - [174] = {.index = 280, .length = 3}, - [175] = {.index = 252, .length = 2}, - [176] = {.index = 283, .length = 4}, - [177] = {.index = 287, .length = 5}, - [178] = {.index = 292, .length = 4}, - [179] = {.index = 296, .length = 2}, - [180] = {.index = 298, .length = 4}, - [181] = {.index = 302, .length = 4}, - [182] = {.index = 302, .length = 4}, - [183] = {.index = 306, .length = 2}, - [184] = {.index = 308, .length = 3}, - [185] = {.index = 311, .length = 2}, + [163] = {.index = 254, .length = 2}, + [164] = {.index = 256, .length = 3}, + [165] = {.index = 259, .length = 4}, + [166] = {.index = 263, .length = 3}, + [167] = {.index = 220, .length = 2}, + [168] = {.index = 266, .length = 2}, + [169] = {.index = 268, .length = 3}, + [170] = {.index = 271, .length = 3}, + [171] = {.index = 274, .length = 2}, + [172] = {.index = 276, .length = 3}, + [173] = {.index = 194, .length = 2}, + [174] = {.index = 279, .length = 3}, + [175] = {.index = 282, .length = 3}, + [176] = {.index = 254, .length = 2}, + [177] = {.index = 285, .length = 4}, + [178] = {.index = 289, .length = 5}, + [179] = {.index = 294, .length = 4}, + [180] = {.index = 298, .length = 2}, + [181] = {.index = 300, .length = 4}, + [182] = {.index = 304, .length = 4}, + [183] = {.index = 304, .length = 4}, + [184] = {.index = 308, .length = 2}, + [185] = {.index = 310, .length = 3}, [186] = {.index = 313, .length = 2}, - [187] = {.index = 104, .length = 2}, - [188] = {.index = 315, .length = 3}, - [189] = {.index = 318, .length = 4}, - [190] = {.index = 318, .length = 4}, - [191] = {.index = 315, .length = 3}, - [192] = {.index = 322, .length = 4}, - [193] = {.index = 326, .length = 4}, - [194] = {.index = 330, .length = 3}, - [195] = {.index = 333, .length = 4}, - [196] = {.index = 337, .length = 3}, - [197] = {.index = 340, .length = 3}, - [198] = {.index = 343, .length = 3}, - [199] = {.index = 346, .length = 4}, - [200] = {.index = 350, .length = 2}, - [201] = {.index = 352, .length = 3}, - [202] = {.index = 355, .length = 4}, - [203] = {.index = 359, .length = 3}, - [204] = {.index = 362, .length = 3}, - [205] = {.index = 365, .length = 3}, - [206] = {.index = 368, .length = 5}, - [207] = {.index = 373, .length = 2}, - [208] = {.index = 375, .length = 3}, - [209] = {.index = 378, .length = 3}, - [210] = {.index = 381, .length = 2}, - [211] = {.index = 383, .length = 4}, - [212] = {.index = 383, .length = 4}, - [213] = {.index = 387, .length = 4}, - [214] = {.index = 391, .length = 5}, - [215] = {.index = 396, .length = 4}, - [216] = {.index = 400, .length = 2}, - [217] = {.index = 402, .length = 4}, - [218] = {.index = 406, .length = 4}, - [219] = {.index = 410, .length = 3}, - [220] = {.index = 413, .length = 4}, - [221] = {.index = 417, .length = 3}, - [222] = {.index = 420, .length = 3}, - [223] = {.index = 423, .length = 2}, + [187] = {.index = 315, .length = 2}, + [188] = {.index = 104, .length = 2}, + [189] = {.index = 317, .length = 3}, + [190] = {.index = 320, .length = 4}, + [191] = {.index = 320, .length = 4}, + [192] = {.index = 317, .length = 3}, + [193] = {.index = 324, .length = 4}, + [194] = {.index = 328, .length = 4}, + [195] = {.index = 332, .length = 3}, + [196] = {.index = 335, .length = 4}, + [197] = {.index = 339, .length = 3}, + [198] = {.index = 342, .length = 3}, + [199] = {.index = 345, .length = 3}, + [200] = {.index = 348, .length = 4}, + [201] = {.index = 352, .length = 2}, + [202] = {.index = 354, .length = 3}, + [203] = {.index = 357, .length = 4}, + [204] = {.index = 361, .length = 3}, + [205] = {.index = 364, .length = 3}, + [206] = {.index = 367, .length = 3}, + [207] = {.index = 370, .length = 5}, + [208] = {.index = 375, .length = 2}, + [209] = {.index = 377, .length = 3}, + [210] = {.index = 380, .length = 3}, + [211] = {.index = 383, .length = 2}, + [212] = {.index = 385, .length = 4}, + [213] = {.index = 385, .length = 4}, + [214] = {.index = 389, .length = 4}, + [215] = {.index = 393, .length = 5}, + [216] = {.index = 398, .length = 4}, + [217] = {.index = 402, .length = 2}, + [218] = {.index = 404, .length = 4}, + [219] = {.index = 408, .length = 4}, + [220] = {.index = 412, .length = 3}, + [221] = {.index = 415, .length = 4}, + [222] = {.index = 419, .length = 3}, + [223] = {.index = 422, .length = 3}, [224] = {.index = 425, .length = 5}, [225] = {.index = 430, .length = 4}, [226] = {.index = 434, .length = 5}, @@ -2865,272 +2865,272 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 2}, {field_type, 4}, [222] = + {field_type, 1}, + {field_type, 2, .inherited = true}, + [224] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [224] = + [226] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [228] = + [230] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [231] = + [233] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [234] = + [236] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [237] = + [239] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [240] = + [242] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [243] = + [245] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [247] = + [249] = {field_body, 5}, {field_pattern, 2}, {field_value, 4}, - [250] = + [252] = {field_alias, 4}, {field_name, 2}, - [252] = + [254] = {field_name, 1}, {field_value, 3}, - [254] = + [256] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [257] = + [259] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [261] = + [263] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [264] = + [266] = {field_body, 5}, {field_name, 3}, - [266] = + [268] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [269] = + [271] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [272] = + [274] = {field_name, 3}, {field_parameters, 4}, - [274] = + [276] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [277] = + [279] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [280] = + [282] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [283] = + [285] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [287] = + [289] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [292] = + [294] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [296] = + [298] = {field_name, 1}, {field_pattern, 3}, - [298] = + [300] = {field_alternative, 6}, {field_consequence, 5}, {field_pattern, 2}, {field_value, 4}, - [302] = + [304] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [306] = + [308] = {field_parameters, 3}, {field_return_type, 5}, - [308] = + [310] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [311] = + [313] = {field_name, 3}, {field_type, 5}, - [313] = - {field_type, 1}, - {field_type, 2, .inherited = true}, [315] = + {field_type, 2}, + {field_type, 3, .inherited = true}, + [317] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [318] = + [320] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [322] = + [324] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [326] = + [328] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [330] = + [332] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [333] = + [335] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [337] = + [339] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [340] = + [342] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [343] = + [345] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [346] = + [348] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [350] = + [352] = {field_alias, 5}, {field_name, 3}, - [352] = + [354] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [355] = + [357] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [359] = + [361] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [362] = + [364] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [365] = + [367] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [368] = + [370] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [373] = + [375] = {field_name, 2}, {field_pattern, 4}, - [375] = + [377] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [378] = + [380] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [381] = - {field_type, 2}, - {field_type, 3, .inherited = true}, [383] = + {field_type, 3}, + {field_type, 4, .inherited = true}, + [385] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [387] = + [389] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [391] = + [393] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [396] = + [398] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [400] = + [402] = {field_name, 4}, {field_type, 6}, - [402] = + [404] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [406] = + [408] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [410] = + [412] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [413] = + [415] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [417] = + [419] = {field_body, 7}, {field_pattern, 4}, {field_value, 6}, - [420] = + [422] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [423] = - {field_type, 3}, - {field_type, 4, .inherited = true}, [425] = {field_body, 8}, {field_name, 2}, @@ -3338,19 +3338,16 @@ static TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGT [142] = { [1] = alias_sym_type_identifier, }, - [151] = { - [0] = alias_sym_field_identifier, - }, [152] = { - [1] = alias_sym_type_identifier, + [0] = alias_sym_field_identifier, }, [153] = { [1] = alias_sym_type_identifier, }, [154] = { - [2] = alias_sym_type_identifier, + [1] = alias_sym_type_identifier, }, - [157] = { + [155] = { [2] = alias_sym_type_identifier, }, [158] = { @@ -3359,14 +3356,14 @@ static TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGT [159] = { [2] = alias_sym_type_identifier, }, - [162] = { - [1] = alias_sym_field_identifier, - }, - [166] = { + [160] = { [2] = alias_sym_type_identifier, }, + [163] = { + [1] = alias_sym_field_identifier, + }, [167] = { - [3] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [168] = { [3] = alias_sym_type_identifier, @@ -3374,29 +3371,29 @@ static TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGT [169] = { [3] = alias_sym_type_identifier, }, - [179] = { + [170] = { + [3] = alias_sym_type_identifier, + }, + [180] = { [1] = alias_sym_field_identifier, }, - [181] = { + [182] = { [2] = alias_sym_type_identifier, }, - [187] = { + [188] = { [1] = alias_sym_field_identifier, }, - [188] = { + [189] = { [2] = alias_sym_type_identifier, }, - [189] = { + [190] = { [3] = alias_sym_type_identifier, }, - [192] = { - [2] = alias_sym_type_identifier, - }, - [196] = { + [193] = { [2] = alias_sym_type_identifier, }, [197] = { - [3] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [198] = { [3] = alias_sym_type_identifier, @@ -3404,13 +3401,16 @@ static TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGT [199] = { [3] = alias_sym_type_identifier, }, - [207] = { + [200] = { + [3] = alias_sym_type_identifier, + }, + [208] = { [2] = alias_sym_field_identifier, }, - [211] = { + [212] = { [3] = alias_sym_type_identifier, }, - [217] = { + [218] = { [3] = alias_sym_type_identifier, }, }; @@ -3422,759 +3422,7 @@ static uint16_t ts_non_terminal_alias_map[] = { 0, }; -static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 43020 - ? (c < 3976 - ? (c < 2674 - ? (c < 1869 - ? (c < 908 - ? (c < 710 - ? (c < 181 - ? (c < 'a' - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : c <= '_') - : (c <= 'z' || c == 170)) - : (c <= 181 || (c < 216 - ? (c < 192 - ? c == 186 - : c <= 214) - : (c <= 246 || (c >= 248 && c <= 705))))) - : (c <= 721 || (c < 886 - ? (c < 750 - ? (c < 748 - ? (c >= 736 && c <= 740) - : c <= 748) - : (c <= 750 || (c >= 880 && c <= 884))) - : (c <= 887 || (c < 902 - ? (c < 895 - ? (c >= 891 && c <= 893) - : c <= 895) - : (c <= 902 || (c >= 904 && c <= 906))))))) - : (c <= 908 || (c < 1568 - ? (c < 1329 - ? (c < 1015 - ? (c < 931 - ? (c >= 910 && c <= 929) - : c <= 1013) - : (c <= 1153 || (c >= 1162 && c <= 1327))) - : (c <= 1366 || (c < 1488 - ? (c < 1376 - ? c == 1369 - : c <= 1416) - : (c <= 1514 || (c >= 1519 && c <= 1522))))) - : (c <= 1610 || (c < 1774 - ? (c < 1749 - ? (c < 1649 - ? (c >= 1646 && c <= 1647) - : c <= 1747) - : (c <= 1749 || (c >= 1765 && c <= 1766))) - : (c <= 1775 || (c < 1808 - ? (c < 1791 - ? (c >= 1786 && c <= 1788) - : c <= 1791) - : (c <= 1808 || (c >= 1810 && c <= 1839))))))))) - : (c <= 1957 || (c < 2451 - ? (c < 2144 - ? (c < 2048 - ? (c < 2036 - ? (c < 1994 - ? c == 1969 - : c <= 2026) - : (c <= 2037 || c == 2042)) - : (c <= 2069 || (c < 2088 - ? (c < 2084 - ? c == 2074 - : c <= 2084) - : (c <= 2088 || (c >= 2112 && c <= 2136))))) - : (c <= 2154 || (c < 2384 - ? (c < 2308 - ? (c < 2230 - ? (c >= 2208 && c <= 2228) - : c <= 2247) - : (c <= 2361 || c == 2365)) - : (c <= 2384 || (c < 2437 - ? (c < 2417 - ? (c >= 2392 && c <= 2401) - : c <= 2432) - : (c <= 2444 || (c >= 2447 && c <= 2448))))))) - : (c <= 2472 || (c < 2565 - ? (c < 2510 - ? (c < 2486 - ? (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482) - : (c <= 2489 || c == 2493)) - : (c <= 2510 || (c < 2544 - ? (c < 2527 - ? (c >= 2524 && c <= 2525) - : c <= 2529) - : (c <= 2545 || c == 2556)))) - : (c <= 2570 || (c < 2613 - ? (c < 2602 - ? (c < 2579 - ? (c >= 2575 && c <= 2576) - : c <= 2600) - : (c <= 2608 || (c >= 2610 && c <= 2611))) - : (c <= 2614 || (c < 2649 - ? (c >= 2616 && c <= 2617) - : (c <= 2652 || c == 2654)))))))))) - : (c <= 2676 || (c < 3205 - ? (c < 2929 - ? (c < 2809 - ? (c < 2738 - ? (c < 2707 - ? (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))) - : (c <= 2739 || (c < 2768 - ? (c < 2749 - ? (c >= 2741 && c <= 2745) - : c <= 2749) - : (c <= 2768 || (c >= 2784 && c <= 2785))))) - : (c <= 2809 || (c < 2866 - ? (c < 2835 - ? (c < 2831 - ? (c >= 2821 && c <= 2828) - : c <= 2832) - : (c <= 2856 || (c >= 2858 && c <= 2864))) - : (c <= 2867 || (c < 2908 - ? (c < 2877 - ? (c >= 2869 && c <= 2873) - : c <= 2877) - : (c <= 2909 || (c >= 2911 && c <= 2913))))))) - : (c <= 2929 || (c < 2990 - ? (c < 2969 - ? (c < 2958 - ? (c < 2949 - ? c == 2947 - : c <= 2954) - : (c <= 2960 || (c >= 2962 && c <= 2965))) - : (c <= 2970 || (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c >= 2984 && c <= 2986))))) - : (c <= 3001 || (c < 3114 - ? (c < 3086 - ? (c < 3077 - ? c == 3024 - : c <= 3084) - : (c <= 3088 || (c >= 3090 && c <= 3112))) - : (c <= 3129 || (c < 3168 - ? (c < 3160 - ? c == 3133 - : c <= 3162) - : (c <= 3169 || c == 3200)))))))) - : (c <= 3212 || (c < 3517 - ? (c < 3342 - ? (c < 3261 - ? (c < 3242 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240) - : (c <= 3251 || (c >= 3253 && c <= 3257))) - : (c <= 3261 || (c < 3313 - ? (c < 3296 - ? c == 3294 - : c <= 3297) - : (c <= 3314 || (c >= 3332 && c <= 3340))))) - : (c <= 3344 || (c < 3423 - ? (c < 3406 - ? (c < 3389 - ? (c >= 3346 && c <= 3386) - : c <= 3389) - : (c <= 3406 || (c >= 3412 && c <= 3414))) - : (c <= 3425 || (c < 3482 - ? (c < 3461 - ? (c >= 3450 && c <= 3455) - : c <= 3478) - : (c <= 3505 || (c >= 3507 && c <= 3515))))))) - : (c <= 3517 || (c < 3751 - ? (c < 3713 - ? (c < 3634 - ? (c < 3585 - ? (c >= 3520 && c <= 3526) - : c <= 3632) - : (c <= 3634 || (c >= 3648 && c <= 3654))) - : (c <= 3714 || (c < 3724 - ? (c < 3718 - ? c == 3716 - : c <= 3722) - : (c <= 3747 || c == 3749)))) - : (c <= 3760 || (c < 3804 - ? (c < 3776 - ? (c < 3773 - ? c == 3762 - : c <= 3773) - : (c <= 3780 || c == 3782)) - : (c <= 3807 || (c < 3904 - ? c == 3840 - : (c <= 3911 || (c >= 3913 && c <= 3948))))))))))))) - : (c <= 3980 || (c < 8016 - ? (c < 5920 - ? (c < 4746 - ? (c < 4256 - ? (c < 4193 - ? (c < 4176 - ? (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))) - : (c <= 4193 || (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || c == 4238)))) - : (c <= 4293 || (c < 4682 - ? (c < 4304 - ? (c < 4301 - ? c == 4295 - : c <= 4301) - : (c <= 4346 || (c >= 4348 && c <= 4680))) - : (c <= 4685 || (c < 4698 - ? (c < 4696 - ? (c >= 4688 && c <= 4694) - : c <= 4696) - : (c <= 4701 || (c >= 4704 && c <= 4744))))))) - : (c <= 4749 || (c < 4992 - ? (c < 4802 - ? (c < 4792 - ? (c < 4786 - ? (c >= 4752 && c <= 4784) - : c <= 4789) - : (c <= 4798 || c == 4800)) - : (c <= 4805 || (c < 4882 - ? (c < 4824 - ? (c >= 4808 && c <= 4822) - : c <= 4880) - : (c <= 4885 || (c >= 4888 && c <= 4954))))) - : (c <= 5007 || (c < 5761 - ? (c < 5121 - ? (c < 5112 - ? (c >= 5024 && c <= 5109) - : c <= 5117) - : (c <= 5740 || (c >= 5743 && c <= 5759))) - : (c <= 5786 || (c < 5888 - ? (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880) - : (c <= 5900 || (c >= 5902 && c <= 5905))))))))) - : (c <= 5937 || (c < 6981 - ? (c < 6320 - ? (c < 6103 - ? (c < 5998 - ? (c < 5984 - ? (c >= 5952 && c <= 5969) - : c <= 5996) - : (c <= 6000 || (c >= 6016 && c <= 6067))) - : (c <= 6103 || (c < 6272 - ? (c < 6176 - ? c == 6108 - : c <= 6264) - : (c <= 6312 || c == 6314)))) - : (c <= 6389 || (c < 6576 - ? (c < 6512 - ? (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509) - : (c <= 6516 || (c >= 6528 && c <= 6571))) - : (c <= 6601 || (c < 6823 - ? (c < 6688 - ? (c >= 6656 && c <= 6678) - : c <= 6740) - : (c <= 6823 || (c >= 6917 && c <= 6963))))))) - : (c <= 6987 || (c < 7401 - ? (c < 7245 - ? (c < 7098 - ? (c < 7086 - ? (c >= 7043 && c <= 7072) - : c <= 7087) - : (c <= 7141 || (c >= 7168 && c <= 7203))) - : (c <= 7247 || (c < 7312 - ? (c < 7296 - ? (c >= 7258 && c <= 7293) - : c <= 7304) - : (c <= 7354 || (c >= 7357 && c <= 7359))))) - : (c <= 7404 || (c < 7680 - ? (c < 7418 - ? (c < 7413 - ? (c >= 7406 && c <= 7411) - : c <= 7414) - : (c <= 7418 || (c >= 7424 && c <= 7615))) - : (c <= 7957 || (c < 7968 - ? (c >= 7960 && c <= 7965) - : (c <= 8005 || (c >= 8008 && c <= 8013))))))))))) - : (c <= 8023 || (c < 11631 - ? (c < 8458 - ? (c < 8144 - ? (c < 8064 - ? (c < 8029 - ? (c < 8027 - ? c == 8025 - : c <= 8027) - : (c <= 8029 || (c >= 8031 && c <= 8061))) - : (c <= 8116 || (c < 8130 - ? (c < 8126 - ? (c >= 8118 && c <= 8124) - : c <= 8126) - : (c <= 8132 || (c >= 8134 && c <= 8140))))) - : (c <= 8147 || (c < 8305 - ? (c < 8178 - ? (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172) - : (c <= 8180 || (c >= 8182 && c <= 8188))) - : (c <= 8305 || (c < 8450 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8450 || c == 8455)))))) - : (c <= 8467 || (c < 8544 - ? (c < 8488 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || c == 8486)) - : (c <= 8488 || (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || c == 8526)))) - : (c <= 8584 || (c < 11506 - ? (c < 11360 - ? (c < 11312 - ? (c >= 11264 && c <= 11310) - : c <= 11358) - : (c <= 11492 || (c >= 11499 && c <= 11502))) - : (c <= 11507 || (c < 11565 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : c <= 11559) - : (c <= 11565 || (c >= 11568 && c <= 11623))))))))) - : (c <= 11631 || (c < 12704 - ? (c < 12293 - ? (c < 11704 - ? (c < 11688 - ? (c < 11680 - ? (c >= 11648 && c <= 11670) - : c <= 11686) - : (c <= 11694 || (c >= 11696 && c <= 11702))) - : (c <= 11710 || (c < 11728 - ? (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726) - : (c <= 11734 || (c >= 11736 && c <= 11742))))) - : (c <= 12295 || (c < 12445 - ? (c < 12344 - ? (c < 12337 - ? (c >= 12321 && c <= 12329) - : c <= 12341) - : (c <= 12348 || (c >= 12353 && c <= 12438))) - : (c <= 12447 || (c < 12549 - ? (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543) - : (c <= 12591 || (c >= 12593 && c <= 12686))))))) - : (c <= 12735 || (c < 42623 - ? (c < 42192 - ? (c < 19968 - ? (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903) - : (c <= 40956 || (c >= 40960 && c <= 42124))) - : (c <= 42237 || (c < 42538 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42527) - : (c <= 42539 || (c >= 42560 && c <= 42606))))) - : (c <= 42653 || (c < 42946 - ? (c < 42786 - ? (c < 42775 - ? (c >= 42656 && c <= 42735) - : c <= 42783) - : (c <= 42888 || (c >= 42891 && c <= 42943))) - : (c <= 42954 || (c < 43011 - ? (c >= 42997 && c <= 43009) - : (c <= 43013 || (c >= 43015 && c <= 43018))))))))))))))) - : (c <= 43042 || (c < 70453 - ? (c < 66176 - ? (c < 64112 - ? (c < 43697 - ? (c < 43471 - ? (c < 43261 - ? (c < 43250 - ? (c < 43138 - ? (c >= 43072 && c <= 43123) - : c <= 43187) - : (c <= 43255 || c == 43259)) - : (c <= 43262 || (c < 43360 - ? (c < 43312 - ? (c >= 43274 && c <= 43301) - : c <= 43334) - : (c <= 43388 || (c >= 43396 && c <= 43442))))) - : (c <= 43471 || (c < 43584 - ? (c < 43514 - ? (c < 43494 - ? (c >= 43488 && c <= 43492) - : c <= 43503) - : (c <= 43518 || (c >= 43520 && c <= 43560))) - : (c <= 43586 || (c < 43642 - ? (c < 43616 - ? (c >= 43588 && c <= 43595) - : c <= 43638) - : (c <= 43642 || (c >= 43646 && c <= 43695))))))) - : (c <= 43697 || (c < 43793 - ? (c < 43739 - ? (c < 43712 - ? (c < 43705 - ? (c >= 43701 && c <= 43702) - : c <= 43709) - : (c <= 43712 || c == 43714)) - : (c <= 43741 || (c < 43777 - ? (c < 43762 - ? (c >= 43744 && c <= 43754) - : c <= 43764) - : (c <= 43782 || (c >= 43785 && c <= 43790))))) - : (c <= 43798 || (c < 43888 - ? (c < 43824 - ? (c < 43816 - ? (c >= 43808 && c <= 43814) - : c <= 43822) - : (c <= 43866 || (c >= 43868 && c <= 43881))) - : (c <= 44002 || (c < 55243 - ? (c < 55216 - ? (c >= 44032 && c <= 55203) - : c <= 55238) - : (c <= 55291 || (c >= 63744 && c <= 64109))))))))) - : (c <= 64217 || (c < 65147 - ? (c < 64326 - ? (c < 64298 - ? (c < 64285 - ? (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279) - : (c <= 64285 || (c >= 64287 && c <= 64296))) - : (c <= 64310 || (c < 64320 - ? (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318) - : (c <= 64321 || (c >= 64323 && c <= 64324))))) - : (c <= 64433 || (c < 65008 - ? (c < 64848 - ? (c < 64612 - ? (c >= 64467 && c <= 64605) - : c <= 64829) - : (c <= 64911 || (c >= 64914 && c <= 64967))) - : (c <= 65017 || (c < 65143 - ? (c < 65139 - ? c == 65137 - : c <= 65139) - : (c <= 65143 || c == 65145)))))) - : (c <= 65147 || (c < 65498 - ? (c < 65382 - ? (c < 65313 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))) - : (c <= 65437 || (c < 65482 - ? (c < 65474 - ? (c >= 65440 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))))) - : (c <= 65500 || (c < 65599 - ? (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : (c <= 65786 || (c >= 65856 && c <= 65908))))))))))) - : (c <= 66204 || (c < 68416 - ? (c < 67639 - ? (c < 66736 - ? (c < 66432 - ? (c < 66349 - ? (c < 66304 - ? (c >= 66208 && c <= 66256) - : c <= 66335) - : (c <= 66378 || (c >= 66384 && c <= 66421))) - : (c <= 66461 || (c < 66513 - ? (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511) - : (c <= 66517 || (c >= 66560 && c <= 66717))))) - : (c <= 66771 || (c < 67392 - ? (c < 66864 - ? (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855) - : (c <= 66915 || (c >= 67072 && c <= 67382))) - : (c <= 67413 || (c < 67592 - ? (c < 67584 - ? (c >= 67424 && c <= 67431) - : c <= 67589) - : (c <= 67592 || (c >= 67594 && c <= 67637))))))) - : (c <= 67640 || (c < 68030 - ? (c < 67808 - ? (c < 67680 - ? (c < 67647 - ? c == 67644 - : c <= 67669) - : (c <= 67702 || (c >= 67712 && c <= 67742))) - : (c <= 67826 || (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c >= 67968 && c <= 68023))))) - : (c <= 68031 || (c < 68192 - ? (c < 68117 - ? (c < 68112 - ? c == 68096 - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))) - : (c <= 68220 || (c < 68297 - ? (c < 68288 - ? (c >= 68224 && c <= 68252) - : c <= 68295) - : (c <= 68324 || (c >= 68352 && c <= 68405))))))))) - : (c <= 68437 || (c < 69968 - ? (c < 69415 - ? (c < 68800 - ? (c < 68608 - ? (c < 68480 - ? (c >= 68448 && c <= 68466) - : c <= 68497) - : (c <= 68680 || (c >= 68736 && c <= 68786))) - : (c <= 68850 || (c < 69296 - ? (c < 69248 - ? (c >= 68864 && c <= 68899) - : c <= 69289) - : (c <= 69297 || (c >= 69376 && c <= 69404))))) - : (c <= 69415 || (c < 69763 - ? (c < 69600 - ? (c < 69552 - ? (c >= 69424 && c <= 69445) - : c <= 69572) - : (c <= 69622 || (c >= 69635 && c <= 69687))) - : (c <= 69807 || (c < 69956 - ? (c < 69891 - ? (c >= 69840 && c <= 69864) - : c <= 69926) - : (c <= 69956 || c == 69959)))))) - : (c <= 70002 || (c < 70282 - ? (c < 70108 - ? (c < 70081 - ? (c < 70019 - ? c == 70006 - : c <= 70066) - : (c <= 70084 || c == 70106)) - : (c <= 70108 || (c < 70272 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70187) - : (c <= 70278 || c == 70280)))) - : (c <= 70285 || (c < 70415 - ? (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70366 || (c >= 70405 && c <= 70412))) - : (c <= 70416 || (c < 70442 - ? (c >= 70419 && c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))))))))))))) - : (c <= 70457 || (c < 113808 - ? (c < 72818 - ? (c < 71945 - ? (c < 71040 - ? (c < 70727 - ? (c < 70493 - ? (c < 70480 - ? c == 70461 - : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))) - : (c <= 70730 || (c < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (c <= 70853 || c == 70855)))) - : (c <= 71086 || (c < 71352 - ? (c < 71236 - ? (c < 71168 - ? (c >= 71128 && c <= 71131) - : c <= 71215) - : (c <= 71236 || (c >= 71296 && c <= 71338))) - : (c <= 71352 || (c < 71840 - ? (c < 71680 - ? (c >= 71424 && c <= 71450) - : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))))))) - : (c <= 71945 || (c < 72192 - ? (c < 72001 - ? (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71983 || c == 71999)) - : (c <= 72001 || (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || c == 72163)))) - : (c <= 72192 || (c < 72349 - ? (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))) - : (c <= 72349 || (c < 72714 - ? (c < 72704 - ? (c >= 72384 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)))))))) - : (c <= 72847 || (c < 92992 - ? (c < 73648 - ? (c < 73056 - ? (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)) - : (c <= 73061 || (c < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c >= 73440 && c <= 73458))))) - : (c <= 73648 || (c < 82944 - ? (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c >= 77824 && c <= 78894))) - : (c <= 83526 || (c < 92880 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92909 || (c >= 92928 && c <= 92975))))))) - : (c <= 92995 || (c < 100352 - ? (c < 94032 - ? (c < 93760 - ? (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071) - : (c <= 93823 || (c >= 93952 && c <= 94026))) - : (c <= 94032 || (c < 94179 - ? (c < 94176 - ? (c >= 94099 && c <= 94111) - : c <= 94177) - : (c <= 94179 || (c >= 94208 && c <= 100343))))) - : (c <= 101589 || (c < 110960 - ? (c < 110928 - ? (c < 110592 - ? (c >= 101632 && c <= 101640) - : c <= 110878) - : (c <= 110930 || (c >= 110948 && c <= 110951))) - : (c <= 111355 || (c < 113776 - ? (c >= 113664 && c <= 113770) - : (c <= 113788 || (c >= 113792 && c <= 113800))))))))))) - : (c <= 113817 || (c < 126469 - ? (c < 120488 - ? (c < 120005 - ? (c < 119973 - ? (c < 119966 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : c <= 119964) - : (c <= 119967 || c == 119970)) - : (c <= 119974 || (c < 119995 - ? (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c >= 119997 && c <= 120003))))) - : (c <= 120069 || (c < 120123 - ? (c < 120086 - ? (c < 120077 - ? (c >= 120071 && c <= 120074) - : c <= 120084) - : (c <= 120092 || (c >= 120094 && c <= 120121))) - : (c <= 120126 || (c < 120138 - ? (c < 120134 - ? (c >= 120128 && c <= 120132) - : c <= 120134) - : (c <= 120144 || (c >= 120146 && c <= 120485))))))) - : (c <= 120512 || (c < 120772 - ? (c < 120630 - ? (c < 120572 - ? (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))) - : (c <= 120654 || (c < 120714 - ? (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712) - : (c <= 120744 || (c >= 120746 && c <= 120770))))) - : (c <= 120779 || (c < 124928 - ? (c < 123214 - ? (c < 123191 - ? (c >= 123136 && c <= 123180) - : c <= 123197) - : (c <= 123214 || (c >= 123584 && c <= 123627))) - : (c <= 125124 || (c < 125259 - ? (c >= 125184 && c <= 125251) - : (c <= 125259 || (c >= 126464 && c <= 126467))))))))) - : (c <= 126495 || (c < 126561 - ? (c < 126537 - ? (c < 126516 - ? (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c >= 126505 && c <= 126514))) - : (c <= 126519 || (c < 126530 - ? (c < 126523 - ? c == 126521 - : c <= 126523) - : (c <= 126530 || c == 126535)))) - : (c <= 126537 || (c < 126551 - ? (c < 126545 - ? (c < 126541 - ? c == 126539 - : c <= 126543) - : (c <= 126546 || c == 126548)) - : (c <= 126551 || (c < 126557 - ? (c < 126555 - ? c == 126553 - : c <= 126555) - : (c <= 126557 || c == 126559)))))) - : (c <= 126562 || (c < 126629 - ? (c < 126585 - ? (c < 126572 - ? (c < 126567 - ? c == 126564 - : c <= 126570) - : (c <= 126578 || (c >= 126580 && c <= 126583))) - : (c <= 126588 || (c < 126603 - ? (c < 126592 - ? c == 126590 - : c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 173824 - ? (c < 131072 - ? (c >= 126635 && c <= 126651) - : c <= 173789) - : (c <= 177972 || (c >= 177984 && c <= 178205))) - : (c <= 183969 || (c < 194560 - ? (c >= 183984 && c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); -} - -static inline bool sym_identifier_character_set_3(int32_t c) { +static inline bool sym_identifier_character_set_1(int32_t c) { return (c < 43020 ? (c < 4096 ? (c < 2693 @@ -4184,7 +3432,7 @@ static inline bool sym_identifier_character_set_3(int32_t c) { ? (c < 186 ? (c < 170 ? (c < 'a' - ? (c >= 'A' && c <= 'Z') + ? (c >= 'A' && c <= '_') : c <= 'z') : (c <= 170 || c == 181)) : (c <= 186 || (c < 248 @@ -4924,60267 +4172,60703 @@ static inline bool sym_identifier_character_set_3(int32_t c) { : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } -static inline bool sym_identifier_character_set_5(int32_t c) { - return (c < 43052 - ? (c < 3718 - ? (c < 2730 - ? (c < 2042 - ? (c < 1015 +static inline bool sym_identifier_character_set_2(int32_t c) { + return (c < 43020 + ? (c < 3976 + ? (c < 2674 + ? (c < 1869 + ? (c < 908 ? (c < 710 ? (c < 181 - ? (c < '_' - ? (c < 'A' - ? (c >= '0' && c <= '9') - : c <= 'Z') - : (c <= '_' || (c < 170 - ? (c >= 'a' && c <= 'z') - : c <= 170))) - : (c <= 181 || (c < 192 - ? (c < 186 - ? c == 183 - : c <= 186) - : (c <= 214 || (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705))))) - : (c <= 721 || (c < 891 + ? (c < 'a' + ? (c < '_' + ? (c >= 'A' && c <= 'Z') + : c <= '_') + : (c <= 'z' || c == 170)) + : (c <= 181 || (c < 216 + ? (c < 192 + ? c == 186 + : c <= 214) + : (c <= 246 || (c >= 248 && c <= 705))))) + : (c <= 721 || (c < 886 ? (c < 750 ? (c < 748 ? (c >= 736 && c <= 740) : c <= 748) - : (c <= 750 || (c < 886 - ? (c >= 768 && c <= 884) - : c <= 887))) - : (c <= 893 || (c < 908 - ? (c < 902 - ? c == 895 - : c <= 906) - : (c <= 908 || (c < 931 + : (c <= 750 || (c >= 880 && c <= 884))) + : (c <= 887 || (c < 902 + ? (c < 895 + ? (c >= 891 && c <= 893) + : c <= 895) + : (c <= 902 || (c >= 904 && c <= 906))))))) + : (c <= 908 || (c < 1568 + ? (c < 1329 + ? (c < 1015 + ? (c < 931 ? (c >= 910 && c <= 929) - : c <= 1013))))))) - : (c <= 1153 || (c < 1519 - ? (c < 1425 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1155 && c <= 1159) - : c <= 1327) - : (c <= 1366 || (c < 1376 + : c <= 1013) + : (c <= 1153 || (c >= 1162 && c <= 1327))) + : (c <= 1366 || (c < 1488 + ? (c < 1376 ? c == 1369 - : c <= 1416))) - : (c <= 1469 || (c < 1476 - ? (c < 1473 - ? c == 1471 - : c <= 1474) - : (c <= 1477 || (c < 1488 - ? c == 1479 - : c <= 1514))))) - : (c <= 1522 || (c < 1770 - ? (c < 1646 - ? (c < 1568 - ? (c >= 1552 && c <= 1562) - : c <= 1641) - : (c <= 1747 || (c < 1759 - ? (c >= 1749 && c <= 1756) - : c <= 1768))) - : (c <= 1788 || (c < 1869 - ? (c < 1808 - ? c == 1791 - : c <= 1866) - : (c <= 1969 || (c >= 1984 && c <= 2037))))))))) - : (c <= 2042 || (c < 2534 - ? (c < 2447 - ? (c < 2230 - ? (c < 2112 - ? (c < 2048 - ? c == 2045 - : c <= 2093) - : (c <= 2139 || (c < 2208 - ? (c >= 2144 && c <= 2154) - : c <= 2228))) - : (c <= 2247 || (c < 2406 - ? (c < 2275 - ? (c >= 2259 && c <= 2273) - : c <= 2403) - : (c <= 2415 || (c < 2437 - ? (c >= 2417 && c <= 2435) - : c <= 2444))))) - : (c <= 2448 || (c < 2503 - ? (c < 2482 - ? (c < 2474 - ? (c >= 2451 && c <= 2472) - : c <= 2480) - : (c <= 2482 || (c < 2492 - ? (c >= 2486 && c <= 2489) - : c <= 2500))) - : (c <= 2504 || (c < 2524 - ? (c < 2519 - ? (c >= 2507 && c <= 2510) - : c <= 2519) - : (c <= 2525 || (c >= 2527 && c <= 2531))))))) - : (c <= 2545 || (c < 2622 - ? (c < 2579 - ? (c < 2561 - ? (c < 2558 - ? c == 2556 - : c <= 2558) - : (c <= 2563 || (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576))) - : (c <= 2600 || (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c < 2620 - ? (c >= 2616 && c <= 2617) - : c <= 2620))))) - : (c <= 2626 || (c < 2662 - ? (c < 2641 - ? (c < 2635 - ? (c >= 2631 && c <= 2632) - : c <= 2637) - : (c <= 2641 || (c < 2654 - ? (c >= 2649 && c <= 2652) - : c <= 2654))) - : (c <= 2677 || (c < 2703 - ? (c < 2693 - ? (c >= 2689 && c <= 2691) - : c <= 2701) - : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) - : (c <= 2736 || (c < 3142 - ? (c < 2918 - ? (c < 2831 - ? (c < 2768 - ? (c < 2748 - ? (c < 2741 - ? (c >= 2738 && c <= 2739) - : c <= 2745) - : (c <= 2757 || (c < 2763 - ? (c >= 2759 && c <= 2761) - : c <= 2765))) - : (c <= 2768 || (c < 2809 - ? (c < 2790 - ? (c >= 2784 && c <= 2787) - : c <= 2799) - : (c <= 2815 || (c < 2821 - ? (c >= 2817 && c <= 2819) - : c <= 2828))))) - : (c <= 2832 || (c < 2887 - ? (c < 2866 - ? (c < 2858 - ? (c >= 2835 && c <= 2856) - : c <= 2864) - : (c <= 2867 || (c < 2876 + : c <= 1416) + : (c <= 1514 || (c >= 1519 && c <= 1522))))) + : (c <= 1610 || (c < 1774 + ? (c < 1749 + ? (c < 1649 + ? (c >= 1646 && c <= 1647) + : c <= 1747) + : (c <= 1749 || (c >= 1765 && c <= 1766))) + : (c <= 1775 || (c < 1808 + ? (c < 1791 + ? (c >= 1786 && c <= 1788) + : c <= 1791) + : (c <= 1808 || (c >= 1810 && c <= 1839))))))))) + : (c <= 1957 || (c < 2451 + ? (c < 2144 + ? (c < 2048 + ? (c < 2036 + ? (c < 1994 + ? c == 1969 + : c <= 2026) + : (c <= 2037 || c == 2042)) + : (c <= 2069 || (c < 2088 + ? (c < 2084 + ? c == 2074 + : c <= 2084) + : (c <= 2088 || (c >= 2112 && c <= 2136))))) + : (c <= 2154 || (c < 2384 + ? (c < 2308 + ? (c < 2230 + ? (c >= 2208 && c <= 2228) + : c <= 2247) + : (c <= 2361 || c == 2365)) + : (c <= 2384 || (c < 2437 + ? (c < 2417 + ? (c >= 2392 && c <= 2401) + : c <= 2432) + : (c <= 2444 || (c >= 2447 && c <= 2448))))))) + : (c <= 2472 || (c < 2565 + ? (c < 2510 + ? (c < 2486 + ? (c < 2482 + ? (c >= 2474 && c <= 2480) + : c <= 2482) + : (c <= 2489 || c == 2493)) + : (c <= 2510 || (c < 2544 + ? (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2529) + : (c <= 2545 || c == 2556)))) + : (c <= 2570 || (c < 2613 + ? (c < 2602 + ? (c < 2579 + ? (c >= 2575 && c <= 2576) + : c <= 2600) + : (c <= 2608 || (c >= 2610 && c <= 2611))) + : (c <= 2614 || (c < 2649 + ? (c >= 2616 && c <= 2617) + : (c <= 2652 || c == 2654)))))))))) + : (c <= 2676 || (c < 3205 + ? (c < 2929 + ? (c < 2809 + ? (c < 2738 + ? (c < 2707 + ? (c < 2703 + ? (c >= 2693 && c <= 2701) + : c <= 2705) + : (c <= 2728 || (c >= 2730 && c <= 2736))) + : (c <= 2739 || (c < 2768 + ? (c < 2749 + ? (c >= 2741 && c <= 2745) + : c <= 2749) + : (c <= 2768 || (c >= 2784 && c <= 2785))))) + : (c <= 2809 || (c < 2866 + ? (c < 2835 + ? (c < 2831 + ? (c >= 2821 && c <= 2828) + : c <= 2832) + : (c <= 2856 || (c >= 2858 && c <= 2864))) + : (c <= 2867 || (c < 2908 + ? (c < 2877 ? (c >= 2869 && c <= 2873) - : c <= 2884))) - : (c <= 2888 || (c < 2908 - ? (c < 2901 - ? (c >= 2891 && c <= 2893) - : c <= 2903) - : (c <= 2909 || (c >= 2911 && c <= 2915))))))) - : (c <= 2927 || (c < 3006 + : c <= 2877) + : (c <= 2909 || (c >= 2911 && c <= 2913))))))) + : (c <= 2929 || (c < 2990 ? (c < 2969 - ? (c < 2949 - ? (c < 2946 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965))) + ? (c < 2958 + ? (c < 2949 + ? c == 2947 + : c <= 2954) + : (c <= 2960 || (c >= 2962 && c <= 2965))) : (c <= 2970 || (c < 2979 ? (c < 2974 ? c == 2972 : c <= 2975) - : (c <= 2980 || (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001))))) - : (c <= 3010 || (c < 3072 - ? (c < 3024 - ? (c < 3018 - ? (c >= 3014 && c <= 3016) - : c <= 3021) - : (c <= 3024 || (c < 3046 - ? c == 3031 - : c <= 3055))) - : (c <= 3084 || (c < 3114 - ? (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112) - : (c <= 3129 || (c >= 3133 && c <= 3140))))))))) - : (c <= 3144 || (c < 3398 - ? (c < 3260 - ? (c < 3200 - ? (c < 3160 - ? (c < 3157 - ? (c >= 3146 && c <= 3149) - : c <= 3158) - : (c <= 3162 || (c < 3174 - ? (c >= 3168 && c <= 3171) - : c <= 3183))) - : (c <= 3203 || (c < 3218 - ? (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216) - : (c <= 3240 || (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257))))) - : (c <= 3268 || (c < 3302 - ? (c < 3285 - ? (c < 3274 - ? (c >= 3270 && c <= 3272) - : c <= 3277) - : (c <= 3286 || (c < 3296 + : (c <= 2980 || (c >= 2984 && c <= 2986))))) + : (c <= 3001 || (c < 3114 + ? (c < 3086 + ? (c < 3077 + ? c == 3024 + : c <= 3084) + : (c <= 3088 || (c >= 3090 && c <= 3112))) + : (c <= 3129 || (c < 3168 + ? (c < 3160 + ? c == 3133 + : c <= 3162) + : (c <= 3169 || c == 3200)))))))) + : (c <= 3212 || (c < 3517 + ? (c < 3342 + ? (c < 3261 + ? (c < 3242 + ? (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240) + : (c <= 3251 || (c >= 3253 && c <= 3257))) + : (c <= 3261 || (c < 3313 + ? (c < 3296 ? c == 3294 - : c <= 3299))) - : (c <= 3311 || (c < 3342 - ? (c < 3328 - ? (c >= 3313 && c <= 3314) - : c <= 3340) - : (c <= 3344 || (c >= 3346 && c <= 3396))))))) - : (c <= 3400 || (c < 3530 - ? (c < 3457 - ? (c < 3423 - ? (c < 3412 - ? (c >= 3402 && c <= 3406) - : c <= 3415) - : (c <= 3427 || (c < 3450 - ? (c >= 3430 && c <= 3439) - : c <= 3455))) - : (c <= 3459 || (c < 3507 - ? (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505) - : (c <= 3515 || (c < 3520 - ? c == 3517 - : c <= 3526))))) - : (c <= 3530 || (c < 3585 - ? (c < 3544 - ? (c < 3542 - ? (c >= 3535 && c <= 3540) - : c <= 3542) - : (c <= 3551 || (c < 3570 - ? (c >= 3558 && c <= 3567) - : c <= 3571))) - : (c <= 3642 || (c < 3713 - ? (c < 3664 - ? (c >= 3648 && c <= 3662) - : c <= 3673) - : (c <= 3714 || c == 3716)))))))))))) - : (c <= 3722 || (c < 7296 - ? (c < 5024 - ? (c < 4256 - ? (c < 3893 - ? (c < 3784 - ? (c < 3751 - ? (c < 3749 - ? (c >= 3724 && c <= 3747) - : c <= 3749) - : (c <= 3773 || (c < 3782 - ? (c >= 3776 && c <= 3780) - : c <= 3782))) - : (c <= 3789 || (c < 3840 - ? (c < 3804 - ? (c >= 3792 && c <= 3801) - : c <= 3807) - : (c <= 3840 || (c < 3872 - ? (c >= 3864 && c <= 3865) - : c <= 3881))))) - : (c <= 3893 || (c < 3974 - ? (c < 3902 - ? (c < 3897 - ? c == 3895 - : c <= 3897) - : (c <= 3911 || (c < 3953 - ? (c >= 3913 && c <= 3948) - : c <= 3972))) - : (c <= 3991 || (c < 4096 - ? (c < 4038 - ? (c >= 3993 && c <= 4028) - : c <= 4038) - : (c <= 4169 || (c >= 4176 && c <= 4253))))))) - : (c <= 4293 || (c < 4786 - ? (c < 4688 + : c <= 3297) + : (c <= 3314 || (c >= 3332 && c <= 3340))))) + : (c <= 3344 || (c < 3423 + ? (c < 3406 + ? (c < 3389 + ? (c >= 3346 && c <= 3386) + : c <= 3389) + : (c <= 3406 || (c >= 3412 && c <= 3414))) + : (c <= 3425 || (c < 3482 + ? (c < 3461 + ? (c >= 3450 && c <= 3455) + : c <= 3478) + : (c <= 3505 || (c >= 3507 && c <= 3515))))))) + : (c <= 3517 || (c < 3751 + ? (c < 3713 + ? (c < 3634 + ? (c < 3585 + ? (c >= 3520 && c <= 3526) + : c <= 3632) + : (c <= 3634 || (c >= 3648 && c <= 3654))) + : (c <= 3714 || (c < 3724 + ? (c < 3718 + ? c == 3716 + : c <= 3722) + : (c <= 3747 || c == 3749)))) + : (c <= 3760 || (c < 3804 + ? (c < 3776 + ? (c < 3773 + ? c == 3762 + : c <= 3773) + : (c <= 3780 || c == 3782)) + : (c <= 3807 || (c < 3904 + ? c == 3840 + : (c <= 3911 || (c >= 3913 && c <= 3948))))))))))))) + : (c <= 3980 || (c < 8016 + ? (c < 5920 + ? (c < 4746 + ? (c < 4256 + ? (c < 4193 + ? (c < 4176 + ? (c < 4159 + ? (c >= 4096 && c <= 4138) + : c <= 4159) + : (c <= 4181 || (c >= 4186 && c <= 4189))) + : (c <= 4193 || (c < 4213 + ? (c < 4206 + ? (c >= 4197 && c <= 4198) + : c <= 4208) + : (c <= 4225 || c == 4238)))) + : (c <= 4293 || (c < 4682 ? (c < 4304 ? (c < 4301 ? c == 4295 : c <= 4301) - : (c <= 4346 || (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685))) - : (c <= 4694 || (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c < 4752 - ? (c >= 4746 && c <= 4749) - : c <= 4784))))) - : (c <= 4789 || (c < 4882 - ? (c < 4802 - ? (c < 4800 - ? (c >= 4792 && c <= 4798) - : c <= 4800) - : (c <= 4805 || (c < 4824 + : (c <= 4346 || (c >= 4348 && c <= 4680))) + : (c <= 4685 || (c < 4698 + ? (c < 4696 + ? (c >= 4688 && c <= 4694) + : c <= 4696) + : (c <= 4701 || (c >= 4704 && c <= 4744))))))) + : (c <= 4749 || (c < 4992 + ? (c < 4802 + ? (c < 4792 + ? (c < 4786 + ? (c >= 4752 && c <= 4784) + : c <= 4789) + : (c <= 4798 || c == 4800)) + : (c <= 4805 || (c < 4882 + ? (c < 4824 ? (c >= 4808 && c <= 4822) - : c <= 4880))) - : (c <= 4885 || (c < 4969 - ? (c < 4957 - ? (c >= 4888 && c <= 4954) - : c <= 4959) - : (c <= 4977 || (c >= 4992 && c <= 5007))))))))) - : (c <= 5109 || (c < 6400 - ? (c < 5998 - ? (c < 5870 - ? (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c < 5792 - ? (c >= 5761 && c <= 5786) - : c <= 5866))) - : (c <= 5880 || (c < 5920 - ? (c < 5902 - ? (c >= 5888 && c <= 5900) - : c <= 5908) - : (c <= 5940 || (c < 5984 - ? (c >= 5952 && c <= 5971) - : c <= 5996))))) - : (c <= 6000 || (c < 6155 - ? (c < 6103 - ? (c < 6016 - ? (c >= 6002 && c <= 6003) - : c <= 6099) - : (c <= 6103 || (c < 6112 - ? (c >= 6108 && c <= 6109) - : c <= 6121))) - : (c <= 6157 || (c < 6272 + : c <= 4880) + : (c <= 4885 || (c >= 4888 && c <= 4954))))) + : (c <= 5007 || (c < 5761 + ? (c < 5121 + ? (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117) + : (c <= 5740 || (c >= 5743 && c <= 5759))) + : (c <= 5786 || (c < 5888 + ? (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880) + : (c <= 5900 || (c >= 5902 && c <= 5905))))))))) + : (c <= 5937 || (c < 6981 + ? (c < 6320 + ? (c < 6103 + ? (c < 5998 + ? (c < 5984 + ? (c >= 5952 && c <= 5969) + : c <= 5996) + : (c <= 6000 || (c >= 6016 && c <= 6067))) + : (c <= 6103 || (c < 6272 ? (c < 6176 - ? (c >= 6160 && c <= 6169) + ? c == 6108 : c <= 6264) - : (c <= 6314 || (c >= 6320 && c <= 6389))))))) - : (c <= 6430 || (c < 6800 - ? (c < 6576 - ? (c < 6470 - ? (c < 6448 - ? (c >= 6432 && c <= 6443) - : c <= 6459) - : (c <= 6509 || (c < 6528 - ? (c >= 6512 && c <= 6516) - : c <= 6571))) - : (c <= 6601 || (c < 6688 - ? (c < 6656 - ? (c >= 6608 && c <= 6618) - : c <= 6683) - : (c <= 6750 || (c < 6783 - ? (c >= 6752 && c <= 6780) - : c <= 6793))))) - : (c <= 6809 || (c < 7019 - ? (c < 6847 - ? (c < 6832 - ? c == 6823 - : c <= 6845) - : (c <= 6848 || (c < 6992 - ? (c >= 6912 && c <= 6987) - : c <= 7001))) - : (c <= 7027 || (c < 7232 - ? (c < 7168 - ? (c >= 7040 && c <= 7155) - : c <= 7223) - : (c <= 7241 || (c >= 7245 && c <= 7293))))))))))) - : (c <= 7304 || (c < 11264 - ? (c < 8178 - ? (c < 8027 - ? (c < 7675 - ? (c < 7376 - ? (c < 7357 - ? (c >= 7312 && c <= 7354) - : c <= 7359) - : (c <= 7378 || (c < 7424 - ? (c >= 7380 && c <= 7418) - : c <= 7673))) - : (c <= 7957 || (c < 8008 - ? (c < 7968 - ? (c >= 7960 && c <= 7965) - : c <= 8005) - : (c <= 8013 || (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025))))) - : (c <= 8027 || (c < 8130 - ? (c < 8064 - ? (c < 8031 - ? c == 8029 - : c <= 8061) - : (c <= 8116 || (c < 8126 + : (c <= 6312 || c == 6314)))) + : (c <= 6389 || (c < 6576 + ? (c < 6512 + ? (c < 6480 + ? (c >= 6400 && c <= 6430) + : c <= 6509) + : (c <= 6516 || (c >= 6528 && c <= 6571))) + : (c <= 6601 || (c < 6823 + ? (c < 6688 + ? (c >= 6656 && c <= 6678) + : c <= 6740) + : (c <= 6823 || (c >= 6917 && c <= 6963))))))) + : (c <= 6987 || (c < 7401 + ? (c < 7245 + ? (c < 7098 + ? (c < 7086 + ? (c >= 7043 && c <= 7072) + : c <= 7087) + : (c <= 7141 || (c >= 7168 && c <= 7203))) + : (c <= 7247 || (c < 7312 + ? (c < 7296 + ? (c >= 7258 && c <= 7293) + : c <= 7304) + : (c <= 7354 || (c >= 7357 && c <= 7359))))) + : (c <= 7404 || (c < 7680 + ? (c < 7418 + ? (c < 7413 + ? (c >= 7406 && c <= 7411) + : c <= 7414) + : (c <= 7418 || (c >= 7424 && c <= 7615))) + : (c <= 7957 || (c < 7968 + ? (c >= 7960 && c <= 7965) + : (c <= 8005 || (c >= 8008 && c <= 8013))))))))))) + : (c <= 8023 || (c < 11631 + ? (c < 8458 + ? (c < 8144 + ? (c < 8064 + ? (c < 8029 + ? (c < 8027 + ? c == 8025 + : c <= 8027) + : (c <= 8029 || (c >= 8031 && c <= 8061))) + : (c <= 8116 || (c < 8130 + ? (c < 8126 ? (c >= 8118 && c <= 8124) - : c <= 8126))) - : (c <= 8132 || (c < 8150 - ? (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147) - : (c <= 8155 || (c >= 8160 && c <= 8172))))))) - : (c <= 8180 || (c < 8458 - ? (c < 8336 - ? (c < 8276 - ? (c < 8255 - ? (c >= 8182 && c <= 8188) - : c <= 8256) - : (c <= 8276 || (c < 8319 - ? c == 8305 - : c <= 8319))) - : (c <= 8348 || (c < 8421 - ? (c < 8417 - ? (c >= 8400 && c <= 8412) - : c <= 8417) - : (c <= 8432 || (c < 8455 - ? c == 8450 - : c <= 8455))))) - : (c <= 8467 || (c < 8490 + : c <= 8126) + : (c <= 8132 || (c >= 8134 && c <= 8140))))) + : (c <= 8147 || (c < 8305 + ? (c < 8178 + ? (c < 8160 + ? (c >= 8150 && c <= 8155) + : c <= 8172) + : (c <= 8180 || (c >= 8182 && c <= 8188))) + : (c <= 8305 || (c < 8450 + ? (c < 8336 + ? c == 8319 + : c <= 8348) + : (c <= 8450 || c == 8455)))))) + : (c <= 8467 || (c < 8544 + ? (c < 8488 ? (c < 8484 ? (c < 8472 ? c == 8469 : c <= 8477) - : (c <= 8484 || (c < 8488 - ? c == 8486 - : c <= 8488))) - : (c <= 8505 || (c < 8526 - ? (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521) - : (c <= 8526 || (c >= 8544 && c <= 8584))))))))) - : (c <= 11310 || (c < 12353 - ? (c < 11696 - ? (c < 11565 - ? (c < 11499 - ? (c < 11360 - ? (c >= 11312 && c <= 11358) - : c <= 11492) - : (c <= 11507 || (c < 11559 + : (c <= 8484 || c == 8486)) + : (c <= 8488 || (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || c == 8526)))) + : (c <= 8584 || (c < 11506 + ? (c < 11360 + ? (c < 11312 + ? (c >= 11264 && c <= 11310) + : c <= 11358) + : (c <= 11492 || (c >= 11499 && c <= 11502))) + : (c <= 11507 || (c < 11565 + ? (c < 11559 ? (c >= 11520 && c <= 11557) - : c <= 11559))) - : (c <= 11565 || (c < 11647 - ? (c < 11631 - ? (c >= 11568 && c <= 11623) - : c <= 11631) - : (c <= 11670 || (c < 11688 - ? (c >= 11680 && c <= 11686) - : c <= 11694))))) - : (c <= 11702 || (c < 11744 - ? (c < 11720 - ? (c < 11712 - ? (c >= 11704 && c <= 11710) - : c <= 11718) - : (c <= 11726 || (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742))) - : (c <= 11775 || (c < 12337 - ? (c < 12321 - ? (c >= 12293 && c <= 12295) - : c <= 12335) - : (c <= 12341 || (c >= 12344 && c <= 12348))))))) - : (c <= 12438 || (c < 42192 - ? (c < 12593 - ? (c < 12449 - ? (c < 12445 - ? (c >= 12441 && c <= 12442) - : c <= 12447) - : (c <= 12538 || (c < 12549 - ? (c >= 12540 && c <= 12543) - : c <= 12591))) - : (c <= 12686 || (c < 13312 - ? (c < 12784 - ? (c >= 12704 && c <= 12735) - : c <= 12799) - : (c <= 19903 || (c < 40960 - ? (c >= 19968 && c <= 40956) - : c <= 42124))))) - : (c <= 42237 || (c < 42775 - ? (c < 42560 + : c <= 11559) + : (c <= 11565 || (c >= 11568 && c <= 11623))))))))) + : (c <= 11631 || (c < 12704 + ? (c < 12293 + ? (c < 11704 + ? (c < 11688 + ? (c < 11680 + ? (c >= 11648 && c <= 11670) + : c <= 11686) + : (c <= 11694 || (c >= 11696 && c <= 11702))) + : (c <= 11710 || (c < 11728 + ? (c < 11720 + ? (c >= 11712 && c <= 11718) + : c <= 11726) + : (c <= 11734 || (c >= 11736 && c <= 11742))))) + : (c <= 12295 || (c < 12445 + ? (c < 12344 + ? (c < 12337 + ? (c >= 12321 && c <= 12329) + : c <= 12341) + : (c <= 12348 || (c >= 12353 && c <= 12438))) + : (c <= 12447 || (c < 12549 + ? (c < 12540 + ? (c >= 12449 && c <= 12538) + : c <= 12543) + : (c <= 12591 || (c >= 12593 && c <= 12686))))))) + : (c <= 12735 || (c < 42623 + ? (c < 42192 + ? (c < 19968 + ? (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903) + : (c <= 40956 || (c >= 40960 && c <= 42124))) + : (c <= 42237 || (c < 42538 ? (c < 42512 ? (c >= 42240 && c <= 42508) - : c <= 42539) - : (c <= 42607 || (c < 42623 - ? (c >= 42612 && c <= 42621) - : c <= 42737))) - : (c <= 42783 || (c < 42946 - ? (c < 42891 - ? (c >= 42786 && c <= 42888) - : c <= 42943) - : (c <= 42954 || (c >= 42997 && c <= 43047))))))))))))))) - : (c <= 43052 || (c < 71096 - ? (c < 66864 - ? (c < 64914 - ? (c < 43816 - ? (c < 43520 + : c <= 42527) + : (c <= 42539 || (c >= 42560 && c <= 42606))))) + : (c <= 42653 || (c < 42946 + ? (c < 42786 + ? (c < 42775 + ? (c >= 42656 && c <= 42735) + : c <= 42783) + : (c <= 42888 || (c >= 42891 && c <= 42943))) + : (c <= 42954 || (c < 43011 + ? (c >= 42997 && c <= 43009) + : (c <= 43013 || (c >= 43015 && c <= 43018))))))))))))))) + : (c <= 43042 || (c < 70453 + ? (c < 66176 + ? (c < 64112 + ? (c < 43697 + ? (c < 43471 ? (c < 43261 - ? (c < 43216 - ? (c < 43136 + ? (c < 43250 + ? (c < 43138 ? (c >= 43072 && c <= 43123) - : c <= 43205) - : (c <= 43225 || (c < 43259 - ? (c >= 43232 && c <= 43255) - : c <= 43259))) - : (c <= 43309 || (c < 43392 - ? (c < 43360 - ? (c >= 43312 && c <= 43347) - : c <= 43388) - : (c <= 43456 || (c < 43488 - ? (c >= 43471 && c <= 43481) - : c <= 43518))))) - : (c <= 43574 || (c < 43744 - ? (c < 43616 - ? (c < 43600 - ? (c >= 43584 && c <= 43597) - : c <= 43609) - : (c <= 43638 || (c < 43739 - ? (c >= 43642 && c <= 43714) - : c <= 43741))) - : (c <= 43759 || (c < 43785 - ? (c < 43777 - ? (c >= 43762 && c <= 43766) - : c <= 43782) - : (c <= 43790 || (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814))))))) - : (c <= 43822 || (c < 64275 - ? (c < 44032 - ? (c < 43888 - ? (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881) - : (c <= 44010 || (c < 44016 - ? (c >= 44012 && c <= 44013) - : c <= 44025))) - : (c <= 55203 || (c < 63744 - ? (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291) - : (c <= 64109 || (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262))))) - : (c <= 64279 || (c < 64323 - ? (c < 64312 - ? (c < 64298 - ? (c >= 64285 && c <= 64296) - : c <= 64310) - : (c <= 64316 || (c < 64320 - ? c == 64318 - : c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65549 - ? (c < 65151 - ? (c < 65137 - ? (c < 65056 - ? (c < 65024 - ? (c >= 65008 && c <= 65017) - : c <= 65039) - : (c <= 65071 || (c < 65101 - ? (c >= 65075 && c <= 65076) - : c <= 65103))) - : (c <= 65137 || (c < 65145 - ? (c < 65143 - ? c == 65139 - : c <= 65143) - : (c <= 65145 || (c < 65149 - ? c == 65147 - : c <= 65149))))) - : (c <= 65276 || (c < 65474 - ? (c < 65343 - ? (c < 65313 - ? (c >= 65296 && c <= 65305) - : c <= 65338) - : (c <= 65343 || (c < 65382 - ? (c >= 65345 && c <= 65370) - : c <= 65470))) - : (c <= 65479 || (c < 65498 - ? (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495) - : (c <= 65500 || (c >= 65536 && c <= 65547))))))) - : (c <= 65574 || (c < 66349 - ? (c < 65856 - ? (c < 65599 - ? (c < 65596 - ? (c >= 65576 && c <= 65594) - : c <= 65597) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786))) - : (c <= 65908 || (c < 66208 - ? (c < 66176 - ? c == 66045 - : c <= 66204) - : (c <= 66256 || (c < 66304 - ? c == 66272 - : c <= 66335))))) - : (c <= 66378 || (c < 66560 - ? (c < 66464 - ? (c < 66432 - ? (c >= 66384 && c <= 66426) - : c <= 66461) - : (c <= 66499 || (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517))) - : (c <= 66717 || (c < 66776 - ? (c < 66736 - ? (c >= 66720 && c <= 66729) - : c <= 66771) - : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) - : (c <= 66915 || (c < 69632 - ? (c < 68152 - ? (c < 67808 - ? (c < 67594 - ? (c < 67424 - ? (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413) - : (c <= 67431 || (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592))) - : (c <= 67637 || (c < 67647 - ? (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644) - : (c <= 67669 || (c < 67712 - ? (c >= 67680 && c <= 67702) - : c <= 67742))))) - : (c <= 67826 || (c < 68096 - ? (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031))) - : (c <= 68099 || (c < 68117 - ? (c < 68108 - ? (c >= 68101 && c <= 68102) - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))))))) - : (c <= 68154 || (c < 68800 - ? (c < 68352 - ? (c < 68224 - ? (c < 68192 - ? c == 68159 - : c <= 68220) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68326))) - : (c <= 68405 || (c < 68480 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : c <= 68466) - : (c <= 68497 || (c < 68736 - ? (c >= 68608 && c <= 68680) - : c <= 68786))))) - : (c <= 68850 || (c < 69376 - ? (c < 69248 - ? (c < 68912 - ? (c >= 68864 && c <= 68903) - : c <= 68921) - : (c <= 69289 || (c < 69296 - ? (c >= 69291 && c <= 69292) - : c <= 69297))) - : (c <= 69404 || (c < 69552 - ? (c < 69424 - ? c == 69415 - : c <= 69456) - : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) - : (c <= 69702 || (c < 70384 - ? (c < 70094 - ? (c < 69942 - ? (c < 69840 - ? (c < 69759 - ? (c >= 69734 && c <= 69743) - : c <= 69818) - : (c <= 69864 || (c < 69888 - ? (c >= 69872 && c <= 69881) - : c <= 69940))) - : (c <= 69951 || (c < 70006 - ? (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003) - : (c <= 70006 || (c < 70089 - ? (c >= 70016 && c <= 70084) - : c <= 70092))))) - : (c <= 70106 || (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70199 || (c < 70272 - ? c == 70206 - : c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70378))))))) - : (c <= 70393 || (c < 70487 - ? (c < 70450 - ? (c < 70415 - ? (c < 70405 - ? (c >= 70400 && c <= 70403) - : c <= 70412) - : (c <= 70416 || (c < 70442 - ? (c >= 70419 && c <= 70440) - : c <= 70448))) - : (c <= 70451 || (c < 70471 - ? (c < 70459 - ? (c >= 70453 && c <= 70457) - : c <= 70468) - : (c <= 70472 || (c < 70480 - ? (c >= 70475 && c <= 70477) - : c <= 70480))))) - : (c <= 70487 || (c < 70750 - ? (c < 70512 - ? (c < 70502 - ? (c >= 70493 && c <= 70499) - : c <= 70508) - : (c <= 70516 || (c < 70736 - ? (c >= 70656 && c <= 70730) - : c <= 70745))) - : (c <= 70753 || (c < 70864 - ? (c < 70855 - ? (c >= 70784 && c <= 70853) - : c <= 70855) - : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) - : (c <= 71104 || (c < 119894 - ? (c < 73104 - ? (c < 72163 - ? (c < 71935 - ? (c < 71360 + : c <= 43187) + : (c <= 43255 || c == 43259)) + : (c <= 43262 || (c < 43360 + ? (c < 43312 + ? (c >= 43274 && c <= 43301) + : c <= 43334) + : (c <= 43388 || (c >= 43396 && c <= 43442))))) + : (c <= 43471 || (c < 43584 + ? (c < 43514 + ? (c < 43494 + ? (c >= 43488 && c <= 43492) + : c <= 43503) + : (c <= 43518 || (c >= 43520 && c <= 43560))) + : (c <= 43586 || (c < 43642 + ? (c < 43616 + ? (c >= 43588 && c <= 43595) + : c <= 43638) + : (c <= 43642 || (c >= 43646 && c <= 43695))))))) + : (c <= 43697 || (c < 43793 + ? (c < 43739 + ? (c < 43712 + ? (c < 43705 + ? (c >= 43701 && c <= 43702) + : c <= 43709) + : (c <= 43712 || c == 43714)) + : (c <= 43741 || (c < 43777 + ? (c < 43762 + ? (c >= 43744 && c <= 43754) + : c <= 43764) + : (c <= 43782 || (c >= 43785 && c <= 43790))))) + : (c <= 43798 || (c < 43888 + ? (c < 43824 + ? (c < 43816 + ? (c >= 43808 && c <= 43814) + : c <= 43822) + : (c <= 43866 || (c >= 43868 && c <= 43881))) + : (c <= 44002 || (c < 55243 + ? (c < 55216 + ? (c >= 44032 && c <= 55203) + : c <= 55238) + : (c <= 55291 || (c >= 63744 && c <= 64109))))))))) + : (c <= 64217 || (c < 65147 + ? (c < 64326 + ? (c < 64298 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64285 || (c >= 64287 && c <= 64296))) + : (c <= 64310 || (c < 64320 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318) + : (c <= 64321 || (c >= 64323 && c <= 64324))))) + : (c <= 64433 || (c < 65008 + ? (c < 64848 + ? (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))) + : (c <= 65017 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || c == 65145)))))) + : (c <= 65147 || (c < 65498 + ? (c < 65382 + ? (c < 65313 + ? (c < 65151 + ? c == 65149 + : c <= 65276) + : (c <= 65338 || (c >= 65345 && c <= 65370))) + : (c <= 65437 || (c < 65482 + ? (c < 65474 + ? (c >= 65440 && c <= 65470) + : c <= 65479) + : (c <= 65487 || (c >= 65490 && c <= 65495))))) + : (c <= 65500 || (c < 65599 + ? (c < 65576 + ? (c < 65549 + ? (c >= 65536 && c <= 65547) + : c <= 65574) + : (c <= 65594 || (c >= 65596 && c <= 65597))) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : (c <= 65786 || (c >= 65856 && c <= 65908))))))))))) + : (c <= 66204 || (c < 68416 + ? (c < 67639 + ? (c < 66736 + ? (c < 66432 + ? (c < 66349 + ? (c < 66304 + ? (c >= 66208 && c <= 66256) + : c <= 66335) + : (c <= 66378 || (c >= 66384 && c <= 66421))) + : (c <= 66461 || (c < 66513 + ? (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511) + : (c <= 66517 || (c >= 66560 && c <= 66717))))) + : (c <= 66771 || (c < 67392 + ? (c < 66864 + ? (c < 66816 + ? (c >= 66776 && c <= 66811) + : c <= 66855) + : (c <= 66915 || (c >= 67072 && c <= 67382))) + : (c <= 67413 || (c < 67592 + ? (c < 67584 + ? (c >= 67424 && c <= 67431) + : c <= 67589) + : (c <= 67592 || (c >= 67594 && c <= 67637))))))) + : (c <= 67640 || (c < 68030 + ? (c < 67808 + ? (c < 67680 + ? (c < 67647 + ? c == 67644 + : c <= 67669) + : (c <= 67702 || (c >= 67712 && c <= 67742))) + : (c <= 67826 || (c < 67872 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : c <= 67861) + : (c <= 67897 || (c >= 67968 && c <= 68023))))) + : (c <= 68031 || (c < 68192 + ? (c < 68117 + ? (c < 68112 + ? c == 68096 + : c <= 68115) + : (c <= 68119 || (c >= 68121 && c <= 68149))) + : (c <= 68220 || (c < 68297 + ? (c < 68288 + ? (c >= 68224 && c <= 68252) + : c <= 68295) + : (c <= 68324 || (c >= 68352 && c <= 68405))))))))) + : (c <= 68437 || (c < 69968 + ? (c < 69415 + ? (c < 68800 + ? (c < 68608 + ? (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497) + : (c <= 68680 || (c >= 68736 && c <= 68786))) + : (c <= 68850 || (c < 69296 + ? (c < 69248 + ? (c >= 68864 && c <= 68899) + : c <= 69289) + : (c <= 69297 || (c >= 69376 && c <= 69404))))) + : (c <= 69415 || (c < 69763 + ? (c < 69600 + ? (c < 69552 + ? (c >= 69424 && c <= 69445) + : c <= 69572) + : (c <= 69622 || (c >= 69635 && c <= 69687))) + : (c <= 69807 || (c < 69956 + ? (c < 69891 + ? (c >= 69840 && c <= 69864) + : c <= 69926) + : (c <= 69956 || c == 69959)))))) + : (c <= 70002 || (c < 70282 + ? (c < 70108 + ? (c < 70081 + ? (c < 70019 + ? c == 70006 + : c <= 70066) + : (c <= 70084 || c == 70106)) + : (c <= 70108 || (c < 70272 + ? (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70187) + : (c <= 70278 || c == 70280)))) + : (c <= 70285 || (c < 70415 + ? (c < 70320 + ? (c < 70303 + ? (c >= 70287 && c <= 70301) + : c <= 70312) + : (c <= 70366 || (c >= 70405 && c <= 70412))) + : (c <= 70416 || (c < 70442 + ? (c >= 70419 && c <= 70440) + : (c <= 70448 || (c >= 70450 && c <= 70451))))))))))))) + : (c <= 70457 || (c < 113808 + ? (c < 72818 + ? (c < 71945 + ? (c < 71040 + ? (c < 70727 + ? (c < 70493 + ? (c < 70480 + ? c == 70461 + : c <= 70480) + : (c <= 70497 || (c >= 70656 && c <= 70708))) + : (c <= 70730 || (c < 70852 + ? (c < 70784 + ? (c >= 70751 && c <= 70753) + : c <= 70831) + : (c <= 70853 || c == 70855)))) + : (c <= 71086 || (c < 71352 ? (c < 71236 ? (c < 71168 - ? (c >= 71128 && c <= 71133) - : c <= 71232) - : (c <= 71236 || (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352))) - : (c <= 71369 || (c < 71472 - ? (c < 71453 + ? (c >= 71128 && c <= 71131) + : c <= 71215) + : (c <= 71236 || (c >= 71296 && c <= 71338))) + : (c <= 71352 || (c < 71840 + ? (c < 71680 ? (c >= 71424 && c <= 71450) - : c <= 71467) - : (c <= 71481 || (c < 71840 - ? (c >= 71680 && c <= 71738) - : c <= 71913))))) - : (c <= 71942 || (c < 71995 - ? (c < 71957 - ? (c < 71948 - ? c == 71945 - : c <= 71955) - : (c <= 71958 || (c < 71991 - ? (c >= 71960 && c <= 71989) - : c <= 71992))) - : (c <= 72003 || (c < 72106 - ? (c < 72096 - ? (c >= 72016 && c <= 72025) - : c <= 72103) - : (c <= 72151 || (c >= 72154 && c <= 72161))))))) - : (c <= 72164 || (c < 72873 - ? (c < 72704 + : c <= 71723) + : (c <= 71903 || (c >= 71935 && c <= 71942))))))) + : (c <= 71945 || (c < 72192 + ? (c < 72001 + ? (c < 71960 + ? (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958) + : (c <= 71983 || c == 71999)) + : (c <= 72001 || (c < 72161 + ? (c < 72106 + ? (c >= 72096 && c <= 72103) + : c <= 72144) + : (c <= 72161 || c == 72163)))) + : (c <= 72192 || (c < 72349 ? (c < 72272 - ? (c < 72263 - ? (c >= 72192 && c <= 72254) - : c <= 72263) - : (c <= 72345 || (c < 72384 - ? c == 72349 - : c <= 72440))) - : (c <= 72712 || (c < 72784 - ? (c < 72760 - ? (c >= 72714 && c <= 72758) - : c <= 72768) - : (c <= 72793 || (c < 72850 - ? (c >= 72818 && c <= 72847) - : c <= 72871))))) - : (c <= 72886 || (c < 73023 + ? (c < 72250 + ? (c >= 72203 && c <= 72242) + : c <= 72250) + : (c <= 72272 || (c >= 72284 && c <= 72329))) + : (c <= 72349 || (c < 72714 + ? (c < 72704 + ? (c >= 72384 && c <= 72440) + : c <= 72712) + : (c <= 72750 || c == 72768)))))))) + : (c <= 72847 || (c < 92992 + ? (c < 73648 + ? (c < 73056 ? (c < 72971 ? (c < 72968 ? (c >= 72960 && c <= 72966) : c <= 72969) - : (c <= 73014 || (c < 73020 - ? c == 73018 - : c <= 73021))) - : (c <= 73031 || (c < 73063 - ? (c < 73056 - ? (c >= 73040 && c <= 73049) - : c <= 73061) - : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) - : (c <= 73105 || (c < 94095 - ? (c < 92768 - ? (c < 74752 - ? (c < 73440 - ? (c < 73120 - ? (c >= 73107 && c <= 73112) - : c <= 73129) - : (c <= 73462 || (c < 73728 - ? c == 73648 - : c <= 74649))) - : (c <= 74862 || (c < 82944 - ? (c < 77824 - ? (c >= 74880 && c <= 75075) - : c <= 78894) - : (c <= 83526 || (c < 92736 + : (c <= 73008 || c == 73030)) + : (c <= 73061 || (c < 73112 + ? (c < 73066 + ? (c >= 73063 && c <= 73064) + : c <= 73097) + : (c <= 73112 || (c >= 73440 && c <= 73458))))) + : (c <= 73648 || (c < 82944 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c >= 77824 && c <= 78894))) + : (c <= 83526 || (c < 92880 + ? (c < 92736 ? (c >= 92160 && c <= 92728) - : c <= 92766))))) - : (c <= 92777 || (c < 93027 - ? (c < 92928 - ? (c < 92912 - ? (c >= 92880 && c <= 92909) - : c <= 92916) - : (c <= 92982 || (c < 93008 - ? (c >= 92992 && c <= 92995) - : c <= 93017))) - : (c <= 93047 || (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c >= 94031 && c <= 94087))))))) - : (c <= 94111 || (c < 113776 - ? (c < 101632 - ? (c < 94192 - ? (c < 94179 - ? (c >= 94176 && c <= 94177) - : c <= 94180) - : (c <= 94193 || (c < 100352 - ? (c >= 94208 && c <= 100343) - : c <= 101589))) - : (c <= 101640 || (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110878) - : c <= 110930) - : (c <= 110951 || (c < 113664 - ? (c >= 110960 && c <= 111355) - : c <= 113770))))) - : (c <= 113788 || (c < 119163 - ? (c < 113821 - ? (c < 113808 - ? (c >= 113792 && c <= 113800) - : c <= 113817) - : (c <= 113822 || (c < 119149 - ? (c >= 119141 && c <= 119145) - : c <= 119154))) - : (c <= 119170 || (c < 119362 - ? (c < 119210 - ? (c >= 119173 && c <= 119179) - : c <= 119213) - : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 124928 - ? (c < 120630 - ? (c < 120094 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 + : c <= 92766) + : (c <= 92909 || (c >= 92928 && c <= 92975))))))) + : (c <= 92995 || (c < 100352 + ? (c < 94032 + ? (c < 93760 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : c <= 93071) + : (c <= 93823 || (c >= 93952 && c <= 94026))) + : (c <= 94032 || (c < 94179 + ? (c < 94176 + ? (c >= 94099 && c <= 94111) + : c <= 94177) + : (c <= 94179 || (c >= 94208 && c <= 100343))))) + : (c <= 101589 || (c < 110960 + ? (c < 110928 + ? (c < 110592 + ? (c >= 101632 && c <= 101640) + : c <= 110878) + : (c <= 110930 || (c >= 110948 && c <= 110951))) + : (c <= 111355 || (c < 113776 + ? (c >= 113664 && c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))))))))))) + : (c <= 113817 || (c < 126469 + ? (c < 120488 + ? (c < 120005 + ? (c < 119973 + ? (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)) + : (c <= 119974 || (c < 119995 + ? (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092))))) - : (c <= 120121 || (c < 120488 - ? (c < 120134 - ? (c < 120128 - ? (c >= 120123 && c <= 120126) - : c <= 120132) - : (c <= 120134 || (c < 120146 - ? (c >= 120138 && c <= 120144) - : c <= 120485))) - : (c <= 120512 || (c < 120572 + : c <= 119993) + : (c <= 119995 || (c >= 119997 && c <= 120003))))) + : (c <= 120069 || (c < 120123 + ? (c < 120086 + ? (c < 120077 + ? (c >= 120071 && c <= 120074) + : c <= 120084) + : (c <= 120092 || (c >= 120094 && c <= 120121))) + : (c <= 120126 || (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c >= 120146 && c <= 120485))))))) + : (c <= 120512 || (c < 120772 + ? (c < 120630 + ? (c < 120572 ? (c < 120540 ? (c >= 120514 && c <= 120538) : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))))))) - : (c <= 120654 || (c < 121505 - ? (c < 120782 - ? (c < 120714 + : (c <= 120596 || (c >= 120598 && c <= 120628))) + : (c <= 120654 || (c < 120714 ? (c < 120688 ? (c >= 120656 && c <= 120686) : c <= 120712) - : (c <= 120744 || (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779))) - : (c <= 120831 || (c < 121461 - ? (c < 121403 - ? (c >= 121344 && c <= 121398) - : c <= 121452) - : (c <= 121461 || (c < 121499 - ? c == 121476 - : c <= 121503))))) - : (c <= 121519 || (c < 123136 - ? (c < 122907 - ? (c < 122888 - ? (c >= 122880 && c <= 122886) - : c <= 122904) - : (c <= 122913 || (c < 122918 - ? (c >= 122915 && c <= 122916) - : c <= 122922))) - : (c <= 123180 || (c < 123214 - ? (c < 123200 - ? (c >= 123184 && c <= 123197) - : c <= 123209) - : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) - : (c <= 125124 || (c < 126557 - ? (c < 126523 - ? (c < 126497 - ? (c < 125264 - ? (c < 125184 - ? (c >= 125136 && c <= 125142) - : c <= 125259) - : (c <= 125273 || (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495))) - : (c <= 126498 || (c < 126505 - ? (c < 126503 - ? c == 126500 - : c <= 126503) - : (c <= 126514 || (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521))))) - : (c <= 126523 || (c < 126545 - ? (c < 126537 - ? (c < 126535 - ? c == 126530 - : c <= 126535) - : (c <= 126537 || (c < 126541 - ? c == 126539 - : c <= 126543))) - : (c <= 126546 || (c < 126553 - ? (c < 126551 - ? c == 126548 - : c <= 126551) - : (c <= 126553 || c == 126555)))))) - : (c <= 126557 || (c < 126629 - ? (c < 126580 - ? (c < 126564 - ? (c < 126561 - ? c == 126559 - : c <= 126562) - : (c <= 126564 || (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c < 126625 - ? (c >= 126603 && c <= 126619) - : c <= 126627))))) + : (c <= 120744 || (c >= 120746 && c <= 120770))))) + : (c <= 120779 || (c < 124928 + ? (c < 123214 + ? (c < 123191 + ? (c >= 123136 && c <= 123180) + : c <= 123197) + : (c <= 123214 || (c >= 123584 && c <= 123627))) + : (c <= 125124 || (c < 125259 + ? (c >= 125184 && c <= 125251) + : (c <= 125259 || (c >= 126464 && c <= 126467))))))))) + : (c <= 126495 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c >= 126505 && c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) : (c <= 126633 || (c < 178208 - ? (c < 131072 - ? (c < 130032 + ? (c < 173824 + ? (c < 131072 ? (c >= 126635 && c <= 126651) - : c <= 130041) - : (c <= 173789 || (c < 177984 - ? (c >= 173824 && c <= 177972) - : c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); + : c <= 173789) + : (c <= 177972 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 194560 + ? (c >= 183984 && c <= 191456) + : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } -static bool ts_lex(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(148); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '@') ADVANCE(137); - if (lookahead == '[') ADVANCE(66); - if (lookahead == '\\') ADVANCE(35); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(55) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 170 || - lookahead == 181 || - lookahead == 186 || - (192 <= lookahead && lookahead <= 214) || - (216 <= lookahead && lookahead <= 246) || - (248 <= lookahead && lookahead <= 705) || - (710 <= lookahead && lookahead <= 721) || - (736 <= lookahead && lookahead <= 740) || - lookahead == 748 || - lookahead == 750 || - (880 <= lookahead && lookahead <= 884) || - lookahead == 886 || - lookahead == 887 || - (891 <= lookahead && lookahead <= 893) || - lookahead == 895 || - lookahead == 902 || - (904 <= lookahead && lookahead <= 906) || - lookahead == 908 || - (910 <= lookahead && lookahead <= 929) || - (931 <= lookahead && lookahead <= 1013) || - (1015 <= lookahead && lookahead <= 1153) || - (1162 <= lookahead && lookahead <= 1327) || - (1329 <= lookahead && lookahead <= 1366) || - lookahead == 1369 || - (1376 <= lookahead && lookahead <= 1416) || - (1488 <= lookahead && lookahead <= 1514) || - (1519 <= lookahead && lookahead <= 1522) || - (1568 <= lookahead && lookahead <= 1610) || - lookahead == 1646 || - lookahead == 1647 || - (1649 <= lookahead && lookahead <= 1747) || - lookahead == 1749 || - lookahead == 1765 || - lookahead == 1766 || - lookahead == 1774 || - lookahead == 1775 || - (1786 <= lookahead && lookahead <= 1788) || - lookahead == 1791 || - lookahead == 1808 || - (1810 <= lookahead && lookahead <= 1839) || - (1869 <= lookahead && lookahead <= 1957) || - lookahead == 1969 || - (1994 <= lookahead && lookahead <= 2026) || - lookahead == 2036 || - lookahead == 2037 || - lookahead == 2042 || - (2048 <= lookahead && lookahead <= 2069) || - lookahead == 2074 || - lookahead == 2084 || - lookahead == 2088 || - (2112 <= lookahead && lookahead <= 2136) || - (2144 <= lookahead && lookahead <= 2154) || - (2208 <= lookahead && lookahead <= 2228) || - (2230 <= lookahead && lookahead <= 2247) || - (2308 <= lookahead && lookahead <= 2361) || - lookahead == 2365 || - lookahead == 2384 || - (2392 <= lookahead && lookahead <= 2401) || - (2417 <= lookahead && lookahead <= 2432) || - (2437 <= lookahead && lookahead <= 2444) || - lookahead == 2447 || - lookahead == 2448 || - (2451 <= lookahead && lookahead <= 2472) || - (2474 <= lookahead && lookahead <= 2480) || - lookahead == 2482 || - (2486 <= lookahead && lookahead <= 2489) || - lookahead == 2493 || - lookahead == 2510 || - lookahead == 2524 || - lookahead == 2525 || - (2527 <= lookahead && lookahead <= 2529) || - lookahead == 2544 || - lookahead == 2545 || - lookahead == 2556 || - (2565 <= lookahead && lookahead <= 2570) || - lookahead == 2575 || - lookahead == 2576 || - (2579 <= lookahead && lookahead <= 2600) || - (2602 <= lookahead && lookahead <= 2608) || - lookahead == 2610 || - lookahead == 2611 || - lookahead == 2613 || - lookahead == 2614 || - lookahead == 2616 || - lookahead == 2617 || - (2649 <= lookahead && lookahead <= 2652) || - lookahead == 2654 || - (2674 <= lookahead && lookahead <= 2676) || - (2693 <= lookahead && lookahead <= 2701) || - (2703 <= lookahead && lookahead <= 2705) || - (2707 <= lookahead && lookahead <= 2728) || - (2730 <= lookahead && lookahead <= 2736) || - lookahead == 2738 || - lookahead == 2739 || - (2741 <= lookahead && lookahead <= 2745) || - lookahead == 2749 || - lookahead == 2768 || - lookahead == 2784 || - lookahead == 2785 || - lookahead == 2809 || - (2821 <= lookahead && lookahead <= 2828) || - lookahead == 2831 || - lookahead == 2832 || - (2835 <= lookahead && lookahead <= 2856) || - (2858 <= lookahead && lookahead <= 2864) || - lookahead == 2866 || - lookahead == 2867 || - (2869 <= lookahead && lookahead <= 2873) || - lookahead == 2877 || - lookahead == 2908 || - lookahead == 2909 || - (2911 <= lookahead && lookahead <= 2913) || - lookahead == 2929 || - lookahead == 2947 || - (2949 <= lookahead && lookahead <= 2954) || - (2958 <= lookahead && lookahead <= 2960) || - (2962 <= lookahead && lookahead <= 2965) || - lookahead == 2969 || - lookahead == 2970 || - lookahead == 2972 || - lookahead == 2974 || - lookahead == 2975 || - lookahead == 2979 || - lookahead == 2980 || - (2984 <= lookahead && lookahead <= 2986) || - (2990 <= lookahead && lookahead <= 3001) || - lookahead == 3024 || - (3077 <= lookahead && lookahead <= 3084) || - (3086 <= lookahead && lookahead <= 3088) || - (3090 <= lookahead && lookahead <= 3112) || - (3114 <= lookahead && lookahead <= 3129) || - lookahead == 3133 || - (3160 <= lookahead && lookahead <= 3162) || - lookahead == 3168 || - lookahead == 3169 || - lookahead == 3200 || - (3205 <= lookahead && lookahead <= 3212) || - (3214 <= lookahead && lookahead <= 3216) || - (3218 <= lookahead && lookahead <= 3240) || - (3242 <= lookahead && lookahead <= 3251) || - (3253 <= lookahead && lookahead <= 3257) || - lookahead == 3261 || - lookahead == 3294 || - lookahead == 3296 || - lookahead == 3297 || - lookahead == 3313 || - lookahead == 3314 || - (3332 <= lookahead && lookahead <= 3340) || - (3342 <= lookahead && lookahead <= 3344) || - (3346 <= lookahead && lookahead <= 3386) || - lookahead == 3389 || - lookahead == 3406 || - (3412 <= lookahead && lookahead <= 3414) || - (3423 <= lookahead && lookahead <= 3425) || - (3450 <= lookahead && lookahead <= 3455) || - (3461 <= lookahead && lookahead <= 3478) || - (3482 <= lookahead && lookahead <= 3505) || - (3507 <= lookahead && lookahead <= 3515) || - lookahead == 3517 || - (3520 <= lookahead && lookahead <= 3526) || - (3585 <= lookahead && lookahead <= 3632) || - lookahead == 3634 || - (3648 <= lookahead && lookahead <= 3654) || - lookahead == 3713 || - lookahead == 3714 || - lookahead == 3716 || - (3718 <= lookahead && lookahead <= 3722) || - (3724 <= lookahead && lookahead <= 3747) || - lookahead == 3749 || - (3751 <= lookahead && lookahead <= 3760) || - lookahead == 3762 || - lookahead == 3773 || - (3776 <= lookahead && lookahead <= 3780) || - lookahead == 3782 || - (3804 <= lookahead && lookahead <= 3807) || - lookahead == 3840 || - (3904 <= lookahead && lookahead <= 3911) || - (3913 <= lookahead && lookahead <= 3948) || - (3976 <= lookahead && lookahead <= 3980) || - (4096 <= lookahead && lookahead <= 4138) || - lookahead == 4159 || - (4176 <= lookahead && lookahead <= 4181) || - (4186 <= lookahead && lookahead <= 4189) || - lookahead == 4193 || - lookahead == 4197 || - lookahead == 4198 || - (4206 <= lookahead && lookahead <= 4208) || - (4213 <= lookahead && lookahead <= 4225) || - lookahead == 4238 || - (4256 <= lookahead && lookahead <= 4293) || - lookahead == 4295 || - lookahead == 4301 || - (4304 <= lookahead && lookahead <= 4346) || - (4348 <= lookahead && lookahead <= 4680) || - (4682 <= lookahead && lookahead <= 4685) || - (4688 <= lookahead && lookahead <= 4694) || - lookahead == 4696 || - (4698 <= lookahead && lookahead <= 4701) || - (4704 <= lookahead && lookahead <= 4744) || - (4746 <= lookahead && lookahead <= 4749) || - (4752 <= lookahead && lookahead <= 4784) || - (4786 <= lookahead && lookahead <= 4789) || - (4792 <= lookahead && lookahead <= 4798) || - lookahead == 4800 || - (4802 <= lookahead && lookahead <= 4805) || - (4808 <= lookahead && lookahead <= 4822) || - (4824 <= lookahead && lookahead <= 4880) || - (4882 <= lookahead && lookahead <= 4885) || - (4888 <= lookahead && lookahead <= 4954) || - (4992 <= lookahead && lookahead <= 5007) || - (5024 <= lookahead && lookahead <= 5109) || - (5112 <= lookahead && lookahead <= 5117) || - (5121 <= lookahead && lookahead <= 5740) || - (5743 <= lookahead && lookahead <= 5759) || - (5761 <= lookahead && lookahead <= 5786) || - (5792 <= lookahead && lookahead <= 5866) || - (5870 <= lookahead && lookahead <= 5880) || - (5888 <= lookahead && lookahead <= 5900) || - (5902 <= lookahead && lookahead <= 5905) || - (5920 <= lookahead && lookahead <= 5937) || - (5952 <= lookahead && lookahead <= 5969) || - (5984 <= lookahead && lookahead <= 5996) || - (5998 <= lookahead && lookahead <= 6000) || - (6016 <= lookahead && lookahead <= 6067) || - lookahead == 6103 || - lookahead == 6108 || - (6176 <= lookahead && lookahead <= 6264) || - (6272 <= lookahead && lookahead <= 6312) || - lookahead == 6314 || - (6320 <= lookahead && lookahead <= 6389) || - (6400 <= lookahead && lookahead <= 6430) || - (6480 <= lookahead && lookahead <= 6509) || - (6512 <= lookahead && lookahead <= 6516) || - (6528 <= lookahead && lookahead <= 6571) || - (6576 <= lookahead && lookahead <= 6601) || - (6656 <= lookahead && lookahead <= 6678) || - (6688 <= lookahead && lookahead <= 6740) || - lookahead == 6823 || - (6917 <= lookahead && lookahead <= 6963) || - (6981 <= lookahead && lookahead <= 6987) || - (7043 <= lookahead && lookahead <= 7072) || - lookahead == 7086 || - lookahead == 7087 || - (7098 <= lookahead && lookahead <= 7141) || - (7168 <= lookahead && lookahead <= 7203) || - (7245 <= lookahead && lookahead <= 7247) || - (7258 <= lookahead && lookahead <= 7293) || - (7296 <= lookahead && lookahead <= 7304) || - (7312 <= lookahead && lookahead <= 7354) || - (7357 <= lookahead && lookahead <= 7359) || - (7401 <= lookahead && lookahead <= 7404) || - (7406 <= lookahead && lookahead <= 7411) || - lookahead == 7413 || - lookahead == 7414 || - lookahead == 7418 || - (7424 <= lookahead && lookahead <= 7615) || - (7680 <= lookahead && lookahead <= 7957) || - (7960 <= lookahead && lookahead <= 7965) || - (7968 <= lookahead && lookahead <= 8005) || - (8008 <= lookahead && lookahead <= 8013) || - (8016 <= lookahead && lookahead <= 8023) || - lookahead == 8025 || - lookahead == 8027 || - lookahead == 8029 || - (8031 <= lookahead && lookahead <= 8061) || - (8064 <= lookahead && lookahead <= 8116) || - (8118 <= lookahead && lookahead <= 8124) || - lookahead == 8126 || - (8130 <= lookahead && lookahead <= 8132) || - (8134 <= lookahead && lookahead <= 8140) || - (8144 <= lookahead && lookahead <= 8147) || - (8150 <= lookahead && lookahead <= 8155) || - (8160 <= lookahead && lookahead <= 8172) || - (8178 <= lookahead && lookahead <= 8180) || - (8182 <= lookahead && lookahead <= 8188) || - lookahead == 8305 || - lookahead == 8319 || - (8336 <= lookahead && lookahead <= 8348) || - lookahead == 8450 || - lookahead == 8455 || - (8458 <= lookahead && lookahead <= 8467) || - lookahead == 8469 || - (8472 <= lookahead && lookahead <= 8477) || - lookahead == 8484 || - lookahead == 8486 || - lookahead == 8488 || - (8490 <= lookahead && lookahead <= 8505) || - (8508 <= lookahead && lookahead <= 8511) || - (8517 <= lookahead && lookahead <= 8521) || - lookahead == 8526 || - (8544 <= lookahead && lookahead <= 8584) || - (11264 <= lookahead && lookahead <= 11310) || - (11312 <= lookahead && lookahead <= 11358) || - (11360 <= lookahead && lookahead <= 11492) || - (11499 <= lookahead && lookahead <= 11502) || - lookahead == 11506 || - lookahead == 11507 || - (11520 <= lookahead && lookahead <= 11557) || - lookahead == 11559 || - lookahead == 11565 || - (11568 <= lookahead && lookahead <= 11623) || - lookahead == 11631 || - (11648 <= lookahead && lookahead <= 11670) || - (11680 <= lookahead && lookahead <= 11686) || - (11688 <= lookahead && lookahead <= 11694) || - (11696 <= lookahead && lookahead <= 11702) || - (11704 <= lookahead && lookahead <= 11710) || - (11712 <= lookahead && lookahead <= 11718) || - (11720 <= lookahead && lookahead <= 11726) || - (11728 <= lookahead && lookahead <= 11734) || - (11736 <= lookahead && lookahead <= 11742) || - (12293 <= lookahead && lookahead <= 12295) || - (12321 <= lookahead && lookahead <= 12329) || - (12337 <= lookahead && lookahead <= 12341) || - (12344 <= lookahead && lookahead <= 12348) || - (12353 <= lookahead && lookahead <= 12438) || - (12445 <= lookahead && lookahead <= 12447) || - (12449 <= lookahead && lookahead <= 12538) || - (12540 <= lookahead && lookahead <= 12543) || - (12549 <= lookahead && lookahead <= 12591) || - (12593 <= lookahead && lookahead <= 12686) || - (12704 <= lookahead && lookahead <= 12735) || - (12784 <= lookahead && lookahead <= 12799) || - (13312 <= lookahead && lookahead <= 19903) || - (19968 <= lookahead && lookahead <= 40956) || - (40960 <= lookahead && lookahead <= 42124) || - (42192 <= lookahead && lookahead <= 42237) || - (42240 <= lookahead && lookahead <= 42508) || - (42512 <= lookahead && lookahead <= 42527) || - lookahead == 42538 || - lookahead == 42539 || - (42560 <= lookahead && lookahead <= 42606) || - (42623 <= lookahead && lookahead <= 42653) || - (42656 <= lookahead && lookahead <= 42735) || - (42775 <= lookahead && lookahead <= 42783) || - (42786 <= lookahead && lookahead <= 42888) || - (42891 <= lookahead && lookahead <= 42943) || - (42946 <= lookahead && lookahead <= 42954) || - (42997 <= lookahead && lookahead <= 43009) || - (43011 <= lookahead && lookahead <= 43013) || - (43015 <= lookahead && lookahead <= 43018) || - (43020 <= lookahead && lookahead <= 43042) || - (43072 <= lookahead && lookahead <= 43123) || - (43138 <= lookahead && lookahead <= 43187) || - (43250 <= lookahead && lookahead <= 43255) || - lookahead == 43259 || - lookahead == 43261 || - lookahead == 43262 || - (43274 <= lookahead && lookahead <= 43301) || - (43312 <= lookahead && lookahead <= 43334) || - (43360 <= lookahead && lookahead <= 43388) || - (43396 <= lookahead && lookahead <= 43442) || - lookahead == 43471 || - (43488 <= lookahead && lookahead <= 43492) || - (43494 <= lookahead && lookahead <= 43503) || - (43514 <= lookahead && lookahead <= 43518) || - (43520 <= lookahead && lookahead <= 43560) || - (43584 <= lookahead && lookahead <= 43586) || - (43588 <= lookahead && lookahead <= 43595) || - (43616 <= lookahead && lookahead <= 43638) || - lookahead == 43642 || - (43646 <= lookahead && lookahead <= 43695) || - lookahead == 43697 || - lookahead == 43701 || - lookahead == 43702 || - (43705 <= lookahead && lookahead <= 43709) || - lookahead == 43712 || - lookahead == 43714 || - (43739 <= lookahead && lookahead <= 43741) || - (43744 <= lookahead && lookahead <= 43754) || - (43762 <= lookahead && lookahead <= 43764) || - (43777 <= lookahead && lookahead <= 43782) || - (43785 <= lookahead && lookahead <= 43790) || - (43793 <= lookahead && lookahead <= 43798) || - (43808 <= lookahead && lookahead <= 43814) || - (43816 <= lookahead && lookahead <= 43822) || - (43824 <= lookahead && lookahead <= 43866) || - (43868 <= lookahead && lookahead <= 43881) || - (43888 <= lookahead && lookahead <= 44002) || - (44032 <= lookahead && lookahead <= 55203) || - (55216 <= lookahead && lookahead <= 55238) || - (55243 <= lookahead && lookahead <= 55291) || - (63744 <= lookahead && lookahead <= 64109) || - (64112 <= lookahead && lookahead <= 64217) || - (64256 <= lookahead && lookahead <= 64262) || - (64275 <= lookahead && lookahead <= 64279) || - lookahead == 64285 || - (64287 <= lookahead && lookahead <= 64296) || - (64298 <= lookahead && lookahead <= 64310) || - (64312 <= lookahead && lookahead <= 64316) || - lookahead == 64318 || - lookahead == 64320 || - lookahead == 64321 || - lookahead == 64323 || - lookahead == 64324 || - (64326 <= lookahead && lookahead <= 64433) || - (64467 <= lookahead && lookahead <= 64605) || - (64612 <= lookahead && lookahead <= 64829) || - (64848 <= lookahead && lookahead <= 64911) || - (64914 <= lookahead && lookahead <= 64967) || - (65008 <= lookahead && lookahead <= 65017) || - lookahead == 65137 || - lookahead == 65139 || - lookahead == 65143 || - lookahead == 65145 || - lookahead == 65147 || - lookahead == 65149 || - (65151 <= lookahead && lookahead <= 65276) || - (65313 <= lookahead && lookahead <= 65338) || - (65345 <= lookahead && lookahead <= 65370) || - (65382 <= lookahead && lookahead <= 65437) || - (65440 <= lookahead && lookahead <= 65470) || - (65474 <= lookahead && lookahead <= 65479) || - (65482 <= lookahead && lookahead <= 65487) || - (65490 <= lookahead && lookahead <= 65495) || - (65498 <= lookahead && lookahead <= 65500) || - (65536 <= lookahead && lookahead <= 65547) || - (65549 <= lookahead && lookahead <= 65574) || - (65576 <= lookahead && lookahead <= 65594) || - lookahead == 65596 || - lookahead == 65597 || - (65599 <= lookahead && lookahead <= 65613) || - (65616 <= lookahead && lookahead <= 65629) || - (65664 <= lookahead && lookahead <= 65786) || - (65856 <= lookahead && lookahead <= 65908) || - (66176 <= lookahead && lookahead <= 66204) || - (66208 <= lookahead && lookahead <= 66256) || - (66304 <= lookahead && lookahead <= 66335) || - (66349 <= lookahead && lookahead <= 66378) || - (66384 <= lookahead && lookahead <= 66421) || - (66432 <= lookahead && lookahead <= 66461) || - (66464 <= lookahead && lookahead <= 66499) || - (66504 <= lookahead && lookahead <= 66511) || - (66513 <= lookahead && lookahead <= 66517) || - (66560 <= lookahead && lookahead <= 66717) || - (66736 <= lookahead && lookahead <= 66771) || - (66776 <= lookahead && lookahead <= 66811) || - (66816 <= lookahead && lookahead <= 66855) || - (66864 <= lookahead && lookahead <= 66915) || - (67072 <= lookahead && lookahead <= 67382) || - (67392 <= lookahead && lookahead <= 67413) || - (67424 <= lookahead && lookahead <= 67431) || - (67584 <= lookahead && lookahead <= 67589) || - lookahead == 67592 || - (67594 <= lookahead && lookahead <= 67637) || - lookahead == 67639 || - lookahead == 67640 || - lookahead == 67644 || - (67647 <= lookahead && lookahead <= 67669) || - (67680 <= lookahead && lookahead <= 67702) || - (67712 <= lookahead && lookahead <= 67742) || - (67808 <= lookahead && lookahead <= 67826) || - lookahead == 67828 || - lookahead == 67829 || - (67840 <= lookahead && lookahead <= 67861) || - (67872 <= lookahead && lookahead <= 67897) || - (67968 <= lookahead && lookahead <= 68023) || - lookahead == 68030 || - lookahead == 68031 || - lookahead == 68096 || - (68112 <= lookahead && lookahead <= 68115) || - (68117 <= lookahead && lookahead <= 68119) || - (68121 <= lookahead && lookahead <= 68149) || - (68192 <= lookahead && lookahead <= 68220) || - (68224 <= lookahead && lookahead <= 68252) || - (68288 <= lookahead && lookahead <= 68295) || - (68297 <= lookahead && lookahead <= 68324) || - (68352 <= lookahead && lookahead <= 68405) || - (68416 <= lookahead && lookahead <= 68437) || - (68448 <= lookahead && lookahead <= 68466) || - (68480 <= lookahead && lookahead <= 68497) || - (68608 <= lookahead && lookahead <= 68680) || - (68736 <= lookahead && lookahead <= 68786) || - (68800 <= lookahead && lookahead <= 68850) || - (68864 <= lookahead && lookahead <= 68899) || - (69248 <= lookahead && lookahead <= 69289) || - lookahead == 69296 || - lookahead == 69297 || - (69376 <= lookahead && lookahead <= 69404) || - lookahead == 69415 || - (69424 <= lookahead && lookahead <= 69445) || - (69552 <= lookahead && lookahead <= 69572) || - (69600 <= lookahead && lookahead <= 69622) || - (69635 <= lookahead && lookahead <= 69687) || - (69763 <= lookahead && lookahead <= 69807) || - (69840 <= lookahead && lookahead <= 69864) || - (69891 <= lookahead && lookahead <= 69926) || - lookahead == 69956 || - lookahead == 69959 || - (69968 <= lookahead && lookahead <= 70002) || - lookahead == 70006 || - (70019 <= lookahead && lookahead <= 70066) || - (70081 <= lookahead && lookahead <= 70084) || - lookahead == 70106 || - lookahead == 70108 || - (70144 <= lookahead && lookahead <= 70161) || - (70163 <= lookahead && lookahead <= 70187) || - (70272 <= lookahead && lookahead <= 70278) || - lookahead == 70280 || - (70282 <= lookahead && lookahead <= 70285) || - (70287 <= lookahead && lookahead <= 70301) || - (70303 <= lookahead && lookahead <= 70312) || - (70320 <= lookahead && lookahead <= 70366) || - (70405 <= lookahead && lookahead <= 70412) || - lookahead == 70415 || - lookahead == 70416 || - (70419 <= lookahead && lookahead <= 70440) || - (70442 <= lookahead && lookahead <= 70448) || - lookahead == 70450 || - lookahead == 70451 || - (70453 <= lookahead && lookahead <= 70457) || - lookahead == 70461 || - lookahead == 70480 || - (70493 <= lookahead && lookahead <= 70497) || - (70656 <= lookahead && lookahead <= 70708) || - (70727 <= lookahead && lookahead <= 70730) || - (70751 <= lookahead && lookahead <= 70753) || - (70784 <= lookahead && lookahead <= 70831) || - lookahead == 70852 || - lookahead == 70853 || - lookahead == 70855 || - (71040 <= lookahead && lookahead <= 71086) || - (71128 <= lookahead && lookahead <= 71131) || - (71168 <= lookahead && lookahead <= 71215) || - lookahead == 71236 || - (71296 <= lookahead && lookahead <= 71338) || - lookahead == 71352 || - (71424 <= lookahead && lookahead <= 71450) || - (71680 <= lookahead && lookahead <= 71723) || - (71840 <= lookahead && lookahead <= 71903) || - (71935 <= lookahead && lookahead <= 71942) || - lookahead == 71945 || - (71948 <= lookahead && lookahead <= 71955) || - lookahead == 71957 || - lookahead == 71958 || - (71960 <= lookahead && lookahead <= 71983) || - lookahead == 71999 || - lookahead == 72001 || - (72096 <= lookahead && lookahead <= 72103) || - (72106 <= lookahead && lookahead <= 72144) || - lookahead == 72161 || - lookahead == 72163 || - lookahead == 72192 || - (72203 <= lookahead && lookahead <= 72242) || - lookahead == 72250 || - lookahead == 72272 || - (72284 <= lookahead && lookahead <= 72329) || - lookahead == 72349 || - (72384 <= lookahead && lookahead <= 72440) || - (72704 <= lookahead && lookahead <= 72712) || - (72714 <= lookahead && lookahead <= 72750) || - lookahead == 72768 || - (72818 <= lookahead && lookahead <= 72847) || - (72960 <= lookahead && lookahead <= 72966) || - lookahead == 72968 || - lookahead == 72969 || - (72971 <= lookahead && lookahead <= 73008) || - lookahead == 73030 || - (73056 <= lookahead && lookahead <= 73061) || - lookahead == 73063 || - lookahead == 73064 || - (73066 <= lookahead && lookahead <= 73097) || - lookahead == 73112 || - (73440 <= lookahead && lookahead <= 73458) || - lookahead == 73648 || - (73728 <= lookahead && lookahead <= 74649) || - (74752 <= lookahead && lookahead <= 74862) || - (74880 <= lookahead && lookahead <= 75075) || - (77824 <= lookahead && lookahead <= 78894) || - (82944 <= lookahead && lookahead <= 83526) || - (92160 <= lookahead && lookahead <= 92728) || - (92736 <= lookahead && lookahead <= 92766) || - (92880 <= lookahead && lookahead <= 92909) || - (92928 <= lookahead && lookahead <= 92975) || - (92992 <= lookahead && lookahead <= 92995) || - (93027 <= lookahead && lookahead <= 93047) || - (93053 <= lookahead && lookahead <= 93071) || - (93760 <= lookahead && lookahead <= 93823) || - (93952 <= lookahead && lookahead <= 94026) || - lookahead == 94032 || - (94099 <= lookahead && lookahead <= 94111) || - lookahead == 94176 || - lookahead == 94177 || - lookahead == 94179 || - (94208 <= lookahead && lookahead <= 100343) || - (100352 <= lookahead && lookahead <= 101589) || - (101632 <= lookahead && lookahead <= 101640) || - (110592 <= lookahead && lookahead <= 110878) || - (110928 <= lookahead && lookahead <= 110930) || - (110948 <= lookahead && lookahead <= 110951) || - (110960 <= lookahead && lookahead <= 111355) || - (113664 <= lookahead && lookahead <= 113770) || - (113776 <= lookahead && lookahead <= 113788) || - (113792 <= lookahead && lookahead <= 113800) || - (113808 <= lookahead && lookahead <= 113817) || - (119808 <= lookahead && lookahead <= 119892) || - (119894 <= lookahead && lookahead <= 119964) || - lookahead == 119966 || - lookahead == 119967 || - lookahead == 119970 || - lookahead == 119973 || - lookahead == 119974 || - (119977 <= lookahead && lookahead <= 119980) || - (119982 <= lookahead && lookahead <= 119993) || - lookahead == 119995 || - (119997 <= lookahead && lookahead <= 120003) || - (120005 <= lookahead && lookahead <= 120069) || - (120071 <= lookahead && lookahead <= 120074) || - (120077 <= lookahead && lookahead <= 120084) || - (120086 <= lookahead && lookahead <= 120092) || - (120094 <= lookahead && lookahead <= 120121) || - (120123 <= lookahead && lookahead <= 120126) || - (120128 <= lookahead && lookahead <= 120132) || - lookahead == 120134 || - (120138 <= lookahead && lookahead <= 120144) || - (120146 <= lookahead && lookahead <= 120485) || - (120488 <= lookahead && lookahead <= 120512) || - (120514 <= lookahead && lookahead <= 120538) || - (120540 <= lookahead && lookahead <= 120570) || - (120572 <= lookahead && lookahead <= 120596) || - (120598 <= lookahead && lookahead <= 120628) || - (120630 <= lookahead && lookahead <= 120654) || - (120656 <= lookahead && lookahead <= 120686) || - (120688 <= lookahead && lookahead <= 120712) || - (120714 <= lookahead && lookahead <= 120744) || - (120746 <= lookahead && lookahead <= 120770) || - (120772 <= lookahead && lookahead <= 120779) || - (123136 <= lookahead && lookahead <= 123180) || - (123191 <= lookahead && lookahead <= 123197) || - lookahead == 123214 || - (123584 <= lookahead && lookahead <= 123627) || - (124928 <= lookahead && lookahead <= 125124) || - (125184 <= lookahead && lookahead <= 125251) || - lookahead == 125259 || - (126464 <= lookahead && lookahead <= 126467) || - (126469 <= lookahead && lookahead <= 126495) || - lookahead == 126497 || - lookahead == 126498 || - lookahead == 126500 || - lookahead == 126503 || - (126505 <= lookahead && lookahead <= 126514) || - (126516 <= lookahead && lookahead <= 126519) || - lookahead == 126521 || - lookahead == 126523 || - lookahead == 126530 || - lookahead == 126535 || - lookahead == 126537 || - lookahead == 126539 || - (126541 <= lookahead && lookahead <= 126543) || - lookahead == 126545 || - lookahead == 126546 || - lookahead == 126548 || - lookahead == 126551 || - lookahead == 126553 || - lookahead == 126555 || - lookahead == 126557 || - lookahead == 126559 || - lookahead == 126561 || - lookahead == 126562 || - lookahead == 126564 || - (126567 <= lookahead && lookahead <= 126570) || - (126572 <= lookahead && lookahead <= 126578) || - (126580 <= lookahead && lookahead <= 126583) || - (126585 <= lookahead && lookahead <= 126588) || - lookahead == 126590 || - (126592 <= lookahead && lookahead <= 126601) || - (126603 <= lookahead && lookahead <= 126619) || - (126625 <= lookahead && lookahead <= 126627) || - (126629 <= lookahead && lookahead <= 126633) || - (126635 <= lookahead && lookahead <= 126651) || - (131072 <= lookahead && lookahead <= 173789) || - (173824 <= lookahead && lookahead <= 177972) || - (177984 <= lookahead && lookahead <= 178205) || - (178208 <= lookahead && lookahead <= 183969) || - (183984 <= lookahead && lookahead <= 191456) || - (194560 <= lookahead && lookahead <= 195101) || - (196608 <= lookahead && lookahead <= 201546)) ADVANCE(166); - END_STATE(); - case 1: - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(1) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 2: - if (lookahead == '!') ADVANCE(89); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(2) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 3: - if (lookahead == '!') ADVANCE(89); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(3) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 4: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(148); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '\\') ADVANCE(35); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(8) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 5: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(112); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 6: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(109); - if (lookahead == '.') ADVANCE(21); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '[') ADVANCE(66); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(6) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 7: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(32); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(7) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 8: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == '>') ADVANCE(98); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(8) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 9: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '@') ADVANCE(137); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(9) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 10: - if (lookahead == '!') ADVANCE(31); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(10) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 11: - if (lookahead == '"') ADVANCE(147); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '/') ADVANCE(81); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(70); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '_') ADVANCE(82); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(11) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (('!' <= lookahead && lookahead <= '@') || - lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(83); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); - END_STATE(); - case 12: - if (lookahead == '"') ADVANCE(147); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '/') ADVANCE(81); - if (lookahead == '0') ADVANCE(142); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '_') ADVANCE(82); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (('!' <= lookahead && lookahead <= '@') || - lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(83); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); - END_STATE(); - case 13: - if (lookahead == '"') ADVANCE(147); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == 'b') ADVANCE(154); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(13) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 14: - if (lookahead == '#') ADVANCE(87); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(68); - if (lookahead == '<') ADVANCE(96); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(14) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 15: - if (lookahead == '\'') ADVANCE(149); - END_STATE(); - case 16: - if (lookahead == '\'') ADVANCE(149); - if (lookahead == '\\') ADVANCE(36); - if (lookahead != 0) ADVANCE(15); - END_STATE(); - case 17: - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(32); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(98); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(17) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 18: - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(73); - if (lookahead != 0) ADVANCE(75); - END_STATE(); - case 19: - if (lookahead == '.') ADVANCE(103); - if (lookahead == '=') ADVANCE(108); - END_STATE(); - case 20: - if (lookahead == '.') ADVANCE(105); - END_STATE(); - case 21: - if (lookahead == '.') ADVANCE(106); - END_STATE(); - case 22: - if (lookahead == '.') ADVANCE(19); - END_STATE(); - case 23: - if (lookahead == '/') ADVANCE(151); - END_STATE(); - case 24: - if (lookahead == '1') ADVANCE(26); - if (lookahead == '3') ADVANCE(25); - if (lookahead == '6') ADVANCE(28); - if (lookahead == '8') ADVANCE(138); - if (lookahead == 's') ADVANCE(34); - END_STATE(); - case 25: - if (lookahead == '2') ADVANCE(138); - END_STATE(); - case 26: - if (lookahead == '2') ADVANCE(29); - if (lookahead == '6') ADVANCE(138); - END_STATE(); - case 27: - if (lookahead == '3') ADVANCE(25); - if (lookahead == '6') ADVANCE(28); - END_STATE(); - case 28: - if (lookahead == '4') ADVANCE(138); - END_STATE(); - case 29: - if (lookahead == '8') ADVANCE(138); - END_STATE(); - case 30: - if (lookahead == ':') ADVANCE(100); - END_STATE(); - case 31: - if (lookahead == '=') ADVANCE(119); - END_STATE(); - case 32: - if (lookahead == '>') ADVANCE(95); - END_STATE(); - case 33: - if (lookahead == 'e') ADVANCE(138); - END_STATE(); - case 34: - if (lookahead == 'i') ADVANCE(37); - END_STATE(); - case 35: - if (lookahead == 'u') ADVANCE(38); - if (lookahead == 'x') ADVANCE(49); - if (lookahead != 0) ADVANCE(150); - END_STATE(); - case 36: - if (lookahead == 'u') ADVANCE(39); - if (lookahead == 'x') ADVANCE(50); - if (lookahead != 0) ADVANCE(15); - END_STATE(); - case 37: - if (lookahead == 'z') ADVANCE(33); - END_STATE(); - case 38: - if (lookahead == '{') ADVANCE(47); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); - END_STATE(); - case 39: - if (lookahead == '{') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); - END_STATE(); - case 40: - if (lookahead == '}') ADVANCE(15); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); - END_STATE(); - case 41: - if (lookahead == '}') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); - END_STATE(); - case 42: - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(143); - END_STATE(); - case 43: - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(144); - END_STATE(); - case 44: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(15); - END_STATE(); - case 45: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); - END_STATE(); - case 46: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); - END_STATE(); - case 47: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); - END_STATE(); - case 48: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); - END_STATE(); - case 49: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); - END_STATE(); - case 50: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); - END_STATE(); - case 51: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); - END_STATE(); - case 52: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(146); - END_STATE(); - case 53: - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); - END_STATE(); - case 54: - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 55: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '@') ADVANCE(137); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(55) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 56: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(91); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(56) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 57: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(112); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(57) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); - END_STATE(); - case 58: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 59: - ACCEPT_TOKEN(anon_sym_SEMI); - END_STATE(); - case 60: - ACCEPT_TOKEN(anon_sym_macro_rules_BANG); - END_STATE(); - case 61: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 62: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 63: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 64: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 65: - ACCEPT_TOKEN(anon_sym_EQ_GT); - END_STATE(); - case 66: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 67: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 68: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 69: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(100); - END_STATE(); - case 70: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '!' || - lookahead == '#' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || - (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '_' || - lookahead == '|' || - lookahead == '~') ADVANCE(83); - END_STATE(); - case 71: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); - END_STATE(); - case 72: - ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '\n') ADVANCE(75); - if (lookahead == '*' || - lookahead == '+' || - lookahead == '?') ADVANCE(151); - if (lookahead != 0) ADVANCE(72); - END_STATE(); - case 73: - ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(73); - if (lookahead != 0 && - lookahead != '*' && - lookahead != '+' && - lookahead != '?') ADVANCE(75); - END_STATE(); - case 74: - ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '/') ADVANCE(72); - if (lookahead != 0 && - lookahead != '*' && - lookahead != '+' && - lookahead != '?') ADVANCE(75); - END_STATE(); - case 75: - ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead != 0 && - lookahead != '*' && - lookahead != '+' && - lookahead != '?') ADVANCE(75); - END_STATE(); - case 76: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 77: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(126); - END_STATE(); - case 78: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 79: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(128); - END_STATE(); - case 80: - ACCEPT_TOKEN(anon_sym_QMARK); - END_STATE(); - case 81: - ACCEPT_TOKEN(aux_sym__non_special_token_token1); - if (lookahead == '/') ADVANCE(84); - if (lookahead == '!' || - lookahead == '#' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '_' || - lookahead == '|' || - lookahead == '~') ADVANCE(83); - END_STATE(); - case 82: - ACCEPT_TOKEN(aux_sym__non_special_token_token1); - if (lookahead == '_') ADVANCE(82); - if (lookahead == '!' || - lookahead == '#' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || - (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '|' || - lookahead == '~') ADVANCE(83); - if (('0' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 170 || - lookahead == 181 || - lookahead == 183 || - lookahead == 186 || - (192 <= lookahead && lookahead <= 214) || - (216 <= lookahead && lookahead <= 246) || - (248 <= lookahead && lookahead <= 705) || - (710 <= lookahead && lookahead <= 721) || - (736 <= lookahead && lookahead <= 740) || - lookahead == 748 || - lookahead == 750 || - (768 <= lookahead && lookahead <= 884) || - lookahead == 886 || - lookahead == 887 || - (891 <= lookahead && lookahead <= 893) || - lookahead == 895 || - (902 <= lookahead && lookahead <= 906) || - lookahead == 908 || - (910 <= lookahead && lookahead <= 929) || - (931 <= lookahead && lookahead <= 1013) || - (1015 <= lookahead && lookahead <= 1153) || - (1155 <= lookahead && lookahead <= 1159) || - (1162 <= lookahead && lookahead <= 1327) || - (1329 <= lookahead && lookahead <= 1366) || - lookahead == 1369 || - (1376 <= lookahead && lookahead <= 1416) || - (1425 <= lookahead && lookahead <= 1469) || - lookahead == 1471 || - lookahead == 1473 || - lookahead == 1474 || - lookahead == 1476 || - lookahead == 1477 || - lookahead == 1479 || - (1488 <= lookahead && lookahead <= 1514) || - (1519 <= lookahead && lookahead <= 1522) || - (1552 <= lookahead && lookahead <= 1562) || - (1568 <= lookahead && lookahead <= 1641) || - (1646 <= lookahead && lookahead <= 1747) || - (1749 <= lookahead && lookahead <= 1756) || - (1759 <= lookahead && lookahead <= 1768) || - (1770 <= lookahead && lookahead <= 1788) || - lookahead == 1791 || - (1808 <= lookahead && lookahead <= 1866) || - (1869 <= lookahead && lookahead <= 1969) || - (1984 <= lookahead && lookahead <= 2037) || - lookahead == 2042 || - lookahead == 2045 || - (2048 <= lookahead && lookahead <= 2093) || - (2112 <= lookahead && lookahead <= 2139) || - (2144 <= lookahead && lookahead <= 2154) || - (2208 <= lookahead && lookahead <= 2228) || - (2230 <= lookahead && lookahead <= 2247) || - (2259 <= lookahead && lookahead <= 2273) || - (2275 <= lookahead && lookahead <= 2403) || - (2406 <= lookahead && lookahead <= 2415) || - (2417 <= lookahead && lookahead <= 2435) || - (2437 <= lookahead && lookahead <= 2444) || - lookahead == 2447 || - lookahead == 2448 || - (2451 <= lookahead && lookahead <= 2472) || - (2474 <= lookahead && lookahead <= 2480) || - lookahead == 2482 || - (2486 <= lookahead && lookahead <= 2489) || - (2492 <= lookahead && lookahead <= 2500) || - lookahead == 2503 || - lookahead == 2504 || - (2507 <= lookahead && lookahead <= 2510) || - lookahead == 2519 || - lookahead == 2524 || - lookahead == 2525 || - (2527 <= lookahead && lookahead <= 2531) || - (2534 <= lookahead && lookahead <= 2545) || - lookahead == 2556 || - lookahead == 2558 || - (2561 <= lookahead && lookahead <= 2563) || - (2565 <= lookahead && lookahead <= 2570) || - lookahead == 2575 || - lookahead == 2576 || - (2579 <= lookahead && lookahead <= 2600) || - (2602 <= lookahead && lookahead <= 2608) || - lookahead == 2610 || - lookahead == 2611 || - lookahead == 2613 || - lookahead == 2614 || - lookahead == 2616 || - lookahead == 2617 || - lookahead == 2620 || - (2622 <= lookahead && lookahead <= 2626) || - lookahead == 2631 || - lookahead == 2632 || - (2635 <= lookahead && lookahead <= 2637) || - lookahead == 2641 || - (2649 <= lookahead && lookahead <= 2652) || - lookahead == 2654 || - (2662 <= lookahead && lookahead <= 2677) || - (2689 <= lookahead && lookahead <= 2691) || - (2693 <= lookahead && lookahead <= 2701) || - (2703 <= lookahead && lookahead <= 2705) || - (2707 <= lookahead && lookahead <= 2728) || - (2730 <= lookahead && lookahead <= 2736) || - lookahead == 2738 || - lookahead == 2739 || - (2741 <= lookahead && lookahead <= 2745) || - (2748 <= lookahead && lookahead <= 2757) || - (2759 <= lookahead && lookahead <= 2761) || - (2763 <= lookahead && lookahead <= 2765) || - lookahead == 2768 || - (2784 <= lookahead && lookahead <= 2787) || - (2790 <= lookahead && lookahead <= 2799) || - (2809 <= lookahead && lookahead <= 2815) || - (2817 <= lookahead && lookahead <= 2819) || - (2821 <= lookahead && lookahead <= 2828) || - lookahead == 2831 || - lookahead == 2832 || - (2835 <= lookahead && lookahead <= 2856) || - (2858 <= lookahead && lookahead <= 2864) || - lookahead == 2866 || - lookahead == 2867 || - (2869 <= lookahead && lookahead <= 2873) || - (2876 <= lookahead && lookahead <= 2884) || - lookahead == 2887 || - lookahead == 2888 || - (2891 <= lookahead && lookahead <= 2893) || - (2901 <= lookahead && lookahead <= 2903) || - lookahead == 2908 || - lookahead == 2909 || - (2911 <= lookahead && lookahead <= 2915) || - (2918 <= lookahead && lookahead <= 2927) || - lookahead == 2929 || - lookahead == 2946 || - lookahead == 2947 || - (2949 <= lookahead && lookahead <= 2954) || - (2958 <= lookahead && lookahead <= 2960) || - (2962 <= lookahead && lookahead <= 2965) || - lookahead == 2969 || - lookahead == 2970 || - lookahead == 2972 || - lookahead == 2974 || - lookahead == 2975 || - lookahead == 2979 || - lookahead == 2980 || - (2984 <= lookahead && lookahead <= 2986) || - (2990 <= lookahead && lookahead <= 3001) || - (3006 <= lookahead && lookahead <= 3010) || - (3014 <= lookahead && lookahead <= 3016) || - (3018 <= lookahead && lookahead <= 3021) || - lookahead == 3024 || - lookahead == 3031 || - (3046 <= lookahead && lookahead <= 3055) || - (3072 <= lookahead && lookahead <= 3084) || - (3086 <= lookahead && lookahead <= 3088) || - (3090 <= lookahead && lookahead <= 3112) || - (3114 <= lookahead && lookahead <= 3129) || - (3133 <= lookahead && lookahead <= 3140) || - (3142 <= lookahead && lookahead <= 3144) || - (3146 <= lookahead && lookahead <= 3149) || - lookahead == 3157 || - lookahead == 3158 || - (3160 <= lookahead && lookahead <= 3162) || - (3168 <= lookahead && lookahead <= 3171) || - (3174 <= lookahead && lookahead <= 3183) || - (3200 <= lookahead && lookahead <= 3203) || - (3205 <= lookahead && lookahead <= 3212) || - (3214 <= lookahead && lookahead <= 3216) || - (3218 <= lookahead && lookahead <= 3240) || - (3242 <= lookahead && lookahead <= 3251) || - (3253 <= lookahead && lookahead <= 3257) || - (3260 <= lookahead && lookahead <= 3268) || - (3270 <= lookahead && lookahead <= 3272) || - (3274 <= lookahead && lookahead <= 3277) || - lookahead == 3285 || - lookahead == 3286 || - lookahead == 3294 || - (3296 <= lookahead && lookahead <= 3299) || - (3302 <= lookahead && lookahead <= 3311) || - lookahead == 3313 || - lookahead == 3314 || - (3328 <= lookahead && lookahead <= 3340) || - (3342 <= lookahead && lookahead <= 3344) || - (3346 <= lookahead && lookahead <= 3396) || - (3398 <= lookahead && lookahead <= 3400) || - (3402 <= lookahead && lookahead <= 3406) || - (3412 <= lookahead && lookahead <= 3415) || - (3423 <= lookahead && lookahead <= 3427) || - (3430 <= lookahead && lookahead <= 3439) || - (3450 <= lookahead && lookahead <= 3455) || - (3457 <= lookahead && lookahead <= 3459) || - (3461 <= lookahead && lookahead <= 3478) || - (3482 <= lookahead && lookahead <= 3505) || - (3507 <= lookahead && lookahead <= 3515) || - lookahead == 3517 || - (3520 <= lookahead && lookahead <= 3526) || - lookahead == 3530 || - (3535 <= lookahead && lookahead <= 3540) || - lookahead == 3542 || - (3544 <= lookahead && lookahead <= 3551) || - (3558 <= lookahead && lookahead <= 3567) || - lookahead == 3570 || - lookahead == 3571 || - (3585 <= lookahead && lookahead <= 3642) || - (3648 <= lookahead && lookahead <= 3662) || - (3664 <= lookahead && lookahead <= 3673) || - lookahead == 3713 || - lookahead == 3714 || - lookahead == 3716 || - (3718 <= lookahead && lookahead <= 3722) || - (3724 <= lookahead && lookahead <= 3747) || - lookahead == 3749 || - (3751 <= lookahead && lookahead <= 3773) || - (3776 <= lookahead && lookahead <= 3780) || - lookahead == 3782 || - (3784 <= lookahead && lookahead <= 3789) || - (3792 <= lookahead && lookahead <= 3801) || - (3804 <= lookahead && lookahead <= 3807) || - lookahead == 3840 || - lookahead == 3864 || - lookahead == 3865 || - (3872 <= lookahead && lookahead <= 3881) || - lookahead == 3893 || - lookahead == 3895 || - lookahead == 3897 || - (3902 <= lookahead && lookahead <= 3911) || - (3913 <= lookahead && lookahead <= 3948) || - (3953 <= lookahead && lookahead <= 3972) || - (3974 <= lookahead && lookahead <= 3991) || - (3993 <= lookahead && lookahead <= 4028) || - lookahead == 4038 || - (4096 <= lookahead && lookahead <= 4169) || - (4176 <= lookahead && lookahead <= 4253) || - (4256 <= lookahead && lookahead <= 4293) || - lookahead == 4295 || - lookahead == 4301 || - (4304 <= lookahead && lookahead <= 4346) || - (4348 <= lookahead && lookahead <= 4680) || - (4682 <= lookahead && lookahead <= 4685) || - (4688 <= lookahead && lookahead <= 4694) || - lookahead == 4696 || - (4698 <= lookahead && lookahead <= 4701) || - (4704 <= lookahead && lookahead <= 4744) || - (4746 <= lookahead && lookahead <= 4749) || - (4752 <= lookahead && lookahead <= 4784) || - (4786 <= lookahead && lookahead <= 4789) || - (4792 <= lookahead && lookahead <= 4798) || - lookahead == 4800 || - (4802 <= lookahead && lookahead <= 4805) || - (4808 <= lookahead && lookahead <= 4822) || - (4824 <= lookahead && lookahead <= 4880) || - (4882 <= lookahead && lookahead <= 4885) || - (4888 <= lookahead && lookahead <= 4954) || - (4957 <= lookahead && lookahead <= 4959) || - (4969 <= lookahead && lookahead <= 4977) || - (4992 <= lookahead && lookahead <= 5007) || - (5024 <= lookahead && lookahead <= 5109) || - (5112 <= lookahead && lookahead <= 5117) || - (5121 <= lookahead && lookahead <= 5740) || - (5743 <= lookahead && lookahead <= 5759) || - (5761 <= lookahead && lookahead <= 5786) || - (5792 <= lookahead && lookahead <= 5866) || - (5870 <= lookahead && lookahead <= 5880) || - (5888 <= lookahead && lookahead <= 5900) || - (5902 <= lookahead && lookahead <= 5908) || - (5920 <= lookahead && lookahead <= 5940) || - (5952 <= lookahead && lookahead <= 5971) || - (5984 <= lookahead && lookahead <= 5996) || - (5998 <= lookahead && lookahead <= 6000) || - lookahead == 6002 || - lookahead == 6003 || - (6016 <= lookahead && lookahead <= 6099) || - lookahead == 6103 || - lookahead == 6108 || - lookahead == 6109 || - (6112 <= lookahead && lookahead <= 6121) || - (6155 <= lookahead && lookahead <= 6157) || - (6160 <= lookahead && lookahead <= 6169) || - (6176 <= lookahead && lookahead <= 6264) || - (6272 <= lookahead && lookahead <= 6314) || - (6320 <= lookahead && lookahead <= 6389) || - (6400 <= lookahead && lookahead <= 6430) || - (6432 <= lookahead && lookahead <= 6443) || - (6448 <= lookahead && lookahead <= 6459) || - (6470 <= lookahead && lookahead <= 6509) || - (6512 <= lookahead && lookahead <= 6516) || - (6528 <= lookahead && lookahead <= 6571) || - (6576 <= lookahead && lookahead <= 6601) || - (6608 <= lookahead && lookahead <= 6618) || - (6656 <= lookahead && lookahead <= 6683) || - (6688 <= lookahead && lookahead <= 6750) || - (6752 <= lookahead && lookahead <= 6780) || - (6783 <= lookahead && lookahead <= 6793) || - (6800 <= lookahead && lookahead <= 6809) || - lookahead == 6823 || - (6832 <= lookahead && lookahead <= 6845) || - lookahead == 6847 || - lookahead == 6848 || - (6912 <= lookahead && lookahead <= 6987) || - (6992 <= lookahead && lookahead <= 7001) || - (7019 <= lookahead && lookahead <= 7027) || - (7040 <= lookahead && lookahead <= 7155) || - (7168 <= lookahead && lookahead <= 7223) || - (7232 <= lookahead && lookahead <= 7241) || - (7245 <= lookahead && lookahead <= 7293) || - (7296 <= lookahead && lookahead <= 7304) || - (7312 <= lookahead && lookahead <= 7354) || - (7357 <= lookahead && lookahead <= 7359) || - (7376 <= lookahead && lookahead <= 7378) || - (7380 <= lookahead && lookahead <= 7418) || - (7424 <= lookahead && lookahead <= 7673) || - (7675 <= lookahead && lookahead <= 7957) || - (7960 <= lookahead && lookahead <= 7965) || - (7968 <= lookahead && lookahead <= 8005) || - (8008 <= lookahead && lookahead <= 8013) || - (8016 <= lookahead && lookahead <= 8023) || - lookahead == 8025 || - lookahead == 8027 || - lookahead == 8029 || - (8031 <= lookahead && lookahead <= 8061) || - (8064 <= lookahead && lookahead <= 8116) || - (8118 <= lookahead && lookahead <= 8124) || - lookahead == 8126 || - (8130 <= lookahead && lookahead <= 8132) || - (8134 <= lookahead && lookahead <= 8140) || - (8144 <= lookahead && lookahead <= 8147) || - (8150 <= lookahead && lookahead <= 8155) || - (8160 <= lookahead && lookahead <= 8172) || - (8178 <= lookahead && lookahead <= 8180) || - (8182 <= lookahead && lookahead <= 8188) || - lookahead == 8255 || - lookahead == 8256 || - lookahead == 8276 || - lookahead == 8305 || - lookahead == 8319 || - (8336 <= lookahead && lookahead <= 8348) || - (8400 <= lookahead && lookahead <= 8412) || - lookahead == 8417 || - (8421 <= lookahead && lookahead <= 8432) || - lookahead == 8450 || - lookahead == 8455 || - (8458 <= lookahead && lookahead <= 8467) || - lookahead == 8469 || - (8472 <= lookahead && lookahead <= 8477) || - lookahead == 8484 || - lookahead == 8486 || - lookahead == 8488 || - (8490 <= lookahead && lookahead <= 8505) || - (8508 <= lookahead && lookahead <= 8511) || - (8517 <= lookahead && lookahead <= 8521) || - lookahead == 8526 || - (8544 <= lookahead && lookahead <= 8584) || - (11264 <= lookahead && lookahead <= 11310) || - (11312 <= lookahead && lookahead <= 11358) || - (11360 <= lookahead && lookahead <= 11492) || - (11499 <= lookahead && lookahead <= 11507) || - (11520 <= lookahead && lookahead <= 11557) || - lookahead == 11559 || - lookahead == 11565 || - (11568 <= lookahead && lookahead <= 11623) || - lookahead == 11631 || - (11647 <= lookahead && lookahead <= 11670) || - (11680 <= lookahead && lookahead <= 11686) || - (11688 <= lookahead && lookahead <= 11694) || - (11696 <= lookahead && lookahead <= 11702) || - (11704 <= lookahead && lookahead <= 11710) || - (11712 <= lookahead && lookahead <= 11718) || - (11720 <= lookahead && lookahead <= 11726) || - (11728 <= lookahead && lookahead <= 11734) || - (11736 <= lookahead && lookahead <= 11742) || - (11744 <= lookahead && lookahead <= 11775) || - (12293 <= lookahead && lookahead <= 12295) || - (12321 <= lookahead && lookahead <= 12335) || - (12337 <= lookahead && lookahead <= 12341) || - (12344 <= lookahead && lookahead <= 12348) || - (12353 <= lookahead && lookahead <= 12438) || - lookahead == 12441 || - lookahead == 12442 || - (12445 <= lookahead && lookahead <= 12447) || - (12449 <= lookahead && lookahead <= 12538) || - (12540 <= lookahead && lookahead <= 12543) || - (12549 <= lookahead && lookahead <= 12591) || - (12593 <= lookahead && lookahead <= 12686) || - (12704 <= lookahead && lookahead <= 12735) || - (12784 <= lookahead && lookahead <= 12799) || - (13312 <= lookahead && lookahead <= 19903) || - (19968 <= lookahead && lookahead <= 40956) || - (40960 <= lookahead && lookahead <= 42124) || - (42192 <= lookahead && lookahead <= 42237) || - (42240 <= lookahead && lookahead <= 42508) || - (42512 <= lookahead && lookahead <= 42539) || - (42560 <= lookahead && lookahead <= 42607) || - (42612 <= lookahead && lookahead <= 42621) || - (42623 <= lookahead && lookahead <= 42737) || - (42775 <= lookahead && lookahead <= 42783) || - (42786 <= lookahead && lookahead <= 42888) || - (42891 <= lookahead && lookahead <= 42943) || - (42946 <= lookahead && lookahead <= 42954) || - (42997 <= lookahead && lookahead <= 43047) || - lookahead == 43052 || - (43072 <= lookahead && lookahead <= 43123) || - (43136 <= lookahead && lookahead <= 43205) || - (43216 <= lookahead && lookahead <= 43225) || - (43232 <= lookahead && lookahead <= 43255) || - lookahead == 43259 || - (43261 <= lookahead && lookahead <= 43309) || - (43312 <= lookahead && lookahead <= 43347) || - (43360 <= lookahead && lookahead <= 43388) || - (43392 <= lookahead && lookahead <= 43456) || - (43471 <= lookahead && lookahead <= 43481) || - (43488 <= lookahead && lookahead <= 43518) || - (43520 <= lookahead && lookahead <= 43574) || - (43584 <= lookahead && lookahead <= 43597) || - (43600 <= lookahead && lookahead <= 43609) || - (43616 <= lookahead && lookahead <= 43638) || - (43642 <= lookahead && lookahead <= 43714) || - (43739 <= lookahead && lookahead <= 43741) || - (43744 <= lookahead && lookahead <= 43759) || - (43762 <= lookahead && lookahead <= 43766) || - (43777 <= lookahead && lookahead <= 43782) || - (43785 <= lookahead && lookahead <= 43790) || - (43793 <= lookahead && lookahead <= 43798) || - (43808 <= lookahead && lookahead <= 43814) || - (43816 <= lookahead && lookahead <= 43822) || - (43824 <= lookahead && lookahead <= 43866) || - (43868 <= lookahead && lookahead <= 43881) || - (43888 <= lookahead && lookahead <= 44010) || - lookahead == 44012 || - lookahead == 44013 || - (44016 <= lookahead && lookahead <= 44025) || - (44032 <= lookahead && lookahead <= 55203) || - (55216 <= lookahead && lookahead <= 55238) || - (55243 <= lookahead && lookahead <= 55291) || - (63744 <= lookahead && lookahead <= 64109) || - (64112 <= lookahead && lookahead <= 64217) || - (64256 <= lookahead && lookahead <= 64262) || - (64275 <= lookahead && lookahead <= 64279) || - (64285 <= lookahead && lookahead <= 64296) || - (64298 <= lookahead && lookahead <= 64310) || - (64312 <= lookahead && lookahead <= 64316) || - lookahead == 64318 || - lookahead == 64320 || - lookahead == 64321 || - lookahead == 64323 || - lookahead == 64324 || - (64326 <= lookahead && lookahead <= 64433) || - (64467 <= lookahead && lookahead <= 64605) || - (64612 <= lookahead && lookahead <= 64829) || - (64848 <= lookahead && lookahead <= 64911) || - (64914 <= lookahead && lookahead <= 64967) || - (65008 <= lookahead && lookahead <= 65017) || - (65024 <= lookahead && lookahead <= 65039) || - (65056 <= lookahead && lookahead <= 65071) || - lookahead == 65075 || - lookahead == 65076 || - (65101 <= lookahead && lookahead <= 65103) || - lookahead == 65137 || - lookahead == 65139 || - lookahead == 65143 || - lookahead == 65145 || - lookahead == 65147 || - lookahead == 65149 || - (65151 <= lookahead && lookahead <= 65276) || - (65296 <= lookahead && lookahead <= 65305) || - (65313 <= lookahead && lookahead <= 65338) || - lookahead == 65343 || - (65345 <= lookahead && lookahead <= 65370) || - (65382 <= lookahead && lookahead <= 65470) || - (65474 <= lookahead && lookahead <= 65479) || - (65482 <= lookahead && lookahead <= 65487) || - (65490 <= lookahead && lookahead <= 65495) || - (65498 <= lookahead && lookahead <= 65500) || - (65536 <= lookahead && lookahead <= 65547) || - (65549 <= lookahead && lookahead <= 65574) || - (65576 <= lookahead && lookahead <= 65594) || - lookahead == 65596 || - lookahead == 65597 || - (65599 <= lookahead && lookahead <= 65613) || - (65616 <= lookahead && lookahead <= 65629) || - (65664 <= lookahead && lookahead <= 65786) || - (65856 <= lookahead && lookahead <= 65908) || - lookahead == 66045 || - (66176 <= lookahead && lookahead <= 66204) || - (66208 <= lookahead && lookahead <= 66256) || - lookahead == 66272 || - (66304 <= lookahead && lookahead <= 66335) || - (66349 <= lookahead && lookahead <= 66378) || - (66384 <= lookahead && lookahead <= 66426) || - (66432 <= lookahead && lookahead <= 66461) || - (66464 <= lookahead && lookahead <= 66499) || - (66504 <= lookahead && lookahead <= 66511) || - (66513 <= lookahead && lookahead <= 66517) || - (66560 <= lookahead && lookahead <= 66717) || - (66720 <= lookahead && lookahead <= 66729) || - (66736 <= lookahead && lookahead <= 66771) || - (66776 <= lookahead && lookahead <= 66811) || - (66816 <= lookahead && lookahead <= 66855) || - (66864 <= lookahead && lookahead <= 66915) || - (67072 <= lookahead && lookahead <= 67382) || - (67392 <= lookahead && lookahead <= 67413) || - (67424 <= lookahead && lookahead <= 67431) || - (67584 <= lookahead && lookahead <= 67589) || - lookahead == 67592 || - (67594 <= lookahead && lookahead <= 67637) || - lookahead == 67639 || - lookahead == 67640 || - lookahead == 67644 || - (67647 <= lookahead && lookahead <= 67669) || - (67680 <= lookahead && lookahead <= 67702) || - (67712 <= lookahead && lookahead <= 67742) || - (67808 <= lookahead && lookahead <= 67826) || - lookahead == 67828 || - lookahead == 67829 || - (67840 <= lookahead && lookahead <= 67861) || - (67872 <= lookahead && lookahead <= 67897) || - (67968 <= lookahead && lookahead <= 68023) || - lookahead == 68030 || - lookahead == 68031 || - (68096 <= lookahead && lookahead <= 68099) || - lookahead == 68101 || - lookahead == 68102 || - (68108 <= lookahead && lookahead <= 68115) || - (68117 <= lookahead && lookahead <= 68119) || - (68121 <= lookahead && lookahead <= 68149) || - (68152 <= lookahead && lookahead <= 68154) || - lookahead == 68159 || - (68192 <= lookahead && lookahead <= 68220) || - (68224 <= lookahead && lookahead <= 68252) || - (68288 <= lookahead && lookahead <= 68295) || - (68297 <= lookahead && lookahead <= 68326) || - (68352 <= lookahead && lookahead <= 68405) || - (68416 <= lookahead && lookahead <= 68437) || - (68448 <= lookahead && lookahead <= 68466) || - (68480 <= lookahead && lookahead <= 68497) || - (68608 <= lookahead && lookahead <= 68680) || - (68736 <= lookahead && lookahead <= 68786) || - (68800 <= lookahead && lookahead <= 68850) || - (68864 <= lookahead && lookahead <= 68903) || - (68912 <= lookahead && lookahead <= 68921) || - (69248 <= lookahead && lookahead <= 69289) || - lookahead == 69291 || - lookahead == 69292 || - lookahead == 69296 || - lookahead == 69297 || - (69376 <= lookahead && lookahead <= 69404) || - lookahead == 69415 || - (69424 <= lookahead && lookahead <= 69456) || - (69552 <= lookahead && lookahead <= 69572) || - (69600 <= lookahead && lookahead <= 69622) || - (69632 <= lookahead && lookahead <= 69702) || - (69734 <= lookahead && lookahead <= 69743) || - (69759 <= lookahead && lookahead <= 69818) || - (69840 <= lookahead && lookahead <= 69864) || - (69872 <= lookahead && lookahead <= 69881) || - (69888 <= lookahead && lookahead <= 69940) || - (69942 <= lookahead && lookahead <= 69951) || - (69956 <= lookahead && lookahead <= 69959) || - (69968 <= lookahead && lookahead <= 70003) || - lookahead == 70006 || - (70016 <= lookahead && lookahead <= 70084) || - (70089 <= lookahead && lookahead <= 70092) || - (70094 <= lookahead && lookahead <= 70106) || - lookahead == 70108 || - (70144 <= lookahead && lookahead <= 70161) || - (70163 <= lookahead && lookahead <= 70199) || - lookahead == 70206 || - (70272 <= lookahead && lookahead <= 70278) || - lookahead == 70280 || - (70282 <= lookahead && lookahead <= 70285) || - (70287 <= lookahead && lookahead <= 70301) || - (70303 <= lookahead && lookahead <= 70312) || - (70320 <= lookahead && lookahead <= 70378) || - (70384 <= lookahead && lookahead <= 70393) || - (70400 <= lookahead && lookahead <= 70403) || - (70405 <= lookahead && lookahead <= 70412) || - lookahead == 70415 || - lookahead == 70416 || - (70419 <= lookahead && lookahead <= 70440) || - (70442 <= lookahead && lookahead <= 70448) || - lookahead == 70450 || - lookahead == 70451 || - (70453 <= lookahead && lookahead <= 70457) || - (70459 <= lookahead && lookahead <= 70468) || - lookahead == 70471 || - lookahead == 70472 || - (70475 <= lookahead && lookahead <= 70477) || - lookahead == 70480 || - lookahead == 70487 || - (70493 <= lookahead && lookahead <= 70499) || - (70502 <= lookahead && lookahead <= 70508) || - (70512 <= lookahead && lookahead <= 70516) || - (70656 <= lookahead && lookahead <= 70730) || - (70736 <= lookahead && lookahead <= 70745) || - (70750 <= lookahead && lookahead <= 70753) || - (70784 <= lookahead && lookahead <= 70853) || - lookahead == 70855 || - (70864 <= lookahead && lookahead <= 70873) || - (71040 <= lookahead && lookahead <= 71093) || - (71096 <= lookahead && lookahead <= 71104) || - (71128 <= lookahead && lookahead <= 71133) || - (71168 <= lookahead && lookahead <= 71232) || - lookahead == 71236 || - (71248 <= lookahead && lookahead <= 71257) || - (71296 <= lookahead && lookahead <= 71352) || - (71360 <= lookahead && lookahead <= 71369) || - (71424 <= lookahead && lookahead <= 71450) || - (71453 <= lookahead && lookahead <= 71467) || - (71472 <= lookahead && lookahead <= 71481) || - (71680 <= lookahead && lookahead <= 71738) || - (71840 <= lookahead && lookahead <= 71913) || - (71935 <= lookahead && lookahead <= 71942) || - lookahead == 71945 || - (71948 <= lookahead && lookahead <= 71955) || - lookahead == 71957 || - lookahead == 71958 || - (71960 <= lookahead && lookahead <= 71989) || - lookahead == 71991 || - lookahead == 71992 || - (71995 <= lookahead && lookahead <= 72003) || - (72016 <= lookahead && lookahead <= 72025) || - (72096 <= lookahead && lookahead <= 72103) || - (72106 <= lookahead && lookahead <= 72151) || - (72154 <= lookahead && lookahead <= 72161) || - lookahead == 72163 || - lookahead == 72164 || - (72192 <= lookahead && lookahead <= 72254) || - lookahead == 72263 || - (72272 <= lookahead && lookahead <= 72345) || - lookahead == 72349 || - (72384 <= lookahead && lookahead <= 72440) || - (72704 <= lookahead && lookahead <= 72712) || - (72714 <= lookahead && lookahead <= 72758) || - (72760 <= lookahead && lookahead <= 72768) || - (72784 <= lookahead && lookahead <= 72793) || - (72818 <= lookahead && lookahead <= 72847) || - (72850 <= lookahead && lookahead <= 72871) || - (72873 <= lookahead && lookahead <= 72886) || - (72960 <= lookahead && lookahead <= 72966) || - lookahead == 72968 || - lookahead == 72969 || - (72971 <= lookahead && lookahead <= 73014) || - lookahead == 73018 || - lookahead == 73020 || - lookahead == 73021 || - (73023 <= lookahead && lookahead <= 73031) || - (73040 <= lookahead && lookahead <= 73049) || - (73056 <= lookahead && lookahead <= 73061) || - lookahead == 73063 || - lookahead == 73064 || - (73066 <= lookahead && lookahead <= 73102) || - lookahead == 73104 || - lookahead == 73105 || - (73107 <= lookahead && lookahead <= 73112) || - (73120 <= lookahead && lookahead <= 73129) || - (73440 <= lookahead && lookahead <= 73462) || - lookahead == 73648 || - (73728 <= lookahead && lookahead <= 74649) || - (74752 <= lookahead && lookahead <= 74862) || - (74880 <= lookahead && lookahead <= 75075) || - (77824 <= lookahead && lookahead <= 78894) || - (82944 <= lookahead && lookahead <= 83526) || - (92160 <= lookahead && lookahead <= 92728) || - (92736 <= lookahead && lookahead <= 92766) || - (92768 <= lookahead && lookahead <= 92777) || - (92880 <= lookahead && lookahead <= 92909) || - (92912 <= lookahead && lookahead <= 92916) || - (92928 <= lookahead && lookahead <= 92982) || - (92992 <= lookahead && lookahead <= 92995) || - (93008 <= lookahead && lookahead <= 93017) || - (93027 <= lookahead && lookahead <= 93047) || - (93053 <= lookahead && lookahead <= 93071) || - (93760 <= lookahead && lookahead <= 93823) || - (93952 <= lookahead && lookahead <= 94026) || - (94031 <= lookahead && lookahead <= 94087) || - (94095 <= lookahead && lookahead <= 94111) || - lookahead == 94176 || - lookahead == 94177 || - lookahead == 94179 || - lookahead == 94180 || - lookahead == 94192 || - lookahead == 94193 || - (94208 <= lookahead && lookahead <= 100343) || - (100352 <= lookahead && lookahead <= 101589) || - (101632 <= lookahead && lookahead <= 101640) || - (110592 <= lookahead && lookahead <= 110878) || - (110928 <= lookahead && lookahead <= 110930) || - (110948 <= lookahead && lookahead <= 110951) || - (110960 <= lookahead && lookahead <= 111355) || - (113664 <= lookahead && lookahead <= 113770) || - (113776 <= lookahead && lookahead <= 113788) || - (113792 <= lookahead && lookahead <= 113800) || - (113808 <= lookahead && lookahead <= 113817) || - lookahead == 113821 || - lookahead == 113822 || - (119141 <= lookahead && lookahead <= 119145) || - (119149 <= lookahead && lookahead <= 119154) || - (119163 <= lookahead && lookahead <= 119170) || - (119173 <= lookahead && lookahead <= 119179) || - (119210 <= lookahead && lookahead <= 119213) || - (119362 <= lookahead && lookahead <= 119364) || - (119808 <= lookahead && lookahead <= 119892) || - (119894 <= lookahead && lookahead <= 119964) || - lookahead == 119966 || - lookahead == 119967 || - lookahead == 119970 || - lookahead == 119973 || - lookahead == 119974 || - (119977 <= lookahead && lookahead <= 119980) || - (119982 <= lookahead && lookahead <= 119993) || - lookahead == 119995 || - (119997 <= lookahead && lookahead <= 120003) || - (120005 <= lookahead && lookahead <= 120069) || - (120071 <= lookahead && lookahead <= 120074) || - (120077 <= lookahead && lookahead <= 120084) || - (120086 <= lookahead && lookahead <= 120092) || - (120094 <= lookahead && lookahead <= 120121) || - (120123 <= lookahead && lookahead <= 120126) || - (120128 <= lookahead && lookahead <= 120132) || - lookahead == 120134 || - (120138 <= lookahead && lookahead <= 120144) || - (120146 <= lookahead && lookahead <= 120485) || - (120488 <= lookahead && lookahead <= 120512) || - (120514 <= lookahead && lookahead <= 120538) || - (120540 <= lookahead && lookahead <= 120570) || - (120572 <= lookahead && lookahead <= 120596) || - (120598 <= lookahead && lookahead <= 120628) || - (120630 <= lookahead && lookahead <= 120654) || - (120656 <= lookahead && lookahead <= 120686) || - (120688 <= lookahead && lookahead <= 120712) || - (120714 <= lookahead && lookahead <= 120744) || - (120746 <= lookahead && lookahead <= 120770) || - (120772 <= lookahead && lookahead <= 120779) || - (120782 <= lookahead && lookahead <= 120831) || - (121344 <= lookahead && lookahead <= 121398) || - (121403 <= lookahead && lookahead <= 121452) || - lookahead == 121461 || - lookahead == 121476 || - (121499 <= lookahead && lookahead <= 121503) || - (121505 <= lookahead && lookahead <= 121519) || - (122880 <= lookahead && lookahead <= 122886) || - (122888 <= lookahead && lookahead <= 122904) || - (122907 <= lookahead && lookahead <= 122913) || - lookahead == 122915 || - lookahead == 122916 || - (122918 <= lookahead && lookahead <= 122922) || - (123136 <= lookahead && lookahead <= 123180) || - (123184 <= lookahead && lookahead <= 123197) || - (123200 <= lookahead && lookahead <= 123209) || - lookahead == 123214 || - (123584 <= lookahead && lookahead <= 123641) || - (124928 <= lookahead && lookahead <= 125124) || - (125136 <= lookahead && lookahead <= 125142) || - (125184 <= lookahead && lookahead <= 125259) || - (125264 <= lookahead && lookahead <= 125273) || - (126464 <= lookahead && lookahead <= 126467) || - (126469 <= lookahead && lookahead <= 126495) || - lookahead == 126497 || - lookahead == 126498 || - lookahead == 126500 || - lookahead == 126503 || - (126505 <= lookahead && lookahead <= 126514) || - (126516 <= lookahead && lookahead <= 126519) || - lookahead == 126521 || - lookahead == 126523 || - lookahead == 126530 || - lookahead == 126535 || - lookahead == 126537 || - lookahead == 126539 || - (126541 <= lookahead && lookahead <= 126543) || - lookahead == 126545 || - lookahead == 126546 || - lookahead == 126548 || - lookahead == 126551 || - lookahead == 126553 || - lookahead == 126555 || - lookahead == 126557 || - lookahead == 126559 || - lookahead == 126561 || - lookahead == 126562 || - lookahead == 126564 || - (126567 <= lookahead && lookahead <= 126570) || - (126572 <= lookahead && lookahead <= 126578) || - (126580 <= lookahead && lookahead <= 126583) || - (126585 <= lookahead && lookahead <= 126588) || - lookahead == 126590 || - (126592 <= lookahead && lookahead <= 126601) || - (126603 <= lookahead && lookahead <= 126619) || - (126625 <= lookahead && lookahead <= 126627) || - (126629 <= lookahead && lookahead <= 126633) || - (126635 <= lookahead && lookahead <= 126651) || - (130032 <= lookahead && lookahead <= 130041) || - (131072 <= lookahead && lookahead <= 173789) || - (173824 <= lookahead && lookahead <= 177972) || - (177984 <= lookahead && lookahead <= 178205) || - (178208 <= lookahead && lookahead <= 183969) || - (183984 <= lookahead && lookahead <= 191456) || - (194560 <= lookahead && lookahead <= 195101) || - (196608 <= lookahead && lookahead <= 201546) || - (917760 <= lookahead && lookahead <= 917999)) ADVANCE(166); - END_STATE(); - case 83: - ACCEPT_TOKEN(aux_sym__non_special_token_token1); - if (lookahead == '!' || - lookahead == '#' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || - (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '_' || - lookahead == '|' || - lookahead == '~') ADVANCE(83); - END_STATE(); - case 84: - ACCEPT_TOKEN(aux_sym__non_special_token_token1); - if (lookahead == '!' || - lookahead == '#' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || - (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '_' || - lookahead == '|' || - lookahead == '~') ADVANCE(84); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(151); - END_STATE(); - case 85: - ACCEPT_TOKEN(anon_sym_SQUOTE); - END_STATE(); - case 86: - ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(149); - if (lookahead == '\\') ADVANCE(36); - if (lookahead != 0) ADVANCE(15); - END_STATE(); - case 87: - ACCEPT_TOKEN(anon_sym_POUND); - END_STATE(); - case 88: - ACCEPT_TOKEN(anon_sym_BANG); - END_STATE(); - case 89: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(119); - END_STATE(); - case 90: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 91: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(118); - END_STATE(); - case 92: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(118); - if (lookahead == '>') ADVANCE(65); - END_STATE(); - case 93: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(65); - END_STATE(); - case 94: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 95: - ACCEPT_TOKEN(anon_sym_DASH_GT); - END_STATE(); - case 96: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 97: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(120); - END_STATE(); - case 98: - ACCEPT_TOKEN(anon_sym_GT); - END_STATE(); - case 99: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(121); - if (lookahead == '>') ADVANCE(123); - END_STATE(); - case 100: - ACCEPT_TOKEN(anon_sym_COLON_COLON); - END_STATE(); - case 101: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 102: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(113); - if (lookahead == '=') ADVANCE(131); - END_STATE(); - case 103: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - END_STATE(); - case 104: - ACCEPT_TOKEN(anon_sym_LT2); - END_STATE(); - case 105: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - END_STATE(); - case 106: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(103); - END_STATE(); - case 107: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(103); - if (lookahead == '=') ADVANCE(108); - END_STATE(); - case 108: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - END_STATE(); - case 109: - ACCEPT_TOKEN(anon_sym_DASH); - END_STATE(); - case 110: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(127); - END_STATE(); - case 111: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(127); - if (lookahead == '>') ADVANCE(95); - END_STATE(); - case 112: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(95); - END_STATE(); - case 113: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - END_STATE(); - case 114: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - END_STATE(); - case 115: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 116: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(132); - if (lookahead == '|') ADVANCE(114); - END_STATE(); - case 117: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(133); - END_STATE(); - case 118: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - END_STATE(); - case 119: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - END_STATE(); - case 120: - ACCEPT_TOKEN(anon_sym_LT_EQ); - END_STATE(); - case 121: - ACCEPT_TOKEN(anon_sym_GT_EQ); - END_STATE(); - case 122: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(134); - END_STATE(); - case 123: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(135); - END_STATE(); - case 124: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(151); - if (lookahead == '=') ADVANCE(129); - END_STATE(); - case 125: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(130); - END_STATE(); - case 126: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - END_STATE(); - case 127: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - END_STATE(); - case 128: - ACCEPT_TOKEN(anon_sym_STAR_EQ); - END_STATE(); - case 129: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); - END_STATE(); - case 130: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); - END_STATE(); - case 131: - ACCEPT_TOKEN(anon_sym_AMP_EQ); - END_STATE(); - case 132: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); - END_STATE(); - case 133: - ACCEPT_TOKEN(anon_sym_CARET_EQ); - END_STATE(); - case 134: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); - END_STATE(); - case 135: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); - END_STATE(); - case 136: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(107); - END_STATE(); - case 137: - ACCEPT_TOKEN(anon_sym_AT); - END_STATE(); - case 138: - ACCEPT_TOKEN(sym_integer_literal); - END_STATE(); - case 139: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '2') ADVANCE(146); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); - END_STATE(); - case 140: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '3') ADVANCE(139); - if (lookahead == '6') ADVANCE(141); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); - END_STATE(); - case 141: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '4') ADVANCE(146); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); - END_STATE(); - case 142: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'b') ADVANCE(42); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'o') ADVANCE(43); - if (lookahead == 'u') ADVANCE(24); - if (lookahead == 'x') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(145); - END_STATE(); - case 143: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(143); - END_STATE(); - case 144: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(144); - END_STATE(); - case 145: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(145); - END_STATE(); - case 146: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); - END_STATE(); - case 147: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - END_STATE(); - case 148: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 149: - ACCEPT_TOKEN(sym_char_literal); - END_STATE(); - case 150: - ACCEPT_TOKEN(sym_escape_sequence); - END_STATE(); - case 151: - ACCEPT_TOKEN(sym_line_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(151); - END_STATE(); - case 152: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(60); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 153: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '\'') ADVANCE(16); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 154: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(147); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 155: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '#') ADVANCE(54); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 156: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 170 || - lookahead == 181 || - lookahead == 183 || - lookahead == 186 || - (192 <= lookahead && lookahead <= 214) || - (216 <= lookahead && lookahead <= 246) || - (248 <= lookahead && lookahead <= 705) || - (710 <= lookahead && lookahead <= 721) || - (736 <= lookahead && lookahead <= 740) || - lookahead == 748 || - lookahead == 750 || - (768 <= lookahead && lookahead <= 884) || - lookahead == 886 || - lookahead == 887 || - (891 <= lookahead && lookahead <= 893) || - lookahead == 895 || - (902 <= lookahead && lookahead <= 906) || - lookahead == 908 || - (910 <= lookahead && lookahead <= 929) || - (931 <= lookahead && lookahead <= 1013) || - (1015 <= lookahead && lookahead <= 1153) || - (1155 <= lookahead && lookahead <= 1159) || - (1162 <= lookahead && lookahead <= 1327) || - (1329 <= lookahead && lookahead <= 1366) || - lookahead == 1369 || - (1376 <= lookahead && lookahead <= 1416) || - (1425 <= lookahead && lookahead <= 1469) || - lookahead == 1471 || - lookahead == 1473 || - lookahead == 1474 || - lookahead == 1476 || - lookahead == 1477 || - lookahead == 1479 || - (1488 <= lookahead && lookahead <= 1514) || - (1519 <= lookahead && lookahead <= 1522) || - (1552 <= lookahead && lookahead <= 1562) || - (1568 <= lookahead && lookahead <= 1641) || - (1646 <= lookahead && lookahead <= 1747) || - (1749 <= lookahead && lookahead <= 1756) || - (1759 <= lookahead && lookahead <= 1768) || - (1770 <= lookahead && lookahead <= 1788) || - lookahead == 1791 || - (1808 <= lookahead && lookahead <= 1866) || - (1869 <= lookahead && lookahead <= 1969) || - (1984 <= lookahead && lookahead <= 2037) || - lookahead == 2042 || - lookahead == 2045 || - (2048 <= lookahead && lookahead <= 2093) || - (2112 <= lookahead && lookahead <= 2139) || - (2144 <= lookahead && lookahead <= 2154) || - (2208 <= lookahead && lookahead <= 2228) || - (2230 <= lookahead && lookahead <= 2247) || - (2259 <= lookahead && lookahead <= 2273) || - (2275 <= lookahead && lookahead <= 2403) || - (2406 <= lookahead && lookahead <= 2415) || - (2417 <= lookahead && lookahead <= 2435) || - (2437 <= lookahead && lookahead <= 2444) || - lookahead == 2447 || - lookahead == 2448 || - (2451 <= lookahead && lookahead <= 2472) || - (2474 <= lookahead && lookahead <= 2480) || - lookahead == 2482 || - (2486 <= lookahead && lookahead <= 2489) || - (2492 <= lookahead && lookahead <= 2500) || - lookahead == 2503 || - lookahead == 2504 || - (2507 <= lookahead && lookahead <= 2510) || - lookahead == 2519 || - lookahead == 2524 || - lookahead == 2525 || - (2527 <= lookahead && lookahead <= 2531) || - (2534 <= lookahead && lookahead <= 2545) || - lookahead == 2556 || - lookahead == 2558 || - (2561 <= lookahead && lookahead <= 2563) || - (2565 <= lookahead && lookahead <= 2570) || - lookahead == 2575 || - lookahead == 2576 || - (2579 <= lookahead && lookahead <= 2600) || - (2602 <= lookahead && lookahead <= 2608) || - lookahead == 2610 || - lookahead == 2611 || - lookahead == 2613 || - lookahead == 2614 || - lookahead == 2616 || - lookahead == 2617 || - lookahead == 2620 || - (2622 <= lookahead && lookahead <= 2626) || - lookahead == 2631 || - lookahead == 2632 || - (2635 <= lookahead && lookahead <= 2637) || - lookahead == 2641 || - (2649 <= lookahead && lookahead <= 2652) || - lookahead == 2654 || - (2662 <= lookahead && lookahead <= 2677) || - (2689 <= lookahead && lookahead <= 2691) || - (2693 <= lookahead && lookahead <= 2701) || - (2703 <= lookahead && lookahead <= 2705) || - (2707 <= lookahead && lookahead <= 2728) || - (2730 <= lookahead && lookahead <= 2736) || - lookahead == 2738 || - lookahead == 2739 || - (2741 <= lookahead && lookahead <= 2745) || - (2748 <= lookahead && lookahead <= 2757) || - (2759 <= lookahead && lookahead <= 2761) || - (2763 <= lookahead && lookahead <= 2765) || - lookahead == 2768 || - (2784 <= lookahead && lookahead <= 2787) || - (2790 <= lookahead && lookahead <= 2799) || - (2809 <= lookahead && lookahead <= 2815) || - (2817 <= lookahead && lookahead <= 2819) || - (2821 <= lookahead && lookahead <= 2828) || - lookahead == 2831 || - lookahead == 2832 || - (2835 <= lookahead && lookahead <= 2856) || - (2858 <= lookahead && lookahead <= 2864) || - lookahead == 2866 || - lookahead == 2867 || - (2869 <= lookahead && lookahead <= 2873) || - (2876 <= lookahead && lookahead <= 2884) || - lookahead == 2887 || - lookahead == 2888 || - (2891 <= lookahead && lookahead <= 2893) || - (2901 <= lookahead && lookahead <= 2903) || - lookahead == 2908 || - lookahead == 2909 || - (2911 <= lookahead && lookahead <= 2915) || - (2918 <= lookahead && lookahead <= 2927) || - lookahead == 2929 || - lookahead == 2946 || - lookahead == 2947 || - (2949 <= lookahead && lookahead <= 2954) || - (2958 <= lookahead && lookahead <= 2960) || - (2962 <= lookahead && lookahead <= 2965) || - lookahead == 2969 || - lookahead == 2970 || - lookahead == 2972 || - lookahead == 2974 || - lookahead == 2975 || - lookahead == 2979 || - lookahead == 2980 || - (2984 <= lookahead && lookahead <= 2986) || - (2990 <= lookahead && lookahead <= 3001) || - (3006 <= lookahead && lookahead <= 3010) || - (3014 <= lookahead && lookahead <= 3016) || - (3018 <= lookahead && lookahead <= 3021) || - lookahead == 3024 || - lookahead == 3031 || - (3046 <= lookahead && lookahead <= 3055) || - (3072 <= lookahead && lookahead <= 3084) || - (3086 <= lookahead && lookahead <= 3088) || - (3090 <= lookahead && lookahead <= 3112) || - (3114 <= lookahead && lookahead <= 3129) || - (3133 <= lookahead && lookahead <= 3140) || - (3142 <= lookahead && lookahead <= 3144) || - (3146 <= lookahead && lookahead <= 3149) || - lookahead == 3157 || - lookahead == 3158 || - (3160 <= lookahead && lookahead <= 3162) || - (3168 <= lookahead && lookahead <= 3171) || - (3174 <= lookahead && lookahead <= 3183) || - (3200 <= lookahead && lookahead <= 3203) || - (3205 <= lookahead && lookahead <= 3212) || - (3214 <= lookahead && lookahead <= 3216) || - (3218 <= lookahead && lookahead <= 3240) || - (3242 <= lookahead && lookahead <= 3251) || - (3253 <= lookahead && lookahead <= 3257) || - (3260 <= lookahead && lookahead <= 3268) || - (3270 <= lookahead && lookahead <= 3272) || - (3274 <= lookahead && lookahead <= 3277) || - lookahead == 3285 || - lookahead == 3286 || - lookahead == 3294 || - (3296 <= lookahead && lookahead <= 3299) || - (3302 <= lookahead && lookahead <= 3311) || - lookahead == 3313 || - lookahead == 3314 || - (3328 <= lookahead && lookahead <= 3340) || - (3342 <= lookahead && lookahead <= 3344) || - (3346 <= lookahead && lookahead <= 3396) || - (3398 <= lookahead && lookahead <= 3400) || - (3402 <= lookahead && lookahead <= 3406) || - (3412 <= lookahead && lookahead <= 3415) || - (3423 <= lookahead && lookahead <= 3427) || - (3430 <= lookahead && lookahead <= 3439) || - (3450 <= lookahead && lookahead <= 3455) || - (3457 <= lookahead && lookahead <= 3459) || - (3461 <= lookahead && lookahead <= 3478) || - (3482 <= lookahead && lookahead <= 3505) || - (3507 <= lookahead && lookahead <= 3515) || - lookahead == 3517 || - (3520 <= lookahead && lookahead <= 3526) || - lookahead == 3530 || - (3535 <= lookahead && lookahead <= 3540) || - lookahead == 3542 || - (3544 <= lookahead && lookahead <= 3551) || - (3558 <= lookahead && lookahead <= 3567) || - lookahead == 3570 || - lookahead == 3571 || - (3585 <= lookahead && lookahead <= 3642) || - (3648 <= lookahead && lookahead <= 3662) || - (3664 <= lookahead && lookahead <= 3673) || - lookahead == 3713 || - lookahead == 3714 || - lookahead == 3716 || - (3718 <= lookahead && lookahead <= 3722) || - (3724 <= lookahead && lookahead <= 3747) || - lookahead == 3749 || - (3751 <= lookahead && lookahead <= 3773) || - (3776 <= lookahead && lookahead <= 3780) || - lookahead == 3782 || - (3784 <= lookahead && lookahead <= 3789) || - (3792 <= lookahead && lookahead <= 3801) || - (3804 <= lookahead && lookahead <= 3807) || - lookahead == 3840 || - lookahead == 3864 || - lookahead == 3865 || - (3872 <= lookahead && lookahead <= 3881) || - lookahead == 3893 || - lookahead == 3895 || - lookahead == 3897 || - (3902 <= lookahead && lookahead <= 3911) || - (3913 <= lookahead && lookahead <= 3948) || - (3953 <= lookahead && lookahead <= 3972) || - (3974 <= lookahead && lookahead <= 3991) || - (3993 <= lookahead && lookahead <= 4028) || - lookahead == 4038 || - (4096 <= lookahead && lookahead <= 4169) || - (4176 <= lookahead && lookahead <= 4253) || - (4256 <= lookahead && lookahead <= 4293) || - lookahead == 4295 || - lookahead == 4301 || - (4304 <= lookahead && lookahead <= 4346) || - (4348 <= lookahead && lookahead <= 4680) || - (4682 <= lookahead && lookahead <= 4685) || - (4688 <= lookahead && lookahead <= 4694) || - lookahead == 4696 || - (4698 <= lookahead && lookahead <= 4701) || - (4704 <= lookahead && lookahead <= 4744) || - (4746 <= lookahead && lookahead <= 4749) || - (4752 <= lookahead && lookahead <= 4784) || - (4786 <= lookahead && lookahead <= 4789) || - (4792 <= lookahead && lookahead <= 4798) || - lookahead == 4800 || - (4802 <= lookahead && lookahead <= 4805) || - (4808 <= lookahead && lookahead <= 4822) || - (4824 <= lookahead && lookahead <= 4880) || - (4882 <= lookahead && lookahead <= 4885) || - (4888 <= lookahead && lookahead <= 4954) || - (4957 <= lookahead && lookahead <= 4959) || - (4969 <= lookahead && lookahead <= 4977) || - (4992 <= lookahead && lookahead <= 5007) || - (5024 <= lookahead && lookahead <= 5109) || - (5112 <= lookahead && lookahead <= 5117) || - (5121 <= lookahead && lookahead <= 5740) || - (5743 <= lookahead && lookahead <= 5759) || - (5761 <= lookahead && lookahead <= 5786) || - (5792 <= lookahead && lookahead <= 5866) || - (5870 <= lookahead && lookahead <= 5880) || - (5888 <= lookahead && lookahead <= 5900) || - (5902 <= lookahead && lookahead <= 5908) || - (5920 <= lookahead && lookahead <= 5940) || - (5952 <= lookahead && lookahead <= 5971) || - (5984 <= lookahead && lookahead <= 5996) || - (5998 <= lookahead && lookahead <= 6000) || - lookahead == 6002 || - lookahead == 6003 || - (6016 <= lookahead && lookahead <= 6099) || - lookahead == 6103 || - lookahead == 6108 || - lookahead == 6109 || - (6112 <= lookahead && lookahead <= 6121) || - (6155 <= lookahead && lookahead <= 6157) || - (6160 <= lookahead && lookahead <= 6169) || - (6176 <= lookahead && lookahead <= 6264) || - (6272 <= lookahead && lookahead <= 6314) || - (6320 <= lookahead && lookahead <= 6389) || - (6400 <= lookahead && lookahead <= 6430) || - (6432 <= lookahead && lookahead <= 6443) || - (6448 <= lookahead && lookahead <= 6459) || - (6470 <= lookahead && lookahead <= 6509) || - (6512 <= lookahead && lookahead <= 6516) || - (6528 <= lookahead && lookahead <= 6571) || - (6576 <= lookahead && lookahead <= 6601) || - (6608 <= lookahead && lookahead <= 6618) || - (6656 <= lookahead && lookahead <= 6683) || - (6688 <= lookahead && lookahead <= 6750) || - (6752 <= lookahead && lookahead <= 6780) || - (6783 <= lookahead && lookahead <= 6793) || - (6800 <= lookahead && lookahead <= 6809) || - lookahead == 6823 || - (6832 <= lookahead && lookahead <= 6845) || - lookahead == 6847 || - lookahead == 6848 || - (6912 <= lookahead && lookahead <= 6987) || - (6992 <= lookahead && lookahead <= 7001) || - (7019 <= lookahead && lookahead <= 7027) || - (7040 <= lookahead && lookahead <= 7155) || - (7168 <= lookahead && lookahead <= 7223) || - (7232 <= lookahead && lookahead <= 7241) || - (7245 <= lookahead && lookahead <= 7293) || - (7296 <= lookahead && lookahead <= 7304) || - (7312 <= lookahead && lookahead <= 7354) || - (7357 <= lookahead && lookahead <= 7359) || - (7376 <= lookahead && lookahead <= 7378) || - (7380 <= lookahead && lookahead <= 7418) || - (7424 <= lookahead && lookahead <= 7673) || - (7675 <= lookahead && lookahead <= 7957) || - (7960 <= lookahead && lookahead <= 7965) || - (7968 <= lookahead && lookahead <= 8005) || - (8008 <= lookahead && lookahead <= 8013) || - (8016 <= lookahead && lookahead <= 8023) || - lookahead == 8025 || - lookahead == 8027 || - lookahead == 8029 || - (8031 <= lookahead && lookahead <= 8061) || - (8064 <= lookahead && lookahead <= 8116) || - (8118 <= lookahead && lookahead <= 8124) || - lookahead == 8126 || - (8130 <= lookahead && lookahead <= 8132) || - (8134 <= lookahead && lookahead <= 8140) || - (8144 <= lookahead && lookahead <= 8147) || - (8150 <= lookahead && lookahead <= 8155) || - (8160 <= lookahead && lookahead <= 8172) || - (8178 <= lookahead && lookahead <= 8180) || - (8182 <= lookahead && lookahead <= 8188) || - lookahead == 8255 || - lookahead == 8256 || - lookahead == 8276 || - lookahead == 8305 || - lookahead == 8319 || - (8336 <= lookahead && lookahead <= 8348) || - (8400 <= lookahead && lookahead <= 8412) || - lookahead == 8417 || - (8421 <= lookahead && lookahead <= 8432) || - lookahead == 8450 || - lookahead == 8455 || - (8458 <= lookahead && lookahead <= 8467) || - lookahead == 8469 || - (8472 <= lookahead && lookahead <= 8477) || - lookahead == 8484 || - lookahead == 8486 || - lookahead == 8488 || - (8490 <= lookahead && lookahead <= 8505) || - (8508 <= lookahead && lookahead <= 8511) || - (8517 <= lookahead && lookahead <= 8521) || - lookahead == 8526 || - (8544 <= lookahead && lookahead <= 8584) || - (11264 <= lookahead && lookahead <= 11310) || - (11312 <= lookahead && lookahead <= 11358) || - (11360 <= lookahead && lookahead <= 11492) || - (11499 <= lookahead && lookahead <= 11507) || - (11520 <= lookahead && lookahead <= 11557) || - lookahead == 11559 || - lookahead == 11565 || - (11568 <= lookahead && lookahead <= 11623) || - lookahead == 11631 || - (11647 <= lookahead && lookahead <= 11670) || - (11680 <= lookahead && lookahead <= 11686) || - (11688 <= lookahead && lookahead <= 11694) || - (11696 <= lookahead && lookahead <= 11702) || - (11704 <= lookahead && lookahead <= 11710) || - (11712 <= lookahead && lookahead <= 11718) || - (11720 <= lookahead && lookahead <= 11726) || - (11728 <= lookahead && lookahead <= 11734) || - (11736 <= lookahead && lookahead <= 11742) || - (11744 <= lookahead && lookahead <= 11775) || - (12293 <= lookahead && lookahead <= 12295) || - (12321 <= lookahead && lookahead <= 12335) || - (12337 <= lookahead && lookahead <= 12341) || - (12344 <= lookahead && lookahead <= 12348) || - (12353 <= lookahead && lookahead <= 12438) || - lookahead == 12441 || - lookahead == 12442 || - (12445 <= lookahead && lookahead <= 12447) || - (12449 <= lookahead && lookahead <= 12538) || - (12540 <= lookahead && lookahead <= 12543) || - (12549 <= lookahead && lookahead <= 12591) || - (12593 <= lookahead && lookahead <= 12686) || - (12704 <= lookahead && lookahead <= 12735) || - (12784 <= lookahead && lookahead <= 12799) || - (13312 <= lookahead && lookahead <= 19903) || - (19968 <= lookahead && lookahead <= 40956) || - (40960 <= lookahead && lookahead <= 42124) || - (42192 <= lookahead && lookahead <= 42237) || - (42240 <= lookahead && lookahead <= 42508) || - (42512 <= lookahead && lookahead <= 42539) || - (42560 <= lookahead && lookahead <= 42607) || - (42612 <= lookahead && lookahead <= 42621) || - (42623 <= lookahead && lookahead <= 42737) || - (42775 <= lookahead && lookahead <= 42783) || - (42786 <= lookahead && lookahead <= 42888) || - (42891 <= lookahead && lookahead <= 42943) || - (42946 <= lookahead && lookahead <= 42954) || - (42997 <= lookahead && lookahead <= 43047) || - lookahead == 43052 || - (43072 <= lookahead && lookahead <= 43123) || - (43136 <= lookahead && lookahead <= 43205) || - (43216 <= lookahead && lookahead <= 43225) || - (43232 <= lookahead && lookahead <= 43255) || - lookahead == 43259 || - (43261 <= lookahead && lookahead <= 43309) || - (43312 <= lookahead && lookahead <= 43347) || - (43360 <= lookahead && lookahead <= 43388) || - (43392 <= lookahead && lookahead <= 43456) || - (43471 <= lookahead && lookahead <= 43481) || - (43488 <= lookahead && lookahead <= 43518) || - (43520 <= lookahead && lookahead <= 43574) || - (43584 <= lookahead && lookahead <= 43597) || - (43600 <= lookahead && lookahead <= 43609) || - (43616 <= lookahead && lookahead <= 43638) || - (43642 <= lookahead && lookahead <= 43714) || - (43739 <= lookahead && lookahead <= 43741) || - (43744 <= lookahead && lookahead <= 43759) || - (43762 <= lookahead && lookahead <= 43766) || - (43777 <= lookahead && lookahead <= 43782) || - (43785 <= lookahead && lookahead <= 43790) || - (43793 <= lookahead && lookahead <= 43798) || - (43808 <= lookahead && lookahead <= 43814) || - (43816 <= lookahead && lookahead <= 43822) || - (43824 <= lookahead && lookahead <= 43866) || - (43868 <= lookahead && lookahead <= 43881) || - (43888 <= lookahead && lookahead <= 44010) || - lookahead == 44012 || - lookahead == 44013 || - (44016 <= lookahead && lookahead <= 44025) || - (44032 <= lookahead && lookahead <= 55203) || - (55216 <= lookahead && lookahead <= 55238) || - (55243 <= lookahead && lookahead <= 55291) || - (63744 <= lookahead && lookahead <= 64109) || - (64112 <= lookahead && lookahead <= 64217) || - (64256 <= lookahead && lookahead <= 64262) || - (64275 <= lookahead && lookahead <= 64279) || - (64285 <= lookahead && lookahead <= 64296) || - (64298 <= lookahead && lookahead <= 64310) || - (64312 <= lookahead && lookahead <= 64316) || - lookahead == 64318 || - lookahead == 64320 || - lookahead == 64321 || - lookahead == 64323 || - lookahead == 64324 || - (64326 <= lookahead && lookahead <= 64433) || - (64467 <= lookahead && lookahead <= 64605) || - (64612 <= lookahead && lookahead <= 64829) || - (64848 <= lookahead && lookahead <= 64911) || - (64914 <= lookahead && lookahead <= 64967) || - (65008 <= lookahead && lookahead <= 65017) || - (65024 <= lookahead && lookahead <= 65039) || - (65056 <= lookahead && lookahead <= 65071) || - lookahead == 65075 || - lookahead == 65076 || - (65101 <= lookahead && lookahead <= 65103) || - lookahead == 65137 || - lookahead == 65139 || - lookahead == 65143 || - lookahead == 65145 || - lookahead == 65147 || - lookahead == 65149 || - (65151 <= lookahead && lookahead <= 65276) || - (65296 <= lookahead && lookahead <= 65305) || - (65313 <= lookahead && lookahead <= 65338) || - lookahead == 65343 || - (65345 <= lookahead && lookahead <= 65370) || - (65382 <= lookahead && lookahead <= 65470) || - (65474 <= lookahead && lookahead <= 65479) || - (65482 <= lookahead && lookahead <= 65487) || - (65490 <= lookahead && lookahead <= 65495) || - (65498 <= lookahead && lookahead <= 65500) || - (65536 <= lookahead && lookahead <= 65547) || - (65549 <= lookahead && lookahead <= 65574) || - (65576 <= lookahead && lookahead <= 65594) || - lookahead == 65596 || - lookahead == 65597 || - (65599 <= lookahead && lookahead <= 65613) || - (65616 <= lookahead && lookahead <= 65629) || - (65664 <= lookahead && lookahead <= 65786) || - (65856 <= lookahead && lookahead <= 65908) || - lookahead == 66045 || - (66176 <= lookahead && lookahead <= 66204) || - (66208 <= lookahead && lookahead <= 66256) || - lookahead == 66272 || - (66304 <= lookahead && lookahead <= 66335) || - (66349 <= lookahead && lookahead <= 66378) || - (66384 <= lookahead && lookahead <= 66426) || - (66432 <= lookahead && lookahead <= 66461) || - (66464 <= lookahead && lookahead <= 66499) || - (66504 <= lookahead && lookahead <= 66511) || - (66513 <= lookahead && lookahead <= 66517) || - (66560 <= lookahead && lookahead <= 66717) || - (66720 <= lookahead && lookahead <= 66729) || - (66736 <= lookahead && lookahead <= 66771) || - (66776 <= lookahead && lookahead <= 66811) || - (66816 <= lookahead && lookahead <= 66855) || - (66864 <= lookahead && lookahead <= 66915) || - (67072 <= lookahead && lookahead <= 67382) || - (67392 <= lookahead && lookahead <= 67413) || - (67424 <= lookahead && lookahead <= 67431) || - (67584 <= lookahead && lookahead <= 67589) || - lookahead == 67592 || - (67594 <= lookahead && lookahead <= 67637) || - lookahead == 67639 || - lookahead == 67640 || - lookahead == 67644 || - (67647 <= lookahead && lookahead <= 67669) || - (67680 <= lookahead && lookahead <= 67702) || - (67712 <= lookahead && lookahead <= 67742) || - (67808 <= lookahead && lookahead <= 67826) || - lookahead == 67828 || - lookahead == 67829 || - (67840 <= lookahead && lookahead <= 67861) || - (67872 <= lookahead && lookahead <= 67897) || - (67968 <= lookahead && lookahead <= 68023) || - lookahead == 68030 || - lookahead == 68031 || - (68096 <= lookahead && lookahead <= 68099) || - lookahead == 68101 || - lookahead == 68102 || - (68108 <= lookahead && lookahead <= 68115) || - (68117 <= lookahead && lookahead <= 68119) || - (68121 <= lookahead && lookahead <= 68149) || - (68152 <= lookahead && lookahead <= 68154) || - lookahead == 68159 || - (68192 <= lookahead && lookahead <= 68220) || - (68224 <= lookahead && lookahead <= 68252) || - (68288 <= lookahead && lookahead <= 68295) || - (68297 <= lookahead && lookahead <= 68326) || - (68352 <= lookahead && lookahead <= 68405) || - (68416 <= lookahead && lookahead <= 68437) || - (68448 <= lookahead && lookahead <= 68466) || - (68480 <= lookahead && lookahead <= 68497) || - (68608 <= lookahead && lookahead <= 68680) || - (68736 <= lookahead && lookahead <= 68786) || - (68800 <= lookahead && lookahead <= 68850) || - (68864 <= lookahead && lookahead <= 68903) || - (68912 <= lookahead && lookahead <= 68921) || - (69248 <= lookahead && lookahead <= 69289) || - lookahead == 69291 || - lookahead == 69292 || - lookahead == 69296 || - lookahead == 69297 || - (69376 <= lookahead && lookahead <= 69404) || - lookahead == 69415 || - (69424 <= lookahead && lookahead <= 69456) || - (69552 <= lookahead && lookahead <= 69572) || - (69600 <= lookahead && lookahead <= 69622) || - (69632 <= lookahead && lookahead <= 69702) || - (69734 <= lookahead && lookahead <= 69743) || - (69759 <= lookahead && lookahead <= 69818) || - (69840 <= lookahead && lookahead <= 69864) || - (69872 <= lookahead && lookahead <= 69881) || - (69888 <= lookahead && lookahead <= 69940) || - (69942 <= lookahead && lookahead <= 69951) || - (69956 <= lookahead && lookahead <= 69959) || - (69968 <= lookahead && lookahead <= 70003) || - lookahead == 70006 || - (70016 <= lookahead && lookahead <= 70084) || - (70089 <= lookahead && lookahead <= 70092) || - (70094 <= lookahead && lookahead <= 70106) || - lookahead == 70108 || - (70144 <= lookahead && lookahead <= 70161) || - (70163 <= lookahead && lookahead <= 70199) || - lookahead == 70206 || - (70272 <= lookahead && lookahead <= 70278) || - lookahead == 70280 || - (70282 <= lookahead && lookahead <= 70285) || - (70287 <= lookahead && lookahead <= 70301) || - (70303 <= lookahead && lookahead <= 70312) || - (70320 <= lookahead && lookahead <= 70378) || - (70384 <= lookahead && lookahead <= 70393) || - (70400 <= lookahead && lookahead <= 70403) || - (70405 <= lookahead && lookahead <= 70412) || - lookahead == 70415 || - lookahead == 70416 || - (70419 <= lookahead && lookahead <= 70440) || - (70442 <= lookahead && lookahead <= 70448) || - lookahead == 70450 || - lookahead == 70451 || - (70453 <= lookahead && lookahead <= 70457) || - (70459 <= lookahead && lookahead <= 70468) || - lookahead == 70471 || - lookahead == 70472 || - (70475 <= lookahead && lookahead <= 70477) || - lookahead == 70480 || - lookahead == 70487 || - (70493 <= lookahead && lookahead <= 70499) || - (70502 <= lookahead && lookahead <= 70508) || - (70512 <= lookahead && lookahead <= 70516) || - (70656 <= lookahead && lookahead <= 70730) || - (70736 <= lookahead && lookahead <= 70745) || - (70750 <= lookahead && lookahead <= 70753) || - (70784 <= lookahead && lookahead <= 70853) || - lookahead == 70855 || - (70864 <= lookahead && lookahead <= 70873) || - (71040 <= lookahead && lookahead <= 71093) || - (71096 <= lookahead && lookahead <= 71104) || - (71128 <= lookahead && lookahead <= 71133) || - (71168 <= lookahead && lookahead <= 71232) || - lookahead == 71236 || - (71248 <= lookahead && lookahead <= 71257) || - (71296 <= lookahead && lookahead <= 71352) || - (71360 <= lookahead && lookahead <= 71369) || - (71424 <= lookahead && lookahead <= 71450) || - (71453 <= lookahead && lookahead <= 71467) || - (71472 <= lookahead && lookahead <= 71481) || - (71680 <= lookahead && lookahead <= 71738) || - (71840 <= lookahead && lookahead <= 71913) || - (71935 <= lookahead && lookahead <= 71942) || - lookahead == 71945 || - (71948 <= lookahead && lookahead <= 71955) || - lookahead == 71957 || - lookahead == 71958 || - (71960 <= lookahead && lookahead <= 71989) || - lookahead == 71991 || - lookahead == 71992 || - (71995 <= lookahead && lookahead <= 72003) || - (72016 <= lookahead && lookahead <= 72025) || - (72096 <= lookahead && lookahead <= 72103) || - (72106 <= lookahead && lookahead <= 72151) || - (72154 <= lookahead && lookahead <= 72161) || - lookahead == 72163 || - lookahead == 72164 || - (72192 <= lookahead && lookahead <= 72254) || - lookahead == 72263 || - (72272 <= lookahead && lookahead <= 72345) || - lookahead == 72349 || - (72384 <= lookahead && lookahead <= 72440) || - (72704 <= lookahead && lookahead <= 72712) || - (72714 <= lookahead && lookahead <= 72758) || - (72760 <= lookahead && lookahead <= 72768) || - (72784 <= lookahead && lookahead <= 72793) || - (72818 <= lookahead && lookahead <= 72847) || - (72850 <= lookahead && lookahead <= 72871) || - (72873 <= lookahead && lookahead <= 72886) || - (72960 <= lookahead && lookahead <= 72966) || - lookahead == 72968 || - lookahead == 72969 || - (72971 <= lookahead && lookahead <= 73014) || - lookahead == 73018 || - lookahead == 73020 || - lookahead == 73021 || - (73023 <= lookahead && lookahead <= 73031) || - (73040 <= lookahead && lookahead <= 73049) || - (73056 <= lookahead && lookahead <= 73061) || - lookahead == 73063 || - lookahead == 73064 || - (73066 <= lookahead && lookahead <= 73102) || - lookahead == 73104 || - lookahead == 73105 || - (73107 <= lookahead && lookahead <= 73112) || - (73120 <= lookahead && lookahead <= 73129) || - (73440 <= lookahead && lookahead <= 73462) || - lookahead == 73648 || - (73728 <= lookahead && lookahead <= 74649) || - (74752 <= lookahead && lookahead <= 74862) || - (74880 <= lookahead && lookahead <= 75075) || - (77824 <= lookahead && lookahead <= 78894) || - (82944 <= lookahead && lookahead <= 83526) || - (92160 <= lookahead && lookahead <= 92728) || - (92736 <= lookahead && lookahead <= 92766) || - (92768 <= lookahead && lookahead <= 92777) || - (92880 <= lookahead && lookahead <= 92909) || - (92912 <= lookahead && lookahead <= 92916) || - (92928 <= lookahead && lookahead <= 92982) || - (92992 <= lookahead && lookahead <= 92995) || - (93008 <= lookahead && lookahead <= 93017) || - (93027 <= lookahead && lookahead <= 93047) || - (93053 <= lookahead && lookahead <= 93071) || - (93760 <= lookahead && lookahead <= 93823) || - (93952 <= lookahead && lookahead <= 94026) || - (94031 <= lookahead && lookahead <= 94087) || - (94095 <= lookahead && lookahead <= 94111) || - lookahead == 94176 || - lookahead == 94177 || - lookahead == 94179 || - lookahead == 94180 || - lookahead == 94192 || - lookahead == 94193 || - (94208 <= lookahead && lookahead <= 100343) || - (100352 <= lookahead && lookahead <= 101589) || - (101632 <= lookahead && lookahead <= 101640) || - (110592 <= lookahead && lookahead <= 110878) || - (110928 <= lookahead && lookahead <= 110930) || - (110948 <= lookahead && lookahead <= 110951) || - (110960 <= lookahead && lookahead <= 111355) || - (113664 <= lookahead && lookahead <= 113770) || - (113776 <= lookahead && lookahead <= 113788) || - (113792 <= lookahead && lookahead <= 113800) || - (113808 <= lookahead && lookahead <= 113817) || - lookahead == 113821 || - lookahead == 113822 || - (119141 <= lookahead && lookahead <= 119145) || - (119149 <= lookahead && lookahead <= 119154) || - (119163 <= lookahead && lookahead <= 119170) || - (119173 <= lookahead && lookahead <= 119179) || - (119210 <= lookahead && lookahead <= 119213) || - (119362 <= lookahead && lookahead <= 119364) || - (119808 <= lookahead && lookahead <= 119892) || - (119894 <= lookahead && lookahead <= 119964) || - lookahead == 119966 || - lookahead == 119967 || - lookahead == 119970 || - lookahead == 119973 || - lookahead == 119974 || - (119977 <= lookahead && lookahead <= 119980) || - (119982 <= lookahead && lookahead <= 119993) || - lookahead == 119995 || - (119997 <= lookahead && lookahead <= 120003) || - (120005 <= lookahead && lookahead <= 120069) || - (120071 <= lookahead && lookahead <= 120074) || - (120077 <= lookahead && lookahead <= 120084) || - (120086 <= lookahead && lookahead <= 120092) || - (120094 <= lookahead && lookahead <= 120121) || - (120123 <= lookahead && lookahead <= 120126) || - (120128 <= lookahead && lookahead <= 120132) || - lookahead == 120134 || - (120138 <= lookahead && lookahead <= 120144) || - (120146 <= lookahead && lookahead <= 120485) || - (120488 <= lookahead && lookahead <= 120512) || - (120514 <= lookahead && lookahead <= 120538) || - (120540 <= lookahead && lookahead <= 120570) || - (120572 <= lookahead && lookahead <= 120596) || - (120598 <= lookahead && lookahead <= 120628) || - (120630 <= lookahead && lookahead <= 120654) || - (120656 <= lookahead && lookahead <= 120686) || - (120688 <= lookahead && lookahead <= 120712) || - (120714 <= lookahead && lookahead <= 120744) || - (120746 <= lookahead && lookahead <= 120770) || - (120772 <= lookahead && lookahead <= 120779) || - (120782 <= lookahead && lookahead <= 120831) || - (121344 <= lookahead && lookahead <= 121398) || - (121403 <= lookahead && lookahead <= 121452) || - lookahead == 121461 || - lookahead == 121476 || - (121499 <= lookahead && lookahead <= 121503) || - (121505 <= lookahead && lookahead <= 121519) || - (122880 <= lookahead && lookahead <= 122886) || - (122888 <= lookahead && lookahead <= 122904) || - (122907 <= lookahead && lookahead <= 122913) || - lookahead == 122915 || - lookahead == 122916 || - (122918 <= lookahead && lookahead <= 122922) || - (123136 <= lookahead && lookahead <= 123180) || - (123184 <= lookahead && lookahead <= 123197) || - (123200 <= lookahead && lookahead <= 123209) || - lookahead == 123214 || - (123584 <= lookahead && lookahead <= 123641) || - (124928 <= lookahead && lookahead <= 125124) || - (125136 <= lookahead && lookahead <= 125142) || - (125184 <= lookahead && lookahead <= 125259) || - (125264 <= lookahead && lookahead <= 125273) || - (126464 <= lookahead && lookahead <= 126467) || - (126469 <= lookahead && lookahead <= 126495) || - lookahead == 126497 || - lookahead == 126498 || - lookahead == 126500 || - lookahead == 126503 || - (126505 <= lookahead && lookahead <= 126514) || - (126516 <= lookahead && lookahead <= 126519) || - lookahead == 126521 || - lookahead == 126523 || - lookahead == 126530 || - lookahead == 126535 || - lookahead == 126537 || - lookahead == 126539 || - (126541 <= lookahead && lookahead <= 126543) || - lookahead == 126545 || - lookahead == 126546 || - lookahead == 126548 || - lookahead == 126551 || - lookahead == 126553 || - lookahead == 126555 || - lookahead == 126557 || - lookahead == 126559 || - lookahead == 126561 || - lookahead == 126562 || - lookahead == 126564 || - (126567 <= lookahead && lookahead <= 126570) || - (126572 <= lookahead && lookahead <= 126578) || - (126580 <= lookahead && lookahead <= 126583) || - (126585 <= lookahead && lookahead <= 126588) || - lookahead == 126590 || - (126592 <= lookahead && lookahead <= 126601) || - (126603 <= lookahead && lookahead <= 126619) || - (126625 <= lookahead && lookahead <= 126627) || - (126629 <= lookahead && lookahead <= 126633) || - (126635 <= lookahead && lookahead <= 126651) || - (130032 <= lookahead && lookahead <= 130041) || - (131072 <= lookahead && lookahead <= 173789) || - (173824 <= lookahead && lookahead <= 177972) || - (177984 <= lookahead && lookahead <= 178205) || - (178208 <= lookahead && lookahead <= 183969) || - (183984 <= lookahead && lookahead <= 191456) || - (194560 <= lookahead && lookahead <= 195101) || - (196608 <= lookahead && lookahead <= 201546) || - (917760 <= lookahead && lookahead <= 917999)) ADVANCE(166); - END_STATE(); - case 157: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(158); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == 170 || - lookahead == 181 || - lookahead == 183 || - lookahead == 186 || - (192 <= lookahead && lookahead <= 214) || - (216 <= lookahead && lookahead <= 246) || - (248 <= lookahead && lookahead <= 705) || - (710 <= lookahead && lookahead <= 721) || - (736 <= lookahead && lookahead <= 740) || - lookahead == 748 || - lookahead == 750 || - (768 <= lookahead && lookahead <= 884) || - lookahead == 886 || - lookahead == 887 || - (891 <= lookahead && lookahead <= 893) || - lookahead == 895 || - (902 <= lookahead && lookahead <= 906) || - lookahead == 908 || - (910 <= lookahead && lookahead <= 929) || - (931 <= lookahead && lookahead <= 1013) || - (1015 <= lookahead && lookahead <= 1153) || - (1155 <= lookahead && lookahead <= 1159) || - (1162 <= lookahead && lookahead <= 1327) || - (1329 <= lookahead && lookahead <= 1366) || - lookahead == 1369 || - (1376 <= lookahead && lookahead <= 1416) || - (1425 <= lookahead && lookahead <= 1469) || - lookahead == 1471 || - lookahead == 1473 || - lookahead == 1474 || - lookahead == 1476 || - lookahead == 1477 || - lookahead == 1479 || - (1488 <= lookahead && lookahead <= 1514) || - (1519 <= lookahead && lookahead <= 1522) || - (1552 <= lookahead && lookahead <= 1562) || - (1568 <= lookahead && lookahead <= 1641) || - (1646 <= lookahead && lookahead <= 1747) || - (1749 <= lookahead && lookahead <= 1756) || - (1759 <= lookahead && lookahead <= 1768) || - (1770 <= lookahead && lookahead <= 1788) || - lookahead == 1791 || - (1808 <= lookahead && lookahead <= 1866) || - (1869 <= lookahead && lookahead <= 1969) || - (1984 <= lookahead && lookahead <= 2037) || - lookahead == 2042 || - lookahead == 2045 || - (2048 <= lookahead && lookahead <= 2093) || - (2112 <= lookahead && lookahead <= 2139) || - (2144 <= lookahead && lookahead <= 2154) || - (2208 <= lookahead && lookahead <= 2228) || - (2230 <= lookahead && lookahead <= 2247) || - (2259 <= lookahead && lookahead <= 2273) || - (2275 <= lookahead && lookahead <= 2403) || - (2406 <= lookahead && lookahead <= 2415) || - (2417 <= lookahead && lookahead <= 2435) || - (2437 <= lookahead && lookahead <= 2444) || - lookahead == 2447 || - lookahead == 2448 || - (2451 <= lookahead && lookahead <= 2472) || - (2474 <= lookahead && lookahead <= 2480) || - lookahead == 2482 || - (2486 <= lookahead && lookahead <= 2489) || - (2492 <= lookahead && lookahead <= 2500) || - lookahead == 2503 || - lookahead == 2504 || - (2507 <= lookahead && lookahead <= 2510) || - lookahead == 2519 || - lookahead == 2524 || - lookahead == 2525 || - (2527 <= lookahead && lookahead <= 2531) || - (2534 <= lookahead && lookahead <= 2545) || - lookahead == 2556 || - lookahead == 2558 || - (2561 <= lookahead && lookahead <= 2563) || - (2565 <= lookahead && lookahead <= 2570) || - lookahead == 2575 || - lookahead == 2576 || - (2579 <= lookahead && lookahead <= 2600) || - (2602 <= lookahead && lookahead <= 2608) || - lookahead == 2610 || - lookahead == 2611 || - lookahead == 2613 || - lookahead == 2614 || - lookahead == 2616 || - lookahead == 2617 || - lookahead == 2620 || - (2622 <= lookahead && lookahead <= 2626) || - lookahead == 2631 || - lookahead == 2632 || - (2635 <= lookahead && lookahead <= 2637) || - lookahead == 2641 || - (2649 <= lookahead && lookahead <= 2652) || - lookahead == 2654 || - (2662 <= lookahead && lookahead <= 2677) || - (2689 <= lookahead && lookahead <= 2691) || - (2693 <= lookahead && lookahead <= 2701) || - (2703 <= lookahead && lookahead <= 2705) || - (2707 <= lookahead && lookahead <= 2728) || - (2730 <= lookahead && lookahead <= 2736) || - lookahead == 2738 || - lookahead == 2739 || - (2741 <= lookahead && lookahead <= 2745) || - (2748 <= lookahead && lookahead <= 2757) || - (2759 <= lookahead && lookahead <= 2761) || - (2763 <= lookahead && lookahead <= 2765) || - lookahead == 2768 || - (2784 <= lookahead && lookahead <= 2787) || - (2790 <= lookahead && lookahead <= 2799) || - (2809 <= lookahead && lookahead <= 2815) || - (2817 <= lookahead && lookahead <= 2819) || - (2821 <= lookahead && lookahead <= 2828) || - lookahead == 2831 || - lookahead == 2832 || - (2835 <= lookahead && lookahead <= 2856) || - (2858 <= lookahead && lookahead <= 2864) || - lookahead == 2866 || - lookahead == 2867 || - (2869 <= lookahead && lookahead <= 2873) || - (2876 <= lookahead && lookahead <= 2884) || - lookahead == 2887 || - lookahead == 2888 || - (2891 <= lookahead && lookahead <= 2893) || - (2901 <= lookahead && lookahead <= 2903) || - lookahead == 2908 || - lookahead == 2909 || - (2911 <= lookahead && lookahead <= 2915) || - (2918 <= lookahead && lookahead <= 2927) || - lookahead == 2929 || - lookahead == 2946 || - lookahead == 2947 || - (2949 <= lookahead && lookahead <= 2954) || - (2958 <= lookahead && lookahead <= 2960) || - (2962 <= lookahead && lookahead <= 2965) || - lookahead == 2969 || - lookahead == 2970 || - lookahead == 2972 || - lookahead == 2974 || - lookahead == 2975 || - lookahead == 2979 || - lookahead == 2980 || - (2984 <= lookahead && lookahead <= 2986) || - (2990 <= lookahead && lookahead <= 3001) || - (3006 <= lookahead && lookahead <= 3010) || - (3014 <= lookahead && lookahead <= 3016) || - (3018 <= lookahead && lookahead <= 3021) || - lookahead == 3024 || - lookahead == 3031 || - (3046 <= lookahead && lookahead <= 3055) || - (3072 <= lookahead && lookahead <= 3084) || - (3086 <= lookahead && lookahead <= 3088) || - (3090 <= lookahead && lookahead <= 3112) || - (3114 <= lookahead && lookahead <= 3129) || - (3133 <= lookahead && lookahead <= 3140) || - (3142 <= lookahead && lookahead <= 3144) || - (3146 <= lookahead && lookahead <= 3149) || - lookahead == 3157 || - lookahead == 3158 || - (3160 <= lookahead && lookahead <= 3162) || - (3168 <= lookahead && lookahead <= 3171) || - (3174 <= lookahead && lookahead <= 3183) || - (3200 <= lookahead && lookahead <= 3203) || - (3205 <= lookahead && lookahead <= 3212) || - (3214 <= lookahead && lookahead <= 3216) || - (3218 <= lookahead && lookahead <= 3240) || - (3242 <= lookahead && lookahead <= 3251) || - (3253 <= lookahead && lookahead <= 3257) || - (3260 <= lookahead && lookahead <= 3268) || - (3270 <= lookahead && lookahead <= 3272) || - (3274 <= lookahead && lookahead <= 3277) || - lookahead == 3285 || - lookahead == 3286 || - lookahead == 3294 || - (3296 <= lookahead && lookahead <= 3299) || - (3302 <= lookahead && lookahead <= 3311) || - lookahead == 3313 || - lookahead == 3314 || - (3328 <= lookahead && lookahead <= 3340) || - (3342 <= lookahead && lookahead <= 3344) || - (3346 <= lookahead && lookahead <= 3396) || - (3398 <= lookahead && lookahead <= 3400) || - (3402 <= lookahead && lookahead <= 3406) || - (3412 <= lookahead && lookahead <= 3415) || - (3423 <= lookahead && lookahead <= 3427) || - (3430 <= lookahead && lookahead <= 3439) || - (3450 <= lookahead && lookahead <= 3455) || - (3457 <= lookahead && lookahead <= 3459) || - (3461 <= lookahead && lookahead <= 3478) || - (3482 <= lookahead && lookahead <= 3505) || - (3507 <= lookahead && lookahead <= 3515) || - lookahead == 3517 || - (3520 <= lookahead && lookahead <= 3526) || - lookahead == 3530 || - (3535 <= lookahead && lookahead <= 3540) || - lookahead == 3542 || - (3544 <= lookahead && lookahead <= 3551) || - (3558 <= lookahead && lookahead <= 3567) || - lookahead == 3570 || - lookahead == 3571 || - (3585 <= lookahead && lookahead <= 3642) || - (3648 <= lookahead && lookahead <= 3662) || - (3664 <= lookahead && lookahead <= 3673) || - lookahead == 3713 || - lookahead == 3714 || - lookahead == 3716 || - (3718 <= lookahead && lookahead <= 3722) || - (3724 <= lookahead && lookahead <= 3747) || - lookahead == 3749 || - (3751 <= lookahead && lookahead <= 3773) || - (3776 <= lookahead && lookahead <= 3780) || - lookahead == 3782 || - (3784 <= lookahead && lookahead <= 3789) || - (3792 <= lookahead && lookahead <= 3801) || - (3804 <= lookahead && lookahead <= 3807) || - lookahead == 3840 || - lookahead == 3864 || - lookahead == 3865 || - (3872 <= lookahead && lookahead <= 3881) || - lookahead == 3893 || - lookahead == 3895 || - lookahead == 3897 || - (3902 <= lookahead && lookahead <= 3911) || - (3913 <= lookahead && lookahead <= 3948) || - (3953 <= lookahead && lookahead <= 3972) || - (3974 <= lookahead && lookahead <= 3991) || - (3993 <= lookahead && lookahead <= 4028) || - lookahead == 4038 || - (4096 <= lookahead && lookahead <= 4169) || - (4176 <= lookahead && lookahead <= 4253) || - (4256 <= lookahead && lookahead <= 4293) || - lookahead == 4295 || - lookahead == 4301 || - (4304 <= lookahead && lookahead <= 4346) || - (4348 <= lookahead && lookahead <= 4680) || - (4682 <= lookahead && lookahead <= 4685) || - (4688 <= lookahead && lookahead <= 4694) || - lookahead == 4696 || - (4698 <= lookahead && lookahead <= 4701) || - (4704 <= lookahead && lookahead <= 4744) || - (4746 <= lookahead && lookahead <= 4749) || - (4752 <= lookahead && lookahead <= 4784) || - (4786 <= lookahead && lookahead <= 4789) || - (4792 <= lookahead && lookahead <= 4798) || - lookahead == 4800 || - (4802 <= lookahead && lookahead <= 4805) || - (4808 <= lookahead && lookahead <= 4822) || - (4824 <= lookahead && lookahead <= 4880) || - (4882 <= lookahead && lookahead <= 4885) || - (4888 <= lookahead && lookahead <= 4954) || - (4957 <= lookahead && lookahead <= 4959) || - (4969 <= lookahead && lookahead <= 4977) || - (4992 <= lookahead && lookahead <= 5007) || - (5024 <= lookahead && lookahead <= 5109) || - (5112 <= lookahead && lookahead <= 5117) || - (5121 <= lookahead && lookahead <= 5740) || - (5743 <= lookahead && lookahead <= 5759) || - (5761 <= lookahead && lookahead <= 5786) || - (5792 <= lookahead && lookahead <= 5866) || - (5870 <= lookahead && lookahead <= 5880) || - (5888 <= lookahead && lookahead <= 5900) || - (5902 <= lookahead && lookahead <= 5908) || - (5920 <= lookahead && lookahead <= 5940) || - (5952 <= lookahead && lookahead <= 5971) || - (5984 <= lookahead && lookahead <= 5996) || - (5998 <= lookahead && lookahead <= 6000) || - lookahead == 6002 || - lookahead == 6003 || - (6016 <= lookahead && lookahead <= 6099) || - lookahead == 6103 || - lookahead == 6108 || - lookahead == 6109 || - (6112 <= lookahead && lookahead <= 6121) || - (6155 <= lookahead && lookahead <= 6157) || - (6160 <= lookahead && lookahead <= 6169) || - (6176 <= lookahead && lookahead <= 6264) || - (6272 <= lookahead && lookahead <= 6314) || - (6320 <= lookahead && lookahead <= 6389) || - (6400 <= lookahead && lookahead <= 6430) || - (6432 <= lookahead && lookahead <= 6443) || - (6448 <= lookahead && lookahead <= 6459) || - (6470 <= lookahead && lookahead <= 6509) || - (6512 <= lookahead && lookahead <= 6516) || - (6528 <= lookahead && lookahead <= 6571) || - (6576 <= lookahead && lookahead <= 6601) || - (6608 <= lookahead && lookahead <= 6618) || - (6656 <= lookahead && lookahead <= 6683) || - (6688 <= lookahead && lookahead <= 6750) || - (6752 <= lookahead && lookahead <= 6780) || - (6783 <= lookahead && lookahead <= 6793) || - (6800 <= lookahead && lookahead <= 6809) || - lookahead == 6823 || - (6832 <= lookahead && lookahead <= 6845) || - lookahead == 6847 || - lookahead == 6848 || - (6912 <= lookahead && lookahead <= 6987) || - (6992 <= lookahead && lookahead <= 7001) || - (7019 <= lookahead && lookahead <= 7027) || - (7040 <= lookahead && lookahead <= 7155) || - (7168 <= lookahead && lookahead <= 7223) || - (7232 <= lookahead && lookahead <= 7241) || - (7245 <= lookahead && lookahead <= 7293) || - (7296 <= lookahead && lookahead <= 7304) || - (7312 <= lookahead && lookahead <= 7354) || - (7357 <= lookahead && lookahead <= 7359) || - (7376 <= lookahead && lookahead <= 7378) || - (7380 <= lookahead && lookahead <= 7418) || - (7424 <= lookahead && lookahead <= 7673) || - (7675 <= lookahead && lookahead <= 7957) || - (7960 <= lookahead && lookahead <= 7965) || - (7968 <= lookahead && lookahead <= 8005) || - (8008 <= lookahead && lookahead <= 8013) || - (8016 <= lookahead && lookahead <= 8023) || - lookahead == 8025 || - lookahead == 8027 || - lookahead == 8029 || - (8031 <= lookahead && lookahead <= 8061) || - (8064 <= lookahead && lookahead <= 8116) || - (8118 <= lookahead && lookahead <= 8124) || - lookahead == 8126 || - (8130 <= lookahead && lookahead <= 8132) || - (8134 <= lookahead && lookahead <= 8140) || - (8144 <= lookahead && lookahead <= 8147) || - (8150 <= lookahead && lookahead <= 8155) || - (8160 <= lookahead && lookahead <= 8172) || - (8178 <= lookahead && lookahead <= 8180) || - (8182 <= lookahead && lookahead <= 8188) || - lookahead == 8255 || - lookahead == 8256 || - lookahead == 8276 || - lookahead == 8305 || - lookahead == 8319 || - (8336 <= lookahead && lookahead <= 8348) || - (8400 <= lookahead && lookahead <= 8412) || - lookahead == 8417 || - (8421 <= lookahead && lookahead <= 8432) || - lookahead == 8450 || - lookahead == 8455 || - (8458 <= lookahead && lookahead <= 8467) || - lookahead == 8469 || - (8472 <= lookahead && lookahead <= 8477) || - lookahead == 8484 || - lookahead == 8486 || - lookahead == 8488 || - (8490 <= lookahead && lookahead <= 8505) || - (8508 <= lookahead && lookahead <= 8511) || - (8517 <= lookahead && lookahead <= 8521) || - lookahead == 8526 || - (8544 <= lookahead && lookahead <= 8584) || - (11264 <= lookahead && lookahead <= 11310) || - (11312 <= lookahead && lookahead <= 11358) || - (11360 <= lookahead && lookahead <= 11492) || - (11499 <= lookahead && lookahead <= 11507) || - (11520 <= lookahead && lookahead <= 11557) || - lookahead == 11559 || - lookahead == 11565 || - (11568 <= lookahead && lookahead <= 11623) || - lookahead == 11631 || - (11647 <= lookahead && lookahead <= 11670) || - (11680 <= lookahead && lookahead <= 11686) || - (11688 <= lookahead && lookahead <= 11694) || - (11696 <= lookahead && lookahead <= 11702) || - (11704 <= lookahead && lookahead <= 11710) || - (11712 <= lookahead && lookahead <= 11718) || - (11720 <= lookahead && lookahead <= 11726) || - (11728 <= lookahead && lookahead <= 11734) || - (11736 <= lookahead && lookahead <= 11742) || - (11744 <= lookahead && lookahead <= 11775) || - (12293 <= lookahead && lookahead <= 12295) || - (12321 <= lookahead && lookahead <= 12335) || - (12337 <= lookahead && lookahead <= 12341) || - (12344 <= lookahead && lookahead <= 12348) || - (12353 <= lookahead && lookahead <= 12438) || - lookahead == 12441 || - lookahead == 12442 || - (12445 <= lookahead && lookahead <= 12447) || - (12449 <= lookahead && lookahead <= 12538) || - (12540 <= lookahead && lookahead <= 12543) || - (12549 <= lookahead && lookahead <= 12591) || - (12593 <= lookahead && lookahead <= 12686) || - (12704 <= lookahead && lookahead <= 12735) || - (12784 <= lookahead && lookahead <= 12799) || - (13312 <= lookahead && lookahead <= 19903) || - (19968 <= lookahead && lookahead <= 40956) || - (40960 <= lookahead && lookahead <= 42124) || - (42192 <= lookahead && lookahead <= 42237) || - (42240 <= lookahead && lookahead <= 42508) || - (42512 <= lookahead && lookahead <= 42539) || - (42560 <= lookahead && lookahead <= 42607) || - (42612 <= lookahead && lookahead <= 42621) || - (42623 <= lookahead && lookahead <= 42737) || - (42775 <= lookahead && lookahead <= 42783) || - (42786 <= lookahead && lookahead <= 42888) || - (42891 <= lookahead && lookahead <= 42943) || - (42946 <= lookahead && lookahead <= 42954) || - (42997 <= lookahead && lookahead <= 43047) || - lookahead == 43052 || - (43072 <= lookahead && lookahead <= 43123) || - (43136 <= lookahead && lookahead <= 43205) || - (43216 <= lookahead && lookahead <= 43225) || - (43232 <= lookahead && lookahead <= 43255) || - lookahead == 43259 || - (43261 <= lookahead && lookahead <= 43309) || - (43312 <= lookahead && lookahead <= 43347) || - (43360 <= lookahead && lookahead <= 43388) || - (43392 <= lookahead && lookahead <= 43456) || - (43471 <= lookahead && lookahead <= 43481) || - (43488 <= lookahead && lookahead <= 43518) || - (43520 <= lookahead && lookahead <= 43574) || - (43584 <= lookahead && lookahead <= 43597) || - (43600 <= lookahead && lookahead <= 43609) || - (43616 <= lookahead && lookahead <= 43638) || - (43642 <= lookahead && lookahead <= 43714) || - (43739 <= lookahead && lookahead <= 43741) || - (43744 <= lookahead && lookahead <= 43759) || - (43762 <= lookahead && lookahead <= 43766) || - (43777 <= lookahead && lookahead <= 43782) || - (43785 <= lookahead && lookahead <= 43790) || - (43793 <= lookahead && lookahead <= 43798) || - (43808 <= lookahead && lookahead <= 43814) || - (43816 <= lookahead && lookahead <= 43822) || - (43824 <= lookahead && lookahead <= 43866) || - (43868 <= lookahead && lookahead <= 43881) || - (43888 <= lookahead && lookahead <= 44010) || - lookahead == 44012 || - lookahead == 44013 || - (44016 <= lookahead && lookahead <= 44025) || - (44032 <= lookahead && lookahead <= 55203) || - (55216 <= lookahead && lookahead <= 55238) || - (55243 <= lookahead && lookahead <= 55291) || - (63744 <= lookahead && lookahead <= 64109) || - (64112 <= lookahead && lookahead <= 64217) || - (64256 <= lookahead && lookahead <= 64262) || - (64275 <= lookahead && lookahead <= 64279) || - (64285 <= lookahead && lookahead <= 64296) || - (64298 <= lookahead && lookahead <= 64310) || - (64312 <= lookahead && lookahead <= 64316) || - lookahead == 64318 || - lookahead == 64320 || - lookahead == 64321 || - lookahead == 64323 || - lookahead == 64324 || - (64326 <= lookahead && lookahead <= 64433) || - (64467 <= lookahead && lookahead <= 64605) || - (64612 <= lookahead && lookahead <= 64829) || - (64848 <= lookahead && lookahead <= 64911) || - (64914 <= lookahead && lookahead <= 64967) || - (65008 <= lookahead && lookahead <= 65017) || - (65024 <= lookahead && lookahead <= 65039) || - (65056 <= lookahead && lookahead <= 65071) || - lookahead == 65075 || - lookahead == 65076 || - (65101 <= lookahead && lookahead <= 65103) || - lookahead == 65137 || - lookahead == 65139 || - lookahead == 65143 || - lookahead == 65145 || - lookahead == 65147 || - lookahead == 65149 || - (65151 <= lookahead && lookahead <= 65276) || - (65296 <= lookahead && lookahead <= 65305) || - (65313 <= lookahead && lookahead <= 65338) || - lookahead == 65343 || - (65345 <= lookahead && lookahead <= 65370) || - (65382 <= lookahead && lookahead <= 65470) || - (65474 <= lookahead && lookahead <= 65479) || - (65482 <= lookahead && lookahead <= 65487) || - (65490 <= lookahead && lookahead <= 65495) || - (65498 <= lookahead && lookahead <= 65500) || - (65536 <= lookahead && lookahead <= 65547) || - (65549 <= lookahead && lookahead <= 65574) || - (65576 <= lookahead && lookahead <= 65594) || - lookahead == 65596 || - lookahead == 65597 || - (65599 <= lookahead && lookahead <= 65613) || - (65616 <= lookahead && lookahead <= 65629) || - (65664 <= lookahead && lookahead <= 65786) || - (65856 <= lookahead && lookahead <= 65908) || - lookahead == 66045 || - (66176 <= lookahead && lookahead <= 66204) || - (66208 <= lookahead && lookahead <= 66256) || - lookahead == 66272 || - (66304 <= lookahead && lookahead <= 66335) || - (66349 <= lookahead && lookahead <= 66378) || - (66384 <= lookahead && lookahead <= 66426) || - (66432 <= lookahead && lookahead <= 66461) || - (66464 <= lookahead && lookahead <= 66499) || - (66504 <= lookahead && lookahead <= 66511) || - (66513 <= lookahead && lookahead <= 66517) || - (66560 <= lookahead && lookahead <= 66717) || - (66720 <= lookahead && lookahead <= 66729) || - (66736 <= lookahead && lookahead <= 66771) || - (66776 <= lookahead && lookahead <= 66811) || - (66816 <= lookahead && lookahead <= 66855) || - (66864 <= lookahead && lookahead <= 66915) || - (67072 <= lookahead && lookahead <= 67382) || - (67392 <= lookahead && lookahead <= 67413) || - (67424 <= lookahead && lookahead <= 67431) || - (67584 <= lookahead && lookahead <= 67589) || - lookahead == 67592 || - (67594 <= lookahead && lookahead <= 67637) || - lookahead == 67639 || - lookahead == 67640 || - lookahead == 67644 || - (67647 <= lookahead && lookahead <= 67669) || - (67680 <= lookahead && lookahead <= 67702) || - (67712 <= lookahead && lookahead <= 67742) || - (67808 <= lookahead && lookahead <= 67826) || - lookahead == 67828 || - lookahead == 67829 || - (67840 <= lookahead && lookahead <= 67861) || - (67872 <= lookahead && lookahead <= 67897) || - (67968 <= lookahead && lookahead <= 68023) || - lookahead == 68030 || - lookahead == 68031 || - (68096 <= lookahead && lookahead <= 68099) || - lookahead == 68101 || - lookahead == 68102 || - (68108 <= lookahead && lookahead <= 68115) || - (68117 <= lookahead && lookahead <= 68119) || - (68121 <= lookahead && lookahead <= 68149) || - (68152 <= lookahead && lookahead <= 68154) || - lookahead == 68159 || - (68192 <= lookahead && lookahead <= 68220) || - (68224 <= lookahead && lookahead <= 68252) || - (68288 <= lookahead && lookahead <= 68295) || - (68297 <= lookahead && lookahead <= 68326) || - (68352 <= lookahead && lookahead <= 68405) || - (68416 <= lookahead && lookahead <= 68437) || - (68448 <= lookahead && lookahead <= 68466) || - (68480 <= lookahead && lookahead <= 68497) || - (68608 <= lookahead && lookahead <= 68680) || - (68736 <= lookahead && lookahead <= 68786) || - (68800 <= lookahead && lookahead <= 68850) || - (68864 <= lookahead && lookahead <= 68903) || - (68912 <= lookahead && lookahead <= 68921) || - (69248 <= lookahead && lookahead <= 69289) || - lookahead == 69291 || - lookahead == 69292 || - lookahead == 69296 || - lookahead == 69297 || - (69376 <= lookahead && lookahead <= 69404) || - lookahead == 69415 || - (69424 <= lookahead && lookahead <= 69456) || - (69552 <= lookahead && lookahead <= 69572) || - (69600 <= lookahead && lookahead <= 69622) || - (69632 <= lookahead && lookahead <= 69702) || - (69734 <= lookahead && lookahead <= 69743) || - (69759 <= lookahead && lookahead <= 69818) || - (69840 <= lookahead && lookahead <= 69864) || - (69872 <= lookahead && lookahead <= 69881) || - (69888 <= lookahead && lookahead <= 69940) || - (69942 <= lookahead && lookahead <= 69951) || - (69956 <= lookahead && lookahead <= 69959) || - (69968 <= lookahead && lookahead <= 70003) || - lookahead == 70006 || - (70016 <= lookahead && lookahead <= 70084) || - (70089 <= lookahead && lookahead <= 70092) || - (70094 <= lookahead && lookahead <= 70106) || - lookahead == 70108 || - (70144 <= lookahead && lookahead <= 70161) || - (70163 <= lookahead && lookahead <= 70199) || - lookahead == 70206 || - (70272 <= lookahead && lookahead <= 70278) || - lookahead == 70280 || - (70282 <= lookahead && lookahead <= 70285) || - (70287 <= lookahead && lookahead <= 70301) || - (70303 <= lookahead && lookahead <= 70312) || - (70320 <= lookahead && lookahead <= 70378) || - (70384 <= lookahead && lookahead <= 70393) || - (70400 <= lookahead && lookahead <= 70403) || - (70405 <= lookahead && lookahead <= 70412) || - lookahead == 70415 || - lookahead == 70416 || - (70419 <= lookahead && lookahead <= 70440) || - (70442 <= lookahead && lookahead <= 70448) || - lookahead == 70450 || - lookahead == 70451 || - (70453 <= lookahead && lookahead <= 70457) || - (70459 <= lookahead && lookahead <= 70468) || - lookahead == 70471 || - lookahead == 70472 || - (70475 <= lookahead && lookahead <= 70477) || - lookahead == 70480 || - lookahead == 70487 || - (70493 <= lookahead && lookahead <= 70499) || - (70502 <= lookahead && lookahead <= 70508) || - (70512 <= lookahead && lookahead <= 70516) || - (70656 <= lookahead && lookahead <= 70730) || - (70736 <= lookahead && lookahead <= 70745) || - (70750 <= lookahead && lookahead <= 70753) || - (70784 <= lookahead && lookahead <= 70853) || - lookahead == 70855 || - (70864 <= lookahead && lookahead <= 70873) || - (71040 <= lookahead && lookahead <= 71093) || - (71096 <= lookahead && lookahead <= 71104) || - (71128 <= lookahead && lookahead <= 71133) || - (71168 <= lookahead && lookahead <= 71232) || - lookahead == 71236 || - (71248 <= lookahead && lookahead <= 71257) || - (71296 <= lookahead && lookahead <= 71352) || - (71360 <= lookahead && lookahead <= 71369) || - (71424 <= lookahead && lookahead <= 71450) || - (71453 <= lookahead && lookahead <= 71467) || - (71472 <= lookahead && lookahead <= 71481) || - (71680 <= lookahead && lookahead <= 71738) || - (71840 <= lookahead && lookahead <= 71913) || - (71935 <= lookahead && lookahead <= 71942) || - lookahead == 71945 || - (71948 <= lookahead && lookahead <= 71955) || - lookahead == 71957 || - lookahead == 71958 || - (71960 <= lookahead && lookahead <= 71989) || - lookahead == 71991 || - lookahead == 71992 || - (71995 <= lookahead && lookahead <= 72003) || - (72016 <= lookahead && lookahead <= 72025) || - (72096 <= lookahead && lookahead <= 72103) || - (72106 <= lookahead && lookahead <= 72151) || - (72154 <= lookahead && lookahead <= 72161) || - lookahead == 72163 || - lookahead == 72164 || - (72192 <= lookahead && lookahead <= 72254) || - lookahead == 72263 || - (72272 <= lookahead && lookahead <= 72345) || - lookahead == 72349 || - (72384 <= lookahead && lookahead <= 72440) || - (72704 <= lookahead && lookahead <= 72712) || - (72714 <= lookahead && lookahead <= 72758) || - (72760 <= lookahead && lookahead <= 72768) || - (72784 <= lookahead && lookahead <= 72793) || - (72818 <= lookahead && lookahead <= 72847) || - (72850 <= lookahead && lookahead <= 72871) || - (72873 <= lookahead && lookahead <= 72886) || - (72960 <= lookahead && lookahead <= 72966) || - lookahead == 72968 || - lookahead == 72969 || - (72971 <= lookahead && lookahead <= 73014) || - lookahead == 73018 || - lookahead == 73020 || - lookahead == 73021 || - (73023 <= lookahead && lookahead <= 73031) || - (73040 <= lookahead && lookahead <= 73049) || - (73056 <= lookahead && lookahead <= 73061) || - lookahead == 73063 || - lookahead == 73064 || - (73066 <= lookahead && lookahead <= 73102) || - lookahead == 73104 || - lookahead == 73105 || - (73107 <= lookahead && lookahead <= 73112) || - (73120 <= lookahead && lookahead <= 73129) || - (73440 <= lookahead && lookahead <= 73462) || - lookahead == 73648 || - (73728 <= lookahead && lookahead <= 74649) || - (74752 <= lookahead && lookahead <= 74862) || - (74880 <= lookahead && lookahead <= 75075) || - (77824 <= lookahead && lookahead <= 78894) || - (82944 <= lookahead && lookahead <= 83526) || - (92160 <= lookahead && lookahead <= 92728) || - (92736 <= lookahead && lookahead <= 92766) || - (92768 <= lookahead && lookahead <= 92777) || - (92880 <= lookahead && lookahead <= 92909) || - (92912 <= lookahead && lookahead <= 92916) || - (92928 <= lookahead && lookahead <= 92982) || - (92992 <= lookahead && lookahead <= 92995) || - (93008 <= lookahead && lookahead <= 93017) || - (93027 <= lookahead && lookahead <= 93047) || - (93053 <= lookahead && lookahead <= 93071) || - (93760 <= lookahead && lookahead <= 93823) || - (93952 <= lookahead && lookahead <= 94026) || - (94031 <= lookahead && lookahead <= 94087) || - (94095 <= lookahead && lookahead <= 94111) || - lookahead == 94176 || - lookahead == 94177 || - lookahead == 94179 || - lookahead == 94180 || - lookahead == 94192 || - lookahead == 94193 || - (94208 <= lookahead && lookahead <= 100343) || - (100352 <= lookahead && lookahead <= 101589) || - (101632 <= lookahead && lookahead <= 101640) || - (110592 <= lookahead && lookahead <= 110878) || - (110928 <= lookahead && lookahead <= 110930) || - (110948 <= lookahead && lookahead <= 110951) || - (110960 <= lookahead && lookahead <= 111355) || - (113664 <= lookahead && lookahead <= 113770) || - (113776 <= lookahead && lookahead <= 113788) || - (113792 <= lookahead && lookahead <= 113800) || - (113808 <= lookahead && lookahead <= 113817) || - lookahead == 113821 || - lookahead == 113822 || - (119141 <= lookahead && lookahead <= 119145) || - (119149 <= lookahead && lookahead <= 119154) || - (119163 <= lookahead && lookahead <= 119170) || - (119173 <= lookahead && lookahead <= 119179) || - (119210 <= lookahead && lookahead <= 119213) || - (119362 <= lookahead && lookahead <= 119364) || - (119808 <= lookahead && lookahead <= 119892) || - (119894 <= lookahead && lookahead <= 119964) || - lookahead == 119966 || - lookahead == 119967 || - lookahead == 119970 || - lookahead == 119973 || - lookahead == 119974 || - (119977 <= lookahead && lookahead <= 119980) || - (119982 <= lookahead && lookahead <= 119993) || - lookahead == 119995 || - (119997 <= lookahead && lookahead <= 120003) || - (120005 <= lookahead && lookahead <= 120069) || - (120071 <= lookahead && lookahead <= 120074) || - (120077 <= lookahead && lookahead <= 120084) || - (120086 <= lookahead && lookahead <= 120092) || - (120094 <= lookahead && lookahead <= 120121) || - (120123 <= lookahead && lookahead <= 120126) || - (120128 <= lookahead && lookahead <= 120132) || - lookahead == 120134 || - (120138 <= lookahead && lookahead <= 120144) || - (120146 <= lookahead && lookahead <= 120485) || - (120488 <= lookahead && lookahead <= 120512) || - (120514 <= lookahead && lookahead <= 120538) || - (120540 <= lookahead && lookahead <= 120570) || - (120572 <= lookahead && lookahead <= 120596) || - (120598 <= lookahead && lookahead <= 120628) || - (120630 <= lookahead && lookahead <= 120654) || - (120656 <= lookahead && lookahead <= 120686) || - (120688 <= lookahead && lookahead <= 120712) || - (120714 <= lookahead && lookahead <= 120744) || - (120746 <= lookahead && lookahead <= 120770) || - (120772 <= lookahead && lookahead <= 120779) || - (120782 <= lookahead && lookahead <= 120831) || - (121344 <= lookahead && lookahead <= 121398) || - (121403 <= lookahead && lookahead <= 121452) || - lookahead == 121461 || - lookahead == 121476 || - (121499 <= lookahead && lookahead <= 121503) || - (121505 <= lookahead && lookahead <= 121519) || - (122880 <= lookahead && lookahead <= 122886) || - (122888 <= lookahead && lookahead <= 122904) || - (122907 <= lookahead && lookahead <= 122913) || - lookahead == 122915 || - lookahead == 122916 || - (122918 <= lookahead && lookahead <= 122922) || - (123136 <= lookahead && lookahead <= 123180) || - (123184 <= lookahead && lookahead <= 123197) || - (123200 <= lookahead && lookahead <= 123209) || - lookahead == 123214 || - (123584 <= lookahead && lookahead <= 123641) || - (124928 <= lookahead && lookahead <= 125124) || - (125136 <= lookahead && lookahead <= 125142) || - (125184 <= lookahead && lookahead <= 125259) || - (125264 <= lookahead && lookahead <= 125273) || - (126464 <= lookahead && lookahead <= 126467) || - (126469 <= lookahead && lookahead <= 126495) || - lookahead == 126497 || - lookahead == 126498 || - lookahead == 126500 || - lookahead == 126503 || - (126505 <= lookahead && lookahead <= 126514) || - (126516 <= lookahead && lookahead <= 126519) || - lookahead == 126521 || - lookahead == 126523 || - lookahead == 126530 || - lookahead == 126535 || - lookahead == 126537 || - lookahead == 126539 || - (126541 <= lookahead && lookahead <= 126543) || - lookahead == 126545 || - lookahead == 126546 || - lookahead == 126548 || - lookahead == 126551 || - lookahead == 126553 || - lookahead == 126555 || - lookahead == 126557 || - lookahead == 126559 || - lookahead == 126561 || - lookahead == 126562 || - lookahead == 126564 || - (126567 <= lookahead && lookahead <= 126570) || - (126572 <= lookahead && lookahead <= 126578) || - (126580 <= lookahead && lookahead <= 126583) || - (126585 <= lookahead && lookahead <= 126588) || - lookahead == 126590 || - (126592 <= lookahead && lookahead <= 126601) || - (126603 <= lookahead && lookahead <= 126619) || - (126625 <= lookahead && lookahead <= 126627) || - (126629 <= lookahead && lookahead <= 126633) || - (126635 <= lookahead && lookahead <= 126651) || - (130032 <= lookahead && lookahead <= 130041) || - (131072 <= lookahead && lookahead <= 173789) || - (173824 <= lookahead && lookahead <= 177972) || - (177984 <= lookahead && lookahead <= 178205) || - (178208 <= lookahead && lookahead <= 183969) || - (183984 <= lookahead && lookahead <= 191456) || - (194560 <= lookahead && lookahead <= 195101) || - (196608 <= lookahead && lookahead <= 201546) || - (917760 <= lookahead && lookahead <= 917999)) ADVANCE(166); - END_STATE(); - case 158: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(162); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 159: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(164); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 160: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(159); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 161: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(156); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 162: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(161); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 163: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(165); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 164: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(152); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 165: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(160); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 166: - ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 167: - ACCEPT_TOKEN(sym_metavariable); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); - END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (lookahead == '_') ADVANCE(1); - if (lookahead == 'a') ADVANCE(2); - if (lookahead == 'b') ADVANCE(3); - if (lookahead == 'c') ADVANCE(4); - if (lookahead == 'd') ADVANCE(5); - if (lookahead == 'e') ADVANCE(6); - if (lookahead == 'f') ADVANCE(7); - if (lookahead == 'i') ADVANCE(8); - if (lookahead == 'l') ADVANCE(9); - if (lookahead == 'm') ADVANCE(10); - if (lookahead == 'p') ADVANCE(11); - if (lookahead == 'r') ADVANCE(12); - if (lookahead == 's') ADVANCE(13); - if (lookahead == 't') ADVANCE(14); - if (lookahead == 'u') ADVANCE(15); - if (lookahead == 'v') ADVANCE(16); - if (lookahead == 'w') ADVANCE(17); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(0) - END_STATE(); - case 1: - ACCEPT_TOKEN(anon_sym__); - END_STATE(); - case 2: - if (lookahead == 's') ADVANCE(18); - if (lookahead == 'w') ADVANCE(19); - END_STATE(); - case 3: - if (lookahead == 'l') ADVANCE(20); - if (lookahead == 'o') ADVANCE(21); - if (lookahead == 'r') ADVANCE(22); - END_STATE(); - case 4: - if (lookahead == 'h') ADVANCE(23); - if (lookahead == 'o') ADVANCE(24); - if (lookahead == 'r') ADVANCE(25); - END_STATE(); - case 5: - if (lookahead == 'e') ADVANCE(26); - if (lookahead == 'y') ADVANCE(27); - END_STATE(); - case 6: - if (lookahead == 'l') ADVANCE(28); - if (lookahead == 'n') ADVANCE(29); - if (lookahead == 'x') ADVANCE(30); - END_STATE(); - case 7: - if (lookahead == '3') ADVANCE(31); - if (lookahead == '6') ADVANCE(32); - if (lookahead == 'a') ADVANCE(33); - if (lookahead == 'n') ADVANCE(34); - if (lookahead == 'o') ADVANCE(35); - END_STATE(); - case 8: - if (lookahead == '1') ADVANCE(36); - if (lookahead == '3') ADVANCE(37); - if (lookahead == '6') ADVANCE(38); - if (lookahead == '8') ADVANCE(39); - if (lookahead == 'd') ADVANCE(40); - if (lookahead == 'f') ADVANCE(41); - if (lookahead == 'm') ADVANCE(42); - if (lookahead == 'n') ADVANCE(43); - if (lookahead == 's') ADVANCE(44); - if (lookahead == 't') ADVANCE(45); - END_STATE(); - case 9: - if (lookahead == 'e') ADVANCE(46); - if (lookahead == 'i') ADVANCE(47); - if (lookahead == 'o') ADVANCE(48); - END_STATE(); - case 10: - if (lookahead == 'a') ADVANCE(49); - if (lookahead == 'e') ADVANCE(50); - if (lookahead == 'o') ADVANCE(51); - if (lookahead == 'u') ADVANCE(52); - END_STATE(); - case 11: - if (lookahead == 'a') ADVANCE(53); - if (lookahead == 'u') ADVANCE(54); - END_STATE(); - case 12: - if (lookahead == 'e') ADVANCE(55); - END_STATE(); - case 13: - if (lookahead == 'e') ADVANCE(56); - if (lookahead == 't') ADVANCE(57); - if (lookahead == 'u') ADVANCE(58); - END_STATE(); - case 14: - if (lookahead == 'r') ADVANCE(59); - if (lookahead == 't') ADVANCE(60); - if (lookahead == 'y') ADVANCE(61); - END_STATE(); - case 15: - if (lookahead == '1') ADVANCE(62); - if (lookahead == '3') ADVANCE(63); - if (lookahead == '6') ADVANCE(64); - if (lookahead == '8') ADVANCE(65); - if (lookahead == 'n') ADVANCE(66); - if (lookahead == 's') ADVANCE(67); - END_STATE(); - case 16: - if (lookahead == 'i') ADVANCE(68); - END_STATE(); - case 17: - if (lookahead == 'h') ADVANCE(69); - END_STATE(); - case 18: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(70); - END_STATE(); - case 19: - if (lookahead == 'a') ADVANCE(71); - END_STATE(); - case 20: - if (lookahead == 'o') ADVANCE(72); - END_STATE(); - case 21: - if (lookahead == 'o') ADVANCE(73); - END_STATE(); - case 22: - if (lookahead == 'e') ADVANCE(74); - END_STATE(); - case 23: - if (lookahead == 'a') ADVANCE(75); - END_STATE(); - case 24: - if (lookahead == 'n') ADVANCE(76); - END_STATE(); - case 25: - if (lookahead == 'a') ADVANCE(77); - END_STATE(); - case 26: - if (lookahead == 'f') ADVANCE(78); - END_STATE(); - case 27: - if (lookahead == 'n') ADVANCE(79); - END_STATE(); - case 28: - if (lookahead == 's') ADVANCE(80); - END_STATE(); - case 29: - if (lookahead == 'u') ADVANCE(81); - END_STATE(); - case 30: - if (lookahead == 'p') ADVANCE(82); - if (lookahead == 't') ADVANCE(83); - END_STATE(); - case 31: - if (lookahead == '2') ADVANCE(84); - END_STATE(); - case 32: - if (lookahead == '4') ADVANCE(85); - END_STATE(); - case 33: - if (lookahead == 'l') ADVANCE(86); - END_STATE(); - case 34: - ACCEPT_TOKEN(anon_sym_fn); - END_STATE(); - case 35: - if (lookahead == 'r') ADVANCE(87); - END_STATE(); - case 36: - if (lookahead == '2') ADVANCE(88); - if (lookahead == '6') ADVANCE(89); - END_STATE(); - case 37: - if (lookahead == '2') ADVANCE(90); - END_STATE(); - case 38: - if (lookahead == '4') ADVANCE(91); - END_STATE(); - case 39: - ACCEPT_TOKEN(anon_sym_i8); - END_STATE(); - case 40: - if (lookahead == 'e') ADVANCE(92); - END_STATE(); - case 41: - ACCEPT_TOKEN(anon_sym_if); - END_STATE(); - case 42: - if (lookahead == 'p') ADVANCE(93); - END_STATE(); - case 43: - ACCEPT_TOKEN(anon_sym_in); - END_STATE(); - case 44: - if (lookahead == 'i') ADVANCE(94); - END_STATE(); - case 45: - if (lookahead == 'e') ADVANCE(95); - END_STATE(); - case 46: - if (lookahead == 't') ADVANCE(96); - END_STATE(); - case 47: - if (lookahead == 'f') ADVANCE(97); - if (lookahead == 't') ADVANCE(98); - END_STATE(); - case 48: - if (lookahead == 'o') ADVANCE(99); - END_STATE(); - case 49: - if (lookahead == 't') ADVANCE(100); - END_STATE(); - case 50: - if (lookahead == 't') ADVANCE(101); - END_STATE(); - case 51: - if (lookahead == 'd') ADVANCE(102); - if (lookahead == 'v') ADVANCE(103); - END_STATE(); - case 52: - if (lookahead == 't') ADVANCE(104); - END_STATE(); - case 53: - if (lookahead == 't') ADVANCE(105); - END_STATE(); - case 54: - if (lookahead == 'b') ADVANCE(106); - END_STATE(); - case 55: - if (lookahead == 'f') ADVANCE(107); - if (lookahead == 't') ADVANCE(108); - END_STATE(); - case 56: - if (lookahead == 'l') ADVANCE(109); - END_STATE(); - case 57: - if (lookahead == 'a') ADVANCE(110); - if (lookahead == 'm') ADVANCE(111); - if (lookahead == 'r') ADVANCE(112); - END_STATE(); - case 58: - if (lookahead == 'p') ADVANCE(113); - END_STATE(); - case 59: - if (lookahead == 'a') ADVANCE(114); - if (lookahead == 'u') ADVANCE(115); - END_STATE(); - case 60: - ACCEPT_TOKEN(anon_sym_tt); - END_STATE(); - case 61: - ACCEPT_TOKEN(anon_sym_ty); - if (lookahead == 'p') ADVANCE(116); - END_STATE(); - case 62: - if (lookahead == '2') ADVANCE(117); - if (lookahead == '6') ADVANCE(118); - END_STATE(); - case 63: - if (lookahead == '2') ADVANCE(119); - END_STATE(); - case 64: - if (lookahead == '4') ADVANCE(120); - END_STATE(); - case 65: - ACCEPT_TOKEN(anon_sym_u8); - END_STATE(); - case 66: - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 's') ADVANCE(122); - END_STATE(); - case 67: - if (lookahead == 'e') ADVANCE(123); - if (lookahead == 'i') ADVANCE(124); - END_STATE(); - case 68: - if (lookahead == 's') ADVANCE(125); - END_STATE(); - case 69: - if (lookahead == 'e') ADVANCE(126); - if (lookahead == 'i') ADVANCE(127); - END_STATE(); - case 70: - if (lookahead == 'n') ADVANCE(128); - END_STATE(); - case 71: - if (lookahead == 'i') ADVANCE(129); - END_STATE(); - case 72: - if (lookahead == 'c') ADVANCE(130); - END_STATE(); - case 73: - if (lookahead == 'l') ADVANCE(131); - END_STATE(); - case 74: - if (lookahead == 'a') ADVANCE(132); - END_STATE(); - case 75: - if (lookahead == 'r') ADVANCE(133); - END_STATE(); - case 76: - if (lookahead == 's') ADVANCE(134); - if (lookahead == 't') ADVANCE(135); - END_STATE(); - case 77: - if (lookahead == 't') ADVANCE(136); - END_STATE(); - case 78: - if (lookahead == 'a') ADVANCE(137); - END_STATE(); - case 79: - ACCEPT_TOKEN(anon_sym_dyn); - END_STATE(); - case 80: - if (lookahead == 'e') ADVANCE(138); - END_STATE(); - case 81: - if (lookahead == 'm') ADVANCE(139); - END_STATE(); - case 82: - if (lookahead == 'r') ADVANCE(140); - END_STATE(); - case 83: - if (lookahead == 'e') ADVANCE(141); - END_STATE(); - case 84: - ACCEPT_TOKEN(anon_sym_f32); - END_STATE(); - case 85: - ACCEPT_TOKEN(anon_sym_f64); - END_STATE(); - case 86: - if (lookahead == 's') ADVANCE(142); - END_STATE(); - case 87: - ACCEPT_TOKEN(anon_sym_for); - END_STATE(); - case 88: - if (lookahead == '8') ADVANCE(143); - END_STATE(); - case 89: - ACCEPT_TOKEN(anon_sym_i16); - END_STATE(); - case 90: - ACCEPT_TOKEN(anon_sym_i32); - END_STATE(); - case 91: - ACCEPT_TOKEN(anon_sym_i64); - END_STATE(); - case 92: - if (lookahead == 'n') ADVANCE(144); - END_STATE(); - case 93: - if (lookahead == 'l') ADVANCE(145); - END_STATE(); - case 94: - if (lookahead == 'z') ADVANCE(146); - END_STATE(); - case 95: - if (lookahead == 'm') ADVANCE(147); - END_STATE(); - case 96: - ACCEPT_TOKEN(anon_sym_let); - END_STATE(); - case 97: - if (lookahead == 'e') ADVANCE(148); - END_STATE(); - case 98: - if (lookahead == 'e') ADVANCE(149); - END_STATE(); - case 99: - if (lookahead == 'p') ADVANCE(150); - END_STATE(); - case 100: - if (lookahead == 'c') ADVANCE(151); - END_STATE(); - case 101: - if (lookahead == 'a') ADVANCE(152); - END_STATE(); - case 102: - ACCEPT_TOKEN(anon_sym_mod); - END_STATE(); - case 103: - if (lookahead == 'e') ADVANCE(153); - END_STATE(); - case 104: - ACCEPT_TOKEN(sym_mutable_specifier); - END_STATE(); - case 105: - ACCEPT_TOKEN(anon_sym_pat); - if (lookahead == 'h') ADVANCE(154); - END_STATE(); - case 106: - ACCEPT_TOKEN(anon_sym_pub); - END_STATE(); - case 107: - ACCEPT_TOKEN(anon_sym_ref); - END_STATE(); - case 108: - if (lookahead == 'u') ADVANCE(155); - END_STATE(); - case 109: - if (lookahead == 'f') ADVANCE(156); - END_STATE(); - case 110: - if (lookahead == 't') ADVANCE(157); - END_STATE(); - case 111: - if (lookahead == 't') ADVANCE(158); - END_STATE(); - case 112: - ACCEPT_TOKEN(anon_sym_str); - if (lookahead == 'u') ADVANCE(159); - END_STATE(); - case 113: - if (lookahead == 'e') ADVANCE(160); - END_STATE(); - case 114: - if (lookahead == 'i') ADVANCE(161); - END_STATE(); - case 115: - if (lookahead == 'e') ADVANCE(162); - END_STATE(); - case 116: - if (lookahead == 'e') ADVANCE(163); - END_STATE(); - case 117: - if (lookahead == '8') ADVANCE(164); - END_STATE(); - case 118: - ACCEPT_TOKEN(anon_sym_u16); - END_STATE(); - case 119: - ACCEPT_TOKEN(anon_sym_u32); - END_STATE(); - case 120: - ACCEPT_TOKEN(anon_sym_u64); - END_STATE(); - case 121: - if (lookahead == 'o') ADVANCE(165); - END_STATE(); - case 122: - if (lookahead == 'a') ADVANCE(166); - END_STATE(); - case 123: - ACCEPT_TOKEN(anon_sym_use); - END_STATE(); - case 124: - if (lookahead == 'z') ADVANCE(167); - END_STATE(); - case 125: - ACCEPT_TOKEN(anon_sym_vis); - END_STATE(); - case 126: - if (lookahead == 'r') ADVANCE(168); - END_STATE(); - case 127: - if (lookahead == 'l') ADVANCE(169); - END_STATE(); - case 128: - if (lookahead == 'c') ADVANCE(170); - END_STATE(); - case 129: - if (lookahead == 't') ADVANCE(171); - END_STATE(); - case 130: - if (lookahead == 'k') ADVANCE(172); - END_STATE(); - case 131: - ACCEPT_TOKEN(anon_sym_bool); - END_STATE(); - case 132: - if (lookahead == 'k') ADVANCE(173); - END_STATE(); - case 133: - ACCEPT_TOKEN(anon_sym_char); - END_STATE(); - case 134: - if (lookahead == 't') ADVANCE(174); - END_STATE(); - case 135: - if (lookahead == 'i') ADVANCE(175); - END_STATE(); - case 136: - if (lookahead == 'e') ADVANCE(176); - END_STATE(); - case 137: - if (lookahead == 'u') ADVANCE(177); - END_STATE(); - case 138: - ACCEPT_TOKEN(anon_sym_else); - END_STATE(); - case 139: - ACCEPT_TOKEN(anon_sym_enum); - END_STATE(); - case 140: - ACCEPT_TOKEN(anon_sym_expr); - END_STATE(); - case 141: - if (lookahead == 'r') ADVANCE(178); - END_STATE(); - case 142: - if (lookahead == 'e') ADVANCE(179); - END_STATE(); - case 143: - ACCEPT_TOKEN(anon_sym_i128); - END_STATE(); - case 144: - if (lookahead == 't') ADVANCE(180); - END_STATE(); - case 145: - ACCEPT_TOKEN(anon_sym_impl); - END_STATE(); - case 146: - if (lookahead == 'e') ADVANCE(181); - END_STATE(); - case 147: - ACCEPT_TOKEN(anon_sym_item); - END_STATE(); - case 148: - if (lookahead == 't') ADVANCE(182); - END_STATE(); - case 149: - if (lookahead == 'r') ADVANCE(183); - END_STATE(); - case 150: - ACCEPT_TOKEN(anon_sym_loop); - END_STATE(); - case 151: - if (lookahead == 'h') ADVANCE(184); - END_STATE(); - case 152: - ACCEPT_TOKEN(anon_sym_meta); - END_STATE(); - case 153: - ACCEPT_TOKEN(anon_sym_move); - END_STATE(); - case 154: - ACCEPT_TOKEN(anon_sym_path); - END_STATE(); - case 155: - if (lookahead == 'r') ADVANCE(185); - END_STATE(); - case 156: - ACCEPT_TOKEN(sym_self); - END_STATE(); - case 157: - if (lookahead == 'i') ADVANCE(186); - END_STATE(); - case 158: - ACCEPT_TOKEN(anon_sym_stmt); - END_STATE(); - case 159: - if (lookahead == 'c') ADVANCE(187); - END_STATE(); - case 160: - if (lookahead == 'r') ADVANCE(188); - END_STATE(); - case 161: - if (lookahead == 't') ADVANCE(189); - END_STATE(); - case 162: - ACCEPT_TOKEN(anon_sym_true); - END_STATE(); - case 163: - ACCEPT_TOKEN(anon_sym_type); - END_STATE(); - case 164: - ACCEPT_TOKEN(anon_sym_u128); - END_STATE(); - case 165: - if (lookahead == 'n') ADVANCE(190); - END_STATE(); - case 166: - if (lookahead == 'f') ADVANCE(191); - END_STATE(); - case 167: - if (lookahead == 'e') ADVANCE(192); - END_STATE(); - case 168: - if (lookahead == 'e') ADVANCE(193); - END_STATE(); - case 169: - if (lookahead == 'e') ADVANCE(194); - END_STATE(); - case 170: - ACCEPT_TOKEN(anon_sym_async); - END_STATE(); - case 171: - ACCEPT_TOKEN(anon_sym_await); - END_STATE(); - case 172: - ACCEPT_TOKEN(anon_sym_block); - END_STATE(); - case 173: - ACCEPT_TOKEN(anon_sym_break); - END_STATE(); - case 174: - ACCEPT_TOKEN(anon_sym_const); - END_STATE(); - case 175: - if (lookahead == 'n') ADVANCE(195); - END_STATE(); - case 176: - ACCEPT_TOKEN(sym_crate); - END_STATE(); - case 177: - if (lookahead == 'l') ADVANCE(196); - END_STATE(); - case 178: - if (lookahead == 'n') ADVANCE(197); - END_STATE(); - case 179: - ACCEPT_TOKEN(anon_sym_false); - END_STATE(); - case 180: - ACCEPT_TOKEN(anon_sym_ident); - END_STATE(); - case 181: - ACCEPT_TOKEN(anon_sym_isize); - END_STATE(); - case 182: - if (lookahead == 'i') ADVANCE(198); - END_STATE(); - case 183: - if (lookahead == 'a') ADVANCE(199); - END_STATE(); - case 184: - ACCEPT_TOKEN(anon_sym_match); - END_STATE(); - case 185: - if (lookahead == 'n') ADVANCE(200); - END_STATE(); - case 186: - if (lookahead == 'c') ADVANCE(201); - END_STATE(); - case 187: - if (lookahead == 't') ADVANCE(202); - END_STATE(); - case 188: - ACCEPT_TOKEN(sym_super); - END_STATE(); - case 189: - ACCEPT_TOKEN(anon_sym_trait); - END_STATE(); - case 190: - ACCEPT_TOKEN(anon_sym_union); - END_STATE(); - case 191: - if (lookahead == 'e') ADVANCE(203); - END_STATE(); - case 192: - ACCEPT_TOKEN(anon_sym_usize); - END_STATE(); - case 193: - ACCEPT_TOKEN(anon_sym_where); - END_STATE(); - case 194: - ACCEPT_TOKEN(anon_sym_while); - END_STATE(); - case 195: - if (lookahead == 'u') ADVANCE(204); - END_STATE(); - case 196: - if (lookahead == 't') ADVANCE(205); - END_STATE(); - case 197: - ACCEPT_TOKEN(anon_sym_extern); - END_STATE(); - case 198: - if (lookahead == 'm') ADVANCE(206); - END_STATE(); - case 199: - if (lookahead == 'l') ADVANCE(207); - END_STATE(); - case 200: - ACCEPT_TOKEN(anon_sym_return); - END_STATE(); - case 201: - ACCEPT_TOKEN(anon_sym_static); - END_STATE(); - case 202: - ACCEPT_TOKEN(anon_sym_struct); - END_STATE(); - case 203: - ACCEPT_TOKEN(anon_sym_unsafe); - END_STATE(); - case 204: - if (lookahead == 'e') ADVANCE(208); - END_STATE(); - case 205: - ACCEPT_TOKEN(anon_sym_default); - END_STATE(); - case 206: - if (lookahead == 'e') ADVANCE(209); - END_STATE(); - case 207: - ACCEPT_TOKEN(anon_sym_literal); - END_STATE(); - case 208: - ACCEPT_TOKEN(anon_sym_continue); - END_STATE(); - case 209: - ACCEPT_TOKEN(anon_sym_lifetime); - END_STATE(); - default: - return false; - } -} - -static TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 57, .external_lex_state = 2}, - [2] = {.lex_state = 57, .external_lex_state = 2}, - [3] = {.lex_state = 57, .external_lex_state = 2}, - [4] = {.lex_state = 57, .external_lex_state = 2}, - [5] = {.lex_state = 57, .external_lex_state = 2}, - [6] = {.lex_state = 57, .external_lex_state = 2}, - [7] = {.lex_state = 57, .external_lex_state = 2}, - [8] = {.lex_state = 57, .external_lex_state = 2}, - [9] = {.lex_state = 57, .external_lex_state = 2}, - [10] = {.lex_state = 57, .external_lex_state = 2}, - [11] = {.lex_state = 57, .external_lex_state = 2}, - [12] = {.lex_state = 57, .external_lex_state = 2}, - [13] = {.lex_state = 57, .external_lex_state = 2}, - [14] = {.lex_state = 57, .external_lex_state = 2}, - [15] = {.lex_state = 57, .external_lex_state = 2}, - [16] = {.lex_state = 57, .external_lex_state = 2}, - [17] = {.lex_state = 1, .external_lex_state = 2}, - [18] = {.lex_state = 1, .external_lex_state = 2}, - [19] = {.lex_state = 1, .external_lex_state = 2}, - [20] = {.lex_state = 1, .external_lex_state = 2}, - [21] = {.lex_state = 1, .external_lex_state = 2}, - [22] = {.lex_state = 1, .external_lex_state = 2}, - [23] = {.lex_state = 1, .external_lex_state = 2}, - [24] = {.lex_state = 1, .external_lex_state = 2}, - [25] = {.lex_state = 1, .external_lex_state = 2}, - [26] = {.lex_state = 1, .external_lex_state = 2}, - [27] = {.lex_state = 5, .external_lex_state = 2}, - [28] = {.lex_state = 5, .external_lex_state = 2}, - [29] = {.lex_state = 5, .external_lex_state = 2}, - [30] = {.lex_state = 5, .external_lex_state = 2}, - [31] = {.lex_state = 56, .external_lex_state = 2}, - [32] = {.lex_state = 56, .external_lex_state = 2}, - [33] = {.lex_state = 5, .external_lex_state = 2}, - [34] = {.lex_state = 5, .external_lex_state = 2}, - [35] = {.lex_state = 5, .external_lex_state = 2}, - [36] = {.lex_state = 56, .external_lex_state = 2}, - [37] = {.lex_state = 56, .external_lex_state = 2}, - [38] = {.lex_state = 5, .external_lex_state = 2}, - [39] = {.lex_state = 56, .external_lex_state = 2}, - [40] = {.lex_state = 5, .external_lex_state = 2}, - [41] = {.lex_state = 5, .external_lex_state = 2}, - [42] = {.lex_state = 5, .external_lex_state = 2}, - [43] = {.lex_state = 56, .external_lex_state = 2}, - [44] = {.lex_state = 56, .external_lex_state = 2}, - [45] = {.lex_state = 56, .external_lex_state = 2}, - [46] = {.lex_state = 56, .external_lex_state = 2}, - [47] = {.lex_state = 56, .external_lex_state = 2}, - [48] = {.lex_state = 56, .external_lex_state = 2}, - [49] = {.lex_state = 56, .external_lex_state = 2}, - [50] = {.lex_state = 56, .external_lex_state = 2}, - [51] = {.lex_state = 56, .external_lex_state = 2}, - [52] = {.lex_state = 56, .external_lex_state = 2}, - [53] = {.lex_state = 56, .external_lex_state = 2}, - [54] = {.lex_state = 5, .external_lex_state = 2}, - [55] = {.lex_state = 56, .external_lex_state = 2}, - [56] = {.lex_state = 5, .external_lex_state = 2}, - [57] = {.lex_state = 56, .external_lex_state = 2}, - [58] = {.lex_state = 5, .external_lex_state = 2}, - [59] = {.lex_state = 5, .external_lex_state = 2}, - [60] = {.lex_state = 56, .external_lex_state = 2}, - [61] = {.lex_state = 56, .external_lex_state = 2}, - [62] = {.lex_state = 56, .external_lex_state = 2}, - [63] = {.lex_state = 56, .external_lex_state = 2}, - [64] = {.lex_state = 56, .external_lex_state = 2}, - [65] = {.lex_state = 56, .external_lex_state = 2}, - [66] = {.lex_state = 56, .external_lex_state = 2}, - [67] = {.lex_state = 56, .external_lex_state = 2}, - [68] = {.lex_state = 5, .external_lex_state = 2}, - [69] = {.lex_state = 56, .external_lex_state = 2}, - [70] = {.lex_state = 56, .external_lex_state = 2}, - [71] = {.lex_state = 56, .external_lex_state = 2}, - [72] = {.lex_state = 5, .external_lex_state = 2}, - [73] = {.lex_state = 5, .external_lex_state = 2}, - [74] = {.lex_state = 5, .external_lex_state = 2}, - [75] = {.lex_state = 5, .external_lex_state = 2}, - [76] = {.lex_state = 5, .external_lex_state = 2}, - [77] = {.lex_state = 5, .external_lex_state = 2}, - [78] = {.lex_state = 5, .external_lex_state = 2}, - [79] = {.lex_state = 5, .external_lex_state = 2}, - [80] = {.lex_state = 5, .external_lex_state = 2}, - [81] = {.lex_state = 5, .external_lex_state = 2}, - [82] = {.lex_state = 5, .external_lex_state = 2}, - [83] = {.lex_state = 56, .external_lex_state = 2}, - [84] = {.lex_state = 5, .external_lex_state = 2}, - [85] = {.lex_state = 5, .external_lex_state = 2}, - [86] = {.lex_state = 5, .external_lex_state = 2}, - [87] = {.lex_state = 5, .external_lex_state = 2}, - [88] = {.lex_state = 5, .external_lex_state = 2}, - [89] = {.lex_state = 5, .external_lex_state = 2}, - [90] = {.lex_state = 5, .external_lex_state = 2}, - [91] = {.lex_state = 5, .external_lex_state = 2}, - [92] = {.lex_state = 5, .external_lex_state = 2}, - [93] = {.lex_state = 5, .external_lex_state = 2}, - [94] = {.lex_state = 5, .external_lex_state = 2}, - [95] = {.lex_state = 5, .external_lex_state = 2}, - [96] = {.lex_state = 5, .external_lex_state = 2}, - [97] = {.lex_state = 5, .external_lex_state = 2}, - [98] = {.lex_state = 5, .external_lex_state = 2}, - [99] = {.lex_state = 5, .external_lex_state = 2}, - [100] = {.lex_state = 5, .external_lex_state = 2}, - [101] = {.lex_state = 5, .external_lex_state = 2}, - [102] = {.lex_state = 5, .external_lex_state = 2}, - [103] = {.lex_state = 5, .external_lex_state = 2}, - [104] = {.lex_state = 5, .external_lex_state = 2}, - [105] = {.lex_state = 5, .external_lex_state = 2}, - [106] = {.lex_state = 5, .external_lex_state = 2}, - [107] = {.lex_state = 5, .external_lex_state = 2}, - [108] = {.lex_state = 5, .external_lex_state = 2}, - [109] = {.lex_state = 5, .external_lex_state = 2}, - [110] = {.lex_state = 5, .external_lex_state = 2}, - [111] = {.lex_state = 5, .external_lex_state = 2}, - [112] = {.lex_state = 5, .external_lex_state = 2}, - [113] = {.lex_state = 5, .external_lex_state = 2}, - [114] = {.lex_state = 5, .external_lex_state = 2}, - [115] = {.lex_state = 5, .external_lex_state = 2}, - [116] = {.lex_state = 5, .external_lex_state = 2}, - [117] = {.lex_state = 5, .external_lex_state = 2}, - [118] = {.lex_state = 5, .external_lex_state = 2}, - [119] = {.lex_state = 6, .external_lex_state = 2}, - [120] = {.lex_state = 5, .external_lex_state = 2}, - [121] = {.lex_state = 5, .external_lex_state = 2}, - [122] = {.lex_state = 5, .external_lex_state = 2}, - [123] = {.lex_state = 5, .external_lex_state = 2}, - [124] = {.lex_state = 5, .external_lex_state = 2}, - [125] = {.lex_state = 5, .external_lex_state = 2}, - [126] = {.lex_state = 5, .external_lex_state = 2}, - [127] = {.lex_state = 5, .external_lex_state = 2}, - [128] = {.lex_state = 5, .external_lex_state = 2}, - [129] = {.lex_state = 5, .external_lex_state = 2}, - [130] = {.lex_state = 5, .external_lex_state = 2}, - [131] = {.lex_state = 5, .external_lex_state = 2}, - [132] = {.lex_state = 5, .external_lex_state = 2}, - [133] = {.lex_state = 5, .external_lex_state = 2}, - [134] = {.lex_state = 5, .external_lex_state = 2}, - [135] = {.lex_state = 5, .external_lex_state = 2}, - [136] = {.lex_state = 5, .external_lex_state = 2}, - [137] = {.lex_state = 6, .external_lex_state = 2}, - [138] = {.lex_state = 5, .external_lex_state = 2}, - [139] = {.lex_state = 5, .external_lex_state = 2}, - [140] = {.lex_state = 5, .external_lex_state = 2}, - [141] = {.lex_state = 5, .external_lex_state = 2}, - [142] = {.lex_state = 5, .external_lex_state = 2}, - [143] = {.lex_state = 5, .external_lex_state = 2}, - [144] = {.lex_state = 5, .external_lex_state = 2}, - [145] = {.lex_state = 5, .external_lex_state = 2}, - [146] = {.lex_state = 5, .external_lex_state = 2}, - [147] = {.lex_state = 5, .external_lex_state = 2}, - [148] = {.lex_state = 5, .external_lex_state = 2}, - [149] = {.lex_state = 5, .external_lex_state = 2}, - [150] = {.lex_state = 5, .external_lex_state = 2}, - [151] = {.lex_state = 5, .external_lex_state = 2}, - [152] = {.lex_state = 5, .external_lex_state = 2}, - [153] = {.lex_state = 5, .external_lex_state = 2}, - [154] = {.lex_state = 5, .external_lex_state = 2}, - [155] = {.lex_state = 5, .external_lex_state = 2}, - [156] = {.lex_state = 5, .external_lex_state = 2}, - [157] = {.lex_state = 5, .external_lex_state = 2}, - [158] = {.lex_state = 6, .external_lex_state = 2}, - [159] = {.lex_state = 5, .external_lex_state = 2}, - [160] = {.lex_state = 6, .external_lex_state = 2}, - [161] = {.lex_state = 5, .external_lex_state = 2}, - [162] = {.lex_state = 5, .external_lex_state = 2}, - [163] = {.lex_state = 5, .external_lex_state = 2}, - [164] = {.lex_state = 5, .external_lex_state = 2}, - [165] = {.lex_state = 5, .external_lex_state = 2}, - [166] = {.lex_state = 5, .external_lex_state = 2}, - [167] = {.lex_state = 5, .external_lex_state = 2}, - [168] = {.lex_state = 5, .external_lex_state = 2}, - [169] = {.lex_state = 5, .external_lex_state = 2}, - [170] = {.lex_state = 5, .external_lex_state = 2}, - [171] = {.lex_state = 5, .external_lex_state = 2}, - [172] = {.lex_state = 5, .external_lex_state = 2}, - [173] = {.lex_state = 5, .external_lex_state = 2}, - [174] = {.lex_state = 5, .external_lex_state = 2}, - [175] = {.lex_state = 5, .external_lex_state = 2}, - [176] = {.lex_state = 5, .external_lex_state = 2}, - [177] = {.lex_state = 5, .external_lex_state = 2}, - [178] = {.lex_state = 6, .external_lex_state = 2}, - [179] = {.lex_state = 5, .external_lex_state = 2}, - [180] = {.lex_state = 6, .external_lex_state = 2}, - [181] = {.lex_state = 6, .external_lex_state = 2}, - [182] = {.lex_state = 6, .external_lex_state = 2}, - [183] = {.lex_state = 6, .external_lex_state = 2}, - [184] = {.lex_state = 6, .external_lex_state = 2}, - [185] = {.lex_state = 6, .external_lex_state = 2}, - [186] = {.lex_state = 6, .external_lex_state = 2}, - [187] = {.lex_state = 6, .external_lex_state = 2}, - [188] = {.lex_state = 6, .external_lex_state = 2}, - [189] = {.lex_state = 6, .external_lex_state = 2}, - [190] = {.lex_state = 5, .external_lex_state = 2}, - [191] = {.lex_state = 5, .external_lex_state = 2}, - [192] = {.lex_state = 5, .external_lex_state = 2}, - [193] = {.lex_state = 5, .external_lex_state = 2}, - [194] = {.lex_state = 1, .external_lex_state = 2}, - [195] = {.lex_state = 5, .external_lex_state = 2}, - [196] = {.lex_state = 5, .external_lex_state = 2}, - [197] = {.lex_state = 5, .external_lex_state = 2}, - [198] = {.lex_state = 5, .external_lex_state = 2}, - [199] = {.lex_state = 5, .external_lex_state = 2}, - [200] = {.lex_state = 5, .external_lex_state = 2}, - [201] = {.lex_state = 5, .external_lex_state = 2}, - [202] = {.lex_state = 5, .external_lex_state = 2}, - [203] = {.lex_state = 5, .external_lex_state = 2}, - [204] = {.lex_state = 5, .external_lex_state = 2}, - [205] = {.lex_state = 5, .external_lex_state = 2}, - [206] = {.lex_state = 1, .external_lex_state = 2}, - [207] = {.lex_state = 1, .external_lex_state = 2}, - [208] = {.lex_state = 1, .external_lex_state = 2}, - [209] = {.lex_state = 5, .external_lex_state = 2}, - [210] = {.lex_state = 5, .external_lex_state = 2}, - [211] = {.lex_state = 5, .external_lex_state = 2}, - [212] = {.lex_state = 1, .external_lex_state = 2}, - [213] = {.lex_state = 5, .external_lex_state = 2}, - [214] = {.lex_state = 1, .external_lex_state = 2}, - [215] = {.lex_state = 1, .external_lex_state = 2}, - [216] = {.lex_state = 12, .external_lex_state = 2}, - [217] = {.lex_state = 1, .external_lex_state = 2}, - [218] = {.lex_state = 4, .external_lex_state = 3}, - [219] = {.lex_state = 1, .external_lex_state = 2}, - [220] = {.lex_state = 1, .external_lex_state = 2}, - [221] = {.lex_state = 1, .external_lex_state = 2}, - [222] = {.lex_state = 5, .external_lex_state = 2}, - [223] = {.lex_state = 5, .external_lex_state = 2}, - [224] = {.lex_state = 1, .external_lex_state = 2}, - [225] = {.lex_state = 1, .external_lex_state = 2}, - [226] = {.lex_state = 4, .external_lex_state = 3}, - [227] = {.lex_state = 1, .external_lex_state = 2}, - [228] = {.lex_state = 4, .external_lex_state = 3}, - [229] = {.lex_state = 1, .external_lex_state = 2}, - [230] = {.lex_state = 1, .external_lex_state = 2}, - [231] = {.lex_state = 5, .external_lex_state = 2}, - [232] = {.lex_state = 1, .external_lex_state = 2}, - [233] = {.lex_state = 1, .external_lex_state = 2}, - [234] = {.lex_state = 1, .external_lex_state = 2}, - [235] = {.lex_state = 1, .external_lex_state = 2}, - [236] = {.lex_state = 1, .external_lex_state = 2}, - [237] = {.lex_state = 1, .external_lex_state = 2}, - [238] = {.lex_state = 1, .external_lex_state = 2}, - [239] = {.lex_state = 1, .external_lex_state = 2}, - [240] = {.lex_state = 1, .external_lex_state = 2}, - [241] = {.lex_state = 4, .external_lex_state = 3}, - [242] = {.lex_state = 1, .external_lex_state = 2}, - [243] = {.lex_state = 1, .external_lex_state = 2}, - [244] = {.lex_state = 4, .external_lex_state = 3}, - [245] = {.lex_state = 57, .external_lex_state = 2}, - [246] = {.lex_state = 12, .external_lex_state = 2}, - [247] = {.lex_state = 57, .external_lex_state = 2}, - [248] = {.lex_state = 57, .external_lex_state = 2}, - [249] = {.lex_state = 57, .external_lex_state = 2}, - [250] = {.lex_state = 57, .external_lex_state = 2}, - [251] = {.lex_state = 57, .external_lex_state = 2}, - [252] = {.lex_state = 57, .external_lex_state = 2}, - [253] = {.lex_state = 57, .external_lex_state = 2}, - [254] = {.lex_state = 57, .external_lex_state = 2}, - [255] = {.lex_state = 57, .external_lex_state = 2}, - [256] = {.lex_state = 57, .external_lex_state = 2}, - [257] = {.lex_state = 57, .external_lex_state = 2}, - [258] = {.lex_state = 57, .external_lex_state = 2}, - [259] = {.lex_state = 57, .external_lex_state = 2}, - [260] = {.lex_state = 57, .external_lex_state = 2}, - [261] = {.lex_state = 57, .external_lex_state = 2}, - [262] = {.lex_state = 57, .external_lex_state = 2}, - [263] = {.lex_state = 57, .external_lex_state = 2}, - [264] = {.lex_state = 57, .external_lex_state = 2}, - [265] = {.lex_state = 57, .external_lex_state = 2}, - [266] = {.lex_state = 57, .external_lex_state = 2}, - [267] = {.lex_state = 57, .external_lex_state = 2}, - [268] = {.lex_state = 57, .external_lex_state = 2}, - [269] = {.lex_state = 57, .external_lex_state = 2}, - [270] = {.lex_state = 57, .external_lex_state = 2}, - [271] = {.lex_state = 57, .external_lex_state = 2}, - [272] = {.lex_state = 57, .external_lex_state = 2}, - [273] = {.lex_state = 57, .external_lex_state = 2}, - [274] = {.lex_state = 12, .external_lex_state = 2}, - [275] = {.lex_state = 57, .external_lex_state = 2}, - [276] = {.lex_state = 57, .external_lex_state = 2}, - [277] = {.lex_state = 57, .external_lex_state = 2}, - [278] = {.lex_state = 57, .external_lex_state = 2}, - [279] = {.lex_state = 57, .external_lex_state = 2}, - [280] = {.lex_state = 57, .external_lex_state = 2}, - [281] = {.lex_state = 57, .external_lex_state = 2}, - [282] = {.lex_state = 57, .external_lex_state = 2}, - [283] = {.lex_state = 57, .external_lex_state = 2}, - [284] = {.lex_state = 57, .external_lex_state = 2}, - [285] = {.lex_state = 57, .external_lex_state = 2}, - [286] = {.lex_state = 57, .external_lex_state = 2}, - [287] = {.lex_state = 57, .external_lex_state = 2}, - [288] = {.lex_state = 57, .external_lex_state = 2}, - [289] = {.lex_state = 57, .external_lex_state = 2}, - [290] = {.lex_state = 57, .external_lex_state = 2}, - [291] = {.lex_state = 12, .external_lex_state = 2}, - [292] = {.lex_state = 12, .external_lex_state = 2}, - [293] = {.lex_state = 12, .external_lex_state = 2}, - [294] = {.lex_state = 57, .external_lex_state = 2}, - [295] = {.lex_state = 12, .external_lex_state = 2}, - [296] = {.lex_state = 57, .external_lex_state = 2}, - [297] = {.lex_state = 57, .external_lex_state = 2}, - [298] = {.lex_state = 57, .external_lex_state = 2}, - [299] = {.lex_state = 57, .external_lex_state = 2}, - [300] = {.lex_state = 57, .external_lex_state = 2}, - [301] = {.lex_state = 57, .external_lex_state = 2}, - [302] = {.lex_state = 12, .external_lex_state = 2}, - [303] = {.lex_state = 12, .external_lex_state = 2}, - [304] = {.lex_state = 12, .external_lex_state = 2}, - [305] = {.lex_state = 57, .external_lex_state = 2}, - [306] = {.lex_state = 57, .external_lex_state = 2}, - [307] = {.lex_state = 57, .external_lex_state = 2}, - [308] = {.lex_state = 57, .external_lex_state = 2}, - [309] = {.lex_state = 57, .external_lex_state = 2}, - [310] = {.lex_state = 57, .external_lex_state = 2}, - [311] = {.lex_state = 57, .external_lex_state = 2}, - [312] = {.lex_state = 57, .external_lex_state = 2}, - [313] = {.lex_state = 12, .external_lex_state = 2}, - [314] = {.lex_state = 12, .external_lex_state = 2}, - [315] = {.lex_state = 57, .external_lex_state = 2}, - [316] = {.lex_state = 12, .external_lex_state = 2}, - [317] = {.lex_state = 57, .external_lex_state = 2}, - [318] = {.lex_state = 57, .external_lex_state = 2}, - [319] = {.lex_state = 57, .external_lex_state = 2}, - [320] = {.lex_state = 57, .external_lex_state = 2}, - [321] = {.lex_state = 57, .external_lex_state = 2}, - [322] = {.lex_state = 57, .external_lex_state = 2}, - [323] = {.lex_state = 57, .external_lex_state = 2}, - [324] = {.lex_state = 57, .external_lex_state = 2}, - [325] = {.lex_state = 57, .external_lex_state = 2}, - [326] = {.lex_state = 57, .external_lex_state = 2}, - [327] = {.lex_state = 57, .external_lex_state = 2}, - [328] = {.lex_state = 57, .external_lex_state = 2}, - [329] = {.lex_state = 57, .external_lex_state = 2}, - [330] = {.lex_state = 57, .external_lex_state = 2}, - [331] = {.lex_state = 57, .external_lex_state = 2}, - [332] = {.lex_state = 57, .external_lex_state = 2}, - [333] = {.lex_state = 57, .external_lex_state = 2}, - [334] = {.lex_state = 57, .external_lex_state = 2}, - [335] = {.lex_state = 57, .external_lex_state = 2}, - [336] = {.lex_state = 57, .external_lex_state = 2}, - [337] = {.lex_state = 57, .external_lex_state = 2}, - [338] = {.lex_state = 57, .external_lex_state = 2}, - [339] = {.lex_state = 57, .external_lex_state = 2}, - [340] = {.lex_state = 57, .external_lex_state = 2}, - [341] = {.lex_state = 57, .external_lex_state = 2}, - [342] = {.lex_state = 57, .external_lex_state = 2}, - [343] = {.lex_state = 57, .external_lex_state = 2}, - [344] = {.lex_state = 57, .external_lex_state = 2}, - [345] = {.lex_state = 57, .external_lex_state = 2}, - [346] = {.lex_state = 57, .external_lex_state = 2}, - [347] = {.lex_state = 57, .external_lex_state = 2}, - [348] = {.lex_state = 57, .external_lex_state = 2}, - [349] = {.lex_state = 57, .external_lex_state = 2}, - [350] = {.lex_state = 57, .external_lex_state = 2}, - [351] = {.lex_state = 57, .external_lex_state = 2}, - [352] = {.lex_state = 57, .external_lex_state = 2}, - [353] = {.lex_state = 57, .external_lex_state = 2}, - [354] = {.lex_state = 57, .external_lex_state = 2}, - [355] = {.lex_state = 57, .external_lex_state = 2}, - [356] = {.lex_state = 57, .external_lex_state = 2}, - [357] = {.lex_state = 57, .external_lex_state = 2}, - [358] = {.lex_state = 57, .external_lex_state = 2}, - [359] = {.lex_state = 57, .external_lex_state = 2}, - [360] = {.lex_state = 57, .external_lex_state = 2}, - [361] = {.lex_state = 57, .external_lex_state = 2}, - [362] = {.lex_state = 57, .external_lex_state = 2}, - [363] = {.lex_state = 57, .external_lex_state = 2}, - [364] = {.lex_state = 57, .external_lex_state = 2}, - [365] = {.lex_state = 57, .external_lex_state = 2}, - [366] = {.lex_state = 57, .external_lex_state = 2}, - [367] = {.lex_state = 57, .external_lex_state = 2}, - [368] = {.lex_state = 57, .external_lex_state = 2}, - [369] = {.lex_state = 57, .external_lex_state = 2}, - [370] = {.lex_state = 57, .external_lex_state = 2}, - [371] = {.lex_state = 57, .external_lex_state = 2}, - [372] = {.lex_state = 57, .external_lex_state = 2}, - [373] = {.lex_state = 57, .external_lex_state = 2}, - [374] = {.lex_state = 57, .external_lex_state = 2}, - [375] = {.lex_state = 57, .external_lex_state = 2}, - [376] = {.lex_state = 57, .external_lex_state = 2}, - [377] = {.lex_state = 57, .external_lex_state = 2}, - [378] = {.lex_state = 57, .external_lex_state = 2}, - [379] = {.lex_state = 57, .external_lex_state = 2}, - [380] = {.lex_state = 57, .external_lex_state = 2}, - [381] = {.lex_state = 57, .external_lex_state = 2}, - [382] = {.lex_state = 57, .external_lex_state = 2}, - [383] = {.lex_state = 57, .external_lex_state = 2}, - [384] = {.lex_state = 57, .external_lex_state = 2}, - [385] = {.lex_state = 57, .external_lex_state = 2}, - [386] = {.lex_state = 57, .external_lex_state = 2}, - [387] = {.lex_state = 57, .external_lex_state = 2}, - [388] = {.lex_state = 57, .external_lex_state = 2}, - [389] = {.lex_state = 57, .external_lex_state = 2}, - [390] = {.lex_state = 57, .external_lex_state = 2}, - [391] = {.lex_state = 57, .external_lex_state = 2}, - [392] = {.lex_state = 57, .external_lex_state = 2}, - [393] = {.lex_state = 57, .external_lex_state = 2}, - [394] = {.lex_state = 57, .external_lex_state = 2}, - [395] = {.lex_state = 57, .external_lex_state = 2}, - [396] = {.lex_state = 57, .external_lex_state = 2}, - [397] = {.lex_state = 57, .external_lex_state = 2}, - [398] = {.lex_state = 57, .external_lex_state = 2}, - [399] = {.lex_state = 57, .external_lex_state = 2}, - [400] = {.lex_state = 57, .external_lex_state = 2}, - [401] = {.lex_state = 57, .external_lex_state = 2}, - [402] = {.lex_state = 57, .external_lex_state = 2}, - [403] = {.lex_state = 57, .external_lex_state = 2}, - [404] = {.lex_state = 57, .external_lex_state = 2}, - [405] = {.lex_state = 57, .external_lex_state = 2}, - [406] = {.lex_state = 57, .external_lex_state = 2}, - [407] = {.lex_state = 57, .external_lex_state = 2}, - [408] = {.lex_state = 57, .external_lex_state = 2}, - [409] = {.lex_state = 57, .external_lex_state = 2}, - [410] = {.lex_state = 57, .external_lex_state = 2}, - [411] = {.lex_state = 57, .external_lex_state = 2}, - [412] = {.lex_state = 57, .external_lex_state = 2}, - [413] = {.lex_state = 57, .external_lex_state = 2}, - [414] = {.lex_state = 57, .external_lex_state = 2}, - [415] = {.lex_state = 57, .external_lex_state = 2}, - [416] = {.lex_state = 57, .external_lex_state = 2}, - [417] = {.lex_state = 57, .external_lex_state = 2}, - [418] = {.lex_state = 57, .external_lex_state = 2}, - [419] = {.lex_state = 57, .external_lex_state = 2}, - [420] = {.lex_state = 57, .external_lex_state = 2}, - [421] = {.lex_state = 57, .external_lex_state = 2}, - [422] = {.lex_state = 57, .external_lex_state = 2}, - [423] = {.lex_state = 57, .external_lex_state = 2}, - [424] = {.lex_state = 57, .external_lex_state = 2}, - [425] = {.lex_state = 12, .external_lex_state = 2}, - [426] = {.lex_state = 57, .external_lex_state = 2}, - [427] = {.lex_state = 57, .external_lex_state = 2}, - [428] = {.lex_state = 57, .external_lex_state = 2}, - [429] = {.lex_state = 57, .external_lex_state = 2}, - [430] = {.lex_state = 57, .external_lex_state = 2}, - [431] = {.lex_state = 57, .external_lex_state = 2}, - [432] = {.lex_state = 57, .external_lex_state = 2}, - [433] = {.lex_state = 57, .external_lex_state = 2}, - [434] = {.lex_state = 57, .external_lex_state = 2}, - [435] = {.lex_state = 57, .external_lex_state = 2}, - [436] = {.lex_state = 12, .external_lex_state = 2}, - [437] = {.lex_state = 57, .external_lex_state = 2}, - [438] = {.lex_state = 57, .external_lex_state = 2}, - [439] = {.lex_state = 57, .external_lex_state = 2}, - [440] = {.lex_state = 57, .external_lex_state = 2}, - [441] = {.lex_state = 57, .external_lex_state = 2}, - [442] = {.lex_state = 57, .external_lex_state = 2}, - [443] = {.lex_state = 57, .external_lex_state = 2}, - [444] = {.lex_state = 12, .external_lex_state = 2}, - [445] = {.lex_state = 57, .external_lex_state = 2}, - [446] = {.lex_state = 57, .external_lex_state = 2}, - [447] = {.lex_state = 57, .external_lex_state = 2}, - [448] = {.lex_state = 57, .external_lex_state = 2}, - [449] = {.lex_state = 57, .external_lex_state = 2}, - [450] = {.lex_state = 57, .external_lex_state = 2}, - [451] = {.lex_state = 57, .external_lex_state = 2}, - [452] = {.lex_state = 57, .external_lex_state = 2}, - [453] = {.lex_state = 57, .external_lex_state = 2}, - [454] = {.lex_state = 57, .external_lex_state = 2}, - [455] = {.lex_state = 5, .external_lex_state = 2}, - [456] = {.lex_state = 5, .external_lex_state = 2}, - [457] = {.lex_state = 5, .external_lex_state = 2}, - [458] = {.lex_state = 12, .external_lex_state = 2}, - [459] = {.lex_state = 12, .external_lex_state = 2}, - [460] = {.lex_state = 12, .external_lex_state = 2}, - [461] = {.lex_state = 12, .external_lex_state = 2}, - [462] = {.lex_state = 12, .external_lex_state = 2}, - [463] = {.lex_state = 12, .external_lex_state = 2}, - [464] = {.lex_state = 12, .external_lex_state = 2}, - [465] = {.lex_state = 5, .external_lex_state = 2}, - [466] = {.lex_state = 12, .external_lex_state = 2}, - [467] = {.lex_state = 12, .external_lex_state = 2}, - [468] = {.lex_state = 5, .external_lex_state = 2}, - [469] = {.lex_state = 12, .external_lex_state = 2}, - [470] = {.lex_state = 12, .external_lex_state = 2}, - [471] = {.lex_state = 12, .external_lex_state = 2}, - [472] = {.lex_state = 5, .external_lex_state = 2}, - [473] = {.lex_state = 12, .external_lex_state = 2}, - [474] = {.lex_state = 12, .external_lex_state = 2}, - [475] = {.lex_state = 12, .external_lex_state = 2}, - [476] = {.lex_state = 12, .external_lex_state = 2}, - [477] = {.lex_state = 12, .external_lex_state = 2}, - [478] = {.lex_state = 12, .external_lex_state = 2}, - [479] = {.lex_state = 12, .external_lex_state = 2}, - [480] = {.lex_state = 12, .external_lex_state = 2}, - [481] = {.lex_state = 12, .external_lex_state = 2}, - [482] = {.lex_state = 12, .external_lex_state = 2}, - [483] = {.lex_state = 12, .external_lex_state = 2}, - [484] = {.lex_state = 12, .external_lex_state = 2}, - [485] = {.lex_state = 12, .external_lex_state = 2}, - [486] = {.lex_state = 12, .external_lex_state = 2}, - [487] = {.lex_state = 12, .external_lex_state = 2}, - [488] = {.lex_state = 12, .external_lex_state = 2}, - [489] = {.lex_state = 12, .external_lex_state = 2}, - [490] = {.lex_state = 12, .external_lex_state = 2}, - [491] = {.lex_state = 12, .external_lex_state = 2}, - [492] = {.lex_state = 12, .external_lex_state = 2}, - [493] = {.lex_state = 5, .external_lex_state = 2}, - [494] = {.lex_state = 7, .external_lex_state = 3}, - [495] = {.lex_state = 7, .external_lex_state = 3}, - [496] = {.lex_state = 7, .external_lex_state = 3}, - [497] = {.lex_state = 5, .external_lex_state = 2}, - [498] = {.lex_state = 7, .external_lex_state = 3}, - [499] = {.lex_state = 7, .external_lex_state = 3}, - [500] = {.lex_state = 7, .external_lex_state = 3}, - [501] = {.lex_state = 11, .external_lex_state = 2}, - [502] = {.lex_state = 5, .external_lex_state = 2}, - [503] = {.lex_state = 7, .external_lex_state = 3}, - [504] = {.lex_state = 12, .external_lex_state = 2}, - [505] = {.lex_state = 7, .external_lex_state = 3}, - [506] = {.lex_state = 12, .external_lex_state = 2}, - [507] = {.lex_state = 12, .external_lex_state = 2}, - [508] = {.lex_state = 12, .external_lex_state = 2}, - [509] = {.lex_state = 12, .external_lex_state = 2}, - [510] = {.lex_state = 12, .external_lex_state = 2}, - [511] = {.lex_state = 12, .external_lex_state = 2}, - [512] = {.lex_state = 12, .external_lex_state = 2}, - [513] = {.lex_state = 12, .external_lex_state = 2}, - [514] = {.lex_state = 7, .external_lex_state = 3}, - [515] = {.lex_state = 12, .external_lex_state = 2}, - [516] = {.lex_state = 12, .external_lex_state = 2}, - [517] = {.lex_state = 12, .external_lex_state = 2}, - [518] = {.lex_state = 5, .external_lex_state = 2}, - [519] = {.lex_state = 12, .external_lex_state = 2}, - [520] = {.lex_state = 12, .external_lex_state = 2}, - [521] = {.lex_state = 7, .external_lex_state = 3}, - [522] = {.lex_state = 12, .external_lex_state = 2}, - [523] = {.lex_state = 12, .external_lex_state = 2}, - [524] = {.lex_state = 7, .external_lex_state = 3}, - [525] = {.lex_state = 5, .external_lex_state = 2}, - [526] = {.lex_state = 7, .external_lex_state = 3}, - [527] = {.lex_state = 7, .external_lex_state = 3}, - [528] = {.lex_state = 5, .external_lex_state = 2}, - [529] = {.lex_state = 5, .external_lex_state = 2}, - [530] = {.lex_state = 5, .external_lex_state = 2}, - [531] = {.lex_state = 5, .external_lex_state = 2}, - [532] = {.lex_state = 7, .external_lex_state = 3}, - [533] = {.lex_state = 5, .external_lex_state = 2}, - [534] = {.lex_state = 7, .external_lex_state = 3}, - [535] = {.lex_state = 7, .external_lex_state = 3}, - [536] = {.lex_state = 7, .external_lex_state = 3}, - [537] = {.lex_state = 5, .external_lex_state = 2}, - [538] = {.lex_state = 5, .external_lex_state = 2}, - [539] = {.lex_state = 5, .external_lex_state = 2}, - [540] = {.lex_state = 7, .external_lex_state = 3}, - [541] = {.lex_state = 7, .external_lex_state = 3}, - [542] = {.lex_state = 5, .external_lex_state = 2}, - [543] = {.lex_state = 5, .external_lex_state = 2}, - [544] = {.lex_state = 5, .external_lex_state = 2}, - [545] = {.lex_state = 5, .external_lex_state = 2}, - [546] = {.lex_state = 5, .external_lex_state = 2}, - [547] = {.lex_state = 7, .external_lex_state = 3}, - [548] = {.lex_state = 5, .external_lex_state = 2}, - [549] = {.lex_state = 7, .external_lex_state = 3}, - [550] = {.lex_state = 5, .external_lex_state = 2}, - [551] = {.lex_state = 5, .external_lex_state = 2}, - [552] = {.lex_state = 5, .external_lex_state = 2}, - [553] = {.lex_state = 5, .external_lex_state = 2}, - [554] = {.lex_state = 7, .external_lex_state = 3}, - [555] = {.lex_state = 5, .external_lex_state = 2}, - [556] = {.lex_state = 5, .external_lex_state = 2}, - [557] = {.lex_state = 7, .external_lex_state = 3}, - [558] = {.lex_state = 5, .external_lex_state = 2}, - [559] = {.lex_state = 7, .external_lex_state = 3}, - [560] = {.lex_state = 7, .external_lex_state = 3}, - [561] = {.lex_state = 7, .external_lex_state = 3}, - [562] = {.lex_state = 5, .external_lex_state = 2}, - [563] = {.lex_state = 5, .external_lex_state = 2}, - [564] = {.lex_state = 5, .external_lex_state = 2}, - [565] = {.lex_state = 5, .external_lex_state = 2}, - [566] = {.lex_state = 7, .external_lex_state = 3}, - [567] = {.lex_state = 5, .external_lex_state = 2}, - [568] = {.lex_state = 5, .external_lex_state = 2}, - [569] = {.lex_state = 7, .external_lex_state = 3}, - [570] = {.lex_state = 5, .external_lex_state = 2}, - [571] = {.lex_state = 5, .external_lex_state = 2}, - [572] = {.lex_state = 7, .external_lex_state = 3}, - [573] = {.lex_state = 7, .external_lex_state = 3}, - [574] = {.lex_state = 7, .external_lex_state = 3}, - [575] = {.lex_state = 5, .external_lex_state = 2}, - [576] = {.lex_state = 7, .external_lex_state = 3}, - [577] = {.lex_state = 7, .external_lex_state = 3}, - [578] = {.lex_state = 5, .external_lex_state = 2}, - [579] = {.lex_state = 5, .external_lex_state = 2}, - [580] = {.lex_state = 5, .external_lex_state = 2}, - [581] = {.lex_state = 5, .external_lex_state = 2}, - [582] = {.lex_state = 5, .external_lex_state = 2}, - [583] = {.lex_state = 5, .external_lex_state = 2}, - [584] = {.lex_state = 5, .external_lex_state = 2}, - [585] = {.lex_state = 5, .external_lex_state = 2}, - [586] = {.lex_state = 5, .external_lex_state = 2}, - [587] = {.lex_state = 5, .external_lex_state = 2}, - [588] = {.lex_state = 5, .external_lex_state = 2}, - [589] = {.lex_state = 7, .external_lex_state = 3}, - [590] = {.lex_state = 7, .external_lex_state = 3}, - [591] = {.lex_state = 5, .external_lex_state = 2}, - [592] = {.lex_state = 7, .external_lex_state = 3}, - [593] = {.lex_state = 7, .external_lex_state = 3}, - [594] = {.lex_state = 7, .external_lex_state = 3}, - [595] = {.lex_state = 7, .external_lex_state = 3}, - [596] = {.lex_state = 7, .external_lex_state = 3}, - [597] = {.lex_state = 7, .external_lex_state = 3}, - [598] = {.lex_state = 7, .external_lex_state = 3}, - [599] = {.lex_state = 7, .external_lex_state = 3}, - [600] = {.lex_state = 7, .external_lex_state = 3}, - [601] = {.lex_state = 7, .external_lex_state = 3}, - [602] = {.lex_state = 7, .external_lex_state = 3}, - [603] = {.lex_state = 7, .external_lex_state = 3}, - [604] = {.lex_state = 7, .external_lex_state = 3}, - [605] = {.lex_state = 7, .external_lex_state = 3}, - [606] = {.lex_state = 7, .external_lex_state = 3}, - [607] = {.lex_state = 7, .external_lex_state = 3}, - [608] = {.lex_state = 7, .external_lex_state = 3}, - [609] = {.lex_state = 7, .external_lex_state = 3}, - [610] = {.lex_state = 7, .external_lex_state = 3}, - [611] = {.lex_state = 7, .external_lex_state = 3}, - [612] = {.lex_state = 7, .external_lex_state = 3}, - [613] = {.lex_state = 7, .external_lex_state = 3}, - [614] = {.lex_state = 7, .external_lex_state = 3}, - [615] = {.lex_state = 7, .external_lex_state = 3}, - [616] = {.lex_state = 7, .external_lex_state = 3}, - [617] = {.lex_state = 7, .external_lex_state = 3}, - [618] = {.lex_state = 7, .external_lex_state = 3}, - [619] = {.lex_state = 7, .external_lex_state = 3}, - [620] = {.lex_state = 7, .external_lex_state = 3}, - [621] = {.lex_state = 7, .external_lex_state = 3}, - [622] = {.lex_state = 7, .external_lex_state = 3}, - [623] = {.lex_state = 7, .external_lex_state = 3}, - [624] = {.lex_state = 7, .external_lex_state = 3}, - [625] = {.lex_state = 7, .external_lex_state = 3}, - [626] = {.lex_state = 7, .external_lex_state = 3}, - [627] = {.lex_state = 7, .external_lex_state = 3}, - [628] = {.lex_state = 7, .external_lex_state = 3}, - [629] = {.lex_state = 7, .external_lex_state = 3}, - [630] = {.lex_state = 7, .external_lex_state = 3}, - [631] = {.lex_state = 7, .external_lex_state = 3}, - [632] = {.lex_state = 7, .external_lex_state = 3}, - [633] = {.lex_state = 7, .external_lex_state = 3}, - [634] = {.lex_state = 7, .external_lex_state = 3}, - [635] = {.lex_state = 7, .external_lex_state = 3}, - [636] = {.lex_state = 7, .external_lex_state = 3}, - [637] = {.lex_state = 7, .external_lex_state = 3}, - [638] = {.lex_state = 7, .external_lex_state = 3}, - [639] = {.lex_state = 7, .external_lex_state = 3}, - [640] = {.lex_state = 7, .external_lex_state = 3}, - [641] = {.lex_state = 7, .external_lex_state = 3}, - [642] = {.lex_state = 7, .external_lex_state = 3}, - [643] = {.lex_state = 7, .external_lex_state = 3}, - [644] = {.lex_state = 7, .external_lex_state = 3}, - [645] = {.lex_state = 7, .external_lex_state = 3}, - [646] = {.lex_state = 7, .external_lex_state = 3}, - [647] = {.lex_state = 7, .external_lex_state = 3}, - [648] = {.lex_state = 7, .external_lex_state = 3}, - [649] = {.lex_state = 7, .external_lex_state = 3}, - [650] = {.lex_state = 7, .external_lex_state = 3}, - [651] = {.lex_state = 7, .external_lex_state = 3}, - [652] = {.lex_state = 7, .external_lex_state = 3}, - [653] = {.lex_state = 7, .external_lex_state = 3}, - [654] = {.lex_state = 7, .external_lex_state = 3}, - [655] = {.lex_state = 7, .external_lex_state = 3}, - [656] = {.lex_state = 7, .external_lex_state = 3}, - [657] = {.lex_state = 7, .external_lex_state = 3}, - [658] = {.lex_state = 7, .external_lex_state = 3}, - [659] = {.lex_state = 7, .external_lex_state = 3}, - [660] = {.lex_state = 7, .external_lex_state = 3}, - [661] = {.lex_state = 7, .external_lex_state = 3}, - [662] = {.lex_state = 7, .external_lex_state = 3}, - [663] = {.lex_state = 7, .external_lex_state = 3}, - [664] = {.lex_state = 7, .external_lex_state = 3}, - [665] = {.lex_state = 7, .external_lex_state = 3}, - [666] = {.lex_state = 7, .external_lex_state = 3}, - [667] = {.lex_state = 7, .external_lex_state = 3}, - [668] = {.lex_state = 7, .external_lex_state = 3}, - [669] = {.lex_state = 7, .external_lex_state = 3}, - [670] = {.lex_state = 7, .external_lex_state = 3}, - [671] = {.lex_state = 7, .external_lex_state = 3}, - [672] = {.lex_state = 7, .external_lex_state = 3}, - [673] = {.lex_state = 7, .external_lex_state = 3}, - [674] = {.lex_state = 7, .external_lex_state = 3}, - [675] = {.lex_state = 7, .external_lex_state = 3}, - [676] = {.lex_state = 7, .external_lex_state = 3}, - [677] = {.lex_state = 7, .external_lex_state = 3}, - [678] = {.lex_state = 7, .external_lex_state = 3}, - [679] = {.lex_state = 7, .external_lex_state = 3}, - [680] = {.lex_state = 7, .external_lex_state = 3}, - [681] = {.lex_state = 7, .external_lex_state = 3}, - [682] = {.lex_state = 7, .external_lex_state = 3}, - [683] = {.lex_state = 7, .external_lex_state = 3}, - [684] = {.lex_state = 7, .external_lex_state = 3}, - [685] = {.lex_state = 7, .external_lex_state = 3}, - [686] = {.lex_state = 7, .external_lex_state = 3}, - [687] = {.lex_state = 7, .external_lex_state = 3}, - [688] = {.lex_state = 7, .external_lex_state = 3}, - [689] = {.lex_state = 7, .external_lex_state = 3}, - [690] = {.lex_state = 7, .external_lex_state = 3}, - [691] = {.lex_state = 7, .external_lex_state = 3}, - [692] = {.lex_state = 7, .external_lex_state = 3}, - [693] = {.lex_state = 7, .external_lex_state = 3}, - [694] = {.lex_state = 7, .external_lex_state = 3}, - [695] = {.lex_state = 7, .external_lex_state = 3}, - [696] = {.lex_state = 7, .external_lex_state = 3}, - [697] = {.lex_state = 7, .external_lex_state = 3}, - [698] = {.lex_state = 5, .external_lex_state = 2}, - [699] = {.lex_state = 5, .external_lex_state = 2}, - [700] = {.lex_state = 5, .external_lex_state = 2}, - [701] = {.lex_state = 5, .external_lex_state = 2}, - [702] = {.lex_state = 6, .external_lex_state = 2}, - [703] = {.lex_state = 3, .external_lex_state = 3}, - [704] = {.lex_state = 3, .external_lex_state = 3}, - [705] = {.lex_state = 3, .external_lex_state = 3}, - [706] = {.lex_state = 3, .external_lex_state = 3}, - [707] = {.lex_state = 3, .external_lex_state = 3}, - [708] = {.lex_state = 2, .external_lex_state = 3}, - [709] = {.lex_state = 3, .external_lex_state = 3}, - [710] = {.lex_state = 3, .external_lex_state = 3}, - [711] = {.lex_state = 3, .external_lex_state = 3}, - [712] = {.lex_state = 3, .external_lex_state = 3}, - [713] = {.lex_state = 4, .external_lex_state = 3}, - [714] = {.lex_state = 3, .external_lex_state = 3}, - [715] = {.lex_state = 4, .external_lex_state = 3}, - [716] = {.lex_state = 4, .external_lex_state = 3}, - [717] = {.lex_state = 4, .external_lex_state = 3}, - [718] = {.lex_state = 4, .external_lex_state = 3}, - [719] = {.lex_state = 2, .external_lex_state = 3}, - [720] = {.lex_state = 2, .external_lex_state = 3}, - [721] = {.lex_state = 2, .external_lex_state = 3}, - [722] = {.lex_state = 2, .external_lex_state = 3}, - [723] = {.lex_state = 2, .external_lex_state = 3}, - [724] = {.lex_state = 2, .external_lex_state = 3}, - [725] = {.lex_state = 2, .external_lex_state = 3}, - [726] = {.lex_state = 2, .external_lex_state = 3}, - [727] = {.lex_state = 4, .external_lex_state = 3}, - [728] = {.lex_state = 2, .external_lex_state = 3}, - [729] = {.lex_state = 4, .external_lex_state = 3}, - [730] = {.lex_state = 4, .external_lex_state = 3}, - [731] = {.lex_state = 2, .external_lex_state = 3}, - [732] = {.lex_state = 4, .external_lex_state = 3}, - [733] = {.lex_state = 2, .external_lex_state = 3}, - [734] = {.lex_state = 4, .external_lex_state = 3}, - [735] = {.lex_state = 4, .external_lex_state = 3}, - [736] = {.lex_state = 4, .external_lex_state = 3}, - [737] = {.lex_state = 4, .external_lex_state = 3}, - [738] = {.lex_state = 4, .external_lex_state = 3}, - [739] = {.lex_state = 4, .external_lex_state = 3}, - [740] = {.lex_state = 3, .external_lex_state = 3}, - [741] = {.lex_state = 4, .external_lex_state = 3}, - [742] = {.lex_state = 4, .external_lex_state = 3}, - [743] = {.lex_state = 4, .external_lex_state = 3}, - [744] = {.lex_state = 4, .external_lex_state = 3}, - [745] = {.lex_state = 2, .external_lex_state = 3}, - [746] = {.lex_state = 4, .external_lex_state = 3}, - [747] = {.lex_state = 4, .external_lex_state = 3}, - [748] = {.lex_state = 4, .external_lex_state = 3}, - [749] = {.lex_state = 2, .external_lex_state = 3}, - [750] = {.lex_state = 4, .external_lex_state = 3}, - [751] = {.lex_state = 4, .external_lex_state = 3}, - [752] = {.lex_state = 4, .external_lex_state = 3}, - [753] = {.lex_state = 4, .external_lex_state = 3}, - [754] = {.lex_state = 4, .external_lex_state = 3}, - [755] = {.lex_state = 4, .external_lex_state = 3}, - [756] = {.lex_state = 4, .external_lex_state = 3}, - [757] = {.lex_state = 4, .external_lex_state = 3}, - [758] = {.lex_state = 4, .external_lex_state = 3}, - [759] = {.lex_state = 4, .external_lex_state = 3}, - [760] = {.lex_state = 2, .external_lex_state = 3}, - [761] = {.lex_state = 4, .external_lex_state = 3}, - [762] = {.lex_state = 4, .external_lex_state = 3}, - [763] = {.lex_state = 4, .external_lex_state = 3}, - [764] = {.lex_state = 2, .external_lex_state = 3}, - [765] = {.lex_state = 4, .external_lex_state = 3}, - [766] = {.lex_state = 4, .external_lex_state = 3}, - [767] = {.lex_state = 4, .external_lex_state = 3}, - [768] = {.lex_state = 4, .external_lex_state = 3}, - [769] = {.lex_state = 4, .external_lex_state = 3}, - [770] = {.lex_state = 4, .external_lex_state = 3}, - [771] = {.lex_state = 4, .external_lex_state = 3}, - [772] = {.lex_state = 4, .external_lex_state = 3}, - [773] = {.lex_state = 4, .external_lex_state = 3}, - [774] = {.lex_state = 2, .external_lex_state = 3}, - [775] = {.lex_state = 4, .external_lex_state = 3}, - [776] = {.lex_state = 4, .external_lex_state = 3}, - [777] = {.lex_state = 4, .external_lex_state = 3}, - [778] = {.lex_state = 4, .external_lex_state = 3}, - [779] = {.lex_state = 4, .external_lex_state = 3}, - [780] = {.lex_state = 4, .external_lex_state = 3}, - [781] = {.lex_state = 4, .external_lex_state = 3}, - [782] = {.lex_state = 2, .external_lex_state = 3}, - [783] = {.lex_state = 4, .external_lex_state = 3}, - [784] = {.lex_state = 4, .external_lex_state = 3}, - [785] = {.lex_state = 4, .external_lex_state = 3}, - [786] = {.lex_state = 4, .external_lex_state = 3}, - [787] = {.lex_state = 4, .external_lex_state = 3}, - [788] = {.lex_state = 4, .external_lex_state = 3}, - [789] = {.lex_state = 4, .external_lex_state = 3}, - [790] = {.lex_state = 4, .external_lex_state = 3}, - [791] = {.lex_state = 4, .external_lex_state = 3}, - [792] = {.lex_state = 4, .external_lex_state = 3}, - [793] = {.lex_state = 4, .external_lex_state = 3}, - [794] = {.lex_state = 2, .external_lex_state = 3}, - [795] = {.lex_state = 4, .external_lex_state = 3}, - [796] = {.lex_state = 4, .external_lex_state = 3}, - [797] = {.lex_state = 10, .external_lex_state = 3}, - [798] = {.lex_state = 4, .external_lex_state = 3}, - [799] = {.lex_state = 4, .external_lex_state = 3}, - [800] = {.lex_state = 4, .external_lex_state = 3}, - [801] = {.lex_state = 4, .external_lex_state = 3}, - [802] = {.lex_state = 4, .external_lex_state = 3}, - [803] = {.lex_state = 4, .external_lex_state = 3}, - [804] = {.lex_state = 4, .external_lex_state = 3}, - [805] = {.lex_state = 4, .external_lex_state = 3}, - [806] = {.lex_state = 4, .external_lex_state = 3}, - [807] = {.lex_state = 4, .external_lex_state = 3}, - [808] = {.lex_state = 4, .external_lex_state = 3}, - [809] = {.lex_state = 4, .external_lex_state = 3}, - [810] = {.lex_state = 4, .external_lex_state = 3}, - [811] = {.lex_state = 4, .external_lex_state = 3}, - [812] = {.lex_state = 4, .external_lex_state = 3}, - [813] = {.lex_state = 4, .external_lex_state = 3}, - [814] = {.lex_state = 4, .external_lex_state = 3}, - [815] = {.lex_state = 4, .external_lex_state = 3}, - [816] = {.lex_state = 4, .external_lex_state = 3}, - [817] = {.lex_state = 4, .external_lex_state = 3}, - [818] = {.lex_state = 4, .external_lex_state = 3}, - [819] = {.lex_state = 2, .external_lex_state = 3}, - [820] = {.lex_state = 4, .external_lex_state = 3}, - [821] = {.lex_state = 2, .external_lex_state = 3}, - [822] = {.lex_state = 4, .external_lex_state = 3}, - [823] = {.lex_state = 4, .external_lex_state = 3}, - [824] = {.lex_state = 2, .external_lex_state = 3}, - [825] = {.lex_state = 2, .external_lex_state = 3}, - [826] = {.lex_state = 2, .external_lex_state = 3}, - [827] = {.lex_state = 4, .external_lex_state = 3}, - [828] = {.lex_state = 4, .external_lex_state = 3}, - [829] = {.lex_state = 2, .external_lex_state = 3}, - [830] = {.lex_state = 4, .external_lex_state = 3}, - [831] = {.lex_state = 4, .external_lex_state = 3}, - [832] = {.lex_state = 4, .external_lex_state = 3}, - [833] = {.lex_state = 4, .external_lex_state = 3}, - [834] = {.lex_state = 4, .external_lex_state = 3}, - [835] = {.lex_state = 4, .external_lex_state = 3}, - [836] = {.lex_state = 4, .external_lex_state = 3}, - [837] = {.lex_state = 4, .external_lex_state = 3}, - [838] = {.lex_state = 4, .external_lex_state = 3}, - [839] = {.lex_state = 2, .external_lex_state = 3}, - [840] = {.lex_state = 2, .external_lex_state = 3}, - [841] = {.lex_state = 4, .external_lex_state = 3}, - [842] = {.lex_state = 4, .external_lex_state = 3}, - [843] = {.lex_state = 4, .external_lex_state = 3}, - [844] = {.lex_state = 2, .external_lex_state = 3}, - [845] = {.lex_state = 2, .external_lex_state = 3}, - [846] = {.lex_state = 2, .external_lex_state = 3}, - [847] = {.lex_state = 4, .external_lex_state = 3}, - [848] = {.lex_state = 4, .external_lex_state = 3}, - [849] = {.lex_state = 4, .external_lex_state = 3}, - [850] = {.lex_state = 4, .external_lex_state = 3}, - [851] = {.lex_state = 2, .external_lex_state = 3}, - [852] = {.lex_state = 4, .external_lex_state = 3}, - [853] = {.lex_state = 4, .external_lex_state = 3}, - [854] = {.lex_state = 2, .external_lex_state = 3}, - [855] = {.lex_state = 4, .external_lex_state = 3}, - [856] = {.lex_state = 4, .external_lex_state = 3}, - [857] = {.lex_state = 4, .external_lex_state = 3}, - [858] = {.lex_state = 4, .external_lex_state = 3}, - [859] = {.lex_state = 4, .external_lex_state = 3}, - [860] = {.lex_state = 4, .external_lex_state = 3}, - [861] = {.lex_state = 4, .external_lex_state = 3}, - [862] = {.lex_state = 4, .external_lex_state = 3}, - [863] = {.lex_state = 4, .external_lex_state = 3}, - [864] = {.lex_state = 2, .external_lex_state = 3}, - [865] = {.lex_state = 4, .external_lex_state = 3}, - [866] = {.lex_state = 4, .external_lex_state = 3}, - [867] = {.lex_state = 4, .external_lex_state = 3}, - [868] = {.lex_state = 4, .external_lex_state = 3}, - [869] = {.lex_state = 4, .external_lex_state = 3}, - [870] = {.lex_state = 4, .external_lex_state = 3}, - [871] = {.lex_state = 4, .external_lex_state = 3}, - [872] = {.lex_state = 4, .external_lex_state = 3}, - [873] = {.lex_state = 4, .external_lex_state = 3}, - [874] = {.lex_state = 4, .external_lex_state = 3}, - [875] = {.lex_state = 4, .external_lex_state = 3}, - [876] = {.lex_state = 2, .external_lex_state = 3}, - [877] = {.lex_state = 4, .external_lex_state = 3}, - [878] = {.lex_state = 4, .external_lex_state = 3}, - [879] = {.lex_state = 4, .external_lex_state = 3}, - [880] = {.lex_state = 4, .external_lex_state = 3}, - [881] = {.lex_state = 4, .external_lex_state = 3}, - [882] = {.lex_state = 4, .external_lex_state = 3}, - [883] = {.lex_state = 2, .external_lex_state = 3}, - [884] = {.lex_state = 4, .external_lex_state = 3}, - [885] = {.lex_state = 4, .external_lex_state = 3}, - [886] = {.lex_state = 4, .external_lex_state = 3}, - [887] = {.lex_state = 4, .external_lex_state = 3}, - [888] = {.lex_state = 2, .external_lex_state = 3}, - [889] = {.lex_state = 4, .external_lex_state = 3}, - [890] = {.lex_state = 4, .external_lex_state = 3}, - [891] = {.lex_state = 4, .external_lex_state = 3}, - [892] = {.lex_state = 4, .external_lex_state = 3}, - [893] = {.lex_state = 4, .external_lex_state = 3}, - [894] = {.lex_state = 2, .external_lex_state = 3}, - [895] = {.lex_state = 4, .external_lex_state = 3}, - [896] = {.lex_state = 4, .external_lex_state = 3}, - [897] = {.lex_state = 2, .external_lex_state = 3}, - [898] = {.lex_state = 4, .external_lex_state = 3}, - [899] = {.lex_state = 4, .external_lex_state = 3}, - [900] = {.lex_state = 4, .external_lex_state = 3}, - [901] = {.lex_state = 4, .external_lex_state = 3}, - [902] = {.lex_state = 4, .external_lex_state = 3}, - [903] = {.lex_state = 4, .external_lex_state = 3}, - [904] = {.lex_state = 2, .external_lex_state = 3}, - [905] = {.lex_state = 4, .external_lex_state = 3}, - [906] = {.lex_state = 4, .external_lex_state = 3}, - [907] = {.lex_state = 4, .external_lex_state = 3}, - [908] = {.lex_state = 4, .external_lex_state = 3}, - [909] = {.lex_state = 4, .external_lex_state = 3}, - [910] = {.lex_state = 4, .external_lex_state = 3}, - [911] = {.lex_state = 2, .external_lex_state = 3}, - [912] = {.lex_state = 4, .external_lex_state = 3}, - [913] = {.lex_state = 4, .external_lex_state = 3}, - [914] = {.lex_state = 4, .external_lex_state = 3}, - [915] = {.lex_state = 4, .external_lex_state = 3}, - [916] = {.lex_state = 4, .external_lex_state = 3}, - [917] = {.lex_state = 4, .external_lex_state = 3}, - [918] = {.lex_state = 4, .external_lex_state = 3}, - [919] = {.lex_state = 4, .external_lex_state = 3}, - [920] = {.lex_state = 4, .external_lex_state = 3}, - [921] = {.lex_state = 4, .external_lex_state = 3}, - [922] = {.lex_state = 4, .external_lex_state = 3}, - [923] = {.lex_state = 4, .external_lex_state = 3}, - [924] = {.lex_state = 4, .external_lex_state = 3}, - [925] = {.lex_state = 4, .external_lex_state = 3}, - [926] = {.lex_state = 4, .external_lex_state = 3}, - [927] = {.lex_state = 4, .external_lex_state = 3}, - [928] = {.lex_state = 4, .external_lex_state = 3}, - [929] = {.lex_state = 4, .external_lex_state = 3}, - [930] = {.lex_state = 4, .external_lex_state = 3}, - [931] = {.lex_state = 4, .external_lex_state = 3}, - [932] = {.lex_state = 4, .external_lex_state = 3}, - [933] = {.lex_state = 4, .external_lex_state = 3}, - [934] = {.lex_state = 4, .external_lex_state = 3}, - [935] = {.lex_state = 4, .external_lex_state = 3}, - [936] = {.lex_state = 4, .external_lex_state = 3}, - [937] = {.lex_state = 4, .external_lex_state = 3}, - [938] = {.lex_state = 4, .external_lex_state = 3}, - [939] = {.lex_state = 4, .external_lex_state = 3}, - [940] = {.lex_state = 4, .external_lex_state = 3}, - [941] = {.lex_state = 4, .external_lex_state = 3}, - [942] = {.lex_state = 4, .external_lex_state = 3}, - [943] = {.lex_state = 4, .external_lex_state = 3}, - [944] = {.lex_state = 4, .external_lex_state = 3}, - [945] = {.lex_state = 4, .external_lex_state = 3}, - [946] = {.lex_state = 4, .external_lex_state = 3}, - [947] = {.lex_state = 2, .external_lex_state = 3}, - [948] = {.lex_state = 4, .external_lex_state = 3}, - [949] = {.lex_state = 2, .external_lex_state = 3}, - [950] = {.lex_state = 4, .external_lex_state = 3}, - [951] = {.lex_state = 4, .external_lex_state = 3}, - [952] = {.lex_state = 4, .external_lex_state = 3}, - [953] = {.lex_state = 4, .external_lex_state = 3}, - [954] = {.lex_state = 2, .external_lex_state = 3}, - [955] = {.lex_state = 2, .external_lex_state = 3}, - [956] = {.lex_state = 2, .external_lex_state = 3}, - [957] = {.lex_state = 2, .external_lex_state = 3}, - [958] = {.lex_state = 2, .external_lex_state = 3}, - [959] = {.lex_state = 2, .external_lex_state = 3}, - [960] = {.lex_state = 2, .external_lex_state = 3}, - [961] = {.lex_state = 2, .external_lex_state = 3}, - [962] = {.lex_state = 2, .external_lex_state = 3}, - [963] = {.lex_state = 2, .external_lex_state = 3}, - [964] = {.lex_state = 2, .external_lex_state = 3}, - [965] = {.lex_state = 2, .external_lex_state = 3}, - [966] = {.lex_state = 2, .external_lex_state = 3}, - [967] = {.lex_state = 2, .external_lex_state = 3}, - [968] = {.lex_state = 2, .external_lex_state = 3}, - [969] = {.lex_state = 2, .external_lex_state = 3}, - [970] = {.lex_state = 2, .external_lex_state = 3}, - [971] = {.lex_state = 2, .external_lex_state = 3}, - [972] = {.lex_state = 2, .external_lex_state = 3}, - [973] = {.lex_state = 2, .external_lex_state = 3}, - [974] = {.lex_state = 2, .external_lex_state = 3}, - [975] = {.lex_state = 2, .external_lex_state = 3}, - [976] = {.lex_state = 2, .external_lex_state = 3}, - [977] = {.lex_state = 2, .external_lex_state = 3}, - [978] = {.lex_state = 2, .external_lex_state = 3}, - [979] = {.lex_state = 2, .external_lex_state = 3}, - [980] = {.lex_state = 2, .external_lex_state = 3}, - [981] = {.lex_state = 2, .external_lex_state = 3}, - [982] = {.lex_state = 2, .external_lex_state = 3}, - [983] = {.lex_state = 2, .external_lex_state = 3}, - [984] = {.lex_state = 2, .external_lex_state = 3}, - [985] = {.lex_state = 2, .external_lex_state = 3}, - [986] = {.lex_state = 2, .external_lex_state = 3}, - [987] = {.lex_state = 2, .external_lex_state = 3}, - [988] = {.lex_state = 2, .external_lex_state = 3}, - [989] = {.lex_state = 2, .external_lex_state = 3}, - [990] = {.lex_state = 2, .external_lex_state = 3}, - [991] = {.lex_state = 2, .external_lex_state = 3}, - [992] = {.lex_state = 2, .external_lex_state = 3}, - [993] = {.lex_state = 2, .external_lex_state = 3}, - [994] = {.lex_state = 2, .external_lex_state = 3}, - [995] = {.lex_state = 2, .external_lex_state = 3}, - [996] = {.lex_state = 2, .external_lex_state = 3}, - [997] = {.lex_state = 2, .external_lex_state = 3}, - [998] = {.lex_state = 2, .external_lex_state = 3}, - [999] = {.lex_state = 2, .external_lex_state = 3}, - [1000] = {.lex_state = 2, .external_lex_state = 3}, - [1001] = {.lex_state = 2, .external_lex_state = 3}, - [1002] = {.lex_state = 2, .external_lex_state = 3}, - [1003] = {.lex_state = 2, .external_lex_state = 3}, - [1004] = {.lex_state = 2, .external_lex_state = 3}, - [1005] = {.lex_state = 2, .external_lex_state = 3}, - [1006] = {.lex_state = 2, .external_lex_state = 3}, - [1007] = {.lex_state = 2, .external_lex_state = 3}, - [1008] = {.lex_state = 2, .external_lex_state = 3}, - [1009] = {.lex_state = 2, .external_lex_state = 3}, - [1010] = {.lex_state = 2, .external_lex_state = 3}, - [1011] = {.lex_state = 2, .external_lex_state = 3}, - [1012] = {.lex_state = 2, .external_lex_state = 3}, - [1013] = {.lex_state = 2, .external_lex_state = 3}, - [1014] = {.lex_state = 2, .external_lex_state = 3}, - [1015] = {.lex_state = 2, .external_lex_state = 3}, - [1016] = {.lex_state = 2, .external_lex_state = 3}, - [1017] = {.lex_state = 2, .external_lex_state = 3}, - [1018] = {.lex_state = 2, .external_lex_state = 3}, - [1019] = {.lex_state = 2, .external_lex_state = 3}, - [1020] = {.lex_state = 2, .external_lex_state = 3}, - [1021] = {.lex_state = 2, .external_lex_state = 3}, - [1022] = {.lex_state = 2, .external_lex_state = 3}, - [1023] = {.lex_state = 2, .external_lex_state = 3}, - [1024] = {.lex_state = 2, .external_lex_state = 3}, - [1025] = {.lex_state = 2, .external_lex_state = 3}, - [1026] = {.lex_state = 2, .external_lex_state = 3}, - [1027] = {.lex_state = 2, .external_lex_state = 3}, - [1028] = {.lex_state = 2, .external_lex_state = 3}, - [1029] = {.lex_state = 2, .external_lex_state = 3}, - [1030] = {.lex_state = 2, .external_lex_state = 3}, - [1031] = {.lex_state = 2, .external_lex_state = 3}, - [1032] = {.lex_state = 2, .external_lex_state = 3}, - [1033] = {.lex_state = 2, .external_lex_state = 3}, - [1034] = {.lex_state = 2, .external_lex_state = 3}, - [1035] = {.lex_state = 2, .external_lex_state = 3}, - [1036] = {.lex_state = 2, .external_lex_state = 3}, - [1037] = {.lex_state = 2, .external_lex_state = 3}, - [1038] = {.lex_state = 2, .external_lex_state = 3}, - [1039] = {.lex_state = 2, .external_lex_state = 3}, - [1040] = {.lex_state = 2, .external_lex_state = 3}, - [1041] = {.lex_state = 2, .external_lex_state = 3}, - [1042] = {.lex_state = 2, .external_lex_state = 3}, - [1043] = {.lex_state = 2, .external_lex_state = 3}, - [1044] = {.lex_state = 2, .external_lex_state = 3}, - [1045] = {.lex_state = 2, .external_lex_state = 3}, - [1046] = {.lex_state = 2, .external_lex_state = 3}, - [1047] = {.lex_state = 2, .external_lex_state = 3}, - [1048] = {.lex_state = 2, .external_lex_state = 3}, - [1049] = {.lex_state = 2, .external_lex_state = 3}, - [1050] = {.lex_state = 2, .external_lex_state = 3}, - [1051] = {.lex_state = 2, .external_lex_state = 3}, - [1052] = {.lex_state = 2, .external_lex_state = 3}, - [1053] = {.lex_state = 2, .external_lex_state = 3}, - [1054] = {.lex_state = 2, .external_lex_state = 3}, - [1055] = {.lex_state = 2, .external_lex_state = 3}, - [1056] = {.lex_state = 2, .external_lex_state = 3}, - [1057] = {.lex_state = 2, .external_lex_state = 3}, - [1058] = {.lex_state = 2, .external_lex_state = 3}, - [1059] = {.lex_state = 2, .external_lex_state = 3}, - [1060] = {.lex_state = 2, .external_lex_state = 3}, - [1061] = {.lex_state = 2, .external_lex_state = 3}, - [1062] = {.lex_state = 2, .external_lex_state = 3}, - [1063] = {.lex_state = 2, .external_lex_state = 3}, - [1064] = {.lex_state = 7, .external_lex_state = 3}, - [1065] = {.lex_state = 7, .external_lex_state = 3}, - [1066] = {.lex_state = 7, .external_lex_state = 3}, - [1067] = {.lex_state = 7, .external_lex_state = 3}, - [1068] = {.lex_state = 7, .external_lex_state = 3}, - [1069] = {.lex_state = 7, .external_lex_state = 3}, - [1070] = {.lex_state = 2, .external_lex_state = 3}, - [1071] = {.lex_state = 7, .external_lex_state = 3}, - [1072] = {.lex_state = 5, .external_lex_state = 2}, - [1073] = {.lex_state = 7, .external_lex_state = 3}, - [1074] = {.lex_state = 2, .external_lex_state = 3}, - [1075] = {.lex_state = 2, .external_lex_state = 3}, - [1076] = {.lex_state = 7, .external_lex_state = 3}, - [1077] = {.lex_state = 5, .external_lex_state = 2}, - [1078] = {.lex_state = 2, .external_lex_state = 3}, - [1079] = {.lex_state = 7, .external_lex_state = 3}, - [1080] = {.lex_state = 5, .external_lex_state = 2}, - [1081] = {.lex_state = 7, .external_lex_state = 3}, - [1082] = {.lex_state = 2, .external_lex_state = 3}, - [1083] = {.lex_state = 5, .external_lex_state = 2}, - [1084] = {.lex_state = 2, .external_lex_state = 3}, - [1085] = {.lex_state = 7, .external_lex_state = 3}, - [1086] = {.lex_state = 7, .external_lex_state = 3}, - [1087] = {.lex_state = 2, .external_lex_state = 3}, - [1088] = {.lex_state = 7, .external_lex_state = 3}, - [1089] = {.lex_state = 7, .external_lex_state = 3}, - [1090] = {.lex_state = 2, .external_lex_state = 3}, - [1091] = {.lex_state = 2, .external_lex_state = 3}, - [1092] = {.lex_state = 5, .external_lex_state = 2}, - [1093] = {.lex_state = 2, .external_lex_state = 3}, - [1094] = {.lex_state = 2, .external_lex_state = 3}, - [1095] = {.lex_state = 2, .external_lex_state = 3}, - [1096] = {.lex_state = 2, .external_lex_state = 3}, - [1097] = {.lex_state = 7, .external_lex_state = 3}, - [1098] = {.lex_state = 2, .external_lex_state = 3}, - [1099] = {.lex_state = 2, .external_lex_state = 3}, - [1100] = {.lex_state = 7, .external_lex_state = 3}, - [1101] = {.lex_state = 2, .external_lex_state = 3}, - [1102] = {.lex_state = 2, .external_lex_state = 3}, - [1103] = {.lex_state = 2, .external_lex_state = 3}, - [1104] = {.lex_state = 2, .external_lex_state = 3}, - [1105] = {.lex_state = 2, .external_lex_state = 3}, - [1106] = {.lex_state = 2, .external_lex_state = 3}, - [1107] = {.lex_state = 2, .external_lex_state = 3}, - [1108] = {.lex_state = 2, .external_lex_state = 3}, - [1109] = {.lex_state = 2, .external_lex_state = 3}, - [1110] = {.lex_state = 2, .external_lex_state = 3}, - [1111] = {.lex_state = 2, .external_lex_state = 3}, - [1112] = {.lex_state = 2, .external_lex_state = 3}, - [1113] = {.lex_state = 2, .external_lex_state = 3}, - [1114] = {.lex_state = 2, .external_lex_state = 3}, - [1115] = {.lex_state = 2, .external_lex_state = 3}, - [1116] = {.lex_state = 2, .external_lex_state = 3}, - [1117] = {.lex_state = 2, .external_lex_state = 3}, - [1118] = {.lex_state = 2, .external_lex_state = 3}, - [1119] = {.lex_state = 2, .external_lex_state = 3}, - [1120] = {.lex_state = 2, .external_lex_state = 3}, - [1121] = {.lex_state = 2, .external_lex_state = 3}, - [1122] = {.lex_state = 2, .external_lex_state = 3}, - [1123] = {.lex_state = 2, .external_lex_state = 3}, - [1124] = {.lex_state = 2, .external_lex_state = 3}, - [1125] = {.lex_state = 2, .external_lex_state = 3}, - [1126] = {.lex_state = 2, .external_lex_state = 3}, - [1127] = {.lex_state = 2, .external_lex_state = 3}, - [1128] = {.lex_state = 2, .external_lex_state = 3}, - [1129] = {.lex_state = 2, .external_lex_state = 3}, - [1130] = {.lex_state = 2, .external_lex_state = 3}, - [1131] = {.lex_state = 2, .external_lex_state = 3}, - [1132] = {.lex_state = 2, .external_lex_state = 3}, - [1133] = {.lex_state = 2, .external_lex_state = 3}, - [1134] = {.lex_state = 2, .external_lex_state = 3}, - [1135] = {.lex_state = 2, .external_lex_state = 3}, - [1136] = {.lex_state = 2, .external_lex_state = 3}, - [1137] = {.lex_state = 2, .external_lex_state = 3}, - [1138] = {.lex_state = 2, .external_lex_state = 3}, - [1139] = {.lex_state = 2, .external_lex_state = 3}, - [1140] = {.lex_state = 2, .external_lex_state = 3}, - [1141] = {.lex_state = 2, .external_lex_state = 3}, - [1142] = {.lex_state = 2, .external_lex_state = 3}, - [1143] = {.lex_state = 2, .external_lex_state = 3}, - [1144] = {.lex_state = 2, .external_lex_state = 3}, - [1145] = {.lex_state = 2, .external_lex_state = 3}, - [1146] = {.lex_state = 2, .external_lex_state = 3}, - [1147] = {.lex_state = 2, .external_lex_state = 3}, - [1148] = {.lex_state = 2, .external_lex_state = 3}, - [1149] = {.lex_state = 2, .external_lex_state = 3}, - [1150] = {.lex_state = 2, .external_lex_state = 3}, - [1151] = {.lex_state = 2, .external_lex_state = 3}, - [1152] = {.lex_state = 2, .external_lex_state = 3}, - [1153] = {.lex_state = 2, .external_lex_state = 3}, - [1154] = {.lex_state = 2, .external_lex_state = 3}, - [1155] = {.lex_state = 2, .external_lex_state = 3}, - [1156] = {.lex_state = 2, .external_lex_state = 3}, - [1157] = {.lex_state = 2, .external_lex_state = 3}, - [1158] = {.lex_state = 2, .external_lex_state = 3}, - [1159] = {.lex_state = 2, .external_lex_state = 3}, - [1160] = {.lex_state = 2, .external_lex_state = 3}, - [1161] = {.lex_state = 2, .external_lex_state = 3}, - [1162] = {.lex_state = 2, .external_lex_state = 3}, - [1163] = {.lex_state = 2, .external_lex_state = 3}, - [1164] = {.lex_state = 2, .external_lex_state = 3}, - [1165] = {.lex_state = 2, .external_lex_state = 3}, - [1166] = {.lex_state = 2, .external_lex_state = 3}, - [1167] = {.lex_state = 2, .external_lex_state = 3}, - [1168] = {.lex_state = 2, .external_lex_state = 3}, - [1169] = {.lex_state = 2, .external_lex_state = 3}, - [1170] = {.lex_state = 2, .external_lex_state = 3}, - [1171] = {.lex_state = 5, .external_lex_state = 2}, - [1172] = {.lex_state = 2, .external_lex_state = 3}, - [1173] = {.lex_state = 2, .external_lex_state = 3}, - [1174] = {.lex_state = 2, .external_lex_state = 3}, - [1175] = {.lex_state = 2, .external_lex_state = 3}, - [1176] = {.lex_state = 7, .external_lex_state = 3}, - [1177] = {.lex_state = 2, .external_lex_state = 3}, - [1178] = {.lex_state = 2, .external_lex_state = 3}, - [1179] = {.lex_state = 5, .external_lex_state = 2}, - [1180] = {.lex_state = 2, .external_lex_state = 3}, - [1181] = {.lex_state = 2, .external_lex_state = 3}, - [1182] = {.lex_state = 5, .external_lex_state = 2}, - [1183] = {.lex_state = 7, .external_lex_state = 3}, - [1184] = {.lex_state = 2, .external_lex_state = 3}, - [1185] = {.lex_state = 7, .external_lex_state = 3}, - [1186] = {.lex_state = 2, .external_lex_state = 3}, - [1187] = {.lex_state = 2, .external_lex_state = 3}, - [1188] = {.lex_state = 7, .external_lex_state = 3}, - [1189] = {.lex_state = 2, .external_lex_state = 3}, - [1190] = {.lex_state = 2, .external_lex_state = 3}, - [1191] = {.lex_state = 2, .external_lex_state = 3}, - [1192] = {.lex_state = 2, .external_lex_state = 3}, - [1193] = {.lex_state = 2, .external_lex_state = 3}, - [1194] = {.lex_state = 2, .external_lex_state = 3}, - [1195] = {.lex_state = 2, .external_lex_state = 3}, - [1196] = {.lex_state = 2, .external_lex_state = 3}, - [1197] = {.lex_state = 2, .external_lex_state = 3}, - [1198] = {.lex_state = 7, .external_lex_state = 3}, - [1199] = {.lex_state = 2, .external_lex_state = 3}, - [1200] = {.lex_state = 2, .external_lex_state = 3}, - [1201] = {.lex_state = 2, .external_lex_state = 3}, - [1202] = {.lex_state = 2, .external_lex_state = 3}, - [1203] = {.lex_state = 2, .external_lex_state = 3}, - [1204] = {.lex_state = 2, .external_lex_state = 3}, - [1205] = {.lex_state = 5, .external_lex_state = 2}, - [1206] = {.lex_state = 2, .external_lex_state = 3}, - [1207] = {.lex_state = 7, .external_lex_state = 3}, - [1208] = {.lex_state = 7, .external_lex_state = 3}, - [1209] = {.lex_state = 2, .external_lex_state = 3}, - [1210] = {.lex_state = 2, .external_lex_state = 3}, - [1211] = {.lex_state = 2, .external_lex_state = 3}, - [1212] = {.lex_state = 2, .external_lex_state = 3}, - [1213] = {.lex_state = 2, .external_lex_state = 3}, - [1214] = {.lex_state = 2, .external_lex_state = 3}, - [1215] = {.lex_state = 2, .external_lex_state = 3}, - [1216] = {.lex_state = 2, .external_lex_state = 3}, - [1217] = {.lex_state = 2, .external_lex_state = 3}, - [1218] = {.lex_state = 2, .external_lex_state = 3}, - [1219] = {.lex_state = 2, .external_lex_state = 3}, - [1220] = {.lex_state = 7, .external_lex_state = 3}, - [1221] = {.lex_state = 5, .external_lex_state = 2}, - [1222] = {.lex_state = 7, .external_lex_state = 3}, - [1223] = {.lex_state = 7, .external_lex_state = 3}, - [1224] = {.lex_state = 7, .external_lex_state = 3}, - [1225] = {.lex_state = 7, .external_lex_state = 3}, - [1226] = {.lex_state = 7, .external_lex_state = 3}, - [1227] = {.lex_state = 7, .external_lex_state = 3}, - [1228] = {.lex_state = 7, .external_lex_state = 3}, - [1229] = {.lex_state = 7, .external_lex_state = 3}, - [1230] = {.lex_state = 7, .external_lex_state = 3}, - [1231] = {.lex_state = 7, .external_lex_state = 3}, - [1232] = {.lex_state = 7, .external_lex_state = 3}, - [1233] = {.lex_state = 7, .external_lex_state = 3}, - [1234] = {.lex_state = 7, .external_lex_state = 3}, - [1235] = {.lex_state = 7, .external_lex_state = 3}, - [1236] = {.lex_state = 7, .external_lex_state = 3}, - [1237] = {.lex_state = 7, .external_lex_state = 3}, - [1238] = {.lex_state = 7, .external_lex_state = 3}, - [1239] = {.lex_state = 7, .external_lex_state = 3}, - [1240] = {.lex_state = 7, .external_lex_state = 3}, - [1241] = {.lex_state = 7, .external_lex_state = 3}, - [1242] = {.lex_state = 7, .external_lex_state = 3}, - [1243] = {.lex_state = 17, .external_lex_state = 3}, - [1244] = {.lex_state = 17, .external_lex_state = 3}, - [1245] = {.lex_state = 9, .external_lex_state = 3}, - [1246] = {.lex_state = 9, .external_lex_state = 3}, - [1247] = {.lex_state = 9, .external_lex_state = 3}, - [1248] = {.lex_state = 9, .external_lex_state = 3}, - [1249] = {.lex_state = 9, .external_lex_state = 3}, - [1250] = {.lex_state = 9, .external_lex_state = 3}, - [1251] = {.lex_state = 9, .external_lex_state = 3}, - [1252] = {.lex_state = 9, .external_lex_state = 3}, - [1253] = {.lex_state = 9, .external_lex_state = 3}, - [1254] = {.lex_state = 9, .external_lex_state = 3}, - [1255] = {.lex_state = 9, .external_lex_state = 3}, - [1256] = {.lex_state = 9, .external_lex_state = 3}, - [1257] = {.lex_state = 7, .external_lex_state = 3}, - [1258] = {.lex_state = 17, .external_lex_state = 3}, - [1259] = {.lex_state = 17, .external_lex_state = 3}, - [1260] = {.lex_state = 17, .external_lex_state = 3}, - [1261] = {.lex_state = 7, .external_lex_state = 3}, - [1262] = {.lex_state = 7, .external_lex_state = 3}, - [1263] = {.lex_state = 17, .external_lex_state = 3}, - [1264] = {.lex_state = 7, .external_lex_state = 3}, - [1265] = {.lex_state = 7, .external_lex_state = 3}, - [1266] = {.lex_state = 7, .external_lex_state = 3}, - [1267] = {.lex_state = 9, .external_lex_state = 3}, - [1268] = {.lex_state = 7, .external_lex_state = 3}, - [1269] = {.lex_state = 7, .external_lex_state = 3}, - [1270] = {.lex_state = 9, .external_lex_state = 3}, - [1271] = {.lex_state = 7, .external_lex_state = 3}, - [1272] = {.lex_state = 7, .external_lex_state = 3}, - [1273] = {.lex_state = 7, .external_lex_state = 3}, - [1274] = {.lex_state = 7, .external_lex_state = 3}, - [1275] = {.lex_state = 7, .external_lex_state = 3}, - [1276] = {.lex_state = 9, .external_lex_state = 3}, - [1277] = {.lex_state = 7, .external_lex_state = 3}, - [1278] = {.lex_state = 7, .external_lex_state = 3}, - [1279] = {.lex_state = 7, .external_lex_state = 3}, - [1280] = {.lex_state = 17, .external_lex_state = 3}, - [1281] = {.lex_state = 7, .external_lex_state = 3}, - [1282] = {.lex_state = 7, .external_lex_state = 3}, - [1283] = {.lex_state = 17, .external_lex_state = 3}, - [1284] = {.lex_state = 17, .external_lex_state = 3}, - [1285] = {.lex_state = 17, .external_lex_state = 3}, - [1286] = {.lex_state = 17, .external_lex_state = 3}, - [1287] = {.lex_state = 17, .external_lex_state = 3}, - [1288] = {.lex_state = 7, .external_lex_state = 3}, - [1289] = {.lex_state = 7, .external_lex_state = 3}, - [1290] = {.lex_state = 7, .external_lex_state = 3}, - [1291] = {.lex_state = 17, .external_lex_state = 3}, - [1292] = {.lex_state = 9, .external_lex_state = 3}, - [1293] = {.lex_state = 17, .external_lex_state = 3}, - [1294] = {.lex_state = 17, .external_lex_state = 3}, - [1295] = {.lex_state = 17, .external_lex_state = 3}, - [1296] = {.lex_state = 17, .external_lex_state = 3}, - [1297] = {.lex_state = 7, .external_lex_state = 3}, - [1298] = {.lex_state = 7, .external_lex_state = 3}, - [1299] = {.lex_state = 7, .external_lex_state = 3}, - [1300] = {.lex_state = 17, .external_lex_state = 3}, - [1301] = {.lex_state = 17, .external_lex_state = 3}, - [1302] = {.lex_state = 17, .external_lex_state = 3}, - [1303] = {.lex_state = 17, .external_lex_state = 3}, - [1304] = {.lex_state = 17, .external_lex_state = 3}, - [1305] = {.lex_state = 17, .external_lex_state = 3}, - [1306] = {.lex_state = 17, .external_lex_state = 3}, - [1307] = {.lex_state = 17, .external_lex_state = 3}, - [1308] = {.lex_state = 17, .external_lex_state = 3}, - [1309] = {.lex_state = 17, .external_lex_state = 3}, - [1310] = {.lex_state = 17, .external_lex_state = 3}, - [1311] = {.lex_state = 17, .external_lex_state = 3}, - [1312] = {.lex_state = 17, .external_lex_state = 3}, - [1313] = {.lex_state = 17, .external_lex_state = 3}, - [1314] = {.lex_state = 17, .external_lex_state = 3}, - [1315] = {.lex_state = 17, .external_lex_state = 3}, - [1316] = {.lex_state = 17, .external_lex_state = 3}, - [1317] = {.lex_state = 7, .external_lex_state = 3}, - [1318] = {.lex_state = 17, .external_lex_state = 3}, - [1319] = {.lex_state = 17, .external_lex_state = 3}, - [1320] = {.lex_state = 17, .external_lex_state = 3}, - [1321] = {.lex_state = 17, .external_lex_state = 3}, - [1322] = {.lex_state = 17, .external_lex_state = 3}, - [1323] = {.lex_state = 17, .external_lex_state = 3}, - [1324] = {.lex_state = 17, .external_lex_state = 3}, - [1325] = {.lex_state = 17, .external_lex_state = 3}, - [1326] = {.lex_state = 17, .external_lex_state = 3}, - [1327] = {.lex_state = 17, .external_lex_state = 3}, - [1328] = {.lex_state = 17, .external_lex_state = 3}, - [1329] = {.lex_state = 17, .external_lex_state = 3}, - [1330] = {.lex_state = 17, .external_lex_state = 3}, - [1331] = {.lex_state = 17, .external_lex_state = 3}, - [1332] = {.lex_state = 17, .external_lex_state = 3}, - [1333] = {.lex_state = 9, .external_lex_state = 3}, - [1334] = {.lex_state = 9, .external_lex_state = 3}, - [1335] = {.lex_state = 9, .external_lex_state = 3}, - [1336] = {.lex_state = 7, .external_lex_state = 3}, - [1337] = {.lex_state = 7, .external_lex_state = 3}, - [1338] = {.lex_state = 9, .external_lex_state = 3}, - [1339] = {.lex_state = 9, .external_lex_state = 3}, - [1340] = {.lex_state = 7, .external_lex_state = 3}, - [1341] = {.lex_state = 7, .external_lex_state = 3}, - [1342] = {.lex_state = 7, .external_lex_state = 3}, - [1343] = {.lex_state = 9, .external_lex_state = 3}, - [1344] = {.lex_state = 9, .external_lex_state = 3}, - [1345] = {.lex_state = 9, .external_lex_state = 3}, - [1346] = {.lex_state = 9, .external_lex_state = 3}, - [1347] = {.lex_state = 9, .external_lex_state = 3}, - [1348] = {.lex_state = 9, .external_lex_state = 3}, - [1349] = {.lex_state = 9, .external_lex_state = 3}, - [1350] = {.lex_state = 17, .external_lex_state = 3}, - [1351] = {.lex_state = 9, .external_lex_state = 3}, - [1352] = {.lex_state = 17, .external_lex_state = 3}, - [1353] = {.lex_state = 17, .external_lex_state = 3}, - [1354] = {.lex_state = 7, .external_lex_state = 3}, - [1355] = {.lex_state = 7, .external_lex_state = 3}, - [1356] = {.lex_state = 7, .external_lex_state = 3}, - [1357] = {.lex_state = 17, .external_lex_state = 3}, - [1358] = {.lex_state = 17, .external_lex_state = 3}, - [1359] = {.lex_state = 17, .external_lex_state = 3}, - [1360] = {.lex_state = 13, .external_lex_state = 3}, - [1361] = {.lex_state = 17, .external_lex_state = 3}, - [1362] = {.lex_state = 13, .external_lex_state = 3}, - [1363] = {.lex_state = 17, .external_lex_state = 3}, - [1364] = {.lex_state = 17, .external_lex_state = 3}, - [1365] = {.lex_state = 17, .external_lex_state = 3}, - [1366] = {.lex_state = 17, .external_lex_state = 3}, - [1367] = {.lex_state = 17, .external_lex_state = 3}, - [1368] = {.lex_state = 17, .external_lex_state = 3}, - [1369] = {.lex_state = 17, .external_lex_state = 3}, - [1370] = {.lex_state = 17, .external_lex_state = 3}, - [1371] = {.lex_state = 17, .external_lex_state = 3}, - [1372] = {.lex_state = 17, .external_lex_state = 3}, - [1373] = {.lex_state = 17, .external_lex_state = 3}, - [1374] = {.lex_state = 17, .external_lex_state = 3}, - [1375] = {.lex_state = 17, .external_lex_state = 3}, - [1376] = {.lex_state = 17, .external_lex_state = 3}, - [1377] = {.lex_state = 17, .external_lex_state = 3}, - [1378] = {.lex_state = 17, .external_lex_state = 3}, - [1379] = {.lex_state = 17, .external_lex_state = 3}, - [1380] = {.lex_state = 17, .external_lex_state = 3}, - [1381] = {.lex_state = 13, .external_lex_state = 3}, - [1382] = {.lex_state = 17, .external_lex_state = 3}, - [1383] = {.lex_state = 17, .external_lex_state = 3}, - [1384] = {.lex_state = 17, .external_lex_state = 3}, - [1385] = {.lex_state = 13, .external_lex_state = 3}, - [1386] = {.lex_state = 17, .external_lex_state = 3}, - [1387] = {.lex_state = 17, .external_lex_state = 3}, - [1388] = {.lex_state = 17, .external_lex_state = 3}, - [1389] = {.lex_state = 17, .external_lex_state = 3}, - [1390] = {.lex_state = 17, .external_lex_state = 3}, - [1391] = {.lex_state = 17, .external_lex_state = 3}, - [1392] = {.lex_state = 17, .external_lex_state = 3}, - [1393] = {.lex_state = 9, .external_lex_state = 3}, - [1394] = {.lex_state = 7, .external_lex_state = 3}, - [1395] = {.lex_state = 9, .external_lex_state = 3}, - [1396] = {.lex_state = 9, .external_lex_state = 3}, - [1397] = {.lex_state = 7, .external_lex_state = 3}, - [1398] = {.lex_state = 9, .external_lex_state = 3}, - [1399] = {.lex_state = 1, .external_lex_state = 2}, - [1400] = {.lex_state = 1, .external_lex_state = 2}, - [1401] = {.lex_state = 14, .external_lex_state = 3}, - [1402] = {.lex_state = 9, .external_lex_state = 3}, - [1403] = {.lex_state = 9, .external_lex_state = 3}, - [1404] = {.lex_state = 9, .external_lex_state = 3}, - [1405] = {.lex_state = 9, .external_lex_state = 3}, - [1406] = {.lex_state = 9, .external_lex_state = 3}, - [1407] = {.lex_state = 7, .external_lex_state = 3}, - [1408] = {.lex_state = 7, .external_lex_state = 3}, - [1409] = {.lex_state = 7, .external_lex_state = 3}, - [1410] = {.lex_state = 7, .external_lex_state = 3}, - [1411] = {.lex_state = 14, .external_lex_state = 3}, - [1412] = {.lex_state = 7, .external_lex_state = 3}, - [1413] = {.lex_state = 14, .external_lex_state = 3}, - [1414] = {.lex_state = 7, .external_lex_state = 3}, - [1415] = {.lex_state = 7, .external_lex_state = 3}, - [1416] = {.lex_state = 7, .external_lex_state = 3}, - [1417] = {.lex_state = 7, .external_lex_state = 3}, - [1418] = {.lex_state = 7, .external_lex_state = 3}, - [1419] = {.lex_state = 7, .external_lex_state = 3}, - [1420] = {.lex_state = 4, .external_lex_state = 3}, - [1421] = {.lex_state = 7, .external_lex_state = 3}, - [1422] = {.lex_state = 7, .external_lex_state = 3}, - [1423] = {.lex_state = 7, .external_lex_state = 3}, - [1424] = {.lex_state = 7, .external_lex_state = 3}, - [1425] = {.lex_state = 7, .external_lex_state = 3}, - [1426] = {.lex_state = 7, .external_lex_state = 3}, - [1427] = {.lex_state = 7, .external_lex_state = 3}, - [1428] = {.lex_state = 7, .external_lex_state = 3}, - [1429] = {.lex_state = 7, .external_lex_state = 3}, - [1430] = {.lex_state = 7, .external_lex_state = 3}, - [1431] = {.lex_state = 7, .external_lex_state = 3}, - [1432] = {.lex_state = 7, .external_lex_state = 3}, - [1433] = {.lex_state = 7, .external_lex_state = 3}, - [1434] = {.lex_state = 7, .external_lex_state = 3}, - [1435] = {.lex_state = 7, .external_lex_state = 3}, - [1436] = {.lex_state = 7, .external_lex_state = 3}, - [1437] = {.lex_state = 7, .external_lex_state = 3}, - [1438] = {.lex_state = 7, .external_lex_state = 3}, - [1439] = {.lex_state = 7, .external_lex_state = 3}, - [1440] = {.lex_state = 7, .external_lex_state = 3}, - [1441] = {.lex_state = 7, .external_lex_state = 3}, - [1442] = {.lex_state = 7, .external_lex_state = 3}, - [1443] = {.lex_state = 7, .external_lex_state = 3}, - [1444] = {.lex_state = 7, .external_lex_state = 3}, - [1445] = {.lex_state = 7, .external_lex_state = 3}, - [1446] = {.lex_state = 17, .external_lex_state = 3}, - [1447] = {.lex_state = 17, .external_lex_state = 3}, - [1448] = {.lex_state = 17, .external_lex_state = 3}, - [1449] = {.lex_state = 7, .external_lex_state = 3}, - [1450] = {.lex_state = 7, .external_lex_state = 3}, - [1451] = {.lex_state = 7, .external_lex_state = 3}, - [1452] = {.lex_state = 7, .external_lex_state = 3}, - [1453] = {.lex_state = 17, .external_lex_state = 3}, - [1454] = {.lex_state = 13, .external_lex_state = 3}, - [1455] = {.lex_state = 14, .external_lex_state = 3}, - [1456] = {.lex_state = 7, .external_lex_state = 3}, - [1457] = {.lex_state = 14, .external_lex_state = 3}, - [1458] = {.lex_state = 7, .external_lex_state = 3}, - [1459] = {.lex_state = 7, .external_lex_state = 3}, - [1460] = {.lex_state = 14, .external_lex_state = 3}, - [1461] = {.lex_state = 7, .external_lex_state = 3}, - [1462] = {.lex_state = 14, .external_lex_state = 3}, - [1463] = {.lex_state = 7, .external_lex_state = 3}, - [1464] = {.lex_state = 7, .external_lex_state = 3}, - [1465] = {.lex_state = 14, .external_lex_state = 3}, - [1466] = {.lex_state = 7, .external_lex_state = 3}, - [1467] = {.lex_state = 7, .external_lex_state = 3}, - [1468] = {.lex_state = 7, .external_lex_state = 3}, - [1469] = {.lex_state = 7, .external_lex_state = 3}, - [1470] = {.lex_state = 4, .external_lex_state = 3}, - [1471] = {.lex_state = 4, .external_lex_state = 3}, - [1472] = {.lex_state = 17, .external_lex_state = 3}, - [1473] = {.lex_state = 17, .external_lex_state = 3}, - [1474] = {.lex_state = 7, .external_lex_state = 3}, - [1475] = {.lex_state = 14, .external_lex_state = 3}, - [1476] = {.lex_state = 0, .external_lex_state = 3}, - [1477] = {.lex_state = 7, .external_lex_state = 3}, - [1478] = {.lex_state = 4, .external_lex_state = 3}, - [1479] = {.lex_state = 17, .external_lex_state = 3}, - [1480] = {.lex_state = 7, .external_lex_state = 3}, - [1481] = {.lex_state = 7, .external_lex_state = 3}, - [1482] = {.lex_state = 7, .external_lex_state = 3}, - [1483] = {.lex_state = 14, .external_lex_state = 3}, - [1484] = {.lex_state = 14, .external_lex_state = 3}, - [1485] = {.lex_state = 7, .external_lex_state = 3}, - [1486] = {.lex_state = 17, .external_lex_state = 3}, - [1487] = {.lex_state = 14, .external_lex_state = 3}, - [1488] = {.lex_state = 7, .external_lex_state = 3}, - [1489] = {.lex_state = 4, .external_lex_state = 3}, - [1490] = {.lex_state = 7, .external_lex_state = 3}, - [1491] = {.lex_state = 7, .external_lex_state = 3}, - [1492] = {.lex_state = 7, .external_lex_state = 3}, - [1493] = {.lex_state = 0, .external_lex_state = 3}, - [1494] = {.lex_state = 7, .external_lex_state = 3}, - [1495] = {.lex_state = 0, .external_lex_state = 3}, - [1496] = {.lex_state = 0, .external_lex_state = 3}, - [1497] = {.lex_state = 7, .external_lex_state = 3}, - [1498] = {.lex_state = 14, .external_lex_state = 3}, - [1499] = {.lex_state = 10, .external_lex_state = 3}, - [1500] = {.lex_state = 4, .external_lex_state = 3}, - [1501] = {.lex_state = 7, .external_lex_state = 3}, - [1502] = {.lex_state = 7, .external_lex_state = 3}, - [1503] = {.lex_state = 0, .external_lex_state = 3}, - [1504] = {.lex_state = 14, .external_lex_state = 3}, - [1505] = {.lex_state = 7, .external_lex_state = 3}, - [1506] = {.lex_state = 7, .external_lex_state = 3}, - [1507] = {.lex_state = 7, .external_lex_state = 3}, - [1508] = {.lex_state = 14, .external_lex_state = 3}, - [1509] = {.lex_state = 7, .external_lex_state = 3}, - [1510] = {.lex_state = 0, .external_lex_state = 3}, - [1511] = {.lex_state = 0, .external_lex_state = 3}, - [1512] = {.lex_state = 0, .external_lex_state = 3}, - [1513] = {.lex_state = 7, .external_lex_state = 3}, - [1514] = {.lex_state = 0, .external_lex_state = 3}, - [1515] = {.lex_state = 0, .external_lex_state = 3}, - [1516] = {.lex_state = 0, .external_lex_state = 3}, - [1517] = {.lex_state = 14, .external_lex_state = 3}, - [1518] = {.lex_state = 7, .external_lex_state = 3}, - [1519] = {.lex_state = 7, .external_lex_state = 3}, - [1520] = {.lex_state = 0, .external_lex_state = 3}, - [1521] = {.lex_state = 7, .external_lex_state = 3}, - [1522] = {.lex_state = 7, .external_lex_state = 3}, - [1523] = {.lex_state = 0, .external_lex_state = 3}, - [1524] = {.lex_state = 7, .external_lex_state = 3}, - [1525] = {.lex_state = 0, .external_lex_state = 3}, - [1526] = {.lex_state = 0, .external_lex_state = 3}, - [1527] = {.lex_state = 10, .external_lex_state = 3}, - [1528] = {.lex_state = 7, .external_lex_state = 3}, - [1529] = {.lex_state = 17, .external_lex_state = 3}, - [1530] = {.lex_state = 7, .external_lex_state = 3}, - [1531] = {.lex_state = 7, .external_lex_state = 3}, - [1532] = {.lex_state = 14, .external_lex_state = 3}, - [1533] = {.lex_state = 7, .external_lex_state = 3}, - [1534] = {.lex_state = 17, .external_lex_state = 3}, - [1535] = {.lex_state = 7, .external_lex_state = 3}, - [1536] = {.lex_state = 7, .external_lex_state = 3}, - [1537] = {.lex_state = 4, .external_lex_state = 3}, - [1538] = {.lex_state = 7, .external_lex_state = 3}, - [1539] = {.lex_state = 7, .external_lex_state = 3}, - [1540] = {.lex_state = 7, .external_lex_state = 3}, - [1541] = {.lex_state = 4, .external_lex_state = 3}, - [1542] = {.lex_state = 17, .external_lex_state = 3}, - [1543] = {.lex_state = 7, .external_lex_state = 3}, - [1544] = {.lex_state = 7, .external_lex_state = 3}, - [1545] = {.lex_state = 0, .external_lex_state = 3}, - [1546] = {.lex_state = 17, .external_lex_state = 3}, - [1547] = {.lex_state = 7, .external_lex_state = 3}, - [1548] = {.lex_state = 7, .external_lex_state = 3}, - [1549] = {.lex_state = 10, .external_lex_state = 3}, - [1550] = {.lex_state = 13, .external_lex_state = 3}, - [1551] = {.lex_state = 57, .external_lex_state = 3}, - [1552] = {.lex_state = 10, .external_lex_state = 3}, - [1553] = {.lex_state = 7, .external_lex_state = 3}, - [1554] = {.lex_state = 7, .external_lex_state = 3}, - [1555] = {.lex_state = 7, .external_lex_state = 3}, - [1556] = {.lex_state = 57, .external_lex_state = 3}, - [1557] = {.lex_state = 10, .external_lex_state = 3}, - [1558] = {.lex_state = 17, .external_lex_state = 3}, - [1559] = {.lex_state = 7, .external_lex_state = 3}, - [1560] = {.lex_state = 4, .external_lex_state = 3}, - [1561] = {.lex_state = 0, .external_lex_state = 3}, - [1562] = {.lex_state = 7, .external_lex_state = 3}, - [1563] = {.lex_state = 7, .external_lex_state = 3}, - [1564] = {.lex_state = 7, .external_lex_state = 3}, - [1565] = {.lex_state = 7, .external_lex_state = 3}, - [1566] = {.lex_state = 7, .external_lex_state = 3}, - [1567] = {.lex_state = 17, .external_lex_state = 3}, - [1568] = {.lex_state = 7, .external_lex_state = 3}, - [1569] = {.lex_state = 10, .external_lex_state = 3}, - [1570] = {.lex_state = 7, .external_lex_state = 3}, - [1571] = {.lex_state = 7, .external_lex_state = 3}, - [1572] = {.lex_state = 7, .external_lex_state = 3}, - [1573] = {.lex_state = 7, .external_lex_state = 3}, - [1574] = {.lex_state = 7, .external_lex_state = 3}, - [1575] = {.lex_state = 13, .external_lex_state = 3}, - [1576] = {.lex_state = 17, .external_lex_state = 3}, - [1577] = {.lex_state = 10, .external_lex_state = 3}, - [1578] = {.lex_state = 7, .external_lex_state = 3}, - [1579] = {.lex_state = 0, .external_lex_state = 3}, - [1580] = {.lex_state = 17, .external_lex_state = 3}, - [1581] = {.lex_state = 7, .external_lex_state = 3}, - [1582] = {.lex_state = 7, .external_lex_state = 3}, - [1583] = {.lex_state = 7, .external_lex_state = 3}, - [1584] = {.lex_state = 17, .external_lex_state = 3}, - [1585] = {.lex_state = 17, .external_lex_state = 3}, - [1586] = {.lex_state = 7, .external_lex_state = 3}, - [1587] = {.lex_state = 7, .external_lex_state = 3}, - [1588] = {.lex_state = 0, .external_lex_state = 3}, - [1589] = {.lex_state = 7, .external_lex_state = 3}, - [1590] = {.lex_state = 7, .external_lex_state = 3}, - [1591] = {.lex_state = 7, .external_lex_state = 3}, - [1592] = {.lex_state = 7, .external_lex_state = 3}, - [1593] = {.lex_state = 7, .external_lex_state = 3}, - [1594] = {.lex_state = 7, .external_lex_state = 3}, - [1595] = {.lex_state = 7, .external_lex_state = 3}, - [1596] = {.lex_state = 7, .external_lex_state = 3}, - [1597] = {.lex_state = 17, .external_lex_state = 3}, - [1598] = {.lex_state = 0, .external_lex_state = 3}, - [1599] = {.lex_state = 0, .external_lex_state = 3}, - [1600] = {.lex_state = 7, .external_lex_state = 3}, - [1601] = {.lex_state = 7, .external_lex_state = 3}, - [1602] = {.lex_state = 7, .external_lex_state = 3}, - [1603] = {.lex_state = 7, .external_lex_state = 3}, - [1604] = {.lex_state = 7, .external_lex_state = 3}, - [1605] = {.lex_state = 17, .external_lex_state = 3}, - [1606] = {.lex_state = 7, .external_lex_state = 3}, - [1607] = {.lex_state = 17, .external_lex_state = 3}, - [1608] = {.lex_state = 17, .external_lex_state = 3}, - [1609] = {.lex_state = 7, .external_lex_state = 3}, - [1610] = {.lex_state = 7, .external_lex_state = 3}, - [1611] = {.lex_state = 17, .external_lex_state = 3}, - [1612] = {.lex_state = 7, .external_lex_state = 3}, - [1613] = {.lex_state = 7, .external_lex_state = 3}, - [1614] = {.lex_state = 0, .external_lex_state = 3}, - [1615] = {.lex_state = 7, .external_lex_state = 3}, - [1616] = {.lex_state = 0, .external_lex_state = 3}, - [1617] = {.lex_state = 7, .external_lex_state = 3}, - [1618] = {.lex_state = 7, .external_lex_state = 3}, - [1619] = {.lex_state = 17, .external_lex_state = 3}, - [1620] = {.lex_state = 7, .external_lex_state = 3}, - [1621] = {.lex_state = 7, .external_lex_state = 3}, - [1622] = {.lex_state = 7, .external_lex_state = 3}, - [1623] = {.lex_state = 7, .external_lex_state = 3}, - [1624] = {.lex_state = 17, .external_lex_state = 3}, - [1625] = {.lex_state = 17, .external_lex_state = 3}, - [1626] = {.lex_state = 7, .external_lex_state = 3}, - [1627] = {.lex_state = 7, .external_lex_state = 3}, - [1628] = {.lex_state = 57, .external_lex_state = 3}, - [1629] = {.lex_state = 17, .external_lex_state = 3}, - [1630] = {.lex_state = 7, .external_lex_state = 3}, - [1631] = {.lex_state = 7, .external_lex_state = 3}, - [1632] = {.lex_state = 7, .external_lex_state = 3}, - [1633] = {.lex_state = 7, .external_lex_state = 3}, - [1634] = {.lex_state = 0, .external_lex_state = 3}, - [1635] = {.lex_state = 7, .external_lex_state = 3}, - [1636] = {.lex_state = 7, .external_lex_state = 3}, - [1637] = {.lex_state = 0, .external_lex_state = 3}, - [1638] = {.lex_state = 7, .external_lex_state = 3}, - [1639] = {.lex_state = 7, .external_lex_state = 3}, - [1640] = {.lex_state = 7, .external_lex_state = 3}, - [1641] = {.lex_state = 7, .external_lex_state = 3}, - [1642] = {.lex_state = 0, .external_lex_state = 3}, - [1643] = {.lex_state = 17, .external_lex_state = 3}, - [1644] = {.lex_state = 7, .external_lex_state = 3}, - [1645] = {.lex_state = 7, .external_lex_state = 3}, - [1646] = {.lex_state = 7, .external_lex_state = 3}, - [1647] = {.lex_state = 7, .external_lex_state = 3}, - [1648] = {.lex_state = 7, .external_lex_state = 3}, - [1649] = {.lex_state = 7, .external_lex_state = 3}, - [1650] = {.lex_state = 17, .external_lex_state = 3}, - [1651] = {.lex_state = 7, .external_lex_state = 3}, - [1652] = {.lex_state = 7, .external_lex_state = 3}, - [1653] = {.lex_state = 7, .external_lex_state = 3}, - [1654] = {.lex_state = 7, .external_lex_state = 3}, - [1655] = {.lex_state = 7, .external_lex_state = 3}, - [1656] = {.lex_state = 7, .external_lex_state = 3}, - [1657] = {.lex_state = 57, .external_lex_state = 3}, - [1658] = {.lex_state = 57, .external_lex_state = 3}, - [1659] = {.lex_state = 7, .external_lex_state = 3}, - [1660] = {.lex_state = 7, .external_lex_state = 3}, - [1661] = {.lex_state = 57, .external_lex_state = 3}, - [1662] = {.lex_state = 7, .external_lex_state = 3}, - [1663] = {.lex_state = 7, .external_lex_state = 3}, - [1664] = {.lex_state = 57, .external_lex_state = 3}, - [1665] = {.lex_state = 17, .external_lex_state = 3}, - [1666] = {.lex_state = 57, .external_lex_state = 3}, - [1667] = {.lex_state = 57, .external_lex_state = 3}, - [1668] = {.lex_state = 57, .external_lex_state = 3}, - [1669] = {.lex_state = 18, .external_lex_state = 3}, - [1670] = {.lex_state = 57, .external_lex_state = 3}, - [1671] = {.lex_state = 7, .external_lex_state = 3}, - [1672] = {.lex_state = 7, .external_lex_state = 3}, - [1673] = {.lex_state = 7, .external_lex_state = 3}, - [1674] = {.lex_state = 57, .external_lex_state = 3}, - [1675] = {.lex_state = 7, .external_lex_state = 3}, - [1676] = {.lex_state = 4, .external_lex_state = 4}, - [1677] = {.lex_state = 18, .external_lex_state = 3}, - [1678] = {.lex_state = 17, .external_lex_state = 3}, - [1679] = {.lex_state = 0, .external_lex_state = 3}, - [1680] = {.lex_state = 7, .external_lex_state = 3}, - [1681] = {.lex_state = 17, .external_lex_state = 3}, - [1682] = {.lex_state = 4, .external_lex_state = 4}, - [1683] = {.lex_state = 4, .external_lex_state = 4}, - [1684] = {.lex_state = 7, .external_lex_state = 3}, - [1685] = {.lex_state = 57, .external_lex_state = 3}, - [1686] = {.lex_state = 18, .external_lex_state = 3}, - [1687] = {.lex_state = 7, .external_lex_state = 3}, - [1688] = {.lex_state = 18, .external_lex_state = 3}, - [1689] = {.lex_state = 17, .external_lex_state = 3}, - [1690] = {.lex_state = 0, .external_lex_state = 3}, - [1691] = {.lex_state = 0, .external_lex_state = 3}, - [1692] = {.lex_state = 7, .external_lex_state = 3}, - [1693] = {.lex_state = 7, .external_lex_state = 3}, - [1694] = {.lex_state = 17, .external_lex_state = 3}, - [1695] = {.lex_state = 0, .external_lex_state = 3}, - [1696] = {.lex_state = 0, .external_lex_state = 3}, - [1697] = {.lex_state = 57, .external_lex_state = 3}, - [1698] = {.lex_state = 17, .external_lex_state = 3}, - [1699] = {.lex_state = 57, .external_lex_state = 3}, - [1700] = {.lex_state = 7, .external_lex_state = 3}, - [1701] = {.lex_state = 17, .external_lex_state = 3}, - [1702] = {.lex_state = 7, .external_lex_state = 3}, - [1703] = {.lex_state = 0, .external_lex_state = 3}, - [1704] = {.lex_state = 4, .external_lex_state = 4}, - [1705] = {.lex_state = 57, .external_lex_state = 3}, - [1706] = {.lex_state = 7, .external_lex_state = 3}, - [1707] = {.lex_state = 0, .external_lex_state = 3}, - [1708] = {.lex_state = 4, .external_lex_state = 4}, - [1709] = {.lex_state = 57, .external_lex_state = 3}, - [1710] = {.lex_state = 57, .external_lex_state = 3}, - [1711] = {.lex_state = 0, .external_lex_state = 3}, - [1712] = {.lex_state = 17, .external_lex_state = 3}, - [1713] = {.lex_state = 7, .external_lex_state = 3}, - [1714] = {.lex_state = 57, .external_lex_state = 3}, - [1715] = {.lex_state = 0, .external_lex_state = 3}, - [1716] = {.lex_state = 7, .external_lex_state = 3}, - [1717] = {.lex_state = 0, .external_lex_state = 3}, - [1718] = {.lex_state = 57, .external_lex_state = 3}, - [1719] = {.lex_state = 0, .external_lex_state = 3}, - [1720] = {.lex_state = 57, .external_lex_state = 3}, - [1721] = {.lex_state = 17, .external_lex_state = 3}, - [1722] = {.lex_state = 57, .external_lex_state = 3}, - [1723] = {.lex_state = 57, .external_lex_state = 3}, - [1724] = {.lex_state = 7, .external_lex_state = 3}, - [1725] = {.lex_state = 4, .external_lex_state = 4}, - [1726] = {.lex_state = 57, .external_lex_state = 3}, - [1727] = {.lex_state = 7, .external_lex_state = 3}, - [1728] = {.lex_state = 57, .external_lex_state = 3}, - [1729] = {.lex_state = 7, .external_lex_state = 3}, - [1730] = {.lex_state = 0, .external_lex_state = 3}, - [1731] = {.lex_state = 57, .external_lex_state = 3}, - [1732] = {.lex_state = 17, .external_lex_state = 3}, - [1733] = {.lex_state = 0, .external_lex_state = 3}, - [1734] = {.lex_state = 7, .external_lex_state = 3}, - [1735] = {.lex_state = 57, .external_lex_state = 3}, - [1736] = {.lex_state = 57, .external_lex_state = 3}, - [1737] = {.lex_state = 57, .external_lex_state = 3}, - [1738] = {.lex_state = 7, .external_lex_state = 3}, - [1739] = {.lex_state = 57, .external_lex_state = 3}, - [1740] = {.lex_state = 7, .external_lex_state = 3}, - [1741] = {.lex_state = 17, .external_lex_state = 3}, - [1742] = {.lex_state = 4, .external_lex_state = 4}, - [1743] = {.lex_state = 7, .external_lex_state = 3}, - [1744] = {.lex_state = 57, .external_lex_state = 3}, - [1745] = {.lex_state = 57, .external_lex_state = 3}, - [1746] = {.lex_state = 0, .external_lex_state = 3}, - [1747] = {.lex_state = 0, .external_lex_state = 3}, - [1748] = {.lex_state = 0, .external_lex_state = 3}, - [1749] = {.lex_state = 57, .external_lex_state = 3}, - [1750] = {.lex_state = 57, .external_lex_state = 3}, - [1751] = {.lex_state = 57, .external_lex_state = 3}, - [1752] = {.lex_state = 0, .external_lex_state = 3}, - [1753] = {.lex_state = 0, .external_lex_state = 3}, - [1754] = {.lex_state = 57, .external_lex_state = 3}, - [1755] = {.lex_state = 0, .external_lex_state = 3}, - [1756] = {.lex_state = 10, .external_lex_state = 3}, - [1757] = {.lex_state = 7, .external_lex_state = 3}, - [1758] = {.lex_state = 0, .external_lex_state = 3}, - [1759] = {.lex_state = 0, .external_lex_state = 3}, - [1760] = {.lex_state = 0, .external_lex_state = 3}, - [1761] = {.lex_state = 0, .external_lex_state = 3}, - [1762] = {.lex_state = 7, .external_lex_state = 3}, - [1763] = {.lex_state = 0, .external_lex_state = 3}, - [1764] = {.lex_state = 0, .external_lex_state = 3}, - [1765] = {.lex_state = 0, .external_lex_state = 3}, - [1766] = {.lex_state = 0, .external_lex_state = 3}, - [1767] = {.lex_state = 57, .external_lex_state = 3}, - [1768] = {.lex_state = 7, .external_lex_state = 3}, - [1769] = {.lex_state = 10, .external_lex_state = 3}, - [1770] = {.lex_state = 0, .external_lex_state = 3}, - [1771] = {.lex_state = 0, .external_lex_state = 3}, - [1772] = {.lex_state = 0, .external_lex_state = 3}, - [1773] = {.lex_state = 0, .external_lex_state = 3}, - [1774] = {.lex_state = 57, .external_lex_state = 3}, - [1775] = {.lex_state = 0, .external_lex_state = 3}, - [1776] = {.lex_state = 0, .external_lex_state = 3}, - [1777] = {.lex_state = 0, .external_lex_state = 3}, - [1778] = {.lex_state = 3, .external_lex_state = 3}, - [1779] = {.lex_state = 0, .external_lex_state = 3}, - [1780] = {.lex_state = 0, .external_lex_state = 3}, - [1781] = {.lex_state = 3, .external_lex_state = 3}, - [1782] = {.lex_state = 3, .external_lex_state = 3}, - [1783] = {.lex_state = 3, .external_lex_state = 3}, - [1784] = {.lex_state = 17, .external_lex_state = 3}, - [1785] = {.lex_state = 57, .external_lex_state = 3}, - [1786] = {.lex_state = 0, .external_lex_state = 3}, - [1787] = {.lex_state = 7, .external_lex_state = 3}, - [1788] = {.lex_state = 0, .external_lex_state = 3}, - [1789] = {.lex_state = 0, .external_lex_state = 3}, - [1790] = {.lex_state = 57, .external_lex_state = 3}, - [1791] = {.lex_state = 7, .external_lex_state = 3}, - [1792] = {.lex_state = 3, .external_lex_state = 3}, - [1793] = {.lex_state = 0, .external_lex_state = 3}, - [1794] = {.lex_state = 0, .external_lex_state = 3}, - [1795] = {.lex_state = 0, .external_lex_state = 3}, - [1796] = {.lex_state = 7, .external_lex_state = 3}, - [1797] = {.lex_state = 57, .external_lex_state = 3}, - [1798] = {.lex_state = 4, .external_lex_state = 3}, - [1799] = {.lex_state = 57, .external_lex_state = 3}, - [1800] = {.lex_state = 10, .external_lex_state = 3}, - [1801] = {.lex_state = 7, .external_lex_state = 3}, - [1802] = {.lex_state = 0, .external_lex_state = 3}, - [1803] = {.lex_state = 7, .external_lex_state = 3}, - [1804] = {.lex_state = 57, .external_lex_state = 3}, - [1805] = {.lex_state = 0, .external_lex_state = 3}, - [1806] = {.lex_state = 57, .external_lex_state = 3}, - [1807] = {.lex_state = 0, .external_lex_state = 3}, - [1808] = {.lex_state = 3, .external_lex_state = 3}, - [1809] = {.lex_state = 0, .external_lex_state = 3}, - [1810] = {.lex_state = 0, .external_lex_state = 3}, - [1811] = {.lex_state = 7, .external_lex_state = 3}, - [1812] = {.lex_state = 3, .external_lex_state = 3}, - [1813] = {.lex_state = 0, .external_lex_state = 3}, - [1814] = {.lex_state = 0, .external_lex_state = 3}, - [1815] = {.lex_state = 7, .external_lex_state = 3}, - [1816] = {.lex_state = 7, .external_lex_state = 3}, - [1817] = {.lex_state = 57, .external_lex_state = 3}, - [1818] = {.lex_state = 0, .external_lex_state = 3}, - [1819] = {.lex_state = 10, .external_lex_state = 3}, - [1820] = {.lex_state = 0, .external_lex_state = 3}, - [1821] = {.lex_state = 7, .external_lex_state = 3}, - [1822] = {.lex_state = 10, .external_lex_state = 3}, - [1823] = {.lex_state = 0, .external_lex_state = 3}, - [1824] = {.lex_state = 0, .external_lex_state = 3}, - [1825] = {.lex_state = 0, .external_lex_state = 3}, - [1826] = {.lex_state = 0, .external_lex_state = 3}, - [1827] = {.lex_state = 7, .external_lex_state = 3}, - [1828] = {.lex_state = 57, .external_lex_state = 3}, - [1829] = {.lex_state = 0, .external_lex_state = 3}, - [1830] = {.lex_state = 0, .external_lex_state = 3}, - [1831] = {.lex_state = 0, .external_lex_state = 3}, - [1832] = {.lex_state = 0, .external_lex_state = 3}, - [1833] = {.lex_state = 0, .external_lex_state = 3}, - [1834] = {.lex_state = 7, .external_lex_state = 3}, - [1835] = {.lex_state = 0, .external_lex_state = 3}, - [1836] = {.lex_state = 0, .external_lex_state = 3}, - [1837] = {.lex_state = 0, .external_lex_state = 3}, - [1838] = {.lex_state = 57, .external_lex_state = 3}, - [1839] = {.lex_state = 0, .external_lex_state = 3}, - [1840] = {.lex_state = 7, .external_lex_state = 3}, - [1841] = {.lex_state = 3, .external_lex_state = 3}, - [1842] = {.lex_state = 3, .external_lex_state = 3}, - [1843] = {.lex_state = 57, .external_lex_state = 3}, - [1844] = {.lex_state = 0, .external_lex_state = 3}, - [1845] = {.lex_state = 0, .external_lex_state = 3}, - [1846] = {.lex_state = 0, .external_lex_state = 3}, - [1847] = {.lex_state = 3, .external_lex_state = 3}, - [1848] = {.lex_state = 3, .external_lex_state = 3}, - [1849] = {.lex_state = 0, .external_lex_state = 3}, - [1850] = {.lex_state = 0, .external_lex_state = 3}, - [1851] = {.lex_state = 57, .external_lex_state = 3}, - [1852] = {.lex_state = 3, .external_lex_state = 3}, - [1853] = {.lex_state = 0, .external_lex_state = 3}, - [1854] = {.lex_state = 10, .external_lex_state = 3}, - [1855] = {.lex_state = 10, .external_lex_state = 3}, - [1856] = {.lex_state = 3, .external_lex_state = 3}, - [1857] = {.lex_state = 3, .external_lex_state = 3}, - [1858] = {.lex_state = 0, .external_lex_state = 3}, - [1859] = {.lex_state = 0, .external_lex_state = 3}, - [1860] = {.lex_state = 57, .external_lex_state = 3}, - [1861] = {.lex_state = 57, .external_lex_state = 3}, - [1862] = {.lex_state = 0, .external_lex_state = 3}, - [1863] = {.lex_state = 0, .external_lex_state = 3}, - [1864] = {.lex_state = 0, .external_lex_state = 3}, - [1865] = {.lex_state = 0, .external_lex_state = 3}, - [1866] = {.lex_state = 0, .external_lex_state = 3}, - [1867] = {.lex_state = 57, .external_lex_state = 3}, - [1868] = {.lex_state = 0, .external_lex_state = 3}, - [1869] = {.lex_state = 10, .external_lex_state = 3}, - [1870] = {.lex_state = 0, .external_lex_state = 3}, - [1871] = {.lex_state = 0, .external_lex_state = 3}, - [1872] = {.lex_state = 0, .external_lex_state = 3}, - [1873] = {.lex_state = 0, .external_lex_state = 3}, - [1874] = {.lex_state = 57, .external_lex_state = 3}, - [1875] = {.lex_state = 3, .external_lex_state = 3}, - [1876] = {.lex_state = 0, .external_lex_state = 3}, - [1877] = {.lex_state = 57, .external_lex_state = 3}, - [1878] = {.lex_state = 57, .external_lex_state = 3}, - [1879] = {.lex_state = 0, .external_lex_state = 3}, - [1880] = {.lex_state = 0, .external_lex_state = 3}, - [1881] = {.lex_state = 3, .external_lex_state = 3}, - [1882] = {.lex_state = 3, .external_lex_state = 3}, - [1883] = {.lex_state = 3, .external_lex_state = 3}, - [1884] = {.lex_state = 57, .external_lex_state = 3}, - [1885] = {.lex_state = 0, .external_lex_state = 3}, - [1886] = {.lex_state = 57, .external_lex_state = 3}, - [1887] = {.lex_state = 0, .external_lex_state = 3}, - [1888] = {.lex_state = 0, .external_lex_state = 3}, - [1889] = {.lex_state = 0, .external_lex_state = 3}, - [1890] = {.lex_state = 4, .external_lex_state = 3}, - [1891] = {.lex_state = 3, .external_lex_state = 3}, - [1892] = {.lex_state = 0, .external_lex_state = 3}, - [1893] = {.lex_state = 57, .external_lex_state = 3}, - [1894] = {.lex_state = 0, .external_lex_state = 3}, - [1895] = {.lex_state = 3, .external_lex_state = 3}, - [1896] = {.lex_state = 0, .external_lex_state = 3}, - [1897] = {.lex_state = 57, .external_lex_state = 3}, - [1898] = {.lex_state = 0, .external_lex_state = 3}, - [1899] = {.lex_state = 57, .external_lex_state = 3}, - [1900] = {.lex_state = 57, .external_lex_state = 3}, - [1901] = {.lex_state = 57, .external_lex_state = 3}, - [1902] = {.lex_state = 7, .external_lex_state = 3}, - [1903] = {.lex_state = 57, .external_lex_state = 3}, - [1904] = {.lex_state = 0, .external_lex_state = 3}, - [1905] = {.lex_state = 0, .external_lex_state = 3}, - [1906] = {.lex_state = 0, .external_lex_state = 3}, - [1907] = {.lex_state = 57, .external_lex_state = 3}, - [1908] = {.lex_state = 0, .external_lex_state = 3}, - [1909] = {.lex_state = 0, .external_lex_state = 3}, - [1910] = {.lex_state = 57, .external_lex_state = 3}, - [1911] = {.lex_state = 0, .external_lex_state = 3}, - [1912] = {.lex_state = 7, .external_lex_state = 3}, - [1913] = {.lex_state = 57, .external_lex_state = 3}, - [1914] = {.lex_state = 0, .external_lex_state = 3}, - [1915] = {.lex_state = 57, .external_lex_state = 3}, - [1916] = {.lex_state = 0, .external_lex_state = 3}, - [1917] = {.lex_state = 0, .external_lex_state = 3}, - [1918] = {.lex_state = 0, .external_lex_state = 3}, - [1919] = {.lex_state = 57, .external_lex_state = 3}, - [1920] = {.lex_state = 0, .external_lex_state = 3}, - [1921] = {.lex_state = 0, .external_lex_state = 3}, - [1922] = {.lex_state = 0, .external_lex_state = 3}, - [1923] = {.lex_state = 57, .external_lex_state = 3}, - [1924] = {.lex_state = 57, .external_lex_state = 3}, - [1925] = {.lex_state = 0, .external_lex_state = 3}, - [1926] = {.lex_state = 0, .external_lex_state = 3}, - [1927] = {.lex_state = 57, .external_lex_state = 3}, - [1928] = {.lex_state = 0, .external_lex_state = 3}, - [1929] = {.lex_state = 57, .external_lex_state = 3}, - [1930] = {.lex_state = 0, .external_lex_state = 3}, - [1931] = {.lex_state = 57, .external_lex_state = 3}, - [1932] = {.lex_state = 0, .external_lex_state = 3}, - [1933] = {.lex_state = 0, .external_lex_state = 3}, - [1934] = {.lex_state = 0, .external_lex_state = 3}, - [1935] = {.lex_state = 0, .external_lex_state = 3}, - [1936] = {.lex_state = 57, .external_lex_state = 3}, - [1937] = {.lex_state = 7, .external_lex_state = 3}, - [1938] = {.lex_state = 10, .external_lex_state = 3}, - [1939] = {.lex_state = 7, .external_lex_state = 3}, - [1940] = {.lex_state = 57, .external_lex_state = 3}, - [1941] = {.lex_state = 57, .external_lex_state = 3}, - [1942] = {.lex_state = 0, .external_lex_state = 3}, - [1943] = {.lex_state = 0, .external_lex_state = 3}, - [1944] = {.lex_state = 57, .external_lex_state = 3}, - [1945] = {.lex_state = 57, .external_lex_state = 3}, - [1946] = {.lex_state = 57, .external_lex_state = 3}, - [1947] = {.lex_state = 57, .external_lex_state = 3}, - [1948] = {.lex_state = 0, .external_lex_state = 3}, - [1949] = {.lex_state = 0, .external_lex_state = 3}, - [1950] = {.lex_state = 0, .external_lex_state = 3}, - [1951] = {.lex_state = 0, .external_lex_state = 3}, - [1952] = {.lex_state = 0, .external_lex_state = 3}, - [1953] = {.lex_state = 0, .external_lex_state = 3}, - [1954] = {.lex_state = 0, .external_lex_state = 3}, - [1955] = {.lex_state = 57, .external_lex_state = 3}, - [1956] = {.lex_state = 0, .external_lex_state = 3}, - [1957] = {.lex_state = 57, .external_lex_state = 3}, - [1958] = {.lex_state = 57, .external_lex_state = 3}, - [1959] = {.lex_state = 57, .external_lex_state = 3}, - [1960] = {.lex_state = 57, .external_lex_state = 3}, - [1961] = {.lex_state = 0, .external_lex_state = 3}, - [1962] = {.lex_state = 0, .external_lex_state = 3}, - [1963] = {.lex_state = 57, .external_lex_state = 3}, - [1964] = {.lex_state = 57, .external_lex_state = 3}, - [1965] = {.lex_state = 57, .external_lex_state = 3}, - [1966] = {.lex_state = 0, .external_lex_state = 3}, - [1967] = {.lex_state = 0, .external_lex_state = 3}, - [1968] = {.lex_state = 10, .external_lex_state = 3}, - [1969] = {.lex_state = 0, .external_lex_state = 3}, - [1970] = {.lex_state = 0, .external_lex_state = 3}, - [1971] = {.lex_state = 57, .external_lex_state = 3}, - [1972] = {.lex_state = 10, .external_lex_state = 3}, - [1973] = {.lex_state = 7, .external_lex_state = 3}, - [1974] = {.lex_state = 0, .external_lex_state = 3}, - [1975] = {.lex_state = 0, .external_lex_state = 3}, - [1976] = {.lex_state = 57, .external_lex_state = 3}, - [1977] = {.lex_state = 57, .external_lex_state = 3}, - [1978] = {.lex_state = 57, .external_lex_state = 3}, - [1979] = {.lex_state = 0, .external_lex_state = 3}, - [1980] = {.lex_state = 0, .external_lex_state = 3}, - [1981] = {.lex_state = 57, .external_lex_state = 3}, - [1982] = {.lex_state = 7, .external_lex_state = 3}, - [1983] = {.lex_state = 7, .external_lex_state = 3}, - [1984] = {.lex_state = 57, .external_lex_state = 3}, - [1985] = {.lex_state = 57, .external_lex_state = 3}, - [1986] = {.lex_state = 57, .external_lex_state = 3}, - [1987] = {.lex_state = 0, .external_lex_state = 3}, - [1988] = {.lex_state = 0, .external_lex_state = 3}, - [1989] = {.lex_state = 7, .external_lex_state = 3}, - [1990] = {.lex_state = 0, .external_lex_state = 3}, - [1991] = {.lex_state = 0, .external_lex_state = 3}, - [1992] = {.lex_state = 57, .external_lex_state = 3}, - [1993] = {.lex_state = 0, .external_lex_state = 3}, - [1994] = {.lex_state = 0, .external_lex_state = 3}, - [1995] = {.lex_state = 0, .external_lex_state = 3}, - [1996] = {.lex_state = 0, .external_lex_state = 3}, - [1997] = {.lex_state = 17, .external_lex_state = 3}, - [1998] = {.lex_state = 0, .external_lex_state = 3}, - [1999] = {.lex_state = 0, .external_lex_state = 3}, - [2000] = {.lex_state = 7, .external_lex_state = 3}, - [2001] = {.lex_state = 0, .external_lex_state = 3}, - [2002] = {.lex_state = 0, .external_lex_state = 3}, - [2003] = {.lex_state = 57, .external_lex_state = 3}, - [2004] = {.lex_state = 0, .external_lex_state = 3}, - [2005] = {.lex_state = 7, .external_lex_state = 3}, - [2006] = {.lex_state = 0, .external_lex_state = 3}, - [2007] = {.lex_state = 7, .external_lex_state = 3}, - [2008] = {.lex_state = 7, .external_lex_state = 3}, - [2009] = {.lex_state = 7, .external_lex_state = 3}, - [2010] = {.lex_state = 0, .external_lex_state = 3}, - [2011] = {.lex_state = 0, .external_lex_state = 3}, - [2012] = {.lex_state = 57, .external_lex_state = 3}, - [2013] = {.lex_state = 0, .external_lex_state = 3}, - [2014] = {.lex_state = 0, .external_lex_state = 3}, - [2015] = {.lex_state = 0, .external_lex_state = 3}, - [2016] = {.lex_state = 0, .external_lex_state = 3}, - [2017] = {.lex_state = 7, .external_lex_state = 3}, - [2018] = {.lex_state = 0, .external_lex_state = 3}, - [2019] = {.lex_state = 57, .external_lex_state = 3}, - [2020] = {.lex_state = 57, .external_lex_state = 3}, - [2021] = {.lex_state = 7, .external_lex_state = 3}, - [2022] = {.lex_state = 0, .external_lex_state = 3}, - [2023] = {.lex_state = 0, .external_lex_state = 3}, - [2024] = {.lex_state = 57, .external_lex_state = 3}, - [2025] = {.lex_state = 0, .external_lex_state = 3}, - [2026] = {.lex_state = 57, .external_lex_state = 3}, - [2027] = {.lex_state = 7, .external_lex_state = 3}, - [2028] = {.lex_state = 57, .external_lex_state = 3}, - [2029] = {.lex_state = 7, .external_lex_state = 3}, - [2030] = {.lex_state = 17, .external_lex_state = 3}, - [2031] = {.lex_state = 17, .external_lex_state = 3}, - [2032] = {.lex_state = 7, .external_lex_state = 3}, - [2033] = {.lex_state = 57, .external_lex_state = 3}, - [2034] = {.lex_state = 0, .external_lex_state = 3}, - [2035] = {.lex_state = 0, .external_lex_state = 3}, - [2036] = {.lex_state = 17, .external_lex_state = 3}, - [2037] = {.lex_state = 0, .external_lex_state = 3}, - [2038] = {.lex_state = 57, .external_lex_state = 3}, - [2039] = {.lex_state = 0, .external_lex_state = 3}, - [2040] = {.lex_state = 57, .external_lex_state = 3}, - [2041] = {.lex_state = 7, .external_lex_state = 3}, - [2042] = {.lex_state = 17, .external_lex_state = 3}, - [2043] = {.lex_state = 0, .external_lex_state = 3}, - [2044] = {.lex_state = 0, .external_lex_state = 3}, - [2045] = {.lex_state = 0, .external_lex_state = 3}, - [2046] = {.lex_state = 0, .external_lex_state = 3}, - [2047] = {.lex_state = 57, .external_lex_state = 3}, - [2048] = {.lex_state = 0, .external_lex_state = 3}, - [2049] = {.lex_state = 0, .external_lex_state = 3}, - [2050] = {.lex_state = 57, .external_lex_state = 3}, - [2051] = {.lex_state = 0, .external_lex_state = 3}, - [2052] = {.lex_state = 0, .external_lex_state = 3}, - [2053] = {.lex_state = 57, .external_lex_state = 3}, - [2054] = {.lex_state = 7, .external_lex_state = 3}, - [2055] = {.lex_state = 57, .external_lex_state = 3}, - [2056] = {.lex_state = 0, .external_lex_state = 3}, - [2057] = {.lex_state = 57, .external_lex_state = 3}, - [2058] = {.lex_state = 7, .external_lex_state = 3}, - [2059] = {.lex_state = 0, .external_lex_state = 3}, - [2060] = {.lex_state = 57, .external_lex_state = 3}, - [2061] = {.lex_state = 17, .external_lex_state = 3}, - [2062] = {.lex_state = 0, .external_lex_state = 3}, - [2063] = {.lex_state = 57, .external_lex_state = 3}, - [2064] = {.lex_state = 0, .external_lex_state = 3}, - [2065] = {.lex_state = 0, .external_lex_state = 3}, - [2066] = {.lex_state = 0, .external_lex_state = 3}, - [2067] = {.lex_state = 57, .external_lex_state = 3}, - [2068] = {.lex_state = 0, .external_lex_state = 3}, - [2069] = {.lex_state = 0, .external_lex_state = 3}, - [2070] = {.lex_state = 0, .external_lex_state = 3}, - [2071] = {.lex_state = 0, .external_lex_state = 3}, - [2072] = {.lex_state = 4, .external_lex_state = 3}, - [2073] = {.lex_state = 0, .external_lex_state = 3}, - [2074] = {.lex_state = 0, .external_lex_state = 3}, - [2075] = {.lex_state = 57, .external_lex_state = 3}, - [2076] = {.lex_state = 57, .external_lex_state = 3}, - [2077] = {.lex_state = 0, .external_lex_state = 3}, - [2078] = {.lex_state = 0, .external_lex_state = 3}, - [2079] = {.lex_state = 0, .external_lex_state = 3}, - [2080] = {.lex_state = 0, .external_lex_state = 3}, - [2081] = {.lex_state = 0, .external_lex_state = 3}, - [2082] = {.lex_state = 0, .external_lex_state = 3}, - [2083] = {.lex_state = 0, .external_lex_state = 3}, - [2084] = {.lex_state = 0, .external_lex_state = 3}, - [2085] = {.lex_state = 0, .external_lex_state = 3}, - [2086] = {.lex_state = 0, .external_lex_state = 3}, - [2087] = {.lex_state = 0, .external_lex_state = 3}, - [2088] = {.lex_state = 57, .external_lex_state = 3}, - [2089] = {.lex_state = 7, .external_lex_state = 3}, - [2090] = {.lex_state = 0, .external_lex_state = 3}, - [2091] = {.lex_state = 0, .external_lex_state = 3}, - [2092] = {.lex_state = 0, .external_lex_state = 3}, - [2093] = {.lex_state = 0, .external_lex_state = 3}, - [2094] = {.lex_state = 7, .external_lex_state = 3}, - [2095] = {.lex_state = 57, .external_lex_state = 3}, - [2096] = {.lex_state = 0, .external_lex_state = 3}, - [2097] = {.lex_state = 0, .external_lex_state = 3}, - [2098] = {.lex_state = 0, .external_lex_state = 3}, - [2099] = {.lex_state = 0, .external_lex_state = 3}, - [2100] = {.lex_state = 57, .external_lex_state = 3}, - [2101] = {.lex_state = 0, .external_lex_state = 3}, - [2102] = {.lex_state = 0, .external_lex_state = 3}, - [2103] = {.lex_state = 0, .external_lex_state = 3}, - [2104] = {.lex_state = 0, .external_lex_state = 3}, - [2105] = {.lex_state = 0, .external_lex_state = 3}, - [2106] = {.lex_state = 0, .external_lex_state = 3}, - [2107] = {.lex_state = 0, .external_lex_state = 3}, - [2108] = {.lex_state = 57, .external_lex_state = 3}, - [2109] = {.lex_state = 0, .external_lex_state = 3}, - [2110] = {.lex_state = 0, .external_lex_state = 3}, - [2111] = {.lex_state = 7, .external_lex_state = 3}, - [2112] = {.lex_state = 0, .external_lex_state = 3}, - [2113] = {.lex_state = 0, .external_lex_state = 3}, - [2114] = {.lex_state = 0, .external_lex_state = 3}, - [2115] = {.lex_state = 0, .external_lex_state = 3}, - [2116] = {.lex_state = 0, .external_lex_state = 3}, - [2117] = {.lex_state = 7, .external_lex_state = 3}, - [2118] = {.lex_state = 0, .external_lex_state = 3}, - [2119] = {.lex_state = 0, .external_lex_state = 3}, - [2120] = {.lex_state = 0, .external_lex_state = 3}, - [2121] = {.lex_state = 0, .external_lex_state = 3}, - [2122] = {.lex_state = 0, .external_lex_state = 3}, - [2123] = {.lex_state = 7, .external_lex_state = 3}, - [2124] = {.lex_state = 0, .external_lex_state = 3}, - [2125] = {.lex_state = 57, .external_lex_state = 3}, - [2126] = {.lex_state = 0, .external_lex_state = 3}, - [2127] = {.lex_state = 0, .external_lex_state = 3}, - [2128] = {.lex_state = 0, .external_lex_state = 3}, - [2129] = {.lex_state = 0, .external_lex_state = 3}, - [2130] = {.lex_state = 0, .external_lex_state = 3}, - [2131] = {.lex_state = 0, .external_lex_state = 3}, - [2132] = {.lex_state = 0, .external_lex_state = 3}, - [2133] = {.lex_state = 0, .external_lex_state = 3}, - [2134] = {.lex_state = 0, .external_lex_state = 3}, - [2135] = {.lex_state = 0, .external_lex_state = 3}, - [2136] = {.lex_state = 0, .external_lex_state = 3}, - [2137] = {.lex_state = 0, .external_lex_state = 3}, - [2138] = {.lex_state = 0, .external_lex_state = 3}, - [2139] = {.lex_state = 0, .external_lex_state = 3}, - [2140] = {.lex_state = 57, .external_lex_state = 3}, - [2141] = {.lex_state = 0, .external_lex_state = 3}, - [2142] = {.lex_state = 0, .external_lex_state = 3}, - [2143] = {.lex_state = 57, .external_lex_state = 3}, - [2144] = {.lex_state = 0, .external_lex_state = 3}, - [2145] = {.lex_state = 7, .external_lex_state = 3}, - [2146] = {.lex_state = 0, .external_lex_state = 3}, - [2147] = {.lex_state = 0, .external_lex_state = 3}, - [2148] = {.lex_state = 0, .external_lex_state = 3}, - [2149] = {.lex_state = 0, .external_lex_state = 3}, - [2150] = {.lex_state = 0, .external_lex_state = 3}, - [2151] = {.lex_state = 0, .external_lex_state = 3}, - [2152] = {.lex_state = 0, .external_lex_state = 3}, - [2153] = {.lex_state = 0, .external_lex_state = 3}, - [2154] = {.lex_state = 0, .external_lex_state = 3}, - [2155] = {.lex_state = 0, .external_lex_state = 3}, - [2156] = {.lex_state = 0, .external_lex_state = 3}, - [2157] = {.lex_state = 57, .external_lex_state = 3}, - [2158] = {.lex_state = 57, .external_lex_state = 3}, - [2159] = {.lex_state = 57, .external_lex_state = 3}, - [2160] = {.lex_state = 0, .external_lex_state = 3}, - [2161] = {.lex_state = 7, .external_lex_state = 3}, - [2162] = {.lex_state = 0, .external_lex_state = 3}, - [2163] = {.lex_state = 0, .external_lex_state = 3}, - [2164] = {.lex_state = 0, .external_lex_state = 3}, - [2165] = {.lex_state = 0, .external_lex_state = 3}, - [2166] = {.lex_state = 0, .external_lex_state = 3}, - [2167] = {.lex_state = 0, .external_lex_state = 3}, - [2168] = {.lex_state = 57, .external_lex_state = 3}, - [2169] = {.lex_state = 0, .external_lex_state = 3}, - [2170] = {.lex_state = 0, .external_lex_state = 3}, - [2171] = {.lex_state = 0, .external_lex_state = 3}, - [2172] = {.lex_state = 0, .external_lex_state = 3}, - [2173] = {.lex_state = 7, .external_lex_state = 3}, - [2174] = {.lex_state = 57, .external_lex_state = 3}, - [2175] = {.lex_state = 0, .external_lex_state = 3}, - [2176] = {.lex_state = 10, .external_lex_state = 3}, - [2177] = {.lex_state = 0, .external_lex_state = 3}, - [2178] = {.lex_state = 0, .external_lex_state = 3}, - [2179] = {.lex_state = 0, .external_lex_state = 5}, - [2180] = {.lex_state = 4, .external_lex_state = 3}, - [2181] = {.lex_state = 0, .external_lex_state = 3}, - [2182] = {.lex_state = 0, .external_lex_state = 3}, - [2183] = {.lex_state = 0, .external_lex_state = 3}, - [2184] = {.lex_state = 7, .external_lex_state = 3}, - [2185] = {.lex_state = 7, .external_lex_state = 3}, - [2186] = {.lex_state = 7, .external_lex_state = 3}, - [2187] = {.lex_state = 0, .external_lex_state = 3}, - [2188] = {.lex_state = 7, .external_lex_state = 3}, - [2189] = {.lex_state = 0, .external_lex_state = 3}, - [2190] = {.lex_state = 0, .external_lex_state = 3}, - [2191] = {.lex_state = 0, .external_lex_state = 3}, - [2192] = {.lex_state = 0, .external_lex_state = 3}, - [2193] = {.lex_state = 7, .external_lex_state = 3}, - [2194] = {.lex_state = 7, .external_lex_state = 3}, - [2195] = {.lex_state = 0, .external_lex_state = 3}, - [2196] = {.lex_state = 7, .external_lex_state = 3}, - [2197] = {.lex_state = 7, .external_lex_state = 3}, - [2198] = {.lex_state = 0, .external_lex_state = 3}, - [2199] = {.lex_state = 7, .external_lex_state = 3}, - [2200] = {.lex_state = 57, .external_lex_state = 3}, - [2201] = {.lex_state = 7, .external_lex_state = 3}, - [2202] = {.lex_state = 7, .external_lex_state = 3}, - [2203] = {.lex_state = 0, .external_lex_state = 3}, - [2204] = {.lex_state = 57, .external_lex_state = 3}, - [2205] = {.lex_state = 7, .external_lex_state = 3}, - [2206] = {.lex_state = 7, .external_lex_state = 3}, - [2207] = {.lex_state = 0, .external_lex_state = 3}, - [2208] = {.lex_state = 7, .external_lex_state = 3}, - [2209] = {.lex_state = 0, .external_lex_state = 3}, - [2210] = {.lex_state = 7, .external_lex_state = 3}, - [2211] = {.lex_state = 10, .external_lex_state = 3}, - [2212] = {.lex_state = 7, .external_lex_state = 3}, - [2213] = {.lex_state = 7, .external_lex_state = 3}, - [2214] = {.lex_state = 7, .external_lex_state = 3}, - [2215] = {.lex_state = 7, .external_lex_state = 3}, - [2216] = {.lex_state = 7, .external_lex_state = 3}, - [2217] = {.lex_state = 0, .external_lex_state = 3}, - [2218] = {.lex_state = 57, .external_lex_state = 3}, - [2219] = {.lex_state = 7, .external_lex_state = 3}, - [2220] = {.lex_state = 7, .external_lex_state = 3}, - [2221] = {.lex_state = 7, .external_lex_state = 3}, - [2222] = {.lex_state = 0, .external_lex_state = 3}, - [2223] = {.lex_state = 7, .external_lex_state = 3}, - [2224] = {.lex_state = 7, .external_lex_state = 3}, - [2225] = {.lex_state = 7, .external_lex_state = 3}, - [2226] = {.lex_state = 7, .external_lex_state = 3}, - [2227] = {.lex_state = 7, .external_lex_state = 3}, - [2228] = {.lex_state = 0, .external_lex_state = 3}, - [2229] = {.lex_state = 7, .external_lex_state = 3}, - [2230] = {.lex_state = 7, .external_lex_state = 3}, - [2231] = {.lex_state = 7, .external_lex_state = 3}, - [2232] = {.lex_state = 7, .external_lex_state = 3}, - [2233] = {.lex_state = 0, .external_lex_state = 3}, - [2234] = {.lex_state = 0, .external_lex_state = 3}, - [2235] = {.lex_state = 0, .external_lex_state = 3}, - [2236] = {.lex_state = 0, .external_lex_state = 3}, - [2237] = {.lex_state = 0, .external_lex_state = 3}, - [2238] = {.lex_state = 7, .external_lex_state = 3}, - [2239] = {.lex_state = 7, .external_lex_state = 3}, - [2240] = {.lex_state = 7, .external_lex_state = 3}, - [2241] = {.lex_state = 0, .external_lex_state = 3}, - [2242] = {.lex_state = 0, .external_lex_state = 3}, - [2243] = {.lex_state = 7, .external_lex_state = 3}, - [2244] = {.lex_state = 7, .external_lex_state = 3}, - [2245] = {.lex_state = 0, .external_lex_state = 3}, - [2246] = {.lex_state = 7, .external_lex_state = 3}, - [2247] = {.lex_state = 7, .external_lex_state = 3}, - [2248] = {.lex_state = 7, .external_lex_state = 3}, - [2249] = {.lex_state = 7, .external_lex_state = 3}, - [2250] = {.lex_state = 7, .external_lex_state = 3}, - [2251] = {.lex_state = 0, .external_lex_state = 3}, - [2252] = {.lex_state = 7, .external_lex_state = 3}, - [2253] = {.lex_state = 0, .external_lex_state = 3}, - [2254] = {.lex_state = 10, .external_lex_state = 3}, - [2255] = {.lex_state = 0, .external_lex_state = 3}, - [2256] = {.lex_state = 7, .external_lex_state = 3}, - [2257] = {.lex_state = 7, .external_lex_state = 3}, - [2258] = {.lex_state = 0, .external_lex_state = 3}, - [2259] = {.lex_state = 0, .external_lex_state = 3}, - [2260] = {.lex_state = 0, .external_lex_state = 3}, - [2261] = {.lex_state = 7, .external_lex_state = 3}, - [2262] = {.lex_state = 7, .external_lex_state = 3}, - [2263] = {.lex_state = 7, .external_lex_state = 3}, - [2264] = {.lex_state = 0, .external_lex_state = 3}, - [2265] = {.lex_state = 7, .external_lex_state = 3}, - [2266] = {.lex_state = 7, .external_lex_state = 3}, - [2267] = {.lex_state = 10, .external_lex_state = 3}, - [2268] = {.lex_state = 0, .external_lex_state = 3}, - [2269] = {.lex_state = 7, .external_lex_state = 3}, - [2270] = {.lex_state = 0, .external_lex_state = 3}, - [2271] = {.lex_state = 7, .external_lex_state = 3}, - [2272] = {.lex_state = 7, .external_lex_state = 3}, - [2273] = {.lex_state = 7, .external_lex_state = 3}, - [2274] = {.lex_state = 0, .external_lex_state = 3}, - [2275] = {.lex_state = 7, .external_lex_state = 3}, - [2276] = {.lex_state = 7, .external_lex_state = 3}, - [2277] = {.lex_state = 7, .external_lex_state = 3}, - [2278] = {.lex_state = 7, .external_lex_state = 3}, - [2279] = {.lex_state = 10, .external_lex_state = 3}, - [2280] = {.lex_state = 7, .external_lex_state = 3}, - [2281] = {.lex_state = 7, .external_lex_state = 3}, - [2282] = {.lex_state = 0, .external_lex_state = 3}, - [2283] = {.lex_state = 7, .external_lex_state = 3}, - [2284] = {.lex_state = 0, .external_lex_state = 3}, - [2285] = {.lex_state = 0, .external_lex_state = 3}, - [2286] = {.lex_state = 7, .external_lex_state = 3}, - [2287] = {.lex_state = 7, .external_lex_state = 3}, - [2288] = {.lex_state = 7, .external_lex_state = 3}, - [2289] = {.lex_state = 0, .external_lex_state = 3}, - [2290] = {.lex_state = 7, .external_lex_state = 3}, - [2291] = {.lex_state = 0, .external_lex_state = 3}, - [2292] = {.lex_state = 7, .external_lex_state = 3}, - [2293] = {.lex_state = 10, .external_lex_state = 3}, - [2294] = {.lex_state = 7, .external_lex_state = 3}, - [2295] = {.lex_state = 7, .external_lex_state = 3}, - [2296] = {.lex_state = 7, .external_lex_state = 3}, - [2297] = {.lex_state = 7, .external_lex_state = 3}, - [2298] = {.lex_state = 7, .external_lex_state = 3}, - [2299] = {.lex_state = 0, .external_lex_state = 3}, - [2300] = {.lex_state = 0, .external_lex_state = 3}, - [2301] = {.lex_state = 7, .external_lex_state = 3}, - [2302] = {.lex_state = 0, .external_lex_state = 3}, - [2303] = {.lex_state = 0, .external_lex_state = 3}, - [2304] = {.lex_state = 10, .external_lex_state = 3}, - [2305] = {.lex_state = 10, .external_lex_state = 3}, - [2306] = {.lex_state = 7, .external_lex_state = 3}, - [2307] = {.lex_state = 0, .external_lex_state = 3}, - [2308] = {.lex_state = 0, .external_lex_state = 3}, - [2309] = {.lex_state = 0, .external_lex_state = 3}, - [2310] = {.lex_state = 0, .external_lex_state = 3}, - [2311] = {.lex_state = 0, .external_lex_state = 3}, - [2312] = {.lex_state = 7, .external_lex_state = 3}, - [2313] = {.lex_state = 0, .external_lex_state = 3}, - [2314] = {.lex_state = 0, .external_lex_state = 3}, - [2315] = {.lex_state = 0, .external_lex_state = 3}, - [2316] = {.lex_state = 7, .external_lex_state = 3}, - [2317] = {.lex_state = 0, .external_lex_state = 3}, - [2318] = {.lex_state = 0, .external_lex_state = 3}, - [2319] = {.lex_state = 0, .external_lex_state = 3}, - [2320] = {.lex_state = 0, .external_lex_state = 3}, - [2321] = {.lex_state = 7, .external_lex_state = 3}, - [2322] = {.lex_state = 7, .external_lex_state = 3}, - [2323] = {.lex_state = 0, .external_lex_state = 3}, - [2324] = {.lex_state = 0, .external_lex_state = 3}, - [2325] = {.lex_state = 7, .external_lex_state = 3}, - [2326] = {.lex_state = 0, .external_lex_state = 3}, - [2327] = {.lex_state = 57, .external_lex_state = 3}, - [2328] = {.lex_state = 0, .external_lex_state = 3}, - [2329] = {.lex_state = 0, .external_lex_state = 3}, - [2330] = {.lex_state = 7, .external_lex_state = 3}, - [2331] = {.lex_state = 0, .external_lex_state = 3}, - [2332] = {.lex_state = 0, .external_lex_state = 3}, - [2333] = {.lex_state = 0, .external_lex_state = 3}, - [2334] = {.lex_state = 10, .external_lex_state = 3}, - [2335] = {.lex_state = 0, .external_lex_state = 3}, - [2336] = {.lex_state = 7, .external_lex_state = 3}, - [2337] = {.lex_state = 7, .external_lex_state = 3}, - [2338] = {.lex_state = 0, .external_lex_state = 3}, - [2339] = {.lex_state = 7, .external_lex_state = 3}, - [2340] = {.lex_state = 7, .external_lex_state = 3}, - [2341] = {.lex_state = 7, .external_lex_state = 3}, - [2342] = {.lex_state = 0, .external_lex_state = 3}, - [2343] = {.lex_state = 0, .external_lex_state = 3}, - [2344] = {.lex_state = 0, .external_lex_state = 3}, - [2345] = {.lex_state = 0, .external_lex_state = 3}, - [2346] = {.lex_state = 0, .external_lex_state = 3}, - [2347] = {.lex_state = 0, .external_lex_state = 3}, - [2348] = {.lex_state = 0, .external_lex_state = 3}, - [2349] = {.lex_state = 0, .external_lex_state = 3}, - [2350] = {.lex_state = 0, .external_lex_state = 3}, - [2351] = {.lex_state = 0, .external_lex_state = 3}, - [2352] = {.lex_state = 0, .external_lex_state = 3}, - [2353] = {.lex_state = 7, .external_lex_state = 3}, - [2354] = {.lex_state = 0, .external_lex_state = 3}, - [2355] = {.lex_state = 0, .external_lex_state = 3}, - [2356] = {.lex_state = 0, .external_lex_state = 3}, - [2357] = {.lex_state = 10, .external_lex_state = 3}, - [2358] = {.lex_state = 0, .external_lex_state = 3}, - [2359] = {.lex_state = 10, .external_lex_state = 3}, - [2360] = {.lex_state = 0, .external_lex_state = 3}, - [2361] = {.lex_state = 0, .external_lex_state = 3}, - [2362] = {.lex_state = 0, .external_lex_state = 3}, - [2363] = {.lex_state = 0, .external_lex_state = 3}, - [2364] = {.lex_state = 10, .external_lex_state = 3}, - [2365] = {.lex_state = 0, .external_lex_state = 3}, - [2366] = {.lex_state = 0, .external_lex_state = 3}, - [2367] = {.lex_state = 10, .external_lex_state = 3}, - [2368] = {.lex_state = 7, .external_lex_state = 3}, - [2369] = {.lex_state = 0, .external_lex_state = 3}, - [2370] = {.lex_state = 0, .external_lex_state = 3}, - [2371] = {.lex_state = 7, .external_lex_state = 3}, - [2372] = {.lex_state = 0, .external_lex_state = 3}, - [2373] = {.lex_state = 10, .external_lex_state = 3}, - [2374] = {.lex_state = 0, .external_lex_state = 3}, - [2375] = {.lex_state = 0, .external_lex_state = 3}, - [2376] = {.lex_state = 7, .external_lex_state = 3}, - [2377] = {.lex_state = 7, .external_lex_state = 3}, - [2378] = {.lex_state = 0, .external_lex_state = 3}, - [2379] = {.lex_state = 10, .external_lex_state = 3}, - [2380] = {.lex_state = 10, .external_lex_state = 3}, - [2381] = {.lex_state = 10, .external_lex_state = 3}, - [2382] = {.lex_state = 10, .external_lex_state = 3}, - [2383] = {.lex_state = 0, .external_lex_state = 3}, - [2384] = {.lex_state = 0, .external_lex_state = 3}, - [2385] = {.lex_state = 7, .external_lex_state = 3}, - [2386] = {.lex_state = 0, .external_lex_state = 3}, - [2387] = {.lex_state = 7, .external_lex_state = 3}, - [2388] = {.lex_state = 10, .external_lex_state = 3}, - [2389] = {.lex_state = 0, .external_lex_state = 3}, - [2390] = {.lex_state = 10, .external_lex_state = 3}, - [2391] = {.lex_state = 0, .external_lex_state = 3}, - [2392] = {.lex_state = 0, .external_lex_state = 3}, - [2393] = {.lex_state = 7, .external_lex_state = 3}, - [2394] = {.lex_state = 0, .external_lex_state = 3}, - [2395] = {.lex_state = 0, .external_lex_state = 3}, - [2396] = {.lex_state = 10, .external_lex_state = 3}, - [2397] = {.lex_state = 7, .external_lex_state = 3}, - [2398] = {.lex_state = 0, .external_lex_state = 3}, - [2399] = {.lex_state = 7, .external_lex_state = 3}, - [2400] = {.lex_state = 0, .external_lex_state = 3}, - [2401] = {.lex_state = 0, .external_lex_state = 3}, - [2402] = {.lex_state = 7, .external_lex_state = 3}, - [2403] = {.lex_state = 0, .external_lex_state = 3}, - [2404] = {.lex_state = 0, .external_lex_state = 3}, - [2405] = {.lex_state = 0, .external_lex_state = 3}, - [2406] = {.lex_state = 7, .external_lex_state = 3}, - [2407] = {.lex_state = 7, .external_lex_state = 3}, - [2408] = {.lex_state = 7, .external_lex_state = 3}, - [2409] = {.lex_state = 0, .external_lex_state = 3}, - [2410] = {.lex_state = 7, .external_lex_state = 3}, - [2411] = {.lex_state = 7, .external_lex_state = 3}, - [2412] = {.lex_state = 7, .external_lex_state = 3}, - [2413] = {.lex_state = 7, .external_lex_state = 3}, - [2414] = {.lex_state = 0, .external_lex_state = 3}, - [2415] = {.lex_state = 7, .external_lex_state = 3}, - [2416] = {.lex_state = 0, .external_lex_state = 3}, - [2417] = {.lex_state = 7, .external_lex_state = 3}, -}; - -enum { - ts_external_token__string_content = 0, - ts_external_token_raw_string_literal = 1, - ts_external_token_float_literal = 2, - ts_external_token_block_comment = 3, -}; - -static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token__string_content] = sym__string_content, - [ts_external_token_raw_string_literal] = sym_raw_string_literal, - [ts_external_token_float_literal] = sym_float_literal, - [ts_external_token_block_comment] = sym_block_comment, -}; - -static bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token__string_content] = true, - [ts_external_token_raw_string_literal] = true, - [ts_external_token_float_literal] = true, - [ts_external_token_block_comment] = true, - }, - [2] = { - [ts_external_token_raw_string_literal] = true, - [ts_external_token_float_literal] = true, - [ts_external_token_block_comment] = true, - }, - [3] = { - [ts_external_token_block_comment] = true, - }, - [4] = { - [ts_external_token__string_content] = true, - [ts_external_token_block_comment] = true, - }, - [5] = { - [ts_external_token_float_literal] = true, - [ts_external_token_block_comment] = true, - }, -}; - -static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [ts_builtin_sym_end] = ACTIONS(1), - [sym_identifier] = ACTIONS(1), - [anon_sym_SEMI] = ACTIONS(1), - [anon_sym_macro_rules_BANG] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_EQ_GT] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), - [anon_sym_DOLLAR] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_QMARK] = ACTIONS(1), - [anon_sym_block] = ACTIONS(1), - [anon_sym_expr] = ACTIONS(1), - [anon_sym_ident] = ACTIONS(1), - [anon_sym_item] = ACTIONS(1), - [anon_sym_lifetime] = ACTIONS(1), - [anon_sym_literal] = ACTIONS(1), - [anon_sym_meta] = ACTIONS(1), - [anon_sym_pat] = ACTIONS(1), - [anon_sym_path] = ACTIONS(1), - [anon_sym_stmt] = ACTIONS(1), - [anon_sym_tt] = ACTIONS(1), - [anon_sym_ty] = ACTIONS(1), - [anon_sym_vis] = ACTIONS(1), - [anon_sym_u8] = ACTIONS(1), - [anon_sym_i8] = ACTIONS(1), - [anon_sym_u16] = ACTIONS(1), - [anon_sym_i16] = ACTIONS(1), - [anon_sym_u32] = ACTIONS(1), - [anon_sym_i32] = ACTIONS(1), - [anon_sym_u64] = ACTIONS(1), - [anon_sym_i64] = ACTIONS(1), - [anon_sym_u128] = ACTIONS(1), - [anon_sym_i128] = ACTIONS(1), - [anon_sym_isize] = ACTIONS(1), - [anon_sym_usize] = ACTIONS(1), - [anon_sym_f32] = ACTIONS(1), - [anon_sym_f64] = ACTIONS(1), - [anon_sym_bool] = ACTIONS(1), - [anon_sym_str] = ACTIONS(1), - [anon_sym_char] = ACTIONS(1), - [anon_sym_SQUOTE] = ACTIONS(1), - [anon_sym_as] = ACTIONS(1), - [anon_sym_async] = ACTIONS(1), - [anon_sym_await] = ACTIONS(1), - [anon_sym_break] = ACTIONS(1), - [anon_sym_const] = ACTIONS(1), - [anon_sym_continue] = ACTIONS(1), - [anon_sym_default] = ACTIONS(1), - [anon_sym_enum] = ACTIONS(1), - [anon_sym_fn] = ACTIONS(1), - [anon_sym_for] = ACTIONS(1), - [anon_sym_if] = ACTIONS(1), - [anon_sym_impl] = ACTIONS(1), - [anon_sym_let] = ACTIONS(1), - [anon_sym_loop] = ACTIONS(1), - [anon_sym_match] = ACTIONS(1), - [anon_sym_mod] = ACTIONS(1), - [anon_sym_pub] = ACTIONS(1), - [anon_sym_return] = ACTIONS(1), - [anon_sym_static] = ACTIONS(1), - [anon_sym_struct] = ACTIONS(1), - [anon_sym_trait] = ACTIONS(1), - [anon_sym_type] = ACTIONS(1), - [anon_sym_union] = ACTIONS(1), - [anon_sym_unsafe] = ACTIONS(1), - [anon_sym_use] = ACTIONS(1), - [anon_sym_where] = ACTIONS(1), - [anon_sym_while] = ACTIONS(1), - [anon_sym_POUND] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), - [anon_sym_extern] = ACTIONS(1), - [anon_sym_ref] = ACTIONS(1), - [anon_sym_DASH_GT] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_COLON_COLON] = ACTIONS(1), - [anon_sym__] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1), - [anon_sym_in] = ACTIONS(1), - [anon_sym_LT2] = ACTIONS(1), - [anon_sym_dyn] = ACTIONS(1), - [sym_mutable_specifier] = ACTIONS(1), - [anon_sym_DOT_DOT] = ACTIONS(1), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), - [anon_sym_PIPE_PIPE] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_CARET] = ACTIONS(1), - [anon_sym_EQ_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_LT_EQ] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_LT_LT] = ACTIONS(1), - [anon_sym_GT_GT] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [anon_sym_PLUS_EQ] = ACTIONS(1), - [anon_sym_DASH_EQ] = ACTIONS(1), - [anon_sym_STAR_EQ] = ACTIONS(1), - [anon_sym_SLASH_EQ] = ACTIONS(1), - [anon_sym_PERCENT_EQ] = ACTIONS(1), - [anon_sym_AMP_EQ] = ACTIONS(1), - [anon_sym_PIPE_EQ] = ACTIONS(1), - [anon_sym_CARET_EQ] = ACTIONS(1), - [anon_sym_LT_LT_EQ] = ACTIONS(1), - [anon_sym_GT_GT_EQ] = ACTIONS(1), - [anon_sym_else] = ACTIONS(1), - [anon_sym_move] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), - [sym_integer_literal] = ACTIONS(1), - [aux_sym_string_literal_token1] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [sym_char_literal] = ACTIONS(1), - [sym_escape_sequence] = ACTIONS(1), - [anon_sym_true] = ACTIONS(1), - [anon_sym_false] = ACTIONS(1), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1), - [sym_super] = ACTIONS(1), - [sym_crate] = ACTIONS(1), - [sym_metavariable] = ACTIONS(1), - [sym__string_content] = ACTIONS(1), - [sym_raw_string_literal] = ACTIONS(1), - [sym_float_literal] = ACTIONS(1), - [sym_block_comment] = ACTIONS(3), - }, - [1] = { - [sym_source_file] = STATE(2317), - [sym__statement] = STATE(4), - [sym_empty_statement] = STATE(4), - [sym__expression_statement] = STATE(4), - [sym_macro_definition] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_foreign_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_union_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_extern_crate_declaration] = STATE(4), - [sym_const_item] = STATE(4), - [sym_static_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function_modifiers] = STATE(2316), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_extern_modifier] = STATE(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [ts_builtin_sym_end] = ACTIONS(5), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [2] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym__expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(2316), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1126), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [3] = { - [sym__statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym__expression_statement] = STATE(7), - [sym_macro_definition] = STATE(7), - [sym_attribute_item] = STATE(7), - [sym_inner_attribute_item] = STATE(7), - [sym_mod_item] = STATE(7), - [sym_foreign_mod_item] = STATE(7), - [sym_struct_item] = STATE(7), - [sym_union_item] = STATE(7), - [sym_enum_item] = STATE(7), - [sym_extern_crate_declaration] = STATE(7), - [sym_const_item] = STATE(7), - [sym_static_item] = STATE(7), - [sym_type_item] = STATE(7), - [sym_function_item] = STATE(7), - [sym_function_signature_item] = STATE(7), - [sym_function_modifiers] = STATE(2316), - [sym_impl_item] = STATE(7), - [sym_trait_item] = STATE(7), - [sym_associated_type] = STATE(7), - [sym_let_declaration] = STATE(7), - [sym_use_declaration] = STATE(7), - [sym_extern_modifier] = STATE(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1119), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [4] = { - [sym__statement] = STATE(6), - [sym_empty_statement] = STATE(6), - [sym__expression_statement] = STATE(6), - [sym_macro_definition] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_foreign_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_union_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_extern_crate_declaration] = STATE(6), - [sym_const_item] = STATE(6), - [sym_static_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function_modifiers] = STATE(2316), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_extern_modifier] = STATE(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [ts_builtin_sym_end] = ACTIONS(107), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [5] = { - [sym__statement] = STATE(2), - [sym_empty_statement] = STATE(2), - [sym__expression_statement] = STATE(2), - [sym_macro_definition] = STATE(2), - [sym_attribute_item] = STATE(2), - [sym_inner_attribute_item] = STATE(2), - [sym_mod_item] = STATE(2), - [sym_foreign_mod_item] = STATE(2), - [sym_struct_item] = STATE(2), - [sym_union_item] = STATE(2), - [sym_enum_item] = STATE(2), - [sym_extern_crate_declaration] = STATE(2), - [sym_const_item] = STATE(2), - [sym_static_item] = STATE(2), - [sym_type_item] = STATE(2), - [sym_function_item] = STATE(2), - [sym_function_signature_item] = STATE(2), - [sym_function_modifiers] = STATE(2316), - [sym_impl_item] = STATE(2), - [sym_trait_item] = STATE(2), - [sym_associated_type] = STATE(2), - [sym_let_declaration] = STATE(2), - [sym_use_declaration] = STATE(2), - [sym_extern_modifier] = STATE(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1129), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [6] = { - [sym__statement] = STATE(6), - [sym_empty_statement] = STATE(6), - [sym__expression_statement] = STATE(6), - [sym_macro_definition] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_foreign_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_union_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_extern_crate_declaration] = STATE(6), - [sym_const_item] = STATE(6), - [sym_static_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function_modifiers] = STATE(2316), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_extern_modifier] = STATE(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [ts_builtin_sym_end] = ACTIONS(111), - [sym_identifier] = ACTIONS(113), - [anon_sym_SEMI] = ACTIONS(116), - [anon_sym_macro_rules_BANG] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_u8] = ACTIONS(134), - [anon_sym_i8] = ACTIONS(134), - [anon_sym_u16] = ACTIONS(134), - [anon_sym_i16] = ACTIONS(134), - [anon_sym_u32] = ACTIONS(134), - [anon_sym_i32] = ACTIONS(134), - [anon_sym_u64] = ACTIONS(134), - [anon_sym_i64] = ACTIONS(134), - [anon_sym_u128] = ACTIONS(134), - [anon_sym_i128] = ACTIONS(134), - [anon_sym_isize] = ACTIONS(134), - [anon_sym_usize] = ACTIONS(134), - [anon_sym_f32] = ACTIONS(134), - [anon_sym_f64] = ACTIONS(134), - [anon_sym_bool] = ACTIONS(134), - [anon_sym_str] = ACTIONS(134), - [anon_sym_char] = ACTIONS(134), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_async] = ACTIONS(140), - [anon_sym_break] = ACTIONS(143), - [anon_sym_const] = ACTIONS(146), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_default] = ACTIONS(152), - [anon_sym_enum] = ACTIONS(155), - [anon_sym_fn] = ACTIONS(158), - [anon_sym_for] = ACTIONS(161), - [anon_sym_if] = ACTIONS(164), - [anon_sym_impl] = ACTIONS(167), - [anon_sym_let] = ACTIONS(170), - [anon_sym_loop] = ACTIONS(173), - [anon_sym_match] = ACTIONS(176), - [anon_sym_mod] = ACTIONS(179), - [anon_sym_pub] = ACTIONS(182), - [anon_sym_return] = ACTIONS(185), - [anon_sym_static] = ACTIONS(188), - [anon_sym_struct] = ACTIONS(191), - [anon_sym_trait] = ACTIONS(194), - [anon_sym_type] = ACTIONS(197), - [anon_sym_union] = ACTIONS(200), - [anon_sym_unsafe] = ACTIONS(203), - [anon_sym_use] = ACTIONS(206), - [anon_sym_while] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(212), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_COLON_COLON] = ACTIONS(221), - [anon_sym_AMP] = ACTIONS(224), - [anon_sym_DOT_DOT] = ACTIONS(227), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(230), - [anon_sym_move] = ACTIONS(233), - [sym_integer_literal] = ACTIONS(236), - [aux_sym_string_literal_token1] = ACTIONS(239), - [sym_char_literal] = ACTIONS(236), - [anon_sym_true] = ACTIONS(242), - [anon_sym_false] = ACTIONS(242), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(245), - [sym_super] = ACTIONS(248), - [sym_crate] = ACTIONS(251), - [sym_metavariable] = ACTIONS(254), - [sym_raw_string_literal] = ACTIONS(236), - [sym_float_literal] = ACTIONS(236), - [sym_block_comment] = ACTIONS(3), - }, - [7] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym__expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(2316), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1118), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(257), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [8] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym__expression_statement] = STATE(10), - [sym_macro_definition] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_mod_item] = STATE(10), - [sym_foreign_mod_item] = STATE(10), - [sym_struct_item] = STATE(10), - [sym_union_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_extern_crate_declaration] = STATE(10), - [sym_const_item] = STATE(10), - [sym_static_item] = STATE(10), - [sym_type_item] = STATE(10), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_function_modifiers] = STATE(2316), - [sym_impl_item] = STATE(10), - [sym_trait_item] = STATE(10), - [sym_associated_type] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_extern_modifier] = STATE(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1150), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(259), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [9] = { - [sym__statement] = STATE(11), - [sym_empty_statement] = STATE(11), - [sym__expression_statement] = STATE(11), - [sym_macro_definition] = STATE(11), - [sym_attribute_item] = STATE(11), - [sym_inner_attribute_item] = STATE(11), - [sym_mod_item] = STATE(11), - [sym_foreign_mod_item] = STATE(11), - [sym_struct_item] = STATE(11), - [sym_union_item] = STATE(11), - [sym_enum_item] = STATE(11), - [sym_extern_crate_declaration] = STATE(11), - [sym_const_item] = STATE(11), - [sym_static_item] = STATE(11), - [sym_type_item] = STATE(11), - [sym_function_item] = STATE(11), - [sym_function_signature_item] = STATE(11), - [sym_function_modifiers] = STATE(2316), - [sym_impl_item] = STATE(11), - [sym_trait_item] = STATE(11), - [sym_associated_type] = STATE(11), - [sym_let_declaration] = STATE(11), - [sym_use_declaration] = STATE(11), - [sym_extern_modifier] = STATE(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1113), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(261), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [10] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym__expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(2316), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1139), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [11] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym__expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(2316), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1098), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(265), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [12] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym__expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(2316), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1124), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [13] = { - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym__expression_statement] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_foreign_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_union_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_extern_crate_declaration] = STATE(14), - [sym_const_item] = STATE(14), - [sym_static_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2316), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1114), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [14] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym__expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(2316), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1133), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [15] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym__expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2316), - [sym_impl_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_associated_type] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_extern_modifier] = STATE(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1125), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [16] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym__expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(2316), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(1418), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(83), - [sym_scoped_identifier] = STATE(1082), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2304), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(113), - [anon_sym_SEMI] = ACTIONS(116), - [anon_sym_macro_rules_BANG] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(125), - [anon_sym_RBRACE] = ACTIONS(111), - [anon_sym_LBRACK] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_u8] = ACTIONS(134), - [anon_sym_i8] = ACTIONS(134), - [anon_sym_u16] = ACTIONS(134), - [anon_sym_i16] = ACTIONS(134), - [anon_sym_u32] = ACTIONS(134), - [anon_sym_i32] = ACTIONS(134), - [anon_sym_u64] = ACTIONS(134), - [anon_sym_i64] = ACTIONS(134), - [anon_sym_u128] = ACTIONS(134), - [anon_sym_i128] = ACTIONS(134), - [anon_sym_isize] = ACTIONS(134), - [anon_sym_usize] = ACTIONS(134), - [anon_sym_f32] = ACTIONS(134), - [anon_sym_f64] = ACTIONS(134), - [anon_sym_bool] = ACTIONS(134), - [anon_sym_str] = ACTIONS(134), - [anon_sym_char] = ACTIONS(134), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_async] = ACTIONS(140), - [anon_sym_break] = ACTIONS(143), - [anon_sym_const] = ACTIONS(146), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_default] = ACTIONS(152), - [anon_sym_enum] = ACTIONS(155), - [anon_sym_fn] = ACTIONS(158), - [anon_sym_for] = ACTIONS(161), - [anon_sym_if] = ACTIONS(164), - [anon_sym_impl] = ACTIONS(167), - [anon_sym_let] = ACTIONS(170), - [anon_sym_loop] = ACTIONS(173), - [anon_sym_match] = ACTIONS(176), - [anon_sym_mod] = ACTIONS(179), - [anon_sym_pub] = ACTIONS(182), - [anon_sym_return] = ACTIONS(185), - [anon_sym_static] = ACTIONS(188), - [anon_sym_struct] = ACTIONS(191), - [anon_sym_trait] = ACTIONS(194), - [anon_sym_type] = ACTIONS(197), - [anon_sym_union] = ACTIONS(200), - [anon_sym_unsafe] = ACTIONS(203), - [anon_sym_use] = ACTIONS(206), - [anon_sym_while] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(212), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_COLON_COLON] = ACTIONS(221), - [anon_sym_AMP] = ACTIONS(224), - [anon_sym_DOT_DOT] = ACTIONS(227), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(230), - [anon_sym_move] = ACTIONS(233), - [sym_integer_literal] = ACTIONS(236), - [aux_sym_string_literal_token1] = ACTIONS(239), - [sym_char_literal] = ACTIONS(236), - [anon_sym_true] = ACTIONS(242), - [anon_sym_false] = ACTIONS(242), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(245), - [sym_super] = ACTIONS(248), - [sym_crate] = ACTIONS(251), - [sym_metavariable] = ACTIONS(254), - [sym_raw_string_literal] = ACTIONS(236), - [sym_float_literal] = ACTIONS(236), - [sym_block_comment] = ACTIONS(3), - }, - [17] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(967), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_RBRACK] = ACTIONS(277), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_QMARK] = ACTIONS(277), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(283), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(283), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(283), - [anon_sym_GT] = ACTIONS(283), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(283), - [anon_sym_DOT_DOT_DOT] = ACTIONS(277), - [anon_sym_DOT_DOT] = ACTIONS(283), - [anon_sym_DOT_DOT_EQ] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_CARET] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(283), - [anon_sym_GT_GT] = ACTIONS(283), - [anon_sym_SLASH] = ACTIONS(283), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_PLUS_EQ] = ACTIONS(277), - [anon_sym_DASH_EQ] = ACTIONS(277), - [anon_sym_STAR_EQ] = ACTIONS(277), - [anon_sym_SLASH_EQ] = ACTIONS(277), - [anon_sym_PERCENT_EQ] = ACTIONS(277), - [anon_sym_AMP_EQ] = ACTIONS(277), - [anon_sym_PIPE_EQ] = ACTIONS(277), - [anon_sym_CARET_EQ] = ACTIONS(277), - [anon_sym_LT_LT_EQ] = ACTIONS(277), - [anon_sym_GT_GT_EQ] = ACTIONS(277), - [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(283), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [18] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1036), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(305), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(305), - [anon_sym_EQ_GT] = ACTIONS(305), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_RBRACK] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(307), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(309), - [anon_sym_as] = ACTIONS(307), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(307), - [anon_sym_COMMA] = ACTIONS(305), - [anon_sym_LT] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(307), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(305), - [anon_sym_DOT_DOT] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(307), - [anon_sym_AMP_AMP] = ACTIONS(305), - [anon_sym_PIPE_PIPE] = ACTIONS(305), - [anon_sym_PIPE] = ACTIONS(307), - [anon_sym_CARET] = ACTIONS(307), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_LT_LT] = ACTIONS(307), - [anon_sym_GT_GT] = ACTIONS(307), - [anon_sym_SLASH] = ACTIONS(307), - [anon_sym_PERCENT] = ACTIONS(307), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_PERCENT_EQ] = ACTIONS(305), - [anon_sym_AMP_EQ] = ACTIONS(305), - [anon_sym_PIPE_EQ] = ACTIONS(305), - [anon_sym_CARET_EQ] = ACTIONS(305), - [anon_sym_LT_LT_EQ] = ACTIONS(305), - [anon_sym_GT_GT_EQ] = ACTIONS(305), - [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(307), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [19] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(998), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(311), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(311), - [anon_sym_EQ_GT] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(311), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(313), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(317), - [anon_sym_DOT_DOT_DOT] = ACTIONS(311), - [anon_sym_DOT_DOT] = ACTIONS(319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(313), - [anon_sym_EQ_EQ] = ACTIONS(311), - [anon_sym_BANG_EQ] = ACTIONS(311), - [anon_sym_LT_EQ] = ACTIONS(311), - [anon_sym_GT_EQ] = ACTIONS(311), - [anon_sym_LT_LT] = ACTIONS(313), - [anon_sym_GT_GT] = ACTIONS(313), - [anon_sym_SLASH] = ACTIONS(313), - [anon_sym_PERCENT] = ACTIONS(313), - [anon_sym_PLUS_EQ] = ACTIONS(311), - [anon_sym_DASH_EQ] = ACTIONS(311), - [anon_sym_STAR_EQ] = ACTIONS(311), - [anon_sym_SLASH_EQ] = ACTIONS(311), - [anon_sym_PERCENT_EQ] = ACTIONS(311), - [anon_sym_AMP_EQ] = ACTIONS(311), - [anon_sym_PIPE_EQ] = ACTIONS(311), - [anon_sym_CARET_EQ] = ACTIONS(311), - [anon_sym_LT_LT_EQ] = ACTIONS(311), - [anon_sym_GT_GT_EQ] = ACTIONS(311), - [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(313), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [20] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(794), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(323), - [anon_sym_EQ_GT] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(323), - [anon_sym_PLUS] = ACTIONS(325), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(323), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(325), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(325), - [anon_sym_COMMA] = ACTIONS(323), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(325), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(317), - [anon_sym_DOT_DOT_DOT] = ACTIONS(323), - [anon_sym_DOT_DOT] = ACTIONS(319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(323), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_PIPE_PIPE] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(325), - [anon_sym_EQ_EQ] = ACTIONS(323), - [anon_sym_BANG_EQ] = ACTIONS(323), - [anon_sym_LT_EQ] = ACTIONS(323), - [anon_sym_GT_EQ] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_PERCENT] = ACTIONS(325), - [anon_sym_PLUS_EQ] = ACTIONS(323), - [anon_sym_DASH_EQ] = ACTIONS(323), - [anon_sym_STAR_EQ] = ACTIONS(323), - [anon_sym_SLASH_EQ] = ACTIONS(323), - [anon_sym_PERCENT_EQ] = ACTIONS(323), - [anon_sym_AMP_EQ] = ACTIONS(323), - [anon_sym_PIPE_EQ] = ACTIONS(323), - [anon_sym_CARET_EQ] = ACTIONS(323), - [anon_sym_LT_LT_EQ] = ACTIONS(323), - [anon_sym_GT_GT_EQ] = ACTIONS(323), - [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(325), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [21] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1057), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(327), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_RPAREN] = ACTIONS(327), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(327), - [anon_sym_EQ_GT] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(327), - [anon_sym_RBRACK] = ACTIONS(327), - [anon_sym_PLUS] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(329), - [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(329), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(329), - [anon_sym_COMMA] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(327), - [anon_sym_DOT_DOT] = ACTIONS(329), - [anon_sym_DOT_DOT_EQ] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(327), - [anon_sym_PIPE_PIPE] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_CARET] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(327), - [anon_sym_BANG_EQ] = ACTIONS(327), - [anon_sym_LT_EQ] = ACTIONS(327), - [anon_sym_GT_EQ] = ACTIONS(327), - [anon_sym_LT_LT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(329), - [anon_sym_PERCENT] = ACTIONS(329), - [anon_sym_PLUS_EQ] = ACTIONS(327), - [anon_sym_DASH_EQ] = ACTIONS(327), - [anon_sym_STAR_EQ] = ACTIONS(327), - [anon_sym_SLASH_EQ] = ACTIONS(327), - [anon_sym_PERCENT_EQ] = ACTIONS(327), - [anon_sym_AMP_EQ] = ACTIONS(327), - [anon_sym_PIPE_EQ] = ACTIONS(327), - [anon_sym_CARET_EQ] = ACTIONS(327), - [anon_sym_LT_LT_EQ] = ACTIONS(327), - [anon_sym_GT_GT_EQ] = ACTIONS(327), - [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(329), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [22] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1180), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_QMARK] = ACTIONS(277), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(283), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(283), - [anon_sym_GT] = ACTIONS(283), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(283), - [anon_sym_DOT_DOT_DOT] = ACTIONS(277), - [anon_sym_DOT_DOT] = ACTIONS(283), - [anon_sym_DOT_DOT_EQ] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_CARET] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(283), - [anon_sym_GT_GT] = ACTIONS(283), - [anon_sym_SLASH] = ACTIONS(283), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_PLUS_EQ] = ACTIONS(277), - [anon_sym_DASH_EQ] = ACTIONS(277), - [anon_sym_STAR_EQ] = ACTIONS(277), - [anon_sym_SLASH_EQ] = ACTIONS(277), - [anon_sym_PERCENT_EQ] = ACTIONS(277), - [anon_sym_AMP_EQ] = ACTIONS(277), - [anon_sym_PIPE_EQ] = ACTIONS(277), - [anon_sym_CARET_EQ] = ACTIONS(277), - [anon_sym_LT_LT_EQ] = ACTIONS(277), - [anon_sym_GT_GT_EQ] = ACTIONS(277), - [anon_sym_move] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(283), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [23] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1201), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(22), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(307), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(309), - [anon_sym_as] = ACTIONS(307), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(307), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(305), - [anon_sym_DOT_DOT] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(307), - [anon_sym_AMP_AMP] = ACTIONS(305), - [anon_sym_PIPE_PIPE] = ACTIONS(305), - [anon_sym_PIPE] = ACTIONS(307), - [anon_sym_CARET] = ACTIONS(307), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_LT_LT] = ACTIONS(307), - [anon_sym_GT_GT] = ACTIONS(307), - [anon_sym_SLASH] = ACTIONS(307), - [anon_sym_PERCENT] = ACTIONS(307), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_PERCENT_EQ] = ACTIONS(305), - [anon_sym_AMP_EQ] = ACTIONS(305), - [anon_sym_PIPE_EQ] = ACTIONS(305), - [anon_sym_CARET_EQ] = ACTIONS(305), - [anon_sym_LT_LT_EQ] = ACTIONS(305), - [anon_sym_GT_GT_EQ] = ACTIONS(305), - [anon_sym_move] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(307), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [24] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1184), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(327), - [anon_sym_PLUS] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(329), - [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(329), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(327), - [anon_sym_DOT_DOT] = ACTIONS(329), - [anon_sym_DOT_DOT_EQ] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(327), - [anon_sym_PIPE_PIPE] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_CARET] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(327), - [anon_sym_BANG_EQ] = ACTIONS(327), - [anon_sym_LT_EQ] = ACTIONS(327), - [anon_sym_GT_EQ] = ACTIONS(327), - [anon_sym_LT_LT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(329), - [anon_sym_PERCENT] = ACTIONS(329), - [anon_sym_PLUS_EQ] = ACTIONS(327), - [anon_sym_DASH_EQ] = ACTIONS(327), - [anon_sym_STAR_EQ] = ACTIONS(327), - [anon_sym_SLASH_EQ] = ACTIONS(327), - [anon_sym_PERCENT_EQ] = ACTIONS(327), - [anon_sym_AMP_EQ] = ACTIONS(327), - [anon_sym_PIPE_EQ] = ACTIONS(327), - [anon_sym_CARET_EQ] = ACTIONS(327), - [anon_sym_LT_LT_EQ] = ACTIONS(327), - [anon_sym_GT_GT_EQ] = ACTIONS(327), - [anon_sym_move] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(329), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [25] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1192), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_QMARK] = ACTIONS(311), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(313), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(311), - [anon_sym_DOT_DOT] = ACTIONS(353), - [anon_sym_DOT_DOT_EQ] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(313), - [anon_sym_EQ_EQ] = ACTIONS(311), - [anon_sym_BANG_EQ] = ACTIONS(311), - [anon_sym_LT_EQ] = ACTIONS(311), - [anon_sym_GT_EQ] = ACTIONS(311), - [anon_sym_LT_LT] = ACTIONS(313), - [anon_sym_GT_GT] = ACTIONS(313), - [anon_sym_SLASH] = ACTIONS(313), - [anon_sym_PERCENT] = ACTIONS(313), - [anon_sym_PLUS_EQ] = ACTIONS(311), - [anon_sym_DASH_EQ] = ACTIONS(311), - [anon_sym_STAR_EQ] = ACTIONS(311), - [anon_sym_SLASH_EQ] = ACTIONS(311), - [anon_sym_PERCENT_EQ] = ACTIONS(311), - [anon_sym_AMP_EQ] = ACTIONS(311), - [anon_sym_PIPE_EQ] = ACTIONS(311), - [anon_sym_CARET_EQ] = ACTIONS(311), - [anon_sym_LT_LT_EQ] = ACTIONS(311), - [anon_sym_GT_GT_EQ] = ACTIONS(311), - [anon_sym_move] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(313), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [26] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(794), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(325), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_QMARK] = ACTIONS(323), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(325), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(325), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(323), - [anon_sym_DOT_DOT] = ACTIONS(353), - [anon_sym_DOT_DOT_EQ] = ACTIONS(323), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_PIPE_PIPE] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(325), - [anon_sym_EQ_EQ] = ACTIONS(323), - [anon_sym_BANG_EQ] = ACTIONS(323), - [anon_sym_LT_EQ] = ACTIONS(323), - [anon_sym_GT_EQ] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_PERCENT] = ACTIONS(325), - [anon_sym_PLUS_EQ] = ACTIONS(323), - [anon_sym_DASH_EQ] = ACTIONS(323), - [anon_sym_STAR_EQ] = ACTIONS(323), - [anon_sym_SLASH_EQ] = ACTIONS(323), - [anon_sym_PERCENT_EQ] = ACTIONS(323), - [anon_sym_AMP_EQ] = ACTIONS(323), - [anon_sym_PIPE_EQ] = ACTIONS(323), - [anon_sym_CARET_EQ] = ACTIONS(323), - [anon_sym_LT_LT_EQ] = ACTIONS(323), - [anon_sym_GT_GT_EQ] = ACTIONS(323), - [anon_sym_move] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(325), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [27] = { - [sym_attribute_item] = STATE(29), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1075), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(29), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(355), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [28] = { - [sym_attribute_item] = STATE(38), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1078), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(38), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [29] = { - [sym_attribute_item] = STATE(538), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1074), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(365), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [30] = { - [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1107), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(40), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [31] = { - [sym_else_clause] = STATE(43), - [ts_builtin_sym_end] = ACTIONS(371), - [sym_identifier] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(371), - [anon_sym_macro_rules_BANG] = ACTIONS(371), - [anon_sym_LPAREN] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_RBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(371), - [anon_sym_PLUS] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(373), - [anon_sym_QMARK] = ACTIONS(371), - [anon_sym_u8] = ACTIONS(373), - [anon_sym_i8] = ACTIONS(373), - [anon_sym_u16] = ACTIONS(373), - [anon_sym_i16] = ACTIONS(373), - [anon_sym_u32] = ACTIONS(373), - [anon_sym_i32] = ACTIONS(373), - [anon_sym_u64] = ACTIONS(373), - [anon_sym_i64] = ACTIONS(373), - [anon_sym_u128] = ACTIONS(373), - [anon_sym_i128] = ACTIONS(373), - [anon_sym_isize] = ACTIONS(373), - [anon_sym_usize] = ACTIONS(373), - [anon_sym_f32] = ACTIONS(373), - [anon_sym_f64] = ACTIONS(373), - [anon_sym_bool] = ACTIONS(373), - [anon_sym_str] = ACTIONS(373), - [anon_sym_char] = ACTIONS(373), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_as] = ACTIONS(373), - [anon_sym_async] = ACTIONS(373), - [anon_sym_break] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_default] = ACTIONS(373), - [anon_sym_enum] = ACTIONS(373), - [anon_sym_fn] = ACTIONS(373), - [anon_sym_for] = ACTIONS(373), - [anon_sym_if] = ACTIONS(373), - [anon_sym_impl] = ACTIONS(373), - [anon_sym_let] = ACTIONS(373), - [anon_sym_loop] = ACTIONS(373), - [anon_sym_match] = ACTIONS(373), - [anon_sym_mod] = ACTIONS(373), - [anon_sym_pub] = ACTIONS(373), - [anon_sym_return] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_struct] = ACTIONS(373), - [anon_sym_trait] = ACTIONS(373), - [anon_sym_type] = ACTIONS(373), - [anon_sym_union] = ACTIONS(373), - [anon_sym_unsafe] = ACTIONS(373), - [anon_sym_use] = ACTIONS(373), - [anon_sym_while] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(373), - [anon_sym_EQ] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT_EQ] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(371), - [anon_sym_PIPE_PIPE] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(373), - [anon_sym_CARET] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(371), - [anon_sym_BANG_EQ] = ACTIONS(371), - [anon_sym_LT_EQ] = ACTIONS(371), - [anon_sym_GT_EQ] = ACTIONS(371), - [anon_sym_LT_LT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_SLASH] = ACTIONS(373), - [anon_sym_PERCENT] = ACTIONS(373), - [anon_sym_PLUS_EQ] = ACTIONS(371), - [anon_sym_DASH_EQ] = ACTIONS(371), - [anon_sym_STAR_EQ] = ACTIONS(371), - [anon_sym_SLASH_EQ] = ACTIONS(371), - [anon_sym_PERCENT_EQ] = ACTIONS(371), - [anon_sym_AMP_EQ] = ACTIONS(371), - [anon_sym_PIPE_EQ] = ACTIONS(371), - [anon_sym_CARET_EQ] = ACTIONS(371), - [anon_sym_LT_LT_EQ] = ACTIONS(371), - [anon_sym_GT_GT_EQ] = ACTIONS(371), - [anon_sym_else] = ACTIONS(375), - [anon_sym_move] = ACTIONS(373), - [anon_sym_DOT] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(371), - [aux_sym_string_literal_token1] = ACTIONS(371), - [sym_char_literal] = ACTIONS(371), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(373), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(371), - [sym_raw_string_literal] = ACTIONS(371), - [sym_float_literal] = ACTIONS(371), - [sym_block_comment] = ACTIONS(3), - }, - [32] = { - [sym_else_clause] = STATE(69), - [ts_builtin_sym_end] = ACTIONS(377), - [sym_identifier] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(377), - [anon_sym_macro_rules_BANG] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_RBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_QMARK] = ACTIONS(377), - [anon_sym_u8] = ACTIONS(379), - [anon_sym_i8] = ACTIONS(379), - [anon_sym_u16] = ACTIONS(379), - [anon_sym_i16] = ACTIONS(379), - [anon_sym_u32] = ACTIONS(379), - [anon_sym_i32] = ACTIONS(379), - [anon_sym_u64] = ACTIONS(379), - [anon_sym_i64] = ACTIONS(379), - [anon_sym_u128] = ACTIONS(379), - [anon_sym_i128] = ACTIONS(379), - [anon_sym_isize] = ACTIONS(379), - [anon_sym_usize] = ACTIONS(379), - [anon_sym_f32] = ACTIONS(379), - [anon_sym_f64] = ACTIONS(379), - [anon_sym_bool] = ACTIONS(379), - [anon_sym_str] = ACTIONS(379), - [anon_sym_char] = ACTIONS(379), - [anon_sym_SQUOTE] = ACTIONS(379), - [anon_sym_as] = ACTIONS(379), - [anon_sym_async] = ACTIONS(379), - [anon_sym_break] = ACTIONS(379), - [anon_sym_const] = ACTIONS(379), - [anon_sym_continue] = ACTIONS(379), - [anon_sym_default] = ACTIONS(379), - [anon_sym_enum] = ACTIONS(379), - [anon_sym_fn] = ACTIONS(379), - [anon_sym_for] = ACTIONS(379), - [anon_sym_if] = ACTIONS(379), - [anon_sym_impl] = ACTIONS(379), - [anon_sym_let] = ACTIONS(379), - [anon_sym_loop] = ACTIONS(379), - [anon_sym_match] = ACTIONS(379), - [anon_sym_mod] = ACTIONS(379), - [anon_sym_pub] = ACTIONS(379), - [anon_sym_return] = ACTIONS(379), - [anon_sym_static] = ACTIONS(379), - [anon_sym_struct] = ACTIONS(379), - [anon_sym_trait] = ACTIONS(379), - [anon_sym_type] = ACTIONS(379), - [anon_sym_union] = ACTIONS(379), - [anon_sym_unsafe] = ACTIONS(379), - [anon_sym_use] = ACTIONS(379), - [anon_sym_while] = ACTIONS(379), - [anon_sym_POUND] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(379), - [anon_sym_extern] = ACTIONS(379), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(379), - [anon_sym_COLON_COLON] = ACTIONS(377), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(379), - [anon_sym_DOT_DOT_EQ] = ACTIONS(377), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_AMP_AMP] = ACTIONS(377), - [anon_sym_PIPE_PIPE] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(379), - [anon_sym_CARET] = ACTIONS(379), - [anon_sym_EQ_EQ] = ACTIONS(377), - [anon_sym_BANG_EQ] = ACTIONS(377), - [anon_sym_LT_EQ] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(377), - [anon_sym_LT_LT] = ACTIONS(379), - [anon_sym_GT_GT] = ACTIONS(379), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_PERCENT] = ACTIONS(379), - [anon_sym_PLUS_EQ] = ACTIONS(377), - [anon_sym_DASH_EQ] = ACTIONS(377), - [anon_sym_STAR_EQ] = ACTIONS(377), - [anon_sym_SLASH_EQ] = ACTIONS(377), - [anon_sym_PERCENT_EQ] = ACTIONS(377), - [anon_sym_AMP_EQ] = ACTIONS(377), - [anon_sym_PIPE_EQ] = ACTIONS(377), - [anon_sym_CARET_EQ] = ACTIONS(377), - [anon_sym_LT_LT_EQ] = ACTIONS(377), - [anon_sym_GT_GT_EQ] = ACTIONS(377), - [anon_sym_else] = ACTIONS(375), - [anon_sym_move] = ACTIONS(379), - [anon_sym_DOT] = ACTIONS(379), - [sym_integer_literal] = ACTIONS(377), - [aux_sym_string_literal_token1] = ACTIONS(377), - [sym_char_literal] = ACTIONS(377), - [anon_sym_true] = ACTIONS(379), - [anon_sym_false] = ACTIONS(379), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(379), - [sym_super] = ACTIONS(379), - [sym_crate] = ACTIONS(379), - [sym_metavariable] = ACTIONS(377), - [sym_raw_string_literal] = ACTIONS(377), - [sym_float_literal] = ACTIONS(377), - [sym_block_comment] = ACTIONS(3), - }, - [33] = { - [sym_attribute_item] = STATE(42), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1110), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(42), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [34] = { - [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1107), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(40), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [35] = { - [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1107), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(40), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [36] = { - [ts_builtin_sym_end] = ACTIONS(387), - [sym_identifier] = ACTIONS(389), - [anon_sym_SEMI] = ACTIONS(387), - [anon_sym_macro_rules_BANG] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), - [anon_sym_u8] = ACTIONS(389), - [anon_sym_i8] = ACTIONS(389), - [anon_sym_u16] = ACTIONS(389), - [anon_sym_i16] = ACTIONS(389), - [anon_sym_u32] = ACTIONS(389), - [anon_sym_i32] = ACTIONS(389), - [anon_sym_u64] = ACTIONS(389), - [anon_sym_i64] = ACTIONS(389), - [anon_sym_u128] = ACTIONS(389), - [anon_sym_i128] = ACTIONS(389), - [anon_sym_isize] = ACTIONS(389), - [anon_sym_usize] = ACTIONS(389), - [anon_sym_f32] = ACTIONS(389), - [anon_sym_f64] = ACTIONS(389), - [anon_sym_bool] = ACTIONS(389), - [anon_sym_str] = ACTIONS(389), - [anon_sym_char] = ACTIONS(389), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_as] = ACTIONS(389), - [anon_sym_async] = ACTIONS(389), - [anon_sym_break] = ACTIONS(389), - [anon_sym_const] = ACTIONS(389), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_default] = ACTIONS(389), - [anon_sym_enum] = ACTIONS(389), - [anon_sym_fn] = ACTIONS(389), - [anon_sym_for] = ACTIONS(389), - [anon_sym_if] = ACTIONS(389), - [anon_sym_impl] = ACTIONS(389), - [anon_sym_let] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(389), - [anon_sym_match] = ACTIONS(389), - [anon_sym_mod] = ACTIONS(389), - [anon_sym_pub] = ACTIONS(389), - [anon_sym_return] = ACTIONS(389), - [anon_sym_static] = ACTIONS(389), - [anon_sym_struct] = ACTIONS(389), - [anon_sym_trait] = ACTIONS(389), - [anon_sym_type] = ACTIONS(389), - [anon_sym_union] = ACTIONS(389), - [anon_sym_unsafe] = ACTIONS(389), - [anon_sym_use] = ACTIONS(389), - [anon_sym_while] = ACTIONS(389), - [anon_sym_POUND] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_COLON_COLON] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_else] = ACTIONS(389), - [anon_sym_move] = ACTIONS(389), - [anon_sym_DOT] = ACTIONS(389), - [sym_integer_literal] = ACTIONS(387), - [aux_sym_string_literal_token1] = ACTIONS(387), - [sym_char_literal] = ACTIONS(387), - [anon_sym_true] = ACTIONS(389), - [anon_sym_false] = ACTIONS(389), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(389), - [sym_super] = ACTIONS(389), - [sym_crate] = ACTIONS(389), - [sym_metavariable] = ACTIONS(387), - [sym_raw_string_literal] = ACTIONS(387), - [sym_float_literal] = ACTIONS(387), - [sym_block_comment] = ACTIONS(3), - }, - [37] = { - [ts_builtin_sym_end] = ACTIONS(391), - [sym_identifier] = ACTIONS(393), - [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_macro_rules_BANG] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SQUOTE] = ACTIONS(393), - [anon_sym_as] = ACTIONS(393), - [anon_sym_async] = ACTIONS(393), - [anon_sym_break] = ACTIONS(393), - [anon_sym_const] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_default] = ACTIONS(393), - [anon_sym_enum] = ACTIONS(393), - [anon_sym_fn] = ACTIONS(393), - [anon_sym_for] = ACTIONS(393), - [anon_sym_if] = ACTIONS(393), - [anon_sym_impl] = ACTIONS(393), - [anon_sym_let] = ACTIONS(393), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_match] = ACTIONS(393), - [anon_sym_mod] = ACTIONS(393), - [anon_sym_pub] = ACTIONS(393), - [anon_sym_return] = ACTIONS(393), - [anon_sym_static] = ACTIONS(393), - [anon_sym_struct] = ACTIONS(393), - [anon_sym_trait] = ACTIONS(393), - [anon_sym_type] = ACTIONS(393), - [anon_sym_union] = ACTIONS(393), - [anon_sym_unsafe] = ACTIONS(393), - [anon_sym_use] = ACTIONS(393), - [anon_sym_while] = ACTIONS(393), - [anon_sym_POUND] = ACTIONS(391), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_extern] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_else] = ACTIONS(393), - [anon_sym_move] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [sym_integer_literal] = ACTIONS(391), - [aux_sym_string_literal_token1] = ACTIONS(391), - [sym_char_literal] = ACTIONS(391), - [anon_sym_true] = ACTIONS(393), - [anon_sym_false] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(393), - [sym_super] = ACTIONS(393), - [sym_crate] = ACTIONS(393), - [sym_metavariable] = ACTIONS(391), - [sym_raw_string_literal] = ACTIONS(391), - [sym_float_literal] = ACTIONS(391), - [sym_block_comment] = ACTIONS(3), - }, - [38] = { - [sym_attribute_item] = STATE(538), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1084), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [39] = { - [ts_builtin_sym_end] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(395), - [anon_sym_macro_rules_BANG] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(395), - [anon_sym_u8] = ACTIONS(397), - [anon_sym_i8] = ACTIONS(397), - [anon_sym_u16] = ACTIONS(397), - [anon_sym_i16] = ACTIONS(397), - [anon_sym_u32] = ACTIONS(397), - [anon_sym_i32] = ACTIONS(397), - [anon_sym_u64] = ACTIONS(397), - [anon_sym_i64] = ACTIONS(397), - [anon_sym_u128] = ACTIONS(397), - [anon_sym_i128] = ACTIONS(397), - [anon_sym_isize] = ACTIONS(397), - [anon_sym_usize] = ACTIONS(397), - [anon_sym_f32] = ACTIONS(397), - [anon_sym_f64] = ACTIONS(397), - [anon_sym_bool] = ACTIONS(397), - [anon_sym_str] = ACTIONS(397), - [anon_sym_char] = ACTIONS(397), - [anon_sym_SQUOTE] = ACTIONS(397), - [anon_sym_as] = ACTIONS(397), - [anon_sym_async] = ACTIONS(397), - [anon_sym_break] = ACTIONS(397), - [anon_sym_const] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(397), - [anon_sym_default] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(397), - [anon_sym_fn] = ACTIONS(397), - [anon_sym_for] = ACTIONS(397), - [anon_sym_if] = ACTIONS(397), - [anon_sym_impl] = ACTIONS(397), - [anon_sym_let] = ACTIONS(397), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_match] = ACTIONS(397), - [anon_sym_mod] = ACTIONS(397), - [anon_sym_pub] = ACTIONS(397), - [anon_sym_return] = ACTIONS(397), - [anon_sym_static] = ACTIONS(397), - [anon_sym_struct] = ACTIONS(397), - [anon_sym_trait] = ACTIONS(397), - [anon_sym_type] = ACTIONS(397), - [anon_sym_union] = ACTIONS(397), - [anon_sym_unsafe] = ACTIONS(397), - [anon_sym_use] = ACTIONS(397), - [anon_sym_while] = ACTIONS(397), - [anon_sym_POUND] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_extern] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_else] = ACTIONS(397), - [anon_sym_move] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(397), - [sym_integer_literal] = ACTIONS(395), - [aux_sym_string_literal_token1] = ACTIONS(395), - [sym_char_literal] = ACTIONS(395), - [anon_sym_true] = ACTIONS(397), - [anon_sym_false] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_crate] = ACTIONS(397), - [sym_metavariable] = ACTIONS(395), - [sym_raw_string_literal] = ACTIONS(395), - [sym_float_literal] = ACTIONS(395), - [sym_block_comment] = ACTIONS(3), - }, - [40] = { - [sym_attribute_item] = STATE(538), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1111), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [41] = { - [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1107), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(40), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [42] = { - [sym_attribute_item] = STATE(538), - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1193), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [43] = { - [ts_builtin_sym_end] = ACTIONS(399), - [sym_identifier] = ACTIONS(401), - [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_macro_rules_BANG] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_QMARK] = ACTIONS(399), - [anon_sym_u8] = ACTIONS(401), - [anon_sym_i8] = ACTIONS(401), - [anon_sym_u16] = ACTIONS(401), - [anon_sym_i16] = ACTIONS(401), - [anon_sym_u32] = ACTIONS(401), - [anon_sym_i32] = ACTIONS(401), - [anon_sym_u64] = ACTIONS(401), - [anon_sym_i64] = ACTIONS(401), - [anon_sym_u128] = ACTIONS(401), - [anon_sym_i128] = ACTIONS(401), - [anon_sym_isize] = ACTIONS(401), - [anon_sym_usize] = ACTIONS(401), - [anon_sym_f32] = ACTIONS(401), - [anon_sym_f64] = ACTIONS(401), - [anon_sym_bool] = ACTIONS(401), - [anon_sym_str] = ACTIONS(401), - [anon_sym_char] = ACTIONS(401), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_as] = ACTIONS(401), - [anon_sym_async] = ACTIONS(401), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(401), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_default] = ACTIONS(401), - [anon_sym_enum] = ACTIONS(401), - [anon_sym_fn] = ACTIONS(401), - [anon_sym_for] = ACTIONS(401), - [anon_sym_if] = ACTIONS(401), - [anon_sym_impl] = ACTIONS(401), - [anon_sym_let] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(401), - [anon_sym_match] = ACTIONS(401), - [anon_sym_mod] = ACTIONS(401), - [anon_sym_pub] = ACTIONS(401), - [anon_sym_return] = ACTIONS(401), - [anon_sym_static] = ACTIONS(401), - [anon_sym_struct] = ACTIONS(401), - [anon_sym_trait] = ACTIONS(401), - [anon_sym_type] = ACTIONS(401), - [anon_sym_union] = ACTIONS(401), - [anon_sym_unsafe] = ACTIONS(401), - [anon_sym_use] = ACTIONS(401), - [anon_sym_while] = ACTIONS(401), - [anon_sym_POUND] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(401), - [anon_sym_extern] = ACTIONS(401), - [anon_sym_LT] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(399), - [anon_sym_AMP] = ACTIONS(401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_AMP_AMP] = ACTIONS(399), - [anon_sym_PIPE_PIPE] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_EQ_EQ] = ACTIONS(399), - [anon_sym_BANG_EQ] = ACTIONS(399), - [anon_sym_LT_EQ] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(399), - [anon_sym_LT_LT] = ACTIONS(401), - [anon_sym_GT_GT] = ACTIONS(401), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_PLUS_EQ] = ACTIONS(399), - [anon_sym_DASH_EQ] = ACTIONS(399), - [anon_sym_STAR_EQ] = ACTIONS(399), - [anon_sym_SLASH_EQ] = ACTIONS(399), - [anon_sym_PERCENT_EQ] = ACTIONS(399), - [anon_sym_AMP_EQ] = ACTIONS(399), - [anon_sym_PIPE_EQ] = ACTIONS(399), - [anon_sym_CARET_EQ] = ACTIONS(399), - [anon_sym_LT_LT_EQ] = ACTIONS(399), - [anon_sym_GT_GT_EQ] = ACTIONS(399), - [anon_sym_move] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(399), - [aux_sym_string_literal_token1] = ACTIONS(399), - [sym_char_literal] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(401), - [sym_super] = ACTIONS(401), - [sym_crate] = ACTIONS(401), - [sym_metavariable] = ACTIONS(399), - [sym_raw_string_literal] = ACTIONS(399), - [sym_float_literal] = ACTIONS(399), - [sym_block_comment] = ACTIONS(3), - }, - [44] = { - [ts_builtin_sym_end] = ACTIONS(403), - [sym_identifier] = ACTIONS(405), - [anon_sym_SEMI] = ACTIONS(403), - [anon_sym_macro_rules_BANG] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_RBRACE] = ACTIONS(403), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_PLUS] = ACTIONS(405), - [anon_sym_STAR] = ACTIONS(405), - [anon_sym_QMARK] = ACTIONS(403), - [anon_sym_u8] = ACTIONS(405), - [anon_sym_i8] = ACTIONS(405), - [anon_sym_u16] = ACTIONS(405), - [anon_sym_i16] = ACTIONS(405), - [anon_sym_u32] = ACTIONS(405), - [anon_sym_i32] = ACTIONS(405), - [anon_sym_u64] = ACTIONS(405), - [anon_sym_i64] = ACTIONS(405), - [anon_sym_u128] = ACTIONS(405), - [anon_sym_i128] = ACTIONS(405), - [anon_sym_isize] = ACTIONS(405), - [anon_sym_usize] = ACTIONS(405), - [anon_sym_f32] = ACTIONS(405), - [anon_sym_f64] = ACTIONS(405), - [anon_sym_bool] = ACTIONS(405), - [anon_sym_str] = ACTIONS(405), - [anon_sym_char] = ACTIONS(405), - [anon_sym_SQUOTE] = ACTIONS(405), - [anon_sym_as] = ACTIONS(405), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(405), - [anon_sym_const] = ACTIONS(405), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(405), - [anon_sym_enum] = ACTIONS(405), - [anon_sym_fn] = ACTIONS(405), - [anon_sym_for] = ACTIONS(405), - [anon_sym_if] = ACTIONS(405), - [anon_sym_impl] = ACTIONS(405), - [anon_sym_let] = ACTIONS(405), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_match] = ACTIONS(405), - [anon_sym_mod] = ACTIONS(405), - [anon_sym_pub] = ACTIONS(405), - [anon_sym_return] = ACTIONS(405), - [anon_sym_static] = ACTIONS(405), - [anon_sym_struct] = ACTIONS(405), - [anon_sym_trait] = ACTIONS(405), - [anon_sym_type] = ACTIONS(405), - [anon_sym_union] = ACTIONS(405), - [anon_sym_unsafe] = ACTIONS(405), - [anon_sym_use] = ACTIONS(405), - [anon_sym_while] = ACTIONS(405), - [anon_sym_POUND] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(405), - [anon_sym_EQ] = ACTIONS(405), - [anon_sym_extern] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(405), - [anon_sym_GT] = ACTIONS(405), - [anon_sym_COLON_COLON] = ACTIONS(403), - [anon_sym_AMP] = ACTIONS(405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(403), - [anon_sym_DASH] = ACTIONS(405), - [anon_sym_AMP_AMP] = ACTIONS(403), - [anon_sym_PIPE_PIPE] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(405), - [anon_sym_CARET] = ACTIONS(405), - [anon_sym_EQ_EQ] = ACTIONS(403), - [anon_sym_BANG_EQ] = ACTIONS(403), - [anon_sym_LT_EQ] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(403), - [anon_sym_LT_LT] = ACTIONS(405), - [anon_sym_GT_GT] = ACTIONS(405), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_PERCENT] = ACTIONS(405), - [anon_sym_PLUS_EQ] = ACTIONS(403), - [anon_sym_DASH_EQ] = ACTIONS(403), - [anon_sym_STAR_EQ] = ACTIONS(403), - [anon_sym_SLASH_EQ] = ACTIONS(403), - [anon_sym_PERCENT_EQ] = ACTIONS(403), - [anon_sym_AMP_EQ] = ACTIONS(403), - [anon_sym_PIPE_EQ] = ACTIONS(403), - [anon_sym_CARET_EQ] = ACTIONS(403), - [anon_sym_LT_LT_EQ] = ACTIONS(403), - [anon_sym_GT_GT_EQ] = ACTIONS(403), - [anon_sym_move] = ACTIONS(405), - [anon_sym_DOT] = ACTIONS(405), - [sym_integer_literal] = ACTIONS(403), - [aux_sym_string_literal_token1] = ACTIONS(403), - [sym_char_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(405), - [sym_super] = ACTIONS(405), - [sym_crate] = ACTIONS(405), - [sym_metavariable] = ACTIONS(403), - [sym_raw_string_literal] = ACTIONS(403), - [sym_float_literal] = ACTIONS(403), - [sym_block_comment] = ACTIONS(3), - }, - [45] = { - [ts_builtin_sym_end] = ACTIONS(407), - [sym_identifier] = ACTIONS(409), - [anon_sym_SEMI] = ACTIONS(407), - [anon_sym_macro_rules_BANG] = ACTIONS(407), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(409), - [anon_sym_QMARK] = ACTIONS(407), - [anon_sym_u8] = ACTIONS(409), - [anon_sym_i8] = ACTIONS(409), - [anon_sym_u16] = ACTIONS(409), - [anon_sym_i16] = ACTIONS(409), - [anon_sym_u32] = ACTIONS(409), - [anon_sym_i32] = ACTIONS(409), - [anon_sym_u64] = ACTIONS(409), - [anon_sym_i64] = ACTIONS(409), - [anon_sym_u128] = ACTIONS(409), - [anon_sym_i128] = ACTIONS(409), - [anon_sym_isize] = ACTIONS(409), - [anon_sym_usize] = ACTIONS(409), - [anon_sym_f32] = ACTIONS(409), - [anon_sym_f64] = ACTIONS(409), - [anon_sym_bool] = ACTIONS(409), - [anon_sym_str] = ACTIONS(409), - [anon_sym_char] = ACTIONS(409), - [anon_sym_SQUOTE] = ACTIONS(409), - [anon_sym_as] = ACTIONS(409), - [anon_sym_async] = ACTIONS(409), - [anon_sym_break] = ACTIONS(409), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(409), - [anon_sym_default] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(409), - [anon_sym_fn] = ACTIONS(409), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(409), - [anon_sym_impl] = ACTIONS(409), - [anon_sym_let] = ACTIONS(409), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_match] = ACTIONS(409), - [anon_sym_mod] = ACTIONS(409), - [anon_sym_pub] = ACTIONS(409), - [anon_sym_return] = ACTIONS(409), - [anon_sym_static] = ACTIONS(409), - [anon_sym_struct] = ACTIONS(409), - [anon_sym_trait] = ACTIONS(409), - [anon_sym_type] = ACTIONS(409), - [anon_sym_union] = ACTIONS(409), - [anon_sym_unsafe] = ACTIONS(409), - [anon_sym_use] = ACTIONS(409), - [anon_sym_while] = ACTIONS(409), - [anon_sym_POUND] = ACTIONS(407), - [anon_sym_BANG] = ACTIONS(409), - [anon_sym_EQ] = ACTIONS(409), - [anon_sym_extern] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_COLON_COLON] = ACTIONS(407), - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(407), - [anon_sym_DOT_DOT] = ACTIONS(409), - [anon_sym_DOT_DOT_EQ] = ACTIONS(407), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_AMP_AMP] = ACTIONS(407), - [anon_sym_PIPE_PIPE] = ACTIONS(407), - [anon_sym_PIPE] = ACTIONS(409), - [anon_sym_CARET] = ACTIONS(409), - [anon_sym_EQ_EQ] = ACTIONS(407), - [anon_sym_BANG_EQ] = ACTIONS(407), - [anon_sym_LT_EQ] = ACTIONS(407), - [anon_sym_GT_EQ] = ACTIONS(407), - [anon_sym_LT_LT] = ACTIONS(409), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_SLASH] = ACTIONS(409), - [anon_sym_PERCENT] = ACTIONS(409), - [anon_sym_PLUS_EQ] = ACTIONS(407), - [anon_sym_DASH_EQ] = ACTIONS(407), - [anon_sym_STAR_EQ] = ACTIONS(407), - [anon_sym_SLASH_EQ] = ACTIONS(407), - [anon_sym_PERCENT_EQ] = ACTIONS(407), - [anon_sym_AMP_EQ] = ACTIONS(407), - [anon_sym_PIPE_EQ] = ACTIONS(407), - [anon_sym_CARET_EQ] = ACTIONS(407), - [anon_sym_LT_LT_EQ] = ACTIONS(407), - [anon_sym_GT_GT_EQ] = ACTIONS(407), - [anon_sym_move] = ACTIONS(409), - [anon_sym_DOT] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(407), - [aux_sym_string_literal_token1] = ACTIONS(407), - [sym_char_literal] = ACTIONS(407), - [anon_sym_true] = ACTIONS(409), - [anon_sym_false] = ACTIONS(409), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(409), - [sym_super] = ACTIONS(409), - [sym_crate] = ACTIONS(409), - [sym_metavariable] = ACTIONS(407), - [sym_raw_string_literal] = ACTIONS(407), - [sym_float_literal] = ACTIONS(407), - [sym_block_comment] = ACTIONS(3), - }, - [46] = { - [ts_builtin_sym_end] = ACTIONS(411), - [sym_identifier] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [anon_sym_macro_rules_BANG] = ACTIONS(411), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(411), - [anon_sym_RBRACE] = ACTIONS(411), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_PLUS] = ACTIONS(413), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(411), - [anon_sym_u8] = ACTIONS(413), - [anon_sym_i8] = ACTIONS(413), - [anon_sym_u16] = ACTIONS(413), - [anon_sym_i16] = ACTIONS(413), - [anon_sym_u32] = ACTIONS(413), - [anon_sym_i32] = ACTIONS(413), - [anon_sym_u64] = ACTIONS(413), - [anon_sym_i64] = ACTIONS(413), - [anon_sym_u128] = ACTIONS(413), - [anon_sym_i128] = ACTIONS(413), - [anon_sym_isize] = ACTIONS(413), - [anon_sym_usize] = ACTIONS(413), - [anon_sym_f32] = ACTIONS(413), - [anon_sym_f64] = ACTIONS(413), - [anon_sym_bool] = ACTIONS(413), - [anon_sym_str] = ACTIONS(413), - [anon_sym_char] = ACTIONS(413), - [anon_sym_SQUOTE] = ACTIONS(413), - [anon_sym_as] = ACTIONS(413), - [anon_sym_async] = ACTIONS(413), - [anon_sym_break] = ACTIONS(413), - [anon_sym_const] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_default] = ACTIONS(413), - [anon_sym_enum] = ACTIONS(413), - [anon_sym_fn] = ACTIONS(413), - [anon_sym_for] = ACTIONS(413), - [anon_sym_if] = ACTIONS(413), - [anon_sym_impl] = ACTIONS(413), - [anon_sym_let] = ACTIONS(413), - [anon_sym_loop] = ACTIONS(413), - [anon_sym_match] = ACTIONS(413), - [anon_sym_mod] = ACTIONS(413), - [anon_sym_pub] = ACTIONS(413), - [anon_sym_return] = ACTIONS(413), - [anon_sym_static] = ACTIONS(413), - [anon_sym_struct] = ACTIONS(413), - [anon_sym_trait] = ACTIONS(413), - [anon_sym_type] = ACTIONS(413), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(413), - [anon_sym_use] = ACTIONS(413), - [anon_sym_while] = ACTIONS(413), - [anon_sym_POUND] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_EQ] = ACTIONS(413), - [anon_sym_extern] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_COLON_COLON] = ACTIONS(411), - [anon_sym_AMP] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(411), - [anon_sym_DOT_DOT] = ACTIONS(413), - [anon_sym_DOT_DOT_EQ] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(413), - [anon_sym_CARET] = ACTIONS(413), - [anon_sym_EQ_EQ] = ACTIONS(411), - [anon_sym_BANG_EQ] = ACTIONS(411), - [anon_sym_LT_EQ] = ACTIONS(411), - [anon_sym_GT_EQ] = ACTIONS(411), - [anon_sym_LT_LT] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(413), - [anon_sym_PERCENT] = ACTIONS(413), - [anon_sym_PLUS_EQ] = ACTIONS(411), - [anon_sym_DASH_EQ] = ACTIONS(411), - [anon_sym_STAR_EQ] = ACTIONS(411), - [anon_sym_SLASH_EQ] = ACTIONS(411), - [anon_sym_PERCENT_EQ] = ACTIONS(411), - [anon_sym_AMP_EQ] = ACTIONS(411), - [anon_sym_PIPE_EQ] = ACTIONS(411), - [anon_sym_CARET_EQ] = ACTIONS(411), - [anon_sym_LT_LT_EQ] = ACTIONS(411), - [anon_sym_GT_GT_EQ] = ACTIONS(411), - [anon_sym_move] = ACTIONS(413), - [anon_sym_DOT] = ACTIONS(413), - [sym_integer_literal] = ACTIONS(411), - [aux_sym_string_literal_token1] = ACTIONS(411), - [sym_char_literal] = ACTIONS(411), - [anon_sym_true] = ACTIONS(413), - [anon_sym_false] = ACTIONS(413), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_crate] = ACTIONS(413), - [sym_metavariable] = ACTIONS(411), - [sym_raw_string_literal] = ACTIONS(411), - [sym_float_literal] = ACTIONS(411), - [sym_block_comment] = ACTIONS(3), - }, - [47] = { - [ts_builtin_sym_end] = ACTIONS(415), - [sym_identifier] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [anon_sym_macro_rules_BANG] = ACTIONS(415), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_LBRACE] = ACTIONS(415), - [anon_sym_RBRACE] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(415), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_QMARK] = ACTIONS(415), - [anon_sym_u8] = ACTIONS(417), - [anon_sym_i8] = ACTIONS(417), - [anon_sym_u16] = ACTIONS(417), - [anon_sym_i16] = ACTIONS(417), - [anon_sym_u32] = ACTIONS(417), - [anon_sym_i32] = ACTIONS(417), - [anon_sym_u64] = ACTIONS(417), - [anon_sym_i64] = ACTIONS(417), - [anon_sym_u128] = ACTIONS(417), - [anon_sym_i128] = ACTIONS(417), - [anon_sym_isize] = ACTIONS(417), - [anon_sym_usize] = ACTIONS(417), - [anon_sym_f32] = ACTIONS(417), - [anon_sym_f64] = ACTIONS(417), - [anon_sym_bool] = ACTIONS(417), - [anon_sym_str] = ACTIONS(417), - [anon_sym_char] = ACTIONS(417), - [anon_sym_SQUOTE] = ACTIONS(417), - [anon_sym_as] = ACTIONS(417), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(417), - [anon_sym_const] = ACTIONS(417), - [anon_sym_continue] = ACTIONS(417), - [anon_sym_default] = ACTIONS(417), - [anon_sym_enum] = ACTIONS(417), - [anon_sym_fn] = ACTIONS(417), - [anon_sym_for] = ACTIONS(417), - [anon_sym_if] = ACTIONS(417), - [anon_sym_impl] = ACTIONS(417), - [anon_sym_let] = ACTIONS(417), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(417), - [anon_sym_mod] = ACTIONS(417), - [anon_sym_pub] = ACTIONS(417), - [anon_sym_return] = ACTIONS(417), - [anon_sym_static] = ACTIONS(417), - [anon_sym_struct] = ACTIONS(417), - [anon_sym_trait] = ACTIONS(417), - [anon_sym_type] = ACTIONS(417), - [anon_sym_union] = ACTIONS(417), - [anon_sym_unsafe] = ACTIONS(417), - [anon_sym_use] = ACTIONS(417), - [anon_sym_while] = ACTIONS(417), - [anon_sym_POUND] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_EQ] = ACTIONS(417), - [anon_sym_extern] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(415), - [anon_sym_DOT_DOT] = ACTIONS(417), - [anon_sym_DOT_DOT_EQ] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_EQ_EQ] = ACTIONS(415), - [anon_sym_BANG_EQ] = ACTIONS(415), - [anon_sym_LT_EQ] = ACTIONS(415), - [anon_sym_GT_EQ] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_EQ] = ACTIONS(415), - [anon_sym_DASH_EQ] = ACTIONS(415), - [anon_sym_STAR_EQ] = ACTIONS(415), - [anon_sym_SLASH_EQ] = ACTIONS(415), - [anon_sym_PERCENT_EQ] = ACTIONS(415), - [anon_sym_AMP_EQ] = ACTIONS(415), - [anon_sym_PIPE_EQ] = ACTIONS(415), - [anon_sym_CARET_EQ] = ACTIONS(415), - [anon_sym_LT_LT_EQ] = ACTIONS(415), - [anon_sym_GT_GT_EQ] = ACTIONS(415), - [anon_sym_move] = ACTIONS(417), - [anon_sym_DOT] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(415), - [aux_sym_string_literal_token1] = ACTIONS(415), - [sym_char_literal] = ACTIONS(415), - [anon_sym_true] = ACTIONS(417), - [anon_sym_false] = ACTIONS(417), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(417), - [sym_super] = ACTIONS(417), - [sym_crate] = ACTIONS(417), - [sym_metavariable] = ACTIONS(415), - [sym_raw_string_literal] = ACTIONS(415), - [sym_float_literal] = ACTIONS(415), - [sym_block_comment] = ACTIONS(3), - }, - [48] = { - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_macro_rules_BANG] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(421), - [anon_sym_STAR] = ACTIONS(421), - [anon_sym_QMARK] = ACTIONS(419), - [anon_sym_u8] = ACTIONS(421), - [anon_sym_i8] = ACTIONS(421), - [anon_sym_u16] = ACTIONS(421), - [anon_sym_i16] = ACTIONS(421), - [anon_sym_u32] = ACTIONS(421), - [anon_sym_i32] = ACTIONS(421), - [anon_sym_u64] = ACTIONS(421), - [anon_sym_i64] = ACTIONS(421), - [anon_sym_u128] = ACTIONS(421), - [anon_sym_i128] = ACTIONS(421), - [anon_sym_isize] = ACTIONS(421), - [anon_sym_usize] = ACTIONS(421), - [anon_sym_f32] = ACTIONS(421), - [anon_sym_f64] = ACTIONS(421), - [anon_sym_bool] = ACTIONS(421), - [anon_sym_str] = ACTIONS(421), - [anon_sym_char] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(421), - [anon_sym_as] = ACTIONS(421), - [anon_sym_async] = ACTIONS(421), - [anon_sym_break] = ACTIONS(421), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_default] = ACTIONS(421), - [anon_sym_enum] = ACTIONS(421), - [anon_sym_fn] = ACTIONS(421), - [anon_sym_for] = ACTIONS(421), - [anon_sym_if] = ACTIONS(421), - [anon_sym_impl] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_loop] = ACTIONS(421), - [anon_sym_match] = ACTIONS(421), - [anon_sym_mod] = ACTIONS(421), - [anon_sym_pub] = ACTIONS(421), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(421), - [anon_sym_struct] = ACTIONS(421), - [anon_sym_trait] = ACTIONS(421), - [anon_sym_type] = ACTIONS(421), - [anon_sym_union] = ACTIONS(421), - [anon_sym_unsafe] = ACTIONS(421), - [anon_sym_use] = ACTIONS(421), - [anon_sym_while] = ACTIONS(421), - [anon_sym_POUND] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_extern] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(421), - [anon_sym_GT] = ACTIONS(421), - [anon_sym_COLON_COLON] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_DOT_DOT] = ACTIONS(421), - [anon_sym_DOT_DOT_EQ] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(421), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(421), - [anon_sym_CARET] = ACTIONS(421), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(421), - [anon_sym_GT_GT] = ACTIONS(421), - [anon_sym_SLASH] = ACTIONS(421), - [anon_sym_PERCENT] = ACTIONS(421), - [anon_sym_PLUS_EQ] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), - [anon_sym_STAR_EQ] = ACTIONS(419), - [anon_sym_SLASH_EQ] = ACTIONS(419), - [anon_sym_PERCENT_EQ] = ACTIONS(419), - [anon_sym_AMP_EQ] = ACTIONS(419), - [anon_sym_PIPE_EQ] = ACTIONS(419), - [anon_sym_CARET_EQ] = ACTIONS(419), - [anon_sym_LT_LT_EQ] = ACTIONS(419), - [anon_sym_GT_GT_EQ] = ACTIONS(419), - [anon_sym_move] = ACTIONS(421), - [anon_sym_DOT] = ACTIONS(421), - [sym_integer_literal] = ACTIONS(419), - [aux_sym_string_literal_token1] = ACTIONS(419), - [sym_char_literal] = ACTIONS(419), - [anon_sym_true] = ACTIONS(421), - [anon_sym_false] = ACTIONS(421), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(421), - [sym_super] = ACTIONS(421), - [sym_crate] = ACTIONS(421), - [sym_metavariable] = ACTIONS(419), - [sym_raw_string_literal] = ACTIONS(419), - [sym_float_literal] = ACTIONS(419), - [sym_block_comment] = ACTIONS(3), - }, - [49] = { - [ts_builtin_sym_end] = ACTIONS(423), - [sym_identifier] = ACTIONS(425), - [anon_sym_SEMI] = ACTIONS(423), - [anon_sym_macro_rules_BANG] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(423), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_RBRACE] = ACTIONS(423), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_PLUS] = ACTIONS(425), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(423), - [anon_sym_u8] = ACTIONS(425), - [anon_sym_i8] = ACTIONS(425), - [anon_sym_u16] = ACTIONS(425), - [anon_sym_i16] = ACTIONS(425), - [anon_sym_u32] = ACTIONS(425), - [anon_sym_i32] = ACTIONS(425), - [anon_sym_u64] = ACTIONS(425), - [anon_sym_i64] = ACTIONS(425), - [anon_sym_u128] = ACTIONS(425), - [anon_sym_i128] = ACTIONS(425), - [anon_sym_isize] = ACTIONS(425), - [anon_sym_usize] = ACTIONS(425), - [anon_sym_f32] = ACTIONS(425), - [anon_sym_f64] = ACTIONS(425), - [anon_sym_bool] = ACTIONS(425), - [anon_sym_str] = ACTIONS(425), - [anon_sym_char] = ACTIONS(425), - [anon_sym_SQUOTE] = ACTIONS(425), - [anon_sym_as] = ACTIONS(425), - [anon_sym_async] = ACTIONS(425), - [anon_sym_break] = ACTIONS(425), - [anon_sym_const] = ACTIONS(425), - [anon_sym_continue] = ACTIONS(425), - [anon_sym_default] = ACTIONS(425), - [anon_sym_enum] = ACTIONS(425), - [anon_sym_fn] = ACTIONS(425), - [anon_sym_for] = ACTIONS(425), - [anon_sym_if] = ACTIONS(425), - [anon_sym_impl] = ACTIONS(425), - [anon_sym_let] = ACTIONS(425), - [anon_sym_loop] = ACTIONS(425), - [anon_sym_match] = ACTIONS(425), - [anon_sym_mod] = ACTIONS(425), - [anon_sym_pub] = ACTIONS(425), - [anon_sym_return] = ACTIONS(425), - [anon_sym_static] = ACTIONS(425), - [anon_sym_struct] = ACTIONS(425), - [anon_sym_trait] = ACTIONS(425), - [anon_sym_type] = ACTIONS(425), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_use] = ACTIONS(425), - [anon_sym_while] = ACTIONS(425), - [anon_sym_POUND] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_EQ] = ACTIONS(425), - [anon_sym_extern] = ACTIONS(425), - [anon_sym_LT] = ACTIONS(425), - [anon_sym_GT] = ACTIONS(425), - [anon_sym_COLON_COLON] = ACTIONS(423), - [anon_sym_AMP] = ACTIONS(425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT] = ACTIONS(425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(425), - [anon_sym_AMP_AMP] = ACTIONS(423), - [anon_sym_PIPE_PIPE] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_CARET] = ACTIONS(425), - [anon_sym_EQ_EQ] = ACTIONS(423), - [anon_sym_BANG_EQ] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(425), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_SLASH] = ACTIONS(425), - [anon_sym_PERCENT] = ACTIONS(425), - [anon_sym_PLUS_EQ] = ACTIONS(423), - [anon_sym_DASH_EQ] = ACTIONS(423), - [anon_sym_STAR_EQ] = ACTIONS(423), - [anon_sym_SLASH_EQ] = ACTIONS(423), - [anon_sym_PERCENT_EQ] = ACTIONS(423), - [anon_sym_AMP_EQ] = ACTIONS(423), - [anon_sym_PIPE_EQ] = ACTIONS(423), - [anon_sym_CARET_EQ] = ACTIONS(423), - [anon_sym_LT_LT_EQ] = ACTIONS(423), - [anon_sym_GT_GT_EQ] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(425), - [sym_integer_literal] = ACTIONS(423), - [aux_sym_string_literal_token1] = ACTIONS(423), - [sym_char_literal] = ACTIONS(423), - [anon_sym_true] = ACTIONS(425), - [anon_sym_false] = ACTIONS(425), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(425), - [sym_super] = ACTIONS(425), - [sym_crate] = ACTIONS(425), - [sym_metavariable] = ACTIONS(423), - [sym_raw_string_literal] = ACTIONS(423), - [sym_float_literal] = ACTIONS(423), - [sym_block_comment] = ACTIONS(3), - }, - [50] = { - [ts_builtin_sym_end] = ACTIONS(427), - [sym_identifier] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(427), - [anon_sym_macro_rules_BANG] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_RBRACE] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_QMARK] = ACTIONS(427), - [anon_sym_u8] = ACTIONS(429), - [anon_sym_i8] = ACTIONS(429), - [anon_sym_u16] = ACTIONS(429), - [anon_sym_i16] = ACTIONS(429), - [anon_sym_u32] = ACTIONS(429), - [anon_sym_i32] = ACTIONS(429), - [anon_sym_u64] = ACTIONS(429), - [anon_sym_i64] = ACTIONS(429), - [anon_sym_u128] = ACTIONS(429), - [anon_sym_i128] = ACTIONS(429), - [anon_sym_isize] = ACTIONS(429), - [anon_sym_usize] = ACTIONS(429), - [anon_sym_f32] = ACTIONS(429), - [anon_sym_f64] = ACTIONS(429), - [anon_sym_bool] = ACTIONS(429), - [anon_sym_str] = ACTIONS(429), - [anon_sym_char] = ACTIONS(429), - [anon_sym_SQUOTE] = ACTIONS(429), - [anon_sym_as] = ACTIONS(429), - [anon_sym_async] = ACTIONS(429), - [anon_sym_break] = ACTIONS(429), - [anon_sym_const] = ACTIONS(429), - [anon_sym_continue] = ACTIONS(429), - [anon_sym_default] = ACTIONS(429), - [anon_sym_enum] = ACTIONS(429), - [anon_sym_fn] = ACTIONS(429), - [anon_sym_for] = ACTIONS(429), - [anon_sym_if] = ACTIONS(429), - [anon_sym_impl] = ACTIONS(429), - [anon_sym_let] = ACTIONS(429), - [anon_sym_loop] = ACTIONS(429), - [anon_sym_match] = ACTIONS(429), - [anon_sym_mod] = ACTIONS(429), - [anon_sym_pub] = ACTIONS(429), - [anon_sym_return] = ACTIONS(429), - [anon_sym_static] = ACTIONS(429), - [anon_sym_struct] = ACTIONS(429), - [anon_sym_trait] = ACTIONS(429), - [anon_sym_type] = ACTIONS(429), - [anon_sym_union] = ACTIONS(429), - [anon_sym_unsafe] = ACTIONS(429), - [anon_sym_use] = ACTIONS(429), - [anon_sym_while] = ACTIONS(429), - [anon_sym_POUND] = ACTIONS(427), - [anon_sym_BANG] = ACTIONS(429), - [anon_sym_EQ] = ACTIONS(429), - [anon_sym_extern] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_COLON_COLON] = ACTIONS(427), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(429), - [anon_sym_DOT_DOT_EQ] = ACTIONS(427), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_AMP_AMP] = ACTIONS(427), - [anon_sym_PIPE_PIPE] = ACTIONS(427), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(429), - [anon_sym_EQ_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_LT_EQ] = ACTIONS(427), - [anon_sym_GT_EQ] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_SLASH] = ACTIONS(429), - [anon_sym_PERCENT] = ACTIONS(429), - [anon_sym_PLUS_EQ] = ACTIONS(427), - [anon_sym_DASH_EQ] = ACTIONS(427), - [anon_sym_STAR_EQ] = ACTIONS(427), - [anon_sym_SLASH_EQ] = ACTIONS(427), - [anon_sym_PERCENT_EQ] = ACTIONS(427), - [anon_sym_AMP_EQ] = ACTIONS(427), - [anon_sym_PIPE_EQ] = ACTIONS(427), - [anon_sym_CARET_EQ] = ACTIONS(427), - [anon_sym_LT_LT_EQ] = ACTIONS(427), - [anon_sym_GT_GT_EQ] = ACTIONS(427), - [anon_sym_move] = ACTIONS(429), - [anon_sym_DOT] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [aux_sym_string_literal_token1] = ACTIONS(427), - [sym_char_literal] = ACTIONS(427), - [anon_sym_true] = ACTIONS(429), - [anon_sym_false] = ACTIONS(429), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_crate] = ACTIONS(429), - [sym_metavariable] = ACTIONS(427), - [sym_raw_string_literal] = ACTIONS(427), - [sym_float_literal] = ACTIONS(427), - [sym_block_comment] = ACTIONS(3), - }, - [51] = { - [ts_builtin_sym_end] = ACTIONS(431), - [sym_identifier] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(431), - [anon_sym_macro_rules_BANG] = ACTIONS(431), - [anon_sym_LPAREN] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_RBRACE] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(431), - [anon_sym_u8] = ACTIONS(433), - [anon_sym_i8] = ACTIONS(433), - [anon_sym_u16] = ACTIONS(433), - [anon_sym_i16] = ACTIONS(433), - [anon_sym_u32] = ACTIONS(433), - [anon_sym_i32] = ACTIONS(433), - [anon_sym_u64] = ACTIONS(433), - [anon_sym_i64] = ACTIONS(433), - [anon_sym_u128] = ACTIONS(433), - [anon_sym_i128] = ACTIONS(433), - [anon_sym_isize] = ACTIONS(433), - [anon_sym_usize] = ACTIONS(433), - [anon_sym_f32] = ACTIONS(433), - [anon_sym_f64] = ACTIONS(433), - [anon_sym_bool] = ACTIONS(433), - [anon_sym_str] = ACTIONS(433), - [anon_sym_char] = ACTIONS(433), - [anon_sym_SQUOTE] = ACTIONS(433), - [anon_sym_as] = ACTIONS(433), - [anon_sym_async] = ACTIONS(433), - [anon_sym_break] = ACTIONS(433), - [anon_sym_const] = ACTIONS(433), - [anon_sym_continue] = ACTIONS(433), - [anon_sym_default] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(433), - [anon_sym_fn] = ACTIONS(433), - [anon_sym_for] = ACTIONS(433), - [anon_sym_if] = ACTIONS(433), - [anon_sym_impl] = ACTIONS(433), - [anon_sym_let] = ACTIONS(433), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(433), - [anon_sym_mod] = ACTIONS(433), - [anon_sym_pub] = ACTIONS(433), - [anon_sym_return] = ACTIONS(433), - [anon_sym_static] = ACTIONS(433), - [anon_sym_struct] = ACTIONS(433), - [anon_sym_trait] = ACTIONS(433), - [anon_sym_type] = ACTIONS(433), - [anon_sym_union] = ACTIONS(433), - [anon_sym_unsafe] = ACTIONS(433), - [anon_sym_use] = ACTIONS(433), - [anon_sym_while] = ACTIONS(433), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_EQ] = ACTIONS(433), - [anon_sym_extern] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_COLON_COLON] = ACTIONS(431), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [anon_sym_DOT_DOT] = ACTIONS(433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(431), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(431), - [anon_sym_PIPE_PIPE] = ACTIONS(431), - [anon_sym_PIPE] = ACTIONS(433), - [anon_sym_CARET] = ACTIONS(433), - [anon_sym_EQ_EQ] = ACTIONS(431), - [anon_sym_BANG_EQ] = ACTIONS(431), - [anon_sym_LT_EQ] = ACTIONS(431), - [anon_sym_GT_EQ] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(433), - [anon_sym_PLUS_EQ] = ACTIONS(431), - [anon_sym_DASH_EQ] = ACTIONS(431), - [anon_sym_STAR_EQ] = ACTIONS(431), - [anon_sym_SLASH_EQ] = ACTIONS(431), - [anon_sym_PERCENT_EQ] = ACTIONS(431), - [anon_sym_AMP_EQ] = ACTIONS(431), - [anon_sym_PIPE_EQ] = ACTIONS(431), - [anon_sym_CARET_EQ] = ACTIONS(431), - [anon_sym_LT_LT_EQ] = ACTIONS(431), - [anon_sym_GT_GT_EQ] = ACTIONS(431), - [anon_sym_move] = ACTIONS(433), - [anon_sym_DOT] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(431), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(431), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(433), - [sym_super] = ACTIONS(433), - [sym_crate] = ACTIONS(433), - [sym_metavariable] = ACTIONS(431), - [sym_raw_string_literal] = ACTIONS(431), - [sym_float_literal] = ACTIONS(431), - [sym_block_comment] = ACTIONS(3), - }, - [52] = { - [ts_builtin_sym_end] = ACTIONS(435), - [sym_identifier] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(435), - [anon_sym_macro_rules_BANG] = ACTIONS(435), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(435), - [anon_sym_u8] = ACTIONS(437), - [anon_sym_i8] = ACTIONS(437), - [anon_sym_u16] = ACTIONS(437), - [anon_sym_i16] = ACTIONS(437), - [anon_sym_u32] = ACTIONS(437), - [anon_sym_i32] = ACTIONS(437), - [anon_sym_u64] = ACTIONS(437), - [anon_sym_i64] = ACTIONS(437), - [anon_sym_u128] = ACTIONS(437), - [anon_sym_i128] = ACTIONS(437), - [anon_sym_isize] = ACTIONS(437), - [anon_sym_usize] = ACTIONS(437), - [anon_sym_f32] = ACTIONS(437), - [anon_sym_f64] = ACTIONS(437), - [anon_sym_bool] = ACTIONS(437), - [anon_sym_str] = ACTIONS(437), - [anon_sym_char] = ACTIONS(437), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_as] = ACTIONS(437), - [anon_sym_async] = ACTIONS(437), - [anon_sym_break] = ACTIONS(437), - [anon_sym_const] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(437), - [anon_sym_default] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(437), - [anon_sym_fn] = ACTIONS(437), - [anon_sym_for] = ACTIONS(437), - [anon_sym_if] = ACTIONS(437), - [anon_sym_impl] = ACTIONS(437), - [anon_sym_let] = ACTIONS(437), - [anon_sym_loop] = ACTIONS(437), - [anon_sym_match] = ACTIONS(437), - [anon_sym_mod] = ACTIONS(437), - [anon_sym_pub] = ACTIONS(437), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(437), - [anon_sym_struct] = ACTIONS(437), - [anon_sym_trait] = ACTIONS(437), - [anon_sym_type] = ACTIONS(437), - [anon_sym_union] = ACTIONS(437), - [anon_sym_unsafe] = ACTIONS(437), - [anon_sym_use] = ACTIONS(437), - [anon_sym_while] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_extern] = ACTIONS(437), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_COLON_COLON] = ACTIONS(435), - [anon_sym_AMP] = ACTIONS(437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(435), - [anon_sym_DOT_DOT] = ACTIONS(437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(437), - [anon_sym_AMP_AMP] = ACTIONS(435), - [anon_sym_PIPE_PIPE] = ACTIONS(435), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_CARET] = ACTIONS(437), - [anon_sym_EQ_EQ] = ACTIONS(435), - [anon_sym_BANG_EQ] = ACTIONS(435), - [anon_sym_LT_EQ] = ACTIONS(435), - [anon_sym_GT_EQ] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(437), - [anon_sym_GT_GT] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_PLUS_EQ] = ACTIONS(435), - [anon_sym_DASH_EQ] = ACTIONS(435), - [anon_sym_STAR_EQ] = ACTIONS(435), - [anon_sym_SLASH_EQ] = ACTIONS(435), - [anon_sym_PERCENT_EQ] = ACTIONS(435), - [anon_sym_AMP_EQ] = ACTIONS(435), - [anon_sym_PIPE_EQ] = ACTIONS(435), - [anon_sym_CARET_EQ] = ACTIONS(435), - [anon_sym_LT_LT_EQ] = ACTIONS(435), - [anon_sym_GT_GT_EQ] = ACTIONS(435), - [anon_sym_move] = ACTIONS(437), - [anon_sym_DOT] = ACTIONS(437), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(435), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(437), - [anon_sym_false] = ACTIONS(437), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(437), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(435), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - [sym_block_comment] = ACTIONS(3), - }, - [53] = { - [ts_builtin_sym_end] = ACTIONS(439), - [sym_identifier] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_macro_rules_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_u8] = ACTIONS(441), - [anon_sym_i8] = ACTIONS(441), - [anon_sym_u16] = ACTIONS(441), - [anon_sym_i16] = ACTIONS(441), - [anon_sym_u32] = ACTIONS(441), - [anon_sym_i32] = ACTIONS(441), - [anon_sym_u64] = ACTIONS(441), - [anon_sym_i64] = ACTIONS(441), - [anon_sym_u128] = ACTIONS(441), - [anon_sym_i128] = ACTIONS(441), - [anon_sym_isize] = ACTIONS(441), - [anon_sym_usize] = ACTIONS(441), - [anon_sym_f32] = ACTIONS(441), - [anon_sym_f64] = ACTIONS(441), - [anon_sym_bool] = ACTIONS(441), - [anon_sym_str] = ACTIONS(441), - [anon_sym_char] = ACTIONS(441), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_as] = ACTIONS(441), - [anon_sym_async] = ACTIONS(441), - [anon_sym_break] = ACTIONS(441), - [anon_sym_const] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(441), - [anon_sym_default] = ACTIONS(441), - [anon_sym_enum] = ACTIONS(441), - [anon_sym_fn] = ACTIONS(441), - [anon_sym_for] = ACTIONS(441), - [anon_sym_if] = ACTIONS(441), - [anon_sym_impl] = ACTIONS(441), - [anon_sym_let] = ACTIONS(441), - [anon_sym_loop] = ACTIONS(441), - [anon_sym_match] = ACTIONS(441), - [anon_sym_mod] = ACTIONS(441), - [anon_sym_pub] = ACTIONS(441), - [anon_sym_return] = ACTIONS(441), - [anon_sym_static] = ACTIONS(441), - [anon_sym_struct] = ACTIONS(441), - [anon_sym_trait] = ACTIONS(441), - [anon_sym_type] = ACTIONS(441), - [anon_sym_union] = ACTIONS(441), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_use] = ACTIONS(441), - [anon_sym_while] = ACTIONS(441), - [anon_sym_POUND] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_extern] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(441), - [anon_sym_COLON_COLON] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(441), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT] = ACTIONS(441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_EQ_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_GT_GT] = ACTIONS(441), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_AMP_EQ] = ACTIONS(439), - [anon_sym_PIPE_EQ] = ACTIONS(439), - [anon_sym_CARET_EQ] = ACTIONS(439), - [anon_sym_LT_LT_EQ] = ACTIONS(439), - [anon_sym_GT_GT_EQ] = ACTIONS(439), - [anon_sym_move] = ACTIONS(441), - [anon_sym_DOT] = ACTIONS(441), - [sym_integer_literal] = ACTIONS(439), - [aux_sym_string_literal_token1] = ACTIONS(439), - [sym_char_literal] = ACTIONS(439), - [anon_sym_true] = ACTIONS(441), - [anon_sym_false] = ACTIONS(441), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(441), - [sym_crate] = ACTIONS(441), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(439), - [sym_float_literal] = ACTIONS(439), - [sym_block_comment] = ACTIONS(3), - }, - [54] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1117), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_tuple_expression_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(443), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [55] = { - [ts_builtin_sym_end] = ACTIONS(445), - [sym_identifier] = ACTIONS(447), - [anon_sym_SEMI] = ACTIONS(445), - [anon_sym_macro_rules_BANG] = ACTIONS(445), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_RBRACE] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_QMARK] = ACTIONS(445), - [anon_sym_u8] = ACTIONS(447), - [anon_sym_i8] = ACTIONS(447), - [anon_sym_u16] = ACTIONS(447), - [anon_sym_i16] = ACTIONS(447), - [anon_sym_u32] = ACTIONS(447), - [anon_sym_i32] = ACTIONS(447), - [anon_sym_u64] = ACTIONS(447), - [anon_sym_i64] = ACTIONS(447), - [anon_sym_u128] = ACTIONS(447), - [anon_sym_i128] = ACTIONS(447), - [anon_sym_isize] = ACTIONS(447), - [anon_sym_usize] = ACTIONS(447), - [anon_sym_f32] = ACTIONS(447), - [anon_sym_f64] = ACTIONS(447), - [anon_sym_bool] = ACTIONS(447), - [anon_sym_str] = ACTIONS(447), - [anon_sym_char] = ACTIONS(447), - [anon_sym_SQUOTE] = ACTIONS(447), - [anon_sym_as] = ACTIONS(447), - [anon_sym_async] = ACTIONS(447), - [anon_sym_break] = ACTIONS(447), - [anon_sym_const] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(447), - [anon_sym_default] = ACTIONS(447), - [anon_sym_enum] = ACTIONS(447), - [anon_sym_fn] = ACTIONS(447), - [anon_sym_for] = ACTIONS(447), - [anon_sym_if] = ACTIONS(447), - [anon_sym_impl] = ACTIONS(447), - [anon_sym_let] = ACTIONS(447), - [anon_sym_loop] = ACTIONS(447), - [anon_sym_match] = ACTIONS(447), - [anon_sym_mod] = ACTIONS(447), - [anon_sym_pub] = ACTIONS(447), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(447), - [anon_sym_struct] = ACTIONS(447), - [anon_sym_trait] = ACTIONS(447), - [anon_sym_type] = ACTIONS(447), - [anon_sym_union] = ACTIONS(447), - [anon_sym_unsafe] = ACTIONS(447), - [anon_sym_use] = ACTIONS(447), - [anon_sym_while] = ACTIONS(447), - [anon_sym_POUND] = ACTIONS(445), - [anon_sym_BANG] = ACTIONS(447), - [anon_sym_EQ] = ACTIONS(447), - [anon_sym_extern] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(447), - [anon_sym_GT] = ACTIONS(447), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(445), - [anon_sym_DOT_DOT] = ACTIONS(447), - [anon_sym_DOT_DOT_EQ] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(447), - [anon_sym_AMP_AMP] = ACTIONS(445), - [anon_sym_PIPE_PIPE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(447), - [anon_sym_CARET] = ACTIONS(447), - [anon_sym_EQ_EQ] = ACTIONS(445), - [anon_sym_BANG_EQ] = ACTIONS(445), - [anon_sym_LT_EQ] = ACTIONS(445), - [anon_sym_GT_EQ] = ACTIONS(445), - [anon_sym_LT_LT] = ACTIONS(447), - [anon_sym_GT_GT] = ACTIONS(447), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_PERCENT] = ACTIONS(447), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_DOT] = ACTIONS(447), - [sym_integer_literal] = ACTIONS(445), - [aux_sym_string_literal_token1] = ACTIONS(445), - [sym_char_literal] = ACTIONS(445), - [anon_sym_true] = ACTIONS(447), - [anon_sym_false] = ACTIONS(447), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(447), - [sym_super] = ACTIONS(447), - [sym_crate] = ACTIONS(447), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(445), - [sym_float_literal] = ACTIONS(445), - [sym_block_comment] = ACTIONS(3), - }, - [56] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1117), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_tuple_expression_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(443), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [57] = { - [ts_builtin_sym_end] = ACTIONS(449), - [sym_identifier] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(453), - [anon_sym_macro_rules_BANG] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u128] = ACTIONS(451), - [anon_sym_i128] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_str] = ACTIONS(451), - [anon_sym_char] = ACTIONS(451), - [anon_sym_SQUOTE] = ACTIONS(451), - [anon_sym_as] = ACTIONS(455), - [anon_sym_async] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_const] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_default] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(451), - [anon_sym_fn] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_impl] = ACTIONS(451), - [anon_sym_let] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_mod] = ACTIONS(451), - [anon_sym_pub] = ACTIONS(451), - [anon_sym_return] = ACTIONS(451), - [anon_sym_static] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_trait] = ACTIONS(451), - [anon_sym_type] = ACTIONS(451), - [anon_sym_union] = ACTIONS(451), - [anon_sym_unsafe] = ACTIONS(451), - [anon_sym_use] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_POUND] = ACTIONS(449), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(455), - [anon_sym_extern] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(455), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_COLON_COLON] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT_EQ] = ACTIONS(453), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(455), - [anon_sym_PERCENT] = ACTIONS(455), - [anon_sym_PLUS_EQ] = ACTIONS(453), - [anon_sym_DASH_EQ] = ACTIONS(453), - [anon_sym_STAR_EQ] = ACTIONS(453), - [anon_sym_SLASH_EQ] = ACTIONS(453), - [anon_sym_PERCENT_EQ] = ACTIONS(453), - [anon_sym_AMP_EQ] = ACTIONS(453), - [anon_sym_PIPE_EQ] = ACTIONS(453), - [anon_sym_CARET_EQ] = ACTIONS(453), - [anon_sym_LT_LT_EQ] = ACTIONS(453), - [anon_sym_GT_GT_EQ] = ACTIONS(453), - [anon_sym_move] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(455), - [sym_integer_literal] = ACTIONS(449), - [aux_sym_string_literal_token1] = ACTIONS(449), - [sym_char_literal] = ACTIONS(449), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(451), - [sym_super] = ACTIONS(451), - [sym_crate] = ACTIONS(451), - [sym_metavariable] = ACTIONS(449), - [sym_raw_string_literal] = ACTIONS(449), - [sym_float_literal] = ACTIONS(449), - [sym_block_comment] = ACTIONS(3), - }, - [58] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1147), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_tuple_expression_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [59] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1163), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_tuple_expression_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(462), - [anon_sym_RPAREN] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(473), - [anon_sym_u8] = ACTIONS(476), - [anon_sym_i8] = ACTIONS(476), - [anon_sym_u16] = ACTIONS(476), - [anon_sym_i16] = ACTIONS(476), - [anon_sym_u32] = ACTIONS(476), - [anon_sym_i32] = ACTIONS(476), - [anon_sym_u64] = ACTIONS(476), - [anon_sym_i64] = ACTIONS(476), - [anon_sym_u128] = ACTIONS(476), - [anon_sym_i128] = ACTIONS(476), - [anon_sym_isize] = ACTIONS(476), - [anon_sym_usize] = ACTIONS(476), - [anon_sym_f32] = ACTIONS(476), - [anon_sym_f64] = ACTIONS(476), - [anon_sym_bool] = ACTIONS(476), - [anon_sym_str] = ACTIONS(476), - [anon_sym_char] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(479), - [anon_sym_async] = ACTIONS(482), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(488), - [anon_sym_continue] = ACTIONS(491), - [anon_sym_default] = ACTIONS(494), - [anon_sym_for] = ACTIONS(497), - [anon_sym_if] = ACTIONS(500), - [anon_sym_loop] = ACTIONS(503), - [anon_sym_match] = ACTIONS(506), - [anon_sym_return] = ACTIONS(509), - [anon_sym_union] = ACTIONS(494), - [anon_sym_unsafe] = ACTIONS(512), - [anon_sym_while] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_COLON_COLON] = ACTIONS(521), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_DOT_DOT] = ACTIONS(527), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_PIPE] = ACTIONS(530), - [anon_sym_move] = ACTIONS(533), - [sym_integer_literal] = ACTIONS(536), - [aux_sym_string_literal_token1] = ACTIONS(539), - [sym_char_literal] = ACTIONS(536), - [anon_sym_true] = ACTIONS(542), - [anon_sym_false] = ACTIONS(542), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(545), - [sym_super] = ACTIONS(548), - [sym_crate] = ACTIONS(548), - [sym_metavariable] = ACTIONS(551), - [sym_raw_string_literal] = ACTIONS(536), - [sym_float_literal] = ACTIONS(536), - [sym_block_comment] = ACTIONS(3), - }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(554), - [sym_identifier] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_macro_rules_BANG] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_u8] = ACTIONS(556), - [anon_sym_i8] = ACTIONS(556), - [anon_sym_u16] = ACTIONS(556), - [anon_sym_i16] = ACTIONS(556), - [anon_sym_u32] = ACTIONS(556), - [anon_sym_i32] = ACTIONS(556), - [anon_sym_u64] = ACTIONS(556), - [anon_sym_i64] = ACTIONS(556), - [anon_sym_u128] = ACTIONS(556), - [anon_sym_i128] = ACTIONS(556), - [anon_sym_isize] = ACTIONS(556), - [anon_sym_usize] = ACTIONS(556), - [anon_sym_f32] = ACTIONS(556), - [anon_sym_f64] = ACTIONS(556), - [anon_sym_bool] = ACTIONS(556), - [anon_sym_str] = ACTIONS(556), - [anon_sym_char] = ACTIONS(556), - [anon_sym_SQUOTE] = ACTIONS(556), - [anon_sym_as] = ACTIONS(455), - [anon_sym_async] = ACTIONS(556), - [anon_sym_break] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_continue] = ACTIONS(556), - [anon_sym_default] = ACTIONS(556), - [anon_sym_enum] = ACTIONS(556), - [anon_sym_fn] = ACTIONS(556), - [anon_sym_for] = ACTIONS(556), - [anon_sym_if] = ACTIONS(556), - [anon_sym_impl] = ACTIONS(556), - [anon_sym_let] = ACTIONS(556), - [anon_sym_loop] = ACTIONS(556), - [anon_sym_match] = ACTIONS(556), - [anon_sym_mod] = ACTIONS(556), - [anon_sym_pub] = ACTIONS(556), - [anon_sym_return] = ACTIONS(556), - [anon_sym_static] = ACTIONS(556), - [anon_sym_struct] = ACTIONS(556), - [anon_sym_trait] = ACTIONS(556), - [anon_sym_type] = ACTIONS(556), - [anon_sym_union] = ACTIONS(556), - [anon_sym_unsafe] = ACTIONS(556), - [anon_sym_use] = ACTIONS(556), - [anon_sym_while] = ACTIONS(556), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(455), - [anon_sym_extern] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(556), - [anon_sym_DOT_DOT_EQ] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT_EQ] = ACTIONS(453), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(455), - [anon_sym_PERCENT] = ACTIONS(455), - [anon_sym_PLUS_EQ] = ACTIONS(453), - [anon_sym_DASH_EQ] = ACTIONS(453), - [anon_sym_STAR_EQ] = ACTIONS(453), - [anon_sym_SLASH_EQ] = ACTIONS(453), - [anon_sym_PERCENT_EQ] = ACTIONS(453), - [anon_sym_AMP_EQ] = ACTIONS(453), - [anon_sym_PIPE_EQ] = ACTIONS(453), - [anon_sym_CARET_EQ] = ACTIONS(453), - [anon_sym_LT_LT_EQ] = ACTIONS(453), - [anon_sym_GT_GT_EQ] = ACTIONS(453), - [anon_sym_move] = ACTIONS(556), - [anon_sym_DOT] = ACTIONS(455), - [sym_integer_literal] = ACTIONS(554), - [aux_sym_string_literal_token1] = ACTIONS(554), - [sym_char_literal] = ACTIONS(554), - [anon_sym_true] = ACTIONS(556), - [anon_sym_false] = ACTIONS(556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(556), - [sym_super] = ACTIONS(556), - [sym_crate] = ACTIONS(556), - [sym_metavariable] = ACTIONS(554), - [sym_raw_string_literal] = ACTIONS(554), - [sym_float_literal] = ACTIONS(554), - [sym_block_comment] = ACTIONS(3), - }, - [61] = { - [ts_builtin_sym_end] = ACTIONS(558), - [sym_identifier] = ACTIONS(560), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_macro_rules_BANG] = ACTIONS(558), - [anon_sym_LPAREN] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(558), - [anon_sym_RBRACE] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(558), - [anon_sym_PLUS] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_QMARK] = ACTIONS(558), - [anon_sym_u8] = ACTIONS(560), - [anon_sym_i8] = ACTIONS(560), - [anon_sym_u16] = ACTIONS(560), - [anon_sym_i16] = ACTIONS(560), - [anon_sym_u32] = ACTIONS(560), - [anon_sym_i32] = ACTIONS(560), - [anon_sym_u64] = ACTIONS(560), - [anon_sym_i64] = ACTIONS(560), - [anon_sym_u128] = ACTIONS(560), - [anon_sym_i128] = ACTIONS(560), - [anon_sym_isize] = ACTIONS(560), - [anon_sym_usize] = ACTIONS(560), - [anon_sym_f32] = ACTIONS(560), - [anon_sym_f64] = ACTIONS(560), - [anon_sym_bool] = ACTIONS(560), - [anon_sym_str] = ACTIONS(560), - [anon_sym_char] = ACTIONS(560), - [anon_sym_SQUOTE] = ACTIONS(560), - [anon_sym_as] = ACTIONS(560), - [anon_sym_async] = ACTIONS(560), - [anon_sym_break] = ACTIONS(560), - [anon_sym_const] = ACTIONS(560), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_default] = ACTIONS(560), - [anon_sym_enum] = ACTIONS(560), - [anon_sym_fn] = ACTIONS(560), - [anon_sym_for] = ACTIONS(560), - [anon_sym_if] = ACTIONS(560), - [anon_sym_impl] = ACTIONS(560), - [anon_sym_let] = ACTIONS(560), - [anon_sym_loop] = ACTIONS(560), - [anon_sym_match] = ACTIONS(560), - [anon_sym_mod] = ACTIONS(560), - [anon_sym_pub] = ACTIONS(560), - [anon_sym_return] = ACTIONS(560), - [anon_sym_static] = ACTIONS(560), - [anon_sym_struct] = ACTIONS(560), - [anon_sym_trait] = ACTIONS(560), - [anon_sym_type] = ACTIONS(560), - [anon_sym_union] = ACTIONS(560), - [anon_sym_unsafe] = ACTIONS(560), - [anon_sym_use] = ACTIONS(560), - [anon_sym_while] = ACTIONS(560), - [anon_sym_POUND] = ACTIONS(558), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_EQ] = ACTIONS(560), - [anon_sym_extern] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_COLON_COLON] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(558), - [anon_sym_DOT_DOT] = ACTIONS(560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(558), - [anon_sym_PIPE_PIPE] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(560), - [anon_sym_CARET] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(558), - [anon_sym_BANG_EQ] = ACTIONS(558), - [anon_sym_LT_EQ] = ACTIONS(558), - [anon_sym_GT_EQ] = ACTIONS(558), - [anon_sym_LT_LT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(560), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_PLUS_EQ] = ACTIONS(558), - [anon_sym_DASH_EQ] = ACTIONS(558), - [anon_sym_STAR_EQ] = ACTIONS(558), - [anon_sym_SLASH_EQ] = ACTIONS(558), - [anon_sym_PERCENT_EQ] = ACTIONS(558), - [anon_sym_AMP_EQ] = ACTIONS(558), - [anon_sym_PIPE_EQ] = ACTIONS(558), - [anon_sym_CARET_EQ] = ACTIONS(558), - [anon_sym_LT_LT_EQ] = ACTIONS(558), - [anon_sym_GT_GT_EQ] = ACTIONS(558), - [anon_sym_move] = ACTIONS(560), - [anon_sym_DOT] = ACTIONS(560), - [sym_integer_literal] = ACTIONS(558), - [aux_sym_string_literal_token1] = ACTIONS(558), - [sym_char_literal] = ACTIONS(558), - [anon_sym_true] = ACTIONS(560), - [anon_sym_false] = ACTIONS(560), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(560), - [sym_super] = ACTIONS(560), - [sym_crate] = ACTIONS(560), - [sym_metavariable] = ACTIONS(558), - [sym_raw_string_literal] = ACTIONS(558), - [sym_float_literal] = ACTIONS(558), - [sym_block_comment] = ACTIONS(3), - }, - [62] = { - [ts_builtin_sym_end] = ACTIONS(562), - [sym_identifier] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(562), - [anon_sym_macro_rules_BANG] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(562), - [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(562), - [anon_sym_u8] = ACTIONS(564), - [anon_sym_i8] = ACTIONS(564), - [anon_sym_u16] = ACTIONS(564), - [anon_sym_i16] = ACTIONS(564), - [anon_sym_u32] = ACTIONS(564), - [anon_sym_i32] = ACTIONS(564), - [anon_sym_u64] = ACTIONS(564), - [anon_sym_i64] = ACTIONS(564), - [anon_sym_u128] = ACTIONS(564), - [anon_sym_i128] = ACTIONS(564), - [anon_sym_isize] = ACTIONS(564), - [anon_sym_usize] = ACTIONS(564), - [anon_sym_f32] = ACTIONS(564), - [anon_sym_f64] = ACTIONS(564), - [anon_sym_bool] = ACTIONS(564), - [anon_sym_str] = ACTIONS(564), - [anon_sym_char] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_as] = ACTIONS(564), - [anon_sym_async] = ACTIONS(564), - [anon_sym_break] = ACTIONS(564), - [anon_sym_const] = ACTIONS(564), - [anon_sym_continue] = ACTIONS(564), - [anon_sym_default] = ACTIONS(564), - [anon_sym_enum] = ACTIONS(564), - [anon_sym_fn] = ACTIONS(564), - [anon_sym_for] = ACTIONS(564), - [anon_sym_if] = ACTIONS(564), - [anon_sym_impl] = ACTIONS(564), - [anon_sym_let] = ACTIONS(564), - [anon_sym_loop] = ACTIONS(564), - [anon_sym_match] = ACTIONS(564), - [anon_sym_mod] = ACTIONS(564), - [anon_sym_pub] = ACTIONS(564), - [anon_sym_return] = ACTIONS(564), - [anon_sym_static] = ACTIONS(564), - [anon_sym_struct] = ACTIONS(564), - [anon_sym_trait] = ACTIONS(564), - [anon_sym_type] = ACTIONS(564), - [anon_sym_union] = ACTIONS(564), - [anon_sym_unsafe] = ACTIONS(564), - [anon_sym_use] = ACTIONS(564), - [anon_sym_while] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_extern] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_COLON_COLON] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(562), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_EQ] = ACTIONS(562), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(562), - [anon_sym_PIPE_PIPE] = ACTIONS(562), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(562), - [anon_sym_BANG_EQ] = ACTIONS(562), - [anon_sym_LT_EQ] = ACTIONS(562), - [anon_sym_GT_EQ] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(562), - [anon_sym_DASH_EQ] = ACTIONS(562), - [anon_sym_STAR_EQ] = ACTIONS(562), - [anon_sym_SLASH_EQ] = ACTIONS(562), - [anon_sym_PERCENT_EQ] = ACTIONS(562), - [anon_sym_AMP_EQ] = ACTIONS(562), - [anon_sym_PIPE_EQ] = ACTIONS(562), - [anon_sym_CARET_EQ] = ACTIONS(562), - [anon_sym_LT_LT_EQ] = ACTIONS(562), - [anon_sym_GT_GT_EQ] = ACTIONS(562), - [anon_sym_move] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [sym_integer_literal] = ACTIONS(562), - [aux_sym_string_literal_token1] = ACTIONS(562), - [sym_char_literal] = ACTIONS(562), - [anon_sym_true] = ACTIONS(564), - [anon_sym_false] = ACTIONS(564), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(564), - [sym_super] = ACTIONS(564), - [sym_crate] = ACTIONS(564), - [sym_metavariable] = ACTIONS(562), - [sym_raw_string_literal] = ACTIONS(562), - [sym_float_literal] = ACTIONS(562), - [sym_block_comment] = ACTIONS(3), - }, - [63] = { - [ts_builtin_sym_end] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_macro_rules_BANG] = ACTIONS(566), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(568), - [anon_sym_i8] = ACTIONS(568), - [anon_sym_u16] = ACTIONS(568), - [anon_sym_i16] = ACTIONS(568), - [anon_sym_u32] = ACTIONS(568), - [anon_sym_i32] = ACTIONS(568), - [anon_sym_u64] = ACTIONS(568), - [anon_sym_i64] = ACTIONS(568), - [anon_sym_u128] = ACTIONS(568), - [anon_sym_i128] = ACTIONS(568), - [anon_sym_isize] = ACTIONS(568), - [anon_sym_usize] = ACTIONS(568), - [anon_sym_f32] = ACTIONS(568), - [anon_sym_f64] = ACTIONS(568), - [anon_sym_bool] = ACTIONS(568), - [anon_sym_str] = ACTIONS(568), - [anon_sym_char] = ACTIONS(568), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_as] = ACTIONS(568), - [anon_sym_async] = ACTIONS(568), - [anon_sym_break] = ACTIONS(568), - [anon_sym_const] = ACTIONS(568), - [anon_sym_continue] = ACTIONS(568), - [anon_sym_default] = ACTIONS(568), - [anon_sym_enum] = ACTIONS(568), - [anon_sym_fn] = ACTIONS(568), - [anon_sym_for] = ACTIONS(568), - [anon_sym_if] = ACTIONS(568), - [anon_sym_impl] = ACTIONS(568), - [anon_sym_let] = ACTIONS(568), - [anon_sym_loop] = ACTIONS(568), - [anon_sym_match] = ACTIONS(568), - [anon_sym_mod] = ACTIONS(568), - [anon_sym_pub] = ACTIONS(568), - [anon_sym_return] = ACTIONS(568), - [anon_sym_static] = ACTIONS(568), - [anon_sym_struct] = ACTIONS(568), - [anon_sym_trait] = ACTIONS(568), - [anon_sym_type] = ACTIONS(568), - [anon_sym_union] = ACTIONS(568), - [anon_sym_unsafe] = ACTIONS(568), - [anon_sym_use] = ACTIONS(568), - [anon_sym_while] = ACTIONS(568), - [anon_sym_POUND] = ACTIONS(566), - [anon_sym_BANG] = ACTIONS(568), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_extern] = ACTIONS(568), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(566), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(568), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_move] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(566), - [aux_sym_string_literal_token1] = ACTIONS(566), - [sym_char_literal] = ACTIONS(566), - [anon_sym_true] = ACTIONS(568), - [anon_sym_false] = ACTIONS(568), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(568), - [sym_super] = ACTIONS(568), - [sym_crate] = ACTIONS(568), - [sym_metavariable] = ACTIONS(566), - [sym_raw_string_literal] = ACTIONS(566), - [sym_float_literal] = ACTIONS(566), - [sym_block_comment] = ACTIONS(3), - }, - [64] = { - [ts_builtin_sym_end] = ACTIONS(570), - [sym_identifier] = ACTIONS(572), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_macro_rules_BANG] = ACTIONS(570), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_u8] = ACTIONS(572), - [anon_sym_i8] = ACTIONS(572), - [anon_sym_u16] = ACTIONS(572), - [anon_sym_i16] = ACTIONS(572), - [anon_sym_u32] = ACTIONS(572), - [anon_sym_i32] = ACTIONS(572), - [anon_sym_u64] = ACTIONS(572), - [anon_sym_i64] = ACTIONS(572), - [anon_sym_u128] = ACTIONS(572), - [anon_sym_i128] = ACTIONS(572), - [anon_sym_isize] = ACTIONS(572), - [anon_sym_usize] = ACTIONS(572), - [anon_sym_f32] = ACTIONS(572), - [anon_sym_f64] = ACTIONS(572), - [anon_sym_bool] = ACTIONS(572), - [anon_sym_str] = ACTIONS(572), - [anon_sym_char] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(572), - [anon_sym_as] = ACTIONS(572), - [anon_sym_async] = ACTIONS(572), - [anon_sym_break] = ACTIONS(572), - [anon_sym_const] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(572), - [anon_sym_default] = ACTIONS(572), - [anon_sym_enum] = ACTIONS(572), - [anon_sym_fn] = ACTIONS(572), - [anon_sym_for] = ACTIONS(572), - [anon_sym_if] = ACTIONS(572), - [anon_sym_impl] = ACTIONS(572), - [anon_sym_let] = ACTIONS(572), - [anon_sym_loop] = ACTIONS(572), - [anon_sym_match] = ACTIONS(572), - [anon_sym_mod] = ACTIONS(572), - [anon_sym_pub] = ACTIONS(572), - [anon_sym_return] = ACTIONS(572), - [anon_sym_static] = ACTIONS(572), - [anon_sym_struct] = ACTIONS(572), - [anon_sym_trait] = ACTIONS(572), - [anon_sym_type] = ACTIONS(572), - [anon_sym_union] = ACTIONS(572), - [anon_sym_unsafe] = ACTIONS(572), - [anon_sym_use] = ACTIONS(572), - [anon_sym_while] = ACTIONS(572), - [anon_sym_POUND] = ACTIONS(570), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_EQ] = ACTIONS(572), - [anon_sym_extern] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_COLON_COLON] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(570), - [anon_sym_DOT_DOT] = ACTIONS(572), - [anon_sym_DOT_DOT_EQ] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_AMP_AMP] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_CARET] = ACTIONS(572), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_LT_LT] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(572), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_move] = ACTIONS(572), - [anon_sym_DOT] = ACTIONS(572), - [sym_integer_literal] = ACTIONS(570), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(570), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(572), - [sym_super] = ACTIONS(572), - [sym_crate] = ACTIONS(572), - [sym_metavariable] = ACTIONS(570), - [sym_raw_string_literal] = ACTIONS(570), - [sym_float_literal] = ACTIONS(570), - [sym_block_comment] = ACTIONS(3), - }, - [65] = { - [ts_builtin_sym_end] = ACTIONS(574), - [sym_identifier] = ACTIONS(576), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym_macro_rules_BANG] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_RBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_u8] = ACTIONS(576), - [anon_sym_i8] = ACTIONS(576), - [anon_sym_u16] = ACTIONS(576), - [anon_sym_i16] = ACTIONS(576), - [anon_sym_u32] = ACTIONS(576), - [anon_sym_i32] = ACTIONS(576), - [anon_sym_u64] = ACTIONS(576), - [anon_sym_i64] = ACTIONS(576), - [anon_sym_u128] = ACTIONS(576), - [anon_sym_i128] = ACTIONS(576), - [anon_sym_isize] = ACTIONS(576), - [anon_sym_usize] = ACTIONS(576), - [anon_sym_f32] = ACTIONS(576), - [anon_sym_f64] = ACTIONS(576), - [anon_sym_bool] = ACTIONS(576), - [anon_sym_str] = ACTIONS(576), - [anon_sym_char] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(576), - [anon_sym_as] = ACTIONS(576), - [anon_sym_async] = ACTIONS(576), - [anon_sym_break] = ACTIONS(576), - [anon_sym_const] = ACTIONS(576), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_default] = ACTIONS(576), - [anon_sym_enum] = ACTIONS(576), - [anon_sym_fn] = ACTIONS(576), - [anon_sym_for] = ACTIONS(576), - [anon_sym_if] = ACTIONS(576), - [anon_sym_impl] = ACTIONS(576), - [anon_sym_let] = ACTIONS(576), - [anon_sym_loop] = ACTIONS(576), - [anon_sym_match] = ACTIONS(576), - [anon_sym_mod] = ACTIONS(576), - [anon_sym_pub] = ACTIONS(576), - [anon_sym_return] = ACTIONS(576), - [anon_sym_static] = ACTIONS(576), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_trait] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_union] = ACTIONS(576), - [anon_sym_unsafe] = ACTIONS(576), - [anon_sym_use] = ACTIONS(576), - [anon_sym_while] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(576), - [anon_sym_extern] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(574), - [anon_sym_AMP] = ACTIONS(576), - [anon_sym_DOT_DOT_DOT] = ACTIONS(574), - [anon_sym_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(574), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_EQ_EQ] = ACTIONS(574), - [anon_sym_BANG_EQ] = ACTIONS(574), - [anon_sym_LT_EQ] = ACTIONS(574), - [anon_sym_GT_EQ] = ACTIONS(574), - [anon_sym_LT_LT] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(576), - [anon_sym_SLASH] = ACTIONS(576), - [anon_sym_PERCENT] = ACTIONS(576), - [anon_sym_PLUS_EQ] = ACTIONS(574), - [anon_sym_DASH_EQ] = ACTIONS(574), - [anon_sym_STAR_EQ] = ACTIONS(574), - [anon_sym_SLASH_EQ] = ACTIONS(574), - [anon_sym_PERCENT_EQ] = ACTIONS(574), - [anon_sym_AMP_EQ] = ACTIONS(574), - [anon_sym_PIPE_EQ] = ACTIONS(574), - [anon_sym_CARET_EQ] = ACTIONS(574), - [anon_sym_LT_LT_EQ] = ACTIONS(574), - [anon_sym_GT_GT_EQ] = ACTIONS(574), - [anon_sym_move] = ACTIONS(576), - [anon_sym_DOT] = ACTIONS(576), - [sym_integer_literal] = ACTIONS(574), - [aux_sym_string_literal_token1] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [anon_sym_true] = ACTIONS(576), - [anon_sym_false] = ACTIONS(576), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(576), - [sym_super] = ACTIONS(576), - [sym_crate] = ACTIONS(576), - [sym_metavariable] = ACTIONS(574), - [sym_raw_string_literal] = ACTIONS(574), - [sym_float_literal] = ACTIONS(574), - [sym_block_comment] = ACTIONS(3), - }, - [66] = { - [ts_builtin_sym_end] = ACTIONS(578), - [sym_identifier] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(578), - [anon_sym_macro_rules_BANG] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u128] = ACTIONS(580), - [anon_sym_i128] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_str] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_async] = ACTIONS(580), - [anon_sym_break] = ACTIONS(580), - [anon_sym_const] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_enum] = ACTIONS(580), - [anon_sym_fn] = ACTIONS(580), - [anon_sym_for] = ACTIONS(580), - [anon_sym_if] = ACTIONS(580), - [anon_sym_impl] = ACTIONS(580), - [anon_sym_let] = ACTIONS(580), - [anon_sym_loop] = ACTIONS(580), - [anon_sym_match] = ACTIONS(580), - [anon_sym_mod] = ACTIONS(580), - [anon_sym_pub] = ACTIONS(580), - [anon_sym_return] = ACTIONS(580), - [anon_sym_static] = ACTIONS(580), - [anon_sym_struct] = ACTIONS(580), - [anon_sym_trait] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_union] = ACTIONS(580), - [anon_sym_unsafe] = ACTIONS(580), - [anon_sym_use] = ACTIONS(580), - [anon_sym_while] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_extern] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_COLON_COLON] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [anon_sym_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(580), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_PLUS_EQ] = ACTIONS(578), - [anon_sym_DASH_EQ] = ACTIONS(578), - [anon_sym_STAR_EQ] = ACTIONS(578), - [anon_sym_SLASH_EQ] = ACTIONS(578), - [anon_sym_PERCENT_EQ] = ACTIONS(578), - [anon_sym_AMP_EQ] = ACTIONS(578), - [anon_sym_PIPE_EQ] = ACTIONS(578), - [anon_sym_CARET_EQ] = ACTIONS(578), - [anon_sym_LT_LT_EQ] = ACTIONS(578), - [anon_sym_GT_GT_EQ] = ACTIONS(578), - [anon_sym_move] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [sym_integer_literal] = ACTIONS(578), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(580), - [sym_super] = ACTIONS(580), - [sym_crate] = ACTIONS(580), - [sym_metavariable] = ACTIONS(578), - [sym_raw_string_literal] = ACTIONS(578), - [sym_float_literal] = ACTIONS(578), - [sym_block_comment] = ACTIONS(3), - }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(582), - [sym_identifier] = ACTIONS(584), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_macro_rules_BANG] = ACTIONS(582), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_QMARK] = ACTIONS(582), - [anon_sym_u8] = ACTIONS(584), - [anon_sym_i8] = ACTIONS(584), - [anon_sym_u16] = ACTIONS(584), - [anon_sym_i16] = ACTIONS(584), - [anon_sym_u32] = ACTIONS(584), - [anon_sym_i32] = ACTIONS(584), - [anon_sym_u64] = ACTIONS(584), - [anon_sym_i64] = ACTIONS(584), - [anon_sym_u128] = ACTIONS(584), - [anon_sym_i128] = ACTIONS(584), - [anon_sym_isize] = ACTIONS(584), - [anon_sym_usize] = ACTIONS(584), - [anon_sym_f32] = ACTIONS(584), - [anon_sym_f64] = ACTIONS(584), - [anon_sym_bool] = ACTIONS(584), - [anon_sym_str] = ACTIONS(584), - [anon_sym_char] = ACTIONS(584), - [anon_sym_SQUOTE] = ACTIONS(584), - [anon_sym_as] = ACTIONS(584), - [anon_sym_async] = ACTIONS(584), - [anon_sym_break] = ACTIONS(584), - [anon_sym_const] = ACTIONS(584), - [anon_sym_continue] = ACTIONS(584), - [anon_sym_default] = ACTIONS(584), - [anon_sym_enum] = ACTIONS(584), - [anon_sym_fn] = ACTIONS(584), - [anon_sym_for] = ACTIONS(584), - [anon_sym_if] = ACTIONS(584), - [anon_sym_impl] = ACTIONS(584), - [anon_sym_let] = ACTIONS(584), - [anon_sym_loop] = ACTIONS(584), - [anon_sym_match] = ACTIONS(584), - [anon_sym_mod] = ACTIONS(584), - [anon_sym_pub] = ACTIONS(584), - [anon_sym_return] = ACTIONS(584), - [anon_sym_static] = ACTIONS(584), - [anon_sym_struct] = ACTIONS(584), - [anon_sym_trait] = ACTIONS(584), - [anon_sym_type] = ACTIONS(584), - [anon_sym_union] = ACTIONS(584), - [anon_sym_unsafe] = ACTIONS(584), - [anon_sym_use] = ACTIONS(584), - [anon_sym_while] = ACTIONS(584), - [anon_sym_POUND] = ACTIONS(582), - [anon_sym_BANG] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(584), - [anon_sym_extern] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_COLON_COLON] = ACTIONS(582), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(582), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT_EQ] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(582), - [anon_sym_PIPE_PIPE] = ACTIONS(582), - [anon_sym_PIPE] = ACTIONS(584), - [anon_sym_CARET] = ACTIONS(584), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_LT_LT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_PLUS_EQ] = ACTIONS(582), - [anon_sym_DASH_EQ] = ACTIONS(582), - [anon_sym_STAR_EQ] = ACTIONS(582), - [anon_sym_SLASH_EQ] = ACTIONS(582), - [anon_sym_PERCENT_EQ] = ACTIONS(582), - [anon_sym_AMP_EQ] = ACTIONS(582), - [anon_sym_PIPE_EQ] = ACTIONS(582), - [anon_sym_CARET_EQ] = ACTIONS(582), - [anon_sym_LT_LT_EQ] = ACTIONS(582), - [anon_sym_GT_GT_EQ] = ACTIONS(582), - [anon_sym_move] = ACTIONS(584), - [anon_sym_DOT] = ACTIONS(584), - [sym_integer_literal] = ACTIONS(582), - [aux_sym_string_literal_token1] = ACTIONS(582), - [sym_char_literal] = ACTIONS(582), - [anon_sym_true] = ACTIONS(584), - [anon_sym_false] = ACTIONS(584), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(584), - [sym_super] = ACTIONS(584), - [sym_crate] = ACTIONS(584), - [sym_metavariable] = ACTIONS(582), - [sym_raw_string_literal] = ACTIONS(582), - [sym_float_literal] = ACTIONS(582), - [sym_block_comment] = ACTIONS(3), - }, - [68] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1093), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [aux_sym_tuple_expression_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [69] = { - [ts_builtin_sym_end] = ACTIONS(588), - [sym_identifier] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_macro_rules_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(588), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_STAR] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(588), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_async] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_fn] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_impl] = ACTIONS(590), - [anon_sym_let] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(590), - [anon_sym_match] = ACTIONS(590), - [anon_sym_mod] = ACTIONS(590), - [anon_sym_pub] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_struct] = ACTIONS(590), - [anon_sym_trait] = ACTIONS(590), - [anon_sym_type] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_unsafe] = ACTIONS(590), - [anon_sym_use] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [anon_sym_POUND] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_extern] = ACTIONS(590), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_COLON_COLON] = ACTIONS(588), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_DOT_DOT_DOT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(590), - [anon_sym_DOT_DOT_EQ] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_AMP_AMP] = ACTIONS(588), - [anon_sym_PIPE_PIPE] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(590), - [anon_sym_CARET] = ACTIONS(590), - [anon_sym_EQ_EQ] = ACTIONS(588), - [anon_sym_BANG_EQ] = ACTIONS(588), - [anon_sym_LT_EQ] = ACTIONS(588), - [anon_sym_GT_EQ] = ACTIONS(588), - [anon_sym_LT_LT] = ACTIONS(590), - [anon_sym_GT_GT] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_PERCENT] = ACTIONS(590), - [anon_sym_PLUS_EQ] = ACTIONS(588), - [anon_sym_DASH_EQ] = ACTIONS(588), - [anon_sym_STAR_EQ] = ACTIONS(588), - [anon_sym_SLASH_EQ] = ACTIONS(588), - [anon_sym_PERCENT_EQ] = ACTIONS(588), - [anon_sym_AMP_EQ] = ACTIONS(588), - [anon_sym_PIPE_EQ] = ACTIONS(588), - [anon_sym_CARET_EQ] = ACTIONS(588), - [anon_sym_LT_LT_EQ] = ACTIONS(588), - [anon_sym_GT_GT_EQ] = ACTIONS(588), - [anon_sym_move] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(588), - [aux_sym_string_literal_token1] = ACTIONS(588), - [sym_char_literal] = ACTIONS(588), - [anon_sym_true] = ACTIONS(590), - [anon_sym_false] = ACTIONS(590), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(588), - [sym_raw_string_literal] = ACTIONS(588), - [sym_float_literal] = ACTIONS(588), - [sym_block_comment] = ACTIONS(3), - }, - [70] = { - [ts_builtin_sym_end] = ACTIONS(592), - [sym_identifier] = ACTIONS(594), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_macro_rules_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_RBRACE] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(594), - [anon_sym_i8] = ACTIONS(594), - [anon_sym_u16] = ACTIONS(594), - [anon_sym_i16] = ACTIONS(594), - [anon_sym_u32] = ACTIONS(594), - [anon_sym_i32] = ACTIONS(594), - [anon_sym_u64] = ACTIONS(594), - [anon_sym_i64] = ACTIONS(594), - [anon_sym_u128] = ACTIONS(594), - [anon_sym_i128] = ACTIONS(594), - [anon_sym_isize] = ACTIONS(594), - [anon_sym_usize] = ACTIONS(594), - [anon_sym_f32] = ACTIONS(594), - [anon_sym_f64] = ACTIONS(594), - [anon_sym_bool] = ACTIONS(594), - [anon_sym_str] = ACTIONS(594), - [anon_sym_char] = ACTIONS(594), - [anon_sym_SQUOTE] = ACTIONS(594), - [anon_sym_as] = ACTIONS(594), - [anon_sym_async] = ACTIONS(594), - [anon_sym_break] = ACTIONS(594), - [anon_sym_const] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(594), - [anon_sym_default] = ACTIONS(594), - [anon_sym_enum] = ACTIONS(594), - [anon_sym_fn] = ACTIONS(594), - [anon_sym_for] = ACTIONS(594), - [anon_sym_if] = ACTIONS(594), - [anon_sym_impl] = ACTIONS(594), - [anon_sym_let] = ACTIONS(594), - [anon_sym_loop] = ACTIONS(594), - [anon_sym_match] = ACTIONS(594), - [anon_sym_mod] = ACTIONS(594), - [anon_sym_pub] = ACTIONS(594), - [anon_sym_return] = ACTIONS(594), - [anon_sym_static] = ACTIONS(594), - [anon_sym_struct] = ACTIONS(594), - [anon_sym_trait] = ACTIONS(594), - [anon_sym_type] = ACTIONS(594), - [anon_sym_union] = ACTIONS(594), - [anon_sym_unsafe] = ACTIONS(594), - [anon_sym_use] = ACTIONS(594), - [anon_sym_while] = ACTIONS(594), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(594), - [anon_sym_EQ] = ACTIONS(594), - [anon_sym_extern] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(594), - [anon_sym_GT] = ACTIONS(594), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_AMP] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT] = ACTIONS(594), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(594), - [anon_sym_CARET] = ACTIONS(594), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(594), - [anon_sym_GT_GT] = ACTIONS(594), - [anon_sym_SLASH] = ACTIONS(594), - [anon_sym_PERCENT] = ACTIONS(594), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_move] = ACTIONS(594), - [anon_sym_DOT] = ACTIONS(594), - [sym_integer_literal] = ACTIONS(592), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(592), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(594), - [sym_super] = ACTIONS(594), - [sym_crate] = ACTIONS(594), - [sym_metavariable] = ACTIONS(592), - [sym_raw_string_literal] = ACTIONS(592), - [sym_float_literal] = ACTIONS(592), - [sym_block_comment] = ACTIONS(3), - }, - [71] = { - [ts_builtin_sym_end] = ACTIONS(596), - [sym_identifier] = ACTIONS(598), - [anon_sym_SEMI] = ACTIONS(596), - [anon_sym_macro_rules_BANG] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_RBRACE] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_PLUS] = ACTIONS(598), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(596), - [anon_sym_u8] = ACTIONS(598), - [anon_sym_i8] = ACTIONS(598), - [anon_sym_u16] = ACTIONS(598), - [anon_sym_i16] = ACTIONS(598), - [anon_sym_u32] = ACTIONS(598), - [anon_sym_i32] = ACTIONS(598), - [anon_sym_u64] = ACTIONS(598), - [anon_sym_i64] = ACTIONS(598), - [anon_sym_u128] = ACTIONS(598), - [anon_sym_i128] = ACTIONS(598), - [anon_sym_isize] = ACTIONS(598), - [anon_sym_usize] = ACTIONS(598), - [anon_sym_f32] = ACTIONS(598), - [anon_sym_f64] = ACTIONS(598), - [anon_sym_bool] = ACTIONS(598), - [anon_sym_str] = ACTIONS(598), - [anon_sym_char] = ACTIONS(598), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_as] = ACTIONS(598), - [anon_sym_async] = ACTIONS(598), - [anon_sym_break] = ACTIONS(598), - [anon_sym_const] = ACTIONS(598), - [anon_sym_continue] = ACTIONS(598), - [anon_sym_default] = ACTIONS(598), - [anon_sym_enum] = ACTIONS(598), - [anon_sym_fn] = ACTIONS(598), - [anon_sym_for] = ACTIONS(598), - [anon_sym_if] = ACTIONS(598), - [anon_sym_impl] = ACTIONS(598), - [anon_sym_let] = ACTIONS(598), - [anon_sym_loop] = ACTIONS(598), - [anon_sym_match] = ACTIONS(598), - [anon_sym_mod] = ACTIONS(598), - [anon_sym_pub] = ACTIONS(598), - [anon_sym_return] = ACTIONS(598), - [anon_sym_static] = ACTIONS(598), - [anon_sym_struct] = ACTIONS(598), - [anon_sym_trait] = ACTIONS(598), - [anon_sym_type] = ACTIONS(598), - [anon_sym_union] = ACTIONS(598), - [anon_sym_unsafe] = ACTIONS(598), - [anon_sym_use] = ACTIONS(598), - [anon_sym_while] = ACTIONS(598), - [anon_sym_POUND] = ACTIONS(596), - [anon_sym_BANG] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(598), - [anon_sym_extern] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(598), - [anon_sym_COLON_COLON] = ACTIONS(596), - [anon_sym_AMP] = ACTIONS(598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(596), - [anon_sym_DOT_DOT] = ACTIONS(598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(598), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_CARET] = ACTIONS(598), - [anon_sym_EQ_EQ] = ACTIONS(596), - [anon_sym_BANG_EQ] = ACTIONS(596), - [anon_sym_LT_EQ] = ACTIONS(596), - [anon_sym_GT_EQ] = ACTIONS(596), - [anon_sym_LT_LT] = ACTIONS(598), - [anon_sym_GT_GT] = ACTIONS(598), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_PERCENT] = ACTIONS(598), - [anon_sym_PLUS_EQ] = ACTIONS(596), - [anon_sym_DASH_EQ] = ACTIONS(596), - [anon_sym_STAR_EQ] = ACTIONS(596), - [anon_sym_SLASH_EQ] = ACTIONS(596), - [anon_sym_PERCENT_EQ] = ACTIONS(596), - [anon_sym_AMP_EQ] = ACTIONS(596), - [anon_sym_PIPE_EQ] = ACTIONS(596), - [anon_sym_CARET_EQ] = ACTIONS(596), - [anon_sym_LT_LT_EQ] = ACTIONS(596), - [anon_sym_GT_GT_EQ] = ACTIONS(596), - [anon_sym_move] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(598), - [sym_integer_literal] = ACTIONS(596), - [aux_sym_string_literal_token1] = ACTIONS(596), - [sym_char_literal] = ACTIONS(596), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(598), - [sym_super] = ACTIONS(598), - [sym_crate] = ACTIONS(598), - [sym_metavariable] = ACTIONS(596), - [sym_raw_string_literal] = ACTIONS(596), - [sym_float_literal] = ACTIONS(596), - [sym_block_comment] = ACTIONS(3), - }, - [72] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1172), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1027), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_DASH_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [73] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1151), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(608), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [74] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1108), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(610), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [75] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1151), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(612), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [76] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(614), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [77] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1031), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1021), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [78] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1134), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(618), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [79] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1145), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(620), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [80] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1140), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(622), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [81] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1149), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(624), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [82] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1054), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [sym_mutable_specifier] = ACTIONS(626), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [83] = { - [sym_identifier] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(453), - [anon_sym_macro_rules_BANG] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u128] = ACTIONS(451), - [anon_sym_i128] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_str] = ACTIONS(451), - [anon_sym_char] = ACTIONS(451), - [anon_sym_SQUOTE] = ACTIONS(451), - [anon_sym_as] = ACTIONS(455), - [anon_sym_async] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_const] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_default] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(451), - [anon_sym_fn] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_impl] = ACTIONS(451), - [anon_sym_let] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_mod] = ACTIONS(451), - [anon_sym_pub] = ACTIONS(451), - [anon_sym_return] = ACTIONS(451), - [anon_sym_static] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_trait] = ACTIONS(451), - [anon_sym_type] = ACTIONS(451), - [anon_sym_union] = ACTIONS(451), - [anon_sym_unsafe] = ACTIONS(451), - [anon_sym_use] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_POUND] = ACTIONS(449), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(455), - [anon_sym_extern] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(455), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_COLON_COLON] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT_EQ] = ACTIONS(453), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(455), - [anon_sym_PERCENT] = ACTIONS(455), - [anon_sym_PLUS_EQ] = ACTIONS(453), - [anon_sym_DASH_EQ] = ACTIONS(453), - [anon_sym_STAR_EQ] = ACTIONS(453), - [anon_sym_SLASH_EQ] = ACTIONS(453), - [anon_sym_PERCENT_EQ] = ACTIONS(453), - [anon_sym_AMP_EQ] = ACTIONS(453), - [anon_sym_PIPE_EQ] = ACTIONS(453), - [anon_sym_CARET_EQ] = ACTIONS(453), - [anon_sym_LT_LT_EQ] = ACTIONS(453), - [anon_sym_GT_GT_EQ] = ACTIONS(453), - [anon_sym_move] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(455), - [sym_integer_literal] = ACTIONS(449), - [aux_sym_string_literal_token1] = ACTIONS(449), - [sym_char_literal] = ACTIONS(449), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(451), - [sym_super] = ACTIONS(451), - [sym_crate] = ACTIONS(451), - [sym_metavariable] = ACTIONS(449), - [sym_raw_string_literal] = ACTIONS(449), - [sym_float_literal] = ACTIONS(449), - [sym_block_comment] = ACTIONS(3), - }, - [84] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1202), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1021), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_DASH_GT] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [85] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1141), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(628), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [86] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1025), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1027), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [87] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1120), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(630), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [88] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1151), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(632), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [89] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1186), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [sym_mutable_specifier] = ACTIONS(634), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [90] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1127), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(636), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [91] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1216), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [92] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1206), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [93] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1209), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [94] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1194), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [95] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1169), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [96] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1094), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [97] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1148), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [98] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1151), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [99] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1102), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(242), - [sym_if_let_expression] = STATE(242), - [sym_match_expression] = STATE(242), - [sym_while_expression] = STATE(242), - [sym_while_let_expression] = STATE(242), - [sym_loop_expression] = STATE(242), - [sym_for_expression] = STATE(242), - [sym_const_block] = STATE(242), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2390), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(242), - [sym_async_block] = STATE(242), - [sym_block] = STATE(242), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(640), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(644), - [anon_sym_if] = ACTIONS(646), - [anon_sym_loop] = ACTIONS(648), - [anon_sym_match] = ACTIONS(650), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_while] = ACTIONS(654), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [100] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1173), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [101] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1116), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [102] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1210), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(242), - [sym_if_let_expression] = STATE(242), - [sym_match_expression] = STATE(242), - [sym_while_expression] = STATE(242), - [sym_while_let_expression] = STATE(242), - [sym_loop_expression] = STATE(242), - [sym_for_expression] = STATE(242), - [sym_const_block] = STATE(242), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2390), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(242), - [sym_async_block] = STATE(242), - [sym_block] = STATE(242), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(640), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(644), - [anon_sym_if] = ACTIONS(646), - [anon_sym_loop] = ACTIONS(648), - [anon_sym_match] = ACTIONS(650), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_while] = ACTIONS(654), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [103] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1012), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [104] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1174), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [105] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1144), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [106] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1219), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [107] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1034), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [108] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1161), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [109] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1095), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [110] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1177), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [111] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1014), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [112] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1023), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [113] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1138), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [114] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1215), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [115] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1181), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [116] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1017), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [117] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1159), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [118] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1035), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [119] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(1755), - [sym_variadic_parameter] = STATE(1755), - [sym_parameter] = STATE(1755), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1739), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1629), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_RPAREN] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(716), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [120] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1167), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [121] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1153), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [122] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1024), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [123] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1121), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [124] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1044), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [125] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1165), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [126] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1199), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [127] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1160), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [128] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1143), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [129] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [130] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1213), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [131] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1214), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [132] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1060), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [133] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1123), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [134] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [135] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1162), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [136] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1106), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [137] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(1755), - [sym_variadic_parameter] = STATE(1755), - [sym_parameter] = STATE(1755), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1739), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1629), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_RPAREN] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(724), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(716), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [138] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1218), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [139] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(794), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [140] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1154), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [141] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1170), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [142] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1158), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [143] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1156), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [144] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1211), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [145] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1197), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [146] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1195), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [147] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1191), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [148] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1045), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [149] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1146), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [150] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1203), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [151] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(794), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [152] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1109), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [153] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1050), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [154] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1175), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [155] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1168), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [156] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1063), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [157] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1164), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [158] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(1755), - [sym_variadic_parameter] = STATE(1755), - [sym_parameter] = STATE(1755), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1739), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1629), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(716), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [159] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1178), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [160] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(1755), - [sym_variadic_parameter] = STATE(1755), - [sym_parameter] = STATE(1755), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1739), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(738), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [161] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1101), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [162] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1112), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [163] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1103), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [164] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1135), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [165] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1190), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [166] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1152), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [167] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1104), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [168] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1137), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [169] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1132), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [170] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1131), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [171] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1189), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(236), - [sym_if_let_expression] = STATE(236), - [sym_match_expression] = STATE(236), - [sym_while_expression] = STATE(236), - [sym_while_let_expression] = STATE(236), - [sym_loop_expression] = STATE(236), - [sym_for_expression] = STATE(236), - [sym_const_block] = STATE(236), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2390), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(236), - [sym_async_block] = STATE(236), - [sym_block] = STATE(236), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(640), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(644), - [anon_sym_if] = ACTIONS(646), - [anon_sym_loop] = ACTIONS(648), - [anon_sym_match] = ACTIONS(650), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_while] = ACTIONS(654), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [172] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1016), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [173] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1090), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [174] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1835), - [sym__expression] = STATE(1130), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [175] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1128), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(236), - [sym_if_let_expression] = STATE(236), - [sym_match_expression] = STATE(236), - [sym_while_expression] = STATE(236), - [sym_while_let_expression] = STATE(236), - [sym_loop_expression] = STATE(236), - [sym_for_expression] = STATE(236), - [sym_const_block] = STATE(236), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2390), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(236), - [sym_async_block] = STATE(236), - [sym_block] = STATE(236), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(640), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(644), - [anon_sym_if] = ACTIONS(646), - [anon_sym_loop] = ACTIONS(648), - [anon_sym_match] = ACTIONS(650), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_while] = ACTIONS(654), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [176] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1187), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [177] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1142), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [178] = { - [sym_attribute_item] = STATE(189), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(1950), - [sym_variadic_parameter] = STATE(1950), - [sym_parameter] = STATE(1950), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1674), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(754), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(756), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [179] = { - [sym_bracketed_type] = STATE(2310), - [sym_generic_function] = STATE(1038), - [sym_generic_type_with_turbofish] = STATE(1805), - [sym__expression] = STATE(1157), - [sym_macro_invocation] = STATE(1049), - [sym_scoped_identifier] = STATE(824), - [sym_scoped_type_identifier_in_expression_position] = STATE(2099), - [sym_range_expression] = STATE(1038), - [sym_unary_expression] = STATE(1038), - [sym_try_expression] = STATE(1038), - [sym_reference_expression] = STATE(1038), - [sym_binary_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_compound_assignment_expr] = STATE(1038), - [sym_type_cast_expression] = STATE(1038), - [sym_return_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_array_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_tuple_expression] = STATE(1038), - [sym_unit_expression] = STATE(1038), - [sym_struct_expression] = STATE(1038), - [sym_if_expression] = STATE(1038), - [sym_if_let_expression] = STATE(1038), - [sym_match_expression] = STATE(1038), - [sym_while_expression] = STATE(1038), - [sym_while_let_expression] = STATE(1038), - [sym_loop_expression] = STATE(1038), - [sym_for_expression] = STATE(1038), - [sym_const_block] = STATE(1038), - [sym_closure_expression] = STATE(1038), - [sym_closure_parameters] = STATE(86), - [sym_loop_label] = STATE(2357), - [sym_break_expression] = STATE(1038), - [sym_continue_expression] = STATE(1038), - [sym_index_expression] = STATE(1038), - [sym_await_expression] = STATE(1038), - [sym_field_expression] = STATE(774), - [sym_unsafe_block] = STATE(1038), - [sym_async_block] = STATE(1038), - [sym_block] = STATE(1038), - [sym__literal] = STATE(1038), - [sym_string_literal] = STATE(1052), - [sym_boolean_literal] = STATE(1052), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [180] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(2006), - [sym_variadic_parameter] = STATE(2006), - [sym_parameter] = STATE(2006), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1767), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [181] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(2006), - [sym_variadic_parameter] = STATE(2006), - [sym_parameter] = STATE(2006), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1767), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [182] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(2006), - [sym_variadic_parameter] = STATE(2006), - [sym_parameter] = STATE(2006), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1767), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [183] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(2006), - [sym_variadic_parameter] = STATE(2006), - [sym_parameter] = STATE(2006), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1767), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [184] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(2006), - [sym_variadic_parameter] = STATE(2006), - [sym_parameter] = STATE(2006), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1767), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(768), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [185] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(2006), - [sym_variadic_parameter] = STATE(2006), - [sym_parameter] = STATE(2006), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1767), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [186] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(2006), - [sym_variadic_parameter] = STATE(2006), - [sym_parameter] = STATE(2006), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1767), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(684), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [187] = { - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(2011), - [sym_variadic_parameter] = STATE(2011), - [sym_parameter] = STATE(2011), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1986), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [188] = { - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(1844), - [sym_variadic_parameter] = STATE(1844), - [sym_parameter] = STATE(1844), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1657), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [189] = { - [sym_function_modifiers] = STATE(2206), - [sym_self_parameter] = STATE(1967), - [sym_variadic_parameter] = STATE(1967), - [sym_parameter] = STATE(1967), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1661), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1757), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1997), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_union] = ACTIONS(682), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(776), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(700), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [190] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1744), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1664), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_RPAREN] = ACTIONS(778), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(780), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(784), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(718), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [191] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1744), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1664), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(780), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(784), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(718), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [192] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1797), - [sym_bracketed_type] = STATE(2351), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2352), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1489), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1685), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(792), - [anon_sym_LPAREN] = ACTIONS(794), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_RBRACK] = ACTIONS(796), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(798), - [anon_sym_i8] = ACTIONS(798), - [anon_sym_u16] = ACTIONS(798), - [anon_sym_i16] = ACTIONS(798), - [anon_sym_u32] = ACTIONS(798), - [anon_sym_i32] = ACTIONS(798), - [anon_sym_u64] = ACTIONS(798), - [anon_sym_i64] = ACTIONS(798), - [anon_sym_u128] = ACTIONS(798), - [anon_sym_i128] = ACTIONS(798), - [anon_sym_isize] = ACTIONS(798), - [anon_sym_usize] = ACTIONS(798), - [anon_sym_f32] = ACTIONS(798), - [anon_sym_f64] = ACTIONS(798), - [anon_sym_bool] = ACTIONS(798), - [anon_sym_str] = ACTIONS(798), - [anon_sym_char] = ACTIONS(798), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(802), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(804), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(806), - [sym_super] = ACTIONS(806), - [sym_crate] = ACTIONS(806), - [sym_metavariable] = ACTIONS(808), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [193] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1744), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1664), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_RPAREN] = ACTIONS(810), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(780), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(784), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(718), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [194] = { - [sym_identifier] = ACTIONS(812), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(814), - [anon_sym_RPAREN] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(814), - [anon_sym_RBRACE] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(814), - [anon_sym_RBRACK] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(812), - [anon_sym_PLUS] = ACTIONS(812), - [anon_sym_STAR] = ACTIONS(812), - [anon_sym_QMARK] = ACTIONS(814), - [anon_sym_u8] = ACTIONS(812), - [anon_sym_i8] = ACTIONS(812), - [anon_sym_u16] = ACTIONS(812), - [anon_sym_i16] = ACTIONS(812), - [anon_sym_u32] = ACTIONS(812), - [anon_sym_i32] = ACTIONS(812), - [anon_sym_u64] = ACTIONS(812), - [anon_sym_i64] = ACTIONS(812), - [anon_sym_u128] = ACTIONS(812), - [anon_sym_i128] = ACTIONS(812), - [anon_sym_isize] = ACTIONS(812), - [anon_sym_usize] = ACTIONS(812), - [anon_sym_f32] = ACTIONS(812), - [anon_sym_f64] = ACTIONS(812), - [anon_sym_bool] = ACTIONS(812), - [anon_sym_str] = ACTIONS(812), - [anon_sym_char] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(812), - [anon_sym_as] = ACTIONS(812), - [anon_sym_async] = ACTIONS(812), - [anon_sym_break] = ACTIONS(812), - [anon_sym_const] = ACTIONS(812), - [anon_sym_continue] = ACTIONS(812), - [anon_sym_default] = ACTIONS(812), - [anon_sym_for] = ACTIONS(812), - [anon_sym_if] = ACTIONS(812), - [anon_sym_loop] = ACTIONS(812), - [anon_sym_match] = ACTIONS(812), - [anon_sym_return] = ACTIONS(812), - [anon_sym_union] = ACTIONS(812), - [anon_sym_unsafe] = ACTIONS(812), - [anon_sym_while] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(812), - [anon_sym_COMMA] = ACTIONS(814), - [anon_sym_LT] = ACTIONS(812), - [anon_sym_GT] = ACTIONS(812), - [anon_sym_COLON_COLON] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(812), - [anon_sym_DOT_DOT_DOT] = ACTIONS(814), - [anon_sym_DOT_DOT] = ACTIONS(812), - [anon_sym_DOT_DOT_EQ] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(812), - [anon_sym_AMP_AMP] = ACTIONS(814), - [anon_sym_PIPE_PIPE] = ACTIONS(814), - [anon_sym_PIPE] = ACTIONS(812), - [anon_sym_CARET] = ACTIONS(812), - [anon_sym_EQ_EQ] = ACTIONS(814), - [anon_sym_BANG_EQ] = ACTIONS(814), - [anon_sym_LT_EQ] = ACTIONS(814), - [anon_sym_GT_EQ] = ACTIONS(814), - [anon_sym_LT_LT] = ACTIONS(812), - [anon_sym_GT_GT] = ACTIONS(812), - [anon_sym_SLASH] = ACTIONS(812), - [anon_sym_PERCENT] = ACTIONS(812), - [anon_sym_PLUS_EQ] = ACTIONS(814), - [anon_sym_DASH_EQ] = ACTIONS(814), - [anon_sym_STAR_EQ] = ACTIONS(814), - [anon_sym_SLASH_EQ] = ACTIONS(814), - [anon_sym_PERCENT_EQ] = ACTIONS(814), - [anon_sym_AMP_EQ] = ACTIONS(814), - [anon_sym_PIPE_EQ] = ACTIONS(814), - [anon_sym_CARET_EQ] = ACTIONS(814), - [anon_sym_LT_LT_EQ] = ACTIONS(814), - [anon_sym_GT_GT_EQ] = ACTIONS(814), - [anon_sym_move] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(812), - [sym_integer_literal] = ACTIONS(814), - [aux_sym_string_literal_token1] = ACTIONS(814), - [sym_char_literal] = ACTIONS(814), - [anon_sym_true] = ACTIONS(812), - [anon_sym_false] = ACTIONS(812), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(812), - [sym_super] = ACTIONS(812), - [sym_crate] = ACTIONS(812), - [sym_metavariable] = ACTIONS(814), - [sym_raw_string_literal] = ACTIONS(814), - [sym_float_literal] = ACTIONS(814), - [sym_block_comment] = ACTIONS(3), - }, - [195] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1311), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(540), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1369), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(816), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(820), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(822), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [196] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1331), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1366), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(784), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(718), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [197] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1311), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(541), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1369), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(816), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(784), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(824), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(718), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [198] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1331), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1366), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(826), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [199] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1331), - [sym_bracketed_type] = STATE(2351), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2352), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1489), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1366), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(792), - [anon_sym_LPAREN] = ACTIONS(794), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(798), - [anon_sym_i8] = ACTIONS(798), - [anon_sym_u16] = ACTIONS(798), - [anon_sym_i16] = ACTIONS(798), - [anon_sym_u32] = ACTIONS(798), - [anon_sym_i32] = ACTIONS(798), - [anon_sym_u64] = ACTIONS(798), - [anon_sym_i64] = ACTIONS(798), - [anon_sym_u128] = ACTIONS(798), - [anon_sym_i128] = ACTIONS(798), - [anon_sym_isize] = ACTIONS(798), - [anon_sym_usize] = ACTIONS(798), - [anon_sym_f32] = ACTIONS(798), - [anon_sym_f64] = ACTIONS(798), - [anon_sym_bool] = ACTIONS(798), - [anon_sym_str] = ACTIONS(798), - [anon_sym_char] = ACTIONS(798), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(802), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(804), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(806), - [sym_super] = ACTIONS(806), - [sym_crate] = ACTIONS(806), - [sym_metavariable] = ACTIONS(808), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [200] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1331), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1366), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [201] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1331), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1366), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(784), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(828), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [202] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1311), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(541), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1500), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1369), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(736), - [anon_sym_i8] = ACTIONS(736), - [anon_sym_u16] = ACTIONS(736), - [anon_sym_i16] = ACTIONS(736), - [anon_sym_u32] = ACTIONS(736), - [anon_sym_i32] = ACTIONS(736), - [anon_sym_u64] = ACTIONS(736), - [anon_sym_i64] = ACTIONS(736), - [anon_sym_u128] = ACTIONS(736), - [anon_sym_i128] = ACTIONS(736), - [anon_sym_isize] = ACTIONS(736), - [anon_sym_usize] = ACTIONS(736), - [anon_sym_f32] = ACTIONS(736), - [anon_sym_f64] = ACTIONS(736), - [anon_sym_bool] = ACTIONS(736), - [anon_sym_str] = ACTIONS(736), - [anon_sym_char] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(816), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(740), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(830), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(748), - [sym_crate] = ACTIONS(748), - [sym_metavariable] = ACTIONS(750), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [203] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1311), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(540), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1420), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1369), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(816), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(694), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(784), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(834), - [sym_super] = ACTIONS(718), - [sym_crate] = ACTIONS(718), - [sym_metavariable] = ACTIONS(720), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [204] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1311), - [sym_bracketed_type] = STATE(2351), - [sym_lifetime] = STATE(541), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2352), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(1489), - [sym_scoped_type_identifier] = STATE(1392), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1369), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(792), - [anon_sym_LPAREN] = ACTIONS(794), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(798), - [anon_sym_i8] = ACTIONS(798), - [anon_sym_u16] = ACTIONS(798), - [anon_sym_i16] = ACTIONS(798), - [anon_sym_u32] = ACTIONS(798), - [anon_sym_i32] = ACTIONS(798), - [anon_sym_u64] = ACTIONS(798), - [anon_sym_i64] = ACTIONS(798), - [anon_sym_u128] = ACTIONS(798), - [anon_sym_i128] = ACTIONS(798), - [anon_sym_isize] = ACTIONS(798), - [anon_sym_usize] = ACTIONS(798), - [anon_sym_f32] = ACTIONS(798), - [anon_sym_f64] = ACTIONS(798), - [anon_sym_bool] = ACTIONS(798), - [anon_sym_str] = ACTIONS(798), - [anon_sym_char] = ACTIONS(798), - [anon_sym_SQUOTE] = ACTIONS(816), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(802), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(804), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(806), - [sym_super] = ACTIONS(806), - [sym_crate] = ACTIONS(806), - [sym_metavariable] = ACTIONS(808), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [205] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1364), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(838), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(840), - [anon_sym_u8] = ACTIONS(838), - [anon_sym_i8] = ACTIONS(838), - [anon_sym_u16] = ACTIONS(838), - [anon_sym_i16] = ACTIONS(838), - [anon_sym_u32] = ACTIONS(838), - [anon_sym_i32] = ACTIONS(838), - [anon_sym_u64] = ACTIONS(838), - [anon_sym_i64] = ACTIONS(838), - [anon_sym_u128] = ACTIONS(838), - [anon_sym_i128] = ACTIONS(838), - [anon_sym_isize] = ACTIONS(838), - [anon_sym_usize] = ACTIONS(838), - [anon_sym_f32] = ACTIONS(838), - [anon_sym_f64] = ACTIONS(838), - [anon_sym_bool] = ACTIONS(838), - [anon_sym_str] = ACTIONS(838), - [anon_sym_char] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(838), - [anon_sym_async] = ACTIONS(838), - [anon_sym_break] = ACTIONS(838), - [anon_sym_const] = ACTIONS(838), - [anon_sym_continue] = ACTIONS(838), - [anon_sym_default] = ACTIONS(838), - [anon_sym_for] = ACTIONS(838), - [anon_sym_if] = ACTIONS(838), - [anon_sym_loop] = ACTIONS(838), - [anon_sym_match] = ACTIONS(838), - [anon_sym_return] = ACTIONS(838), - [anon_sym_union] = ACTIONS(838), - [anon_sym_unsafe] = ACTIONS(838), - [anon_sym_while] = ACTIONS(838), - [anon_sym_BANG] = ACTIONS(840), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_DASH_GT] = ACTIONS(840), - [anon_sym_LT] = ACTIONS(840), - [anon_sym_COLON_COLON] = ACTIONS(840), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(840), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(840), - [anon_sym_DASH] = ACTIONS(838), - [anon_sym_PIPE] = ACTIONS(840), - [anon_sym_move] = ACTIONS(838), - [sym_integer_literal] = ACTIONS(840), - [aux_sym_string_literal_token1] = ACTIONS(840), - [sym_char_literal] = ACTIONS(840), - [anon_sym_true] = ACTIONS(838), - [anon_sym_false] = ACTIONS(838), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(838), - [sym_super] = ACTIONS(838), - [sym_crate] = ACTIONS(838), - [sym_metavariable] = ACTIONS(840), - [sym_raw_string_literal] = ACTIONS(840), - [sym_float_literal] = ACTIONS(840), - [sym_block_comment] = ACTIONS(3), - }, - [206] = { - [sym_else_clause] = STATE(230), - [sym_identifier] = ACTIONS(373), - [anon_sym_LPAREN] = ACTIONS(371), - [anon_sym_RBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(371), - [anon_sym_PLUS] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(373), - [anon_sym_QMARK] = ACTIONS(371), - [anon_sym_u8] = ACTIONS(373), - [anon_sym_i8] = ACTIONS(373), - [anon_sym_u16] = ACTIONS(373), - [anon_sym_i16] = ACTIONS(373), - [anon_sym_u32] = ACTIONS(373), - [anon_sym_i32] = ACTIONS(373), - [anon_sym_u64] = ACTIONS(373), - [anon_sym_i64] = ACTIONS(373), - [anon_sym_u128] = ACTIONS(373), - [anon_sym_i128] = ACTIONS(373), - [anon_sym_isize] = ACTIONS(373), - [anon_sym_usize] = ACTIONS(373), - [anon_sym_f32] = ACTIONS(373), - [anon_sym_f64] = ACTIONS(373), - [anon_sym_bool] = ACTIONS(373), - [anon_sym_str] = ACTIONS(373), - [anon_sym_char] = ACTIONS(373), - [anon_sym_as] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(371), - [anon_sym_EQ] = ACTIONS(373), - [anon_sym_COMMA] = ACTIONS(371), - [anon_sym_ref] = ACTIONS(373), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(371), - [anon_sym__] = ACTIONS(373), - [anon_sym_AMP] = ACTIONS(373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT_EQ] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(371), - [anon_sym_PIPE_PIPE] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(373), - [anon_sym_CARET] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(371), - [anon_sym_BANG_EQ] = ACTIONS(371), - [anon_sym_LT_EQ] = ACTIONS(371), - [anon_sym_GT_EQ] = ACTIONS(371), - [anon_sym_LT_LT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_SLASH] = ACTIONS(373), - [anon_sym_PERCENT] = ACTIONS(373), - [anon_sym_PLUS_EQ] = ACTIONS(371), - [anon_sym_DASH_EQ] = ACTIONS(371), - [anon_sym_STAR_EQ] = ACTIONS(371), - [anon_sym_SLASH_EQ] = ACTIONS(371), - [anon_sym_PERCENT_EQ] = ACTIONS(371), - [anon_sym_AMP_EQ] = ACTIONS(371), - [anon_sym_PIPE_EQ] = ACTIONS(371), - [anon_sym_CARET_EQ] = ACTIONS(371), - [anon_sym_LT_LT_EQ] = ACTIONS(371), - [anon_sym_GT_GT_EQ] = ACTIONS(371), - [anon_sym_else] = ACTIONS(842), - [anon_sym_DOT] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(371), - [aux_sym_string_literal_token1] = ACTIONS(371), - [sym_char_literal] = ACTIONS(371), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(373), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(371), - [sym_raw_string_literal] = ACTIONS(371), - [sym_float_literal] = ACTIONS(371), - [sym_block_comment] = ACTIONS(3), - }, - [207] = { - [sym_else_clause] = STATE(240), - [sym_identifier] = ACTIONS(379), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_RBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_QMARK] = ACTIONS(377), - [anon_sym_u8] = ACTIONS(379), - [anon_sym_i8] = ACTIONS(379), - [anon_sym_u16] = ACTIONS(379), - [anon_sym_i16] = ACTIONS(379), - [anon_sym_u32] = ACTIONS(379), - [anon_sym_i32] = ACTIONS(379), - [anon_sym_u64] = ACTIONS(379), - [anon_sym_i64] = ACTIONS(379), - [anon_sym_u128] = ACTIONS(379), - [anon_sym_i128] = ACTIONS(379), - [anon_sym_isize] = ACTIONS(379), - [anon_sym_usize] = ACTIONS(379), - [anon_sym_f32] = ACTIONS(379), - [anon_sym_f64] = ACTIONS(379), - [anon_sym_bool] = ACTIONS(379), - [anon_sym_str] = ACTIONS(379), - [anon_sym_char] = ACTIONS(379), - [anon_sym_as] = ACTIONS(379), - [anon_sym_const] = ACTIONS(379), - [anon_sym_POUND] = ACTIONS(377), - [anon_sym_EQ] = ACTIONS(379), - [anon_sym_COMMA] = ACTIONS(377), - [anon_sym_ref] = ACTIONS(379), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(379), - [anon_sym_COLON_COLON] = ACTIONS(377), - [anon_sym__] = ACTIONS(379), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(377), - [sym_mutable_specifier] = ACTIONS(379), - [anon_sym_DOT_DOT] = ACTIONS(379), - [anon_sym_DOT_DOT_EQ] = ACTIONS(377), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_AMP_AMP] = ACTIONS(377), - [anon_sym_PIPE_PIPE] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(379), - [anon_sym_CARET] = ACTIONS(379), - [anon_sym_EQ_EQ] = ACTIONS(377), - [anon_sym_BANG_EQ] = ACTIONS(377), - [anon_sym_LT_EQ] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(377), - [anon_sym_LT_LT] = ACTIONS(379), - [anon_sym_GT_GT] = ACTIONS(379), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_PERCENT] = ACTIONS(379), - [anon_sym_PLUS_EQ] = ACTIONS(377), - [anon_sym_DASH_EQ] = ACTIONS(377), - [anon_sym_STAR_EQ] = ACTIONS(377), - [anon_sym_SLASH_EQ] = ACTIONS(377), - [anon_sym_PERCENT_EQ] = ACTIONS(377), - [anon_sym_AMP_EQ] = ACTIONS(377), - [anon_sym_PIPE_EQ] = ACTIONS(377), - [anon_sym_CARET_EQ] = ACTIONS(377), - [anon_sym_LT_LT_EQ] = ACTIONS(377), - [anon_sym_GT_GT_EQ] = ACTIONS(377), - [anon_sym_else] = ACTIONS(842), - [anon_sym_DOT] = ACTIONS(379), - [sym_integer_literal] = ACTIONS(377), - [aux_sym_string_literal_token1] = ACTIONS(377), - [sym_char_literal] = ACTIONS(377), - [anon_sym_true] = ACTIONS(379), - [anon_sym_false] = ACTIONS(379), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(379), - [sym_super] = ACTIONS(379), - [sym_crate] = ACTIONS(379), - [sym_metavariable] = ACTIONS(377), - [sym_raw_string_literal] = ACTIONS(377), - [sym_float_literal] = ACTIONS(377), - [sym_block_comment] = ACTIONS(3), - }, - [208] = { - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_as] = ACTIONS(393), - [anon_sym_const] = ACTIONS(393), - [anon_sym_POUND] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_COMMA] = ACTIONS(391), - [anon_sym_ref] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(391), - [anon_sym__] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [sym_mutable_specifier] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_else] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [sym_integer_literal] = ACTIONS(391), - [aux_sym_string_literal_token1] = ACTIONS(391), - [sym_char_literal] = ACTIONS(391), - [anon_sym_true] = ACTIONS(393), - [anon_sym_false] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(393), - [sym_super] = ACTIONS(393), - [sym_crate] = ACTIONS(393), - [sym_metavariable] = ACTIONS(391), - [sym_raw_string_literal] = ACTIONS(391), - [sym_float_literal] = ACTIONS(391), - [sym_block_comment] = ACTIONS(3), - }, - [209] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1750), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1749), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_type_binding] = STATE(2125), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [sym_block] = STATE(2125), - [sym__literal] = STATE(2125), - [sym_string_literal] = STATE(2100), - [sym_boolean_literal] = STATE(2100), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(854), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_raw_string_literal] = ACTIONS(860), - [sym_float_literal] = ACTIONS(860), - [sym_block_comment] = ACTIONS(3), - }, - [210] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1750), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1749), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_type_binding] = STATE(2125), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [sym_block] = STATE(2125), - [sym__literal] = STATE(2125), - [sym_string_literal] = STATE(2100), - [sym_boolean_literal] = STATE(2100), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(866), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_raw_string_literal] = ACTIONS(860), - [sym_float_literal] = ACTIONS(860), - [sym_block_comment] = ACTIONS(3), - }, - [211] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1750), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1749), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_type_binding] = STATE(2125), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [sym_block] = STATE(2125), - [sym__literal] = STATE(2125), - [sym_string_literal] = STATE(2100), - [sym_boolean_literal] = STATE(2100), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(868), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_raw_string_literal] = ACTIONS(860), - [sym_float_literal] = ACTIONS(860), - [sym_block_comment] = ACTIONS(3), - }, - [212] = { - [sym_identifier] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), - [anon_sym_u8] = ACTIONS(389), - [anon_sym_i8] = ACTIONS(389), - [anon_sym_u16] = ACTIONS(389), - [anon_sym_i16] = ACTIONS(389), - [anon_sym_u32] = ACTIONS(389), - [anon_sym_i32] = ACTIONS(389), - [anon_sym_u64] = ACTIONS(389), - [anon_sym_i64] = ACTIONS(389), - [anon_sym_u128] = ACTIONS(389), - [anon_sym_i128] = ACTIONS(389), - [anon_sym_isize] = ACTIONS(389), - [anon_sym_usize] = ACTIONS(389), - [anon_sym_f32] = ACTIONS(389), - [anon_sym_f64] = ACTIONS(389), - [anon_sym_bool] = ACTIONS(389), - [anon_sym_str] = ACTIONS(389), - [anon_sym_char] = ACTIONS(389), - [anon_sym_as] = ACTIONS(389), - [anon_sym_const] = ACTIONS(389), - [anon_sym_POUND] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_COMMA] = ACTIONS(387), - [anon_sym_ref] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_COLON_COLON] = ACTIONS(387), - [anon_sym__] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym_mutable_specifier] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_else] = ACTIONS(389), - [anon_sym_DOT] = ACTIONS(389), - [sym_integer_literal] = ACTIONS(387), - [aux_sym_string_literal_token1] = ACTIONS(387), - [sym_char_literal] = ACTIONS(387), - [anon_sym_true] = ACTIONS(389), - [anon_sym_false] = ACTIONS(389), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(389), - [sym_super] = ACTIONS(389), - [sym_crate] = ACTIONS(389), - [sym_metavariable] = ACTIONS(387), - [sym_raw_string_literal] = ACTIONS(387), - [sym_float_literal] = ACTIONS(387), - [sym_block_comment] = ACTIONS(3), - }, - [213] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1750), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1749), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_type_binding] = STATE(2125), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [sym_block] = STATE(2125), - [sym__literal] = STATE(2125), - [sym_string_literal] = STATE(2100), - [sym_boolean_literal] = STATE(2100), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(870), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_raw_string_literal] = ACTIONS(860), - [sym_float_literal] = ACTIONS(860), - [sym_block_comment] = ACTIONS(3), - }, - [214] = { - [sym_identifier] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(395), - [anon_sym_u8] = ACTIONS(397), - [anon_sym_i8] = ACTIONS(397), - [anon_sym_u16] = ACTIONS(397), - [anon_sym_i16] = ACTIONS(397), - [anon_sym_u32] = ACTIONS(397), - [anon_sym_i32] = ACTIONS(397), - [anon_sym_u64] = ACTIONS(397), - [anon_sym_i64] = ACTIONS(397), - [anon_sym_u128] = ACTIONS(397), - [anon_sym_i128] = ACTIONS(397), - [anon_sym_isize] = ACTIONS(397), - [anon_sym_usize] = ACTIONS(397), - [anon_sym_f32] = ACTIONS(397), - [anon_sym_f64] = ACTIONS(397), - [anon_sym_bool] = ACTIONS(397), - [anon_sym_str] = ACTIONS(397), - [anon_sym_char] = ACTIONS(397), - [anon_sym_as] = ACTIONS(397), - [anon_sym_const] = ACTIONS(397), - [anon_sym_POUND] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(395), - [anon_sym_ref] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym__] = ACTIONS(397), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [sym_mutable_specifier] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_else] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(397), - [sym_integer_literal] = ACTIONS(395), - [aux_sym_string_literal_token1] = ACTIONS(395), - [sym_char_literal] = ACTIONS(395), - [anon_sym_true] = ACTIONS(397), - [anon_sym_false] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_crate] = ACTIONS(397), - [sym_metavariable] = ACTIONS(395), - [sym_raw_string_literal] = ACTIONS(395), - [sym_float_literal] = ACTIONS(395), - [sym_block_comment] = ACTIONS(3), - }, - [215] = { - [sym_identifier] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_QMARK] = ACTIONS(582), - [anon_sym_u8] = ACTIONS(584), - [anon_sym_i8] = ACTIONS(584), - [anon_sym_u16] = ACTIONS(584), - [anon_sym_i16] = ACTIONS(584), - [anon_sym_u32] = ACTIONS(584), - [anon_sym_i32] = ACTIONS(584), - [anon_sym_u64] = ACTIONS(584), - [anon_sym_i64] = ACTIONS(584), - [anon_sym_u128] = ACTIONS(584), - [anon_sym_i128] = ACTIONS(584), - [anon_sym_isize] = ACTIONS(584), - [anon_sym_usize] = ACTIONS(584), - [anon_sym_f32] = ACTIONS(584), - [anon_sym_f64] = ACTIONS(584), - [anon_sym_bool] = ACTIONS(584), - [anon_sym_str] = ACTIONS(584), - [anon_sym_char] = ACTIONS(584), - [anon_sym_as] = ACTIONS(584), - [anon_sym_const] = ACTIONS(584), - [anon_sym_POUND] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_ref] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_COLON_COLON] = ACTIONS(582), - [anon_sym__] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(582), - [sym_mutable_specifier] = ACTIONS(584), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT_EQ] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(582), - [anon_sym_PIPE_PIPE] = ACTIONS(582), - [anon_sym_PIPE] = ACTIONS(584), - [anon_sym_CARET] = ACTIONS(584), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_LT_LT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_PLUS_EQ] = ACTIONS(582), - [anon_sym_DASH_EQ] = ACTIONS(582), - [anon_sym_STAR_EQ] = ACTIONS(582), - [anon_sym_SLASH_EQ] = ACTIONS(582), - [anon_sym_PERCENT_EQ] = ACTIONS(582), - [anon_sym_AMP_EQ] = ACTIONS(582), - [anon_sym_PIPE_EQ] = ACTIONS(582), - [anon_sym_CARET_EQ] = ACTIONS(582), - [anon_sym_LT_LT_EQ] = ACTIONS(582), - [anon_sym_GT_GT_EQ] = ACTIONS(582), - [anon_sym_DOT] = ACTIONS(584), - [sym_integer_literal] = ACTIONS(582), - [aux_sym_string_literal_token1] = ACTIONS(582), - [sym_char_literal] = ACTIONS(582), - [anon_sym_true] = ACTIONS(584), - [anon_sym_false] = ACTIONS(584), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(584), - [sym_super] = ACTIONS(584), - [sym_crate] = ACTIONS(584), - [sym_metavariable] = ACTIONS(582), - [sym_raw_string_literal] = ACTIONS(582), - [sym_float_literal] = ACTIONS(582), - [sym_block_comment] = ACTIONS(3), - }, - [216] = { - [sym__token_pattern] = STATE(216), - [sym_token_tree_pattern] = STATE(216), - [sym_token_binding_pattern] = STATE(216), - [sym_token_repetition_pattern] = STATE(216), - [sym__literal] = STATE(216), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(875), - [anon_sym_RPAREN] = ACTIONS(878), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_RBRACK] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(872), - [anon_sym_i8] = ACTIONS(872), - [anon_sym_u16] = ACTIONS(872), - [anon_sym_i16] = ACTIONS(872), - [anon_sym_u32] = ACTIONS(872), - [anon_sym_i32] = ACTIONS(872), - [anon_sym_u64] = ACTIONS(872), - [anon_sym_i64] = ACTIONS(872), - [anon_sym_u128] = ACTIONS(872), - [anon_sym_i128] = ACTIONS(872), - [anon_sym_isize] = ACTIONS(872), - [anon_sym_usize] = ACTIONS(872), - [anon_sym_f32] = ACTIONS(872), - [anon_sym_f64] = ACTIONS(872), - [anon_sym_bool] = ACTIONS(872), - [anon_sym_str] = ACTIONS(872), - [anon_sym_char] = ACTIONS(872), - [aux_sym__non_special_token_token1] = ACTIONS(872), - [anon_sym_SQUOTE] = ACTIONS(872), - [anon_sym_as] = ACTIONS(872), - [anon_sym_async] = ACTIONS(872), - [anon_sym_await] = ACTIONS(872), - [anon_sym_break] = ACTIONS(872), - [anon_sym_const] = ACTIONS(872), - [anon_sym_continue] = ACTIONS(872), - [anon_sym_default] = ACTIONS(872), - [anon_sym_enum] = ACTIONS(872), - [anon_sym_fn] = ACTIONS(872), - [anon_sym_for] = ACTIONS(872), - [anon_sym_if] = ACTIONS(872), - [anon_sym_impl] = ACTIONS(872), - [anon_sym_let] = ACTIONS(872), - [anon_sym_loop] = ACTIONS(872), - [anon_sym_match] = ACTIONS(872), - [anon_sym_mod] = ACTIONS(872), - [anon_sym_pub] = ACTIONS(872), - [anon_sym_return] = ACTIONS(872), - [anon_sym_static] = ACTIONS(872), - [anon_sym_struct] = ACTIONS(872), - [anon_sym_trait] = ACTIONS(872), - [anon_sym_type] = ACTIONS(872), - [anon_sym_union] = ACTIONS(872), - [anon_sym_unsafe] = ACTIONS(872), - [anon_sym_use] = ACTIONS(872), - [anon_sym_where] = ACTIONS(872), - [anon_sym_while] = ACTIONS(872), - [sym_mutable_specifier] = ACTIONS(872), - [sym_integer_literal] = ACTIONS(889), - [aux_sym_string_literal_token1] = ACTIONS(892), - [sym_char_literal] = ACTIONS(889), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(900), - [sym_raw_string_literal] = ACTIONS(889), - [sym_float_literal] = ACTIONS(889), - [sym_block_comment] = ACTIONS(3), - }, - [217] = { - [sym_identifier] = ACTIONS(429), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_RBRACE] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_QMARK] = ACTIONS(427), - [anon_sym_u8] = ACTIONS(429), - [anon_sym_i8] = ACTIONS(429), - [anon_sym_u16] = ACTIONS(429), - [anon_sym_i16] = ACTIONS(429), - [anon_sym_u32] = ACTIONS(429), - [anon_sym_i32] = ACTIONS(429), - [anon_sym_u64] = ACTIONS(429), - [anon_sym_i64] = ACTIONS(429), - [anon_sym_u128] = ACTIONS(429), - [anon_sym_i128] = ACTIONS(429), - [anon_sym_isize] = ACTIONS(429), - [anon_sym_usize] = ACTIONS(429), - [anon_sym_f32] = ACTIONS(429), - [anon_sym_f64] = ACTIONS(429), - [anon_sym_bool] = ACTIONS(429), - [anon_sym_str] = ACTIONS(429), - [anon_sym_char] = ACTIONS(429), - [anon_sym_as] = ACTIONS(429), - [anon_sym_const] = ACTIONS(429), - [anon_sym_POUND] = ACTIONS(427), - [anon_sym_EQ] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(427), - [anon_sym_ref] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_COLON_COLON] = ACTIONS(427), - [anon_sym__] = ACTIONS(429), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(427), - [sym_mutable_specifier] = ACTIONS(429), - [anon_sym_DOT_DOT] = ACTIONS(429), - [anon_sym_DOT_DOT_EQ] = ACTIONS(427), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_AMP_AMP] = ACTIONS(427), - [anon_sym_PIPE_PIPE] = ACTIONS(427), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(429), - [anon_sym_EQ_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_LT_EQ] = ACTIONS(427), - [anon_sym_GT_EQ] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_SLASH] = ACTIONS(429), - [anon_sym_PERCENT] = ACTIONS(429), - [anon_sym_PLUS_EQ] = ACTIONS(427), - [anon_sym_DASH_EQ] = ACTIONS(427), - [anon_sym_STAR_EQ] = ACTIONS(427), - [anon_sym_SLASH_EQ] = ACTIONS(427), - [anon_sym_PERCENT_EQ] = ACTIONS(427), - [anon_sym_AMP_EQ] = ACTIONS(427), - [anon_sym_PIPE_EQ] = ACTIONS(427), - [anon_sym_CARET_EQ] = ACTIONS(427), - [anon_sym_LT_LT_EQ] = ACTIONS(427), - [anon_sym_GT_GT_EQ] = ACTIONS(427), - [anon_sym_DOT] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [aux_sym_string_literal_token1] = ACTIONS(427), - [sym_char_literal] = ACTIONS(427), - [anon_sym_true] = ACTIONS(429), - [anon_sym_false] = ACTIONS(429), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_crate] = ACTIONS(429), - [sym_metavariable] = ACTIONS(427), - [sym_raw_string_literal] = ACTIONS(427), - [sym_float_literal] = ACTIONS(427), - [sym_block_comment] = ACTIONS(3), - }, - [218] = { - [sym_empty_statement] = STATE(226), - [sym_macro_definition] = STATE(226), - [sym_attribute_item] = STATE(226), - [sym_inner_attribute_item] = STATE(226), - [sym_mod_item] = STATE(226), - [sym_foreign_mod_item] = STATE(226), - [sym_struct_item] = STATE(226), - [sym_union_item] = STATE(226), - [sym_enum_item] = STATE(226), - [sym_extern_crate_declaration] = STATE(226), - [sym_const_item] = STATE(226), - [sym_static_item] = STATE(226), - [sym_type_item] = STATE(226), - [sym_function_item] = STATE(226), - [sym_function_signature_item] = STATE(226), - [sym_function_modifiers] = STATE(2399), - [sym_impl_item] = STATE(226), - [sym_trait_item] = STATE(226), - [sym_associated_type] = STATE(226), - [sym_let_declaration] = STATE(226), - [sym_use_declaration] = STATE(226), - [sym_extern_modifier] = STATE(1436), - [sym_visibility_modifier] = STATE(1261), - [sym_bracketed_type] = STATE(2237), - [sym_generic_type_with_turbofish] = STATE(2403), - [sym_macro_invocation] = STATE(226), - [sym_scoped_identifier] = STATE(2024), - [aux_sym_declaration_list_repeat1] = STATE(226), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_macro_rules_BANG] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(909), - [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_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(913), - [anon_sym_default] = ACTIONS(670), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_fn] = ACTIONS(917), - [anon_sym_impl] = ACTIONS(919), - [anon_sym_let] = ACTIONS(921), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(925), - [anon_sym_struct] = ACTIONS(927), - [anon_sym_trait] = ACTIONS(929), - [anon_sym_type] = ACTIONS(931), - [anon_sym_union] = ACTIONS(933), - [anon_sym_unsafe] = ACTIONS(935), - [anon_sym_use] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_extern] = ACTIONS(941), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(943), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(945), - [sym_super] = ACTIONS(945), - [sym_crate] = ACTIONS(947), - [sym_metavariable] = ACTIONS(949), - [sym_block_comment] = ACTIONS(3), - }, - [219] = { - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RBRACE] = ACTIONS(403), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_PLUS] = ACTIONS(405), - [anon_sym_STAR] = ACTIONS(405), - [anon_sym_QMARK] = ACTIONS(403), - [anon_sym_u8] = ACTIONS(405), - [anon_sym_i8] = ACTIONS(405), - [anon_sym_u16] = ACTIONS(405), - [anon_sym_i16] = ACTIONS(405), - [anon_sym_u32] = ACTIONS(405), - [anon_sym_i32] = ACTIONS(405), - [anon_sym_u64] = ACTIONS(405), - [anon_sym_i64] = ACTIONS(405), - [anon_sym_u128] = ACTIONS(405), - [anon_sym_i128] = ACTIONS(405), - [anon_sym_isize] = ACTIONS(405), - [anon_sym_usize] = ACTIONS(405), - [anon_sym_f32] = ACTIONS(405), - [anon_sym_f64] = ACTIONS(405), - [anon_sym_bool] = ACTIONS(405), - [anon_sym_str] = ACTIONS(405), - [anon_sym_char] = ACTIONS(405), - [anon_sym_as] = ACTIONS(405), - [anon_sym_const] = ACTIONS(405), - [anon_sym_POUND] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(405), - [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_ref] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(405), - [anon_sym_GT] = ACTIONS(405), - [anon_sym_COLON_COLON] = ACTIONS(403), - [anon_sym__] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(403), - [sym_mutable_specifier] = ACTIONS(405), - [anon_sym_DOT_DOT] = ACTIONS(405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(403), - [anon_sym_DASH] = ACTIONS(405), - [anon_sym_AMP_AMP] = ACTIONS(403), - [anon_sym_PIPE_PIPE] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(405), - [anon_sym_CARET] = ACTIONS(405), - [anon_sym_EQ_EQ] = ACTIONS(403), - [anon_sym_BANG_EQ] = ACTIONS(403), - [anon_sym_LT_EQ] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(403), - [anon_sym_LT_LT] = ACTIONS(405), - [anon_sym_GT_GT] = ACTIONS(405), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_PERCENT] = ACTIONS(405), - [anon_sym_PLUS_EQ] = ACTIONS(403), - [anon_sym_DASH_EQ] = ACTIONS(403), - [anon_sym_STAR_EQ] = ACTIONS(403), - [anon_sym_SLASH_EQ] = ACTIONS(403), - [anon_sym_PERCENT_EQ] = ACTIONS(403), - [anon_sym_AMP_EQ] = ACTIONS(403), - [anon_sym_PIPE_EQ] = ACTIONS(403), - [anon_sym_CARET_EQ] = ACTIONS(403), - [anon_sym_LT_LT_EQ] = ACTIONS(403), - [anon_sym_GT_GT_EQ] = ACTIONS(403), - [anon_sym_DOT] = ACTIONS(405), - [sym_integer_literal] = ACTIONS(403), - [aux_sym_string_literal_token1] = ACTIONS(403), - [sym_char_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(405), - [sym_super] = ACTIONS(405), - [sym_crate] = ACTIONS(405), - [sym_metavariable] = ACTIONS(403), - [sym_raw_string_literal] = ACTIONS(403), - [sym_float_literal] = ACTIONS(403), - [sym_block_comment] = ACTIONS(3), - }, - [220] = { - [sym_identifier] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(562), - [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(562), - [anon_sym_u8] = ACTIONS(564), - [anon_sym_i8] = ACTIONS(564), - [anon_sym_u16] = ACTIONS(564), - [anon_sym_i16] = ACTIONS(564), - [anon_sym_u32] = ACTIONS(564), - [anon_sym_i32] = ACTIONS(564), - [anon_sym_u64] = ACTIONS(564), - [anon_sym_i64] = ACTIONS(564), - [anon_sym_u128] = ACTIONS(564), - [anon_sym_i128] = ACTIONS(564), - [anon_sym_isize] = ACTIONS(564), - [anon_sym_usize] = ACTIONS(564), - [anon_sym_f32] = ACTIONS(564), - [anon_sym_f64] = ACTIONS(564), - [anon_sym_bool] = ACTIONS(564), - [anon_sym_str] = ACTIONS(564), - [anon_sym_char] = ACTIONS(564), - [anon_sym_as] = ACTIONS(564), - [anon_sym_const] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(562), - [anon_sym_ref] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_COLON_COLON] = ACTIONS(562), - [anon_sym__] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(562), - [sym_mutable_specifier] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_EQ] = ACTIONS(562), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(562), - [anon_sym_PIPE_PIPE] = ACTIONS(562), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(562), - [anon_sym_BANG_EQ] = ACTIONS(562), - [anon_sym_LT_EQ] = ACTIONS(562), - [anon_sym_GT_EQ] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(562), - [anon_sym_DASH_EQ] = ACTIONS(562), - [anon_sym_STAR_EQ] = ACTIONS(562), - [anon_sym_SLASH_EQ] = ACTIONS(562), - [anon_sym_PERCENT_EQ] = ACTIONS(562), - [anon_sym_AMP_EQ] = ACTIONS(562), - [anon_sym_PIPE_EQ] = ACTIONS(562), - [anon_sym_CARET_EQ] = ACTIONS(562), - [anon_sym_LT_LT_EQ] = ACTIONS(562), - [anon_sym_GT_GT_EQ] = ACTIONS(562), - [anon_sym_DOT] = ACTIONS(564), - [sym_integer_literal] = ACTIONS(562), - [aux_sym_string_literal_token1] = ACTIONS(562), - [sym_char_literal] = ACTIONS(562), - [anon_sym_true] = ACTIONS(564), - [anon_sym_false] = ACTIONS(564), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(564), - [sym_super] = ACTIONS(564), - [sym_crate] = ACTIONS(564), - [sym_metavariable] = ACTIONS(562), - [sym_raw_string_literal] = ACTIONS(562), - [sym_float_literal] = ACTIONS(562), - [sym_block_comment] = ACTIONS(3), - }, - [221] = { - [sym_identifier] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(574), - [anon_sym_RBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_u8] = ACTIONS(576), - [anon_sym_i8] = ACTIONS(576), - [anon_sym_u16] = ACTIONS(576), - [anon_sym_i16] = ACTIONS(576), - [anon_sym_u32] = ACTIONS(576), - [anon_sym_i32] = ACTIONS(576), - [anon_sym_u64] = ACTIONS(576), - [anon_sym_i64] = ACTIONS(576), - [anon_sym_u128] = ACTIONS(576), - [anon_sym_i128] = ACTIONS(576), - [anon_sym_isize] = ACTIONS(576), - [anon_sym_usize] = ACTIONS(576), - [anon_sym_f32] = ACTIONS(576), - [anon_sym_f64] = ACTIONS(576), - [anon_sym_bool] = ACTIONS(576), - [anon_sym_str] = ACTIONS(576), - [anon_sym_char] = ACTIONS(576), - [anon_sym_as] = ACTIONS(576), - [anon_sym_const] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(574), - [anon_sym_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(574), - [anon_sym_ref] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(574), - [anon_sym__] = ACTIONS(576), - [anon_sym_AMP] = ACTIONS(576), - [anon_sym_DOT_DOT_DOT] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(576), - [anon_sym_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(574), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_EQ_EQ] = ACTIONS(574), - [anon_sym_BANG_EQ] = ACTIONS(574), - [anon_sym_LT_EQ] = ACTIONS(574), - [anon_sym_GT_EQ] = ACTIONS(574), - [anon_sym_LT_LT] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(576), - [anon_sym_SLASH] = ACTIONS(576), - [anon_sym_PERCENT] = ACTIONS(576), - [anon_sym_PLUS_EQ] = ACTIONS(574), - [anon_sym_DASH_EQ] = ACTIONS(574), - [anon_sym_STAR_EQ] = ACTIONS(574), - [anon_sym_SLASH_EQ] = ACTIONS(574), - [anon_sym_PERCENT_EQ] = ACTIONS(574), - [anon_sym_AMP_EQ] = ACTIONS(574), - [anon_sym_PIPE_EQ] = ACTIONS(574), - [anon_sym_CARET_EQ] = ACTIONS(574), - [anon_sym_LT_LT_EQ] = ACTIONS(574), - [anon_sym_GT_GT_EQ] = ACTIONS(574), - [anon_sym_DOT] = ACTIONS(576), - [sym_integer_literal] = ACTIONS(574), - [aux_sym_string_literal_token1] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [anon_sym_true] = ACTIONS(576), - [anon_sym_false] = ACTIONS(576), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(576), - [sym_super] = ACTIONS(576), - [sym_crate] = ACTIONS(576), - [sym_metavariable] = ACTIONS(574), - [sym_raw_string_literal] = ACTIONS(574), - [sym_float_literal] = ACTIONS(574), - [sym_block_comment] = ACTIONS(3), - }, - [222] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1726), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1722), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_type_binding] = STATE(1843), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [sym_block] = STATE(1843), - [sym__literal] = STATE(1843), - [sym_string_literal] = STATE(2100), - [sym_boolean_literal] = STATE(2100), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_raw_string_literal] = ACTIONS(860), - [sym_float_literal] = ACTIONS(860), - [sym_block_comment] = ACTIONS(3), - }, - [223] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1750), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1749), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_type_binding] = STATE(2125), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [sym_block] = STATE(2125), - [sym__literal] = STATE(2125), - [sym_string_literal] = STATE(2100), - [sym_boolean_literal] = STATE(2100), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_raw_string_literal] = ACTIONS(860), - [sym_float_literal] = ACTIONS(860), - [sym_block_comment] = ACTIONS(3), - }, - [224] = { - [sym_identifier] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(419), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(421), - [anon_sym_STAR] = ACTIONS(421), - [anon_sym_QMARK] = ACTIONS(419), - [anon_sym_u8] = ACTIONS(421), - [anon_sym_i8] = ACTIONS(421), - [anon_sym_u16] = ACTIONS(421), - [anon_sym_i16] = ACTIONS(421), - [anon_sym_u32] = ACTIONS(421), - [anon_sym_i32] = ACTIONS(421), - [anon_sym_u64] = ACTIONS(421), - [anon_sym_i64] = ACTIONS(421), - [anon_sym_u128] = ACTIONS(421), - [anon_sym_i128] = ACTIONS(421), - [anon_sym_isize] = ACTIONS(421), - [anon_sym_usize] = ACTIONS(421), - [anon_sym_f32] = ACTIONS(421), - [anon_sym_f64] = ACTIONS(421), - [anon_sym_bool] = ACTIONS(421), - [anon_sym_str] = ACTIONS(421), - [anon_sym_char] = ACTIONS(421), - [anon_sym_as] = ACTIONS(421), - [anon_sym_const] = ACTIONS(421), - [anon_sym_POUND] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(419), - [anon_sym_ref] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(421), - [anon_sym_GT] = ACTIONS(421), - [anon_sym_COLON_COLON] = ACTIONS(419), - [anon_sym__] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [sym_mutable_specifier] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(421), - [anon_sym_DOT_DOT_EQ] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(421), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(421), - [anon_sym_CARET] = ACTIONS(421), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(421), - [anon_sym_GT_GT] = ACTIONS(421), - [anon_sym_SLASH] = ACTIONS(421), - [anon_sym_PERCENT] = ACTIONS(421), - [anon_sym_PLUS_EQ] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), - [anon_sym_STAR_EQ] = ACTIONS(419), - [anon_sym_SLASH_EQ] = ACTIONS(419), - [anon_sym_PERCENT_EQ] = ACTIONS(419), - [anon_sym_AMP_EQ] = ACTIONS(419), - [anon_sym_PIPE_EQ] = ACTIONS(419), - [anon_sym_CARET_EQ] = ACTIONS(419), - [anon_sym_LT_LT_EQ] = ACTIONS(419), - [anon_sym_GT_GT_EQ] = ACTIONS(419), - [anon_sym_DOT] = ACTIONS(421), - [sym_integer_literal] = ACTIONS(419), - [aux_sym_string_literal_token1] = ACTIONS(419), - [sym_char_literal] = ACTIONS(419), - [anon_sym_true] = ACTIONS(421), - [anon_sym_false] = ACTIONS(421), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(421), - [sym_super] = ACTIONS(421), - [sym_crate] = ACTIONS(421), - [sym_metavariable] = ACTIONS(419), - [sym_raw_string_literal] = ACTIONS(419), - [sym_float_literal] = ACTIONS(419), - [sym_block_comment] = ACTIONS(3), - }, - [225] = { - [sym_identifier] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_RBRACE] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_PLUS] = ACTIONS(598), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(596), - [anon_sym_u8] = ACTIONS(598), - [anon_sym_i8] = ACTIONS(598), - [anon_sym_u16] = ACTIONS(598), - [anon_sym_i16] = ACTIONS(598), - [anon_sym_u32] = ACTIONS(598), - [anon_sym_i32] = ACTIONS(598), - [anon_sym_u64] = ACTIONS(598), - [anon_sym_i64] = ACTIONS(598), - [anon_sym_u128] = ACTIONS(598), - [anon_sym_i128] = ACTIONS(598), - [anon_sym_isize] = ACTIONS(598), - [anon_sym_usize] = ACTIONS(598), - [anon_sym_f32] = ACTIONS(598), - [anon_sym_f64] = ACTIONS(598), - [anon_sym_bool] = ACTIONS(598), - [anon_sym_str] = ACTIONS(598), - [anon_sym_char] = ACTIONS(598), - [anon_sym_as] = ACTIONS(598), - [anon_sym_const] = ACTIONS(598), - [anon_sym_POUND] = ACTIONS(596), - [anon_sym_EQ] = ACTIONS(598), - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_ref] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(598), - [anon_sym_COLON_COLON] = ACTIONS(596), - [anon_sym__] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(596), - [sym_mutable_specifier] = ACTIONS(598), - [anon_sym_DOT_DOT] = ACTIONS(598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(598), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_CARET] = ACTIONS(598), - [anon_sym_EQ_EQ] = ACTIONS(596), - [anon_sym_BANG_EQ] = ACTIONS(596), - [anon_sym_LT_EQ] = ACTIONS(596), - [anon_sym_GT_EQ] = ACTIONS(596), - [anon_sym_LT_LT] = ACTIONS(598), - [anon_sym_GT_GT] = ACTIONS(598), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_PERCENT] = ACTIONS(598), - [anon_sym_PLUS_EQ] = ACTIONS(596), - [anon_sym_DASH_EQ] = ACTIONS(596), - [anon_sym_STAR_EQ] = ACTIONS(596), - [anon_sym_SLASH_EQ] = ACTIONS(596), - [anon_sym_PERCENT_EQ] = ACTIONS(596), - [anon_sym_AMP_EQ] = ACTIONS(596), - [anon_sym_PIPE_EQ] = ACTIONS(596), - [anon_sym_CARET_EQ] = ACTIONS(596), - [anon_sym_LT_LT_EQ] = ACTIONS(596), - [anon_sym_GT_GT_EQ] = ACTIONS(596), - [anon_sym_DOT] = ACTIONS(598), - [sym_integer_literal] = ACTIONS(596), - [aux_sym_string_literal_token1] = ACTIONS(596), - [sym_char_literal] = ACTIONS(596), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(598), - [sym_super] = ACTIONS(598), - [sym_crate] = ACTIONS(598), - [sym_metavariable] = ACTIONS(596), - [sym_raw_string_literal] = ACTIONS(596), - [sym_float_literal] = ACTIONS(596), - [sym_block_comment] = ACTIONS(3), - }, - [226] = { - [sym_empty_statement] = STATE(226), - [sym_macro_definition] = STATE(226), - [sym_attribute_item] = STATE(226), - [sym_inner_attribute_item] = STATE(226), - [sym_mod_item] = STATE(226), - [sym_foreign_mod_item] = STATE(226), - [sym_struct_item] = STATE(226), - [sym_union_item] = STATE(226), - [sym_enum_item] = STATE(226), - [sym_extern_crate_declaration] = STATE(226), - [sym_const_item] = STATE(226), - [sym_static_item] = STATE(226), - [sym_type_item] = STATE(226), - [sym_function_item] = STATE(226), - [sym_function_signature_item] = STATE(226), - [sym_function_modifiers] = STATE(2399), - [sym_impl_item] = STATE(226), - [sym_trait_item] = STATE(226), - [sym_associated_type] = STATE(226), - [sym_let_declaration] = STATE(226), - [sym_use_declaration] = STATE(226), - [sym_extern_modifier] = STATE(1436), - [sym_visibility_modifier] = STATE(1261), - [sym_bracketed_type] = STATE(2237), - [sym_generic_type_with_turbofish] = STATE(2403), - [sym_macro_invocation] = STATE(226), - [sym_scoped_identifier] = STATE(2024), - [aux_sym_declaration_list_repeat1] = STATE(226), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_macro_rules_BANG] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_u8] = ACTIONS(962), - [anon_sym_i8] = ACTIONS(962), - [anon_sym_u16] = ACTIONS(962), - [anon_sym_i16] = ACTIONS(962), - [anon_sym_u32] = ACTIONS(962), - [anon_sym_i32] = ACTIONS(962), - [anon_sym_u64] = ACTIONS(962), - [anon_sym_i64] = ACTIONS(962), - [anon_sym_u128] = ACTIONS(962), - [anon_sym_i128] = ACTIONS(962), - [anon_sym_isize] = ACTIONS(962), - [anon_sym_usize] = ACTIONS(962), - [anon_sym_f32] = ACTIONS(962), - [anon_sym_f64] = ACTIONS(962), - [anon_sym_bool] = ACTIONS(962), - [anon_sym_str] = ACTIONS(962), - [anon_sym_char] = ACTIONS(962), - [anon_sym_async] = ACTIONS(965), - [anon_sym_const] = ACTIONS(968), - [anon_sym_default] = ACTIONS(965), - [anon_sym_enum] = ACTIONS(971), - [anon_sym_fn] = ACTIONS(974), - [anon_sym_impl] = ACTIONS(977), - [anon_sym_let] = ACTIONS(980), - [anon_sym_mod] = ACTIONS(983), - [anon_sym_pub] = ACTIONS(986), - [anon_sym_static] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_trait] = ACTIONS(995), - [anon_sym_type] = ACTIONS(998), - [anon_sym_union] = ACTIONS(1001), - [anon_sym_unsafe] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1007), - [anon_sym_POUND] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1013), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_COLON_COLON] = ACTIONS(1019), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1022), - [sym_super] = ACTIONS(1022), - [sym_crate] = ACTIONS(1025), - [sym_metavariable] = ACTIONS(1028), - [sym_block_comment] = ACTIONS(3), - }, - [227] = { - [sym_identifier] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_RBRACE] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_QMARK] = ACTIONS(445), - [anon_sym_u8] = ACTIONS(447), - [anon_sym_i8] = ACTIONS(447), - [anon_sym_u16] = ACTIONS(447), - [anon_sym_i16] = ACTIONS(447), - [anon_sym_u32] = ACTIONS(447), - [anon_sym_i32] = ACTIONS(447), - [anon_sym_u64] = ACTIONS(447), - [anon_sym_i64] = ACTIONS(447), - [anon_sym_u128] = ACTIONS(447), - [anon_sym_i128] = ACTIONS(447), - [anon_sym_isize] = ACTIONS(447), - [anon_sym_usize] = ACTIONS(447), - [anon_sym_f32] = ACTIONS(447), - [anon_sym_f64] = ACTIONS(447), - [anon_sym_bool] = ACTIONS(447), - [anon_sym_str] = ACTIONS(447), - [anon_sym_char] = ACTIONS(447), - [anon_sym_as] = ACTIONS(447), - [anon_sym_const] = ACTIONS(447), - [anon_sym_POUND] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(447), - [anon_sym_COMMA] = ACTIONS(445), - [anon_sym_ref] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(447), - [anon_sym_GT] = ACTIONS(447), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym__] = ACTIONS(447), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(445), - [sym_mutable_specifier] = ACTIONS(447), - [anon_sym_DOT_DOT] = ACTIONS(447), - [anon_sym_DOT_DOT_EQ] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(447), - [anon_sym_AMP_AMP] = ACTIONS(445), - [anon_sym_PIPE_PIPE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(447), - [anon_sym_CARET] = ACTIONS(447), - [anon_sym_EQ_EQ] = ACTIONS(445), - [anon_sym_BANG_EQ] = ACTIONS(445), - [anon_sym_LT_EQ] = ACTIONS(445), - [anon_sym_GT_EQ] = ACTIONS(445), - [anon_sym_LT_LT] = ACTIONS(447), - [anon_sym_GT_GT] = ACTIONS(447), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_PERCENT] = ACTIONS(447), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(447), - [sym_integer_literal] = ACTIONS(445), - [aux_sym_string_literal_token1] = ACTIONS(445), - [sym_char_literal] = ACTIONS(445), - [anon_sym_true] = ACTIONS(447), - [anon_sym_false] = ACTIONS(447), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(447), - [sym_super] = ACTIONS(447), - [sym_crate] = ACTIONS(447), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(445), - [sym_float_literal] = ACTIONS(445), - [sym_block_comment] = ACTIONS(3), - }, - [228] = { - [sym_empty_statement] = STATE(218), - [sym_macro_definition] = STATE(218), - [sym_attribute_item] = STATE(218), - [sym_inner_attribute_item] = STATE(218), - [sym_mod_item] = STATE(218), - [sym_foreign_mod_item] = STATE(218), - [sym_struct_item] = STATE(218), - [sym_union_item] = STATE(218), - [sym_enum_item] = STATE(218), - [sym_extern_crate_declaration] = STATE(218), - [sym_const_item] = STATE(218), - [sym_static_item] = STATE(218), - [sym_type_item] = STATE(218), - [sym_function_item] = STATE(218), - [sym_function_signature_item] = STATE(218), - [sym_function_modifiers] = STATE(2399), - [sym_impl_item] = STATE(218), - [sym_trait_item] = STATE(218), - [sym_associated_type] = STATE(218), - [sym_let_declaration] = STATE(218), - [sym_use_declaration] = STATE(218), - [sym_extern_modifier] = STATE(1436), - [sym_visibility_modifier] = STATE(1261), - [sym_bracketed_type] = STATE(2237), - [sym_generic_type_with_turbofish] = STATE(2403), - [sym_macro_invocation] = STATE(218), - [sym_scoped_identifier] = STATE(2024), - [aux_sym_declaration_list_repeat1] = STATE(218), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_macro_rules_BANG] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(1031), - [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_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(913), - [anon_sym_default] = ACTIONS(670), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_fn] = ACTIONS(917), - [anon_sym_impl] = ACTIONS(919), - [anon_sym_let] = ACTIONS(921), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(925), - [anon_sym_struct] = ACTIONS(927), - [anon_sym_trait] = ACTIONS(929), - [anon_sym_type] = ACTIONS(931), - [anon_sym_union] = ACTIONS(933), - [anon_sym_unsafe] = ACTIONS(935), - [anon_sym_use] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_extern] = ACTIONS(941), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(943), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(945), - [sym_super] = ACTIONS(945), - [sym_crate] = ACTIONS(947), - [sym_metavariable] = ACTIONS(949), - [sym_block_comment] = ACTIONS(3), - }, - [229] = { - [sym_identifier] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_RBRACE] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(594), - [anon_sym_i8] = ACTIONS(594), - [anon_sym_u16] = ACTIONS(594), - [anon_sym_i16] = ACTIONS(594), - [anon_sym_u32] = ACTIONS(594), - [anon_sym_i32] = ACTIONS(594), - [anon_sym_u64] = ACTIONS(594), - [anon_sym_i64] = ACTIONS(594), - [anon_sym_u128] = ACTIONS(594), - [anon_sym_i128] = ACTIONS(594), - [anon_sym_isize] = ACTIONS(594), - [anon_sym_usize] = ACTIONS(594), - [anon_sym_f32] = ACTIONS(594), - [anon_sym_f64] = ACTIONS(594), - [anon_sym_bool] = ACTIONS(594), - [anon_sym_str] = ACTIONS(594), - [anon_sym_char] = ACTIONS(594), - [anon_sym_as] = ACTIONS(594), - [anon_sym_const] = ACTIONS(594), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_ref] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(594), - [anon_sym_GT] = ACTIONS(594), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym__] = ACTIONS(594), - [anon_sym_AMP] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [sym_mutable_specifier] = ACTIONS(594), - [anon_sym_DOT_DOT] = ACTIONS(594), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(594), - [anon_sym_CARET] = ACTIONS(594), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(594), - [anon_sym_GT_GT] = ACTIONS(594), - [anon_sym_SLASH] = ACTIONS(594), - [anon_sym_PERCENT] = ACTIONS(594), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(594), - [sym_integer_literal] = ACTIONS(592), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(592), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(594), - [sym_super] = ACTIONS(594), - [sym_crate] = ACTIONS(594), - [sym_metavariable] = ACTIONS(592), - [sym_raw_string_literal] = ACTIONS(592), - [sym_float_literal] = ACTIONS(592), - [sym_block_comment] = ACTIONS(3), - }, - [230] = { - [sym_identifier] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_QMARK] = ACTIONS(399), - [anon_sym_u8] = ACTIONS(401), - [anon_sym_i8] = ACTIONS(401), - [anon_sym_u16] = ACTIONS(401), - [anon_sym_i16] = ACTIONS(401), - [anon_sym_u32] = ACTIONS(401), - [anon_sym_i32] = ACTIONS(401), - [anon_sym_u64] = ACTIONS(401), - [anon_sym_i64] = ACTIONS(401), - [anon_sym_u128] = ACTIONS(401), - [anon_sym_i128] = ACTIONS(401), - [anon_sym_isize] = ACTIONS(401), - [anon_sym_usize] = ACTIONS(401), - [anon_sym_f32] = ACTIONS(401), - [anon_sym_f64] = ACTIONS(401), - [anon_sym_bool] = ACTIONS(401), - [anon_sym_str] = ACTIONS(401), - [anon_sym_char] = ACTIONS(401), - [anon_sym_as] = ACTIONS(401), - [anon_sym_const] = ACTIONS(401), - [anon_sym_POUND] = ACTIONS(399), - [anon_sym_EQ] = ACTIONS(401), - [anon_sym_COMMA] = ACTIONS(399), - [anon_sym_ref] = ACTIONS(401), - [anon_sym_LT] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(399), - [anon_sym__] = ACTIONS(401), - [anon_sym_AMP] = ACTIONS(401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(399), - [sym_mutable_specifier] = ACTIONS(401), - [anon_sym_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_AMP_AMP] = ACTIONS(399), - [anon_sym_PIPE_PIPE] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_EQ_EQ] = ACTIONS(399), - [anon_sym_BANG_EQ] = ACTIONS(399), - [anon_sym_LT_EQ] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(399), - [anon_sym_LT_LT] = ACTIONS(401), - [anon_sym_GT_GT] = ACTIONS(401), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_PLUS_EQ] = ACTIONS(399), - [anon_sym_DASH_EQ] = ACTIONS(399), - [anon_sym_STAR_EQ] = ACTIONS(399), - [anon_sym_SLASH_EQ] = ACTIONS(399), - [anon_sym_PERCENT_EQ] = ACTIONS(399), - [anon_sym_AMP_EQ] = ACTIONS(399), - [anon_sym_PIPE_EQ] = ACTIONS(399), - [anon_sym_CARET_EQ] = ACTIONS(399), - [anon_sym_LT_LT_EQ] = ACTIONS(399), - [anon_sym_GT_GT_EQ] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(399), - [aux_sym_string_literal_token1] = ACTIONS(399), - [sym_char_literal] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(401), - [sym_super] = ACTIONS(401), - [sym_crate] = ACTIONS(401), - [sym_metavariable] = ACTIONS(399), - [sym_raw_string_literal] = ACTIONS(399), - [sym_float_literal] = ACTIONS(399), - [sym_block_comment] = ACTIONS(3), - }, - [231] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1670), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1668), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_type_binding] = STATE(1957), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [sym_block] = STATE(1957), - [sym__literal] = STATE(1957), - [sym_string_literal] = STATE(2100), - [sym_boolean_literal] = STATE(2100), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(668), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_raw_string_literal] = ACTIONS(860), - [sym_float_literal] = ACTIONS(860), - [sym_block_comment] = ACTIONS(3), - }, - [232] = { - [sym_identifier] = ACTIONS(572), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_u8] = ACTIONS(572), - [anon_sym_i8] = ACTIONS(572), - [anon_sym_u16] = ACTIONS(572), - [anon_sym_i16] = ACTIONS(572), - [anon_sym_u32] = ACTIONS(572), - [anon_sym_i32] = ACTIONS(572), - [anon_sym_u64] = ACTIONS(572), - [anon_sym_i64] = ACTIONS(572), - [anon_sym_u128] = ACTIONS(572), - [anon_sym_i128] = ACTIONS(572), - [anon_sym_isize] = ACTIONS(572), - [anon_sym_usize] = ACTIONS(572), - [anon_sym_f32] = ACTIONS(572), - [anon_sym_f64] = ACTIONS(572), - [anon_sym_bool] = ACTIONS(572), - [anon_sym_str] = ACTIONS(572), - [anon_sym_char] = ACTIONS(572), - [anon_sym_as] = ACTIONS(572), - [anon_sym_const] = ACTIONS(572), - [anon_sym_POUND] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(572), - [anon_sym_COMMA] = ACTIONS(570), - [anon_sym_ref] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_COLON_COLON] = ACTIONS(570), - [anon_sym__] = ACTIONS(572), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(570), - [sym_mutable_specifier] = ACTIONS(572), - [anon_sym_DOT_DOT] = ACTIONS(572), - [anon_sym_DOT_DOT_EQ] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_AMP_AMP] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_CARET] = ACTIONS(572), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_LT_LT] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(572), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_DOT] = ACTIONS(572), - [sym_integer_literal] = ACTIONS(570), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(570), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(572), - [sym_super] = ACTIONS(572), - [sym_crate] = ACTIONS(572), - [sym_metavariable] = ACTIONS(570), - [sym_raw_string_literal] = ACTIONS(570), - [sym_float_literal] = ACTIONS(570), - [sym_block_comment] = ACTIONS(3), - }, - [233] = { - [sym_identifier] = ACTIONS(433), - [anon_sym_LPAREN] = ACTIONS(431), - [anon_sym_RBRACE] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(431), - [anon_sym_u8] = ACTIONS(433), - [anon_sym_i8] = ACTIONS(433), - [anon_sym_u16] = ACTIONS(433), - [anon_sym_i16] = ACTIONS(433), - [anon_sym_u32] = ACTIONS(433), - [anon_sym_i32] = ACTIONS(433), - [anon_sym_u64] = ACTIONS(433), - [anon_sym_i64] = ACTIONS(433), - [anon_sym_u128] = ACTIONS(433), - [anon_sym_i128] = ACTIONS(433), - [anon_sym_isize] = ACTIONS(433), - [anon_sym_usize] = ACTIONS(433), - [anon_sym_f32] = ACTIONS(433), - [anon_sym_f64] = ACTIONS(433), - [anon_sym_bool] = ACTIONS(433), - [anon_sym_str] = ACTIONS(433), - [anon_sym_char] = ACTIONS(433), - [anon_sym_as] = ACTIONS(433), - [anon_sym_const] = ACTIONS(433), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_EQ] = ACTIONS(433), - [anon_sym_COMMA] = ACTIONS(431), - [anon_sym_ref] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_COLON_COLON] = ACTIONS(431), - [anon_sym__] = ACTIONS(433), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_mutable_specifier] = ACTIONS(433), - [anon_sym_DOT_DOT] = ACTIONS(433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(431), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(431), - [anon_sym_PIPE_PIPE] = ACTIONS(431), - [anon_sym_PIPE] = ACTIONS(433), - [anon_sym_CARET] = ACTIONS(433), - [anon_sym_EQ_EQ] = ACTIONS(431), - [anon_sym_BANG_EQ] = ACTIONS(431), - [anon_sym_LT_EQ] = ACTIONS(431), - [anon_sym_GT_EQ] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(433), - [anon_sym_PLUS_EQ] = ACTIONS(431), - [anon_sym_DASH_EQ] = ACTIONS(431), - [anon_sym_STAR_EQ] = ACTIONS(431), - [anon_sym_SLASH_EQ] = ACTIONS(431), - [anon_sym_PERCENT_EQ] = ACTIONS(431), - [anon_sym_AMP_EQ] = ACTIONS(431), - [anon_sym_PIPE_EQ] = ACTIONS(431), - [anon_sym_CARET_EQ] = ACTIONS(431), - [anon_sym_LT_LT_EQ] = ACTIONS(431), - [anon_sym_GT_GT_EQ] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(431), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(431), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(433), - [sym_super] = ACTIONS(433), - [sym_crate] = ACTIONS(433), - [sym_metavariable] = ACTIONS(431), - [sym_raw_string_literal] = ACTIONS(431), - [sym_float_literal] = ACTIONS(431), - [sym_block_comment] = ACTIONS(3), - }, - [234] = { - [sym_identifier] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_RBRACE] = ACTIONS(411), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_PLUS] = ACTIONS(413), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(411), - [anon_sym_u8] = ACTIONS(413), - [anon_sym_i8] = ACTIONS(413), - [anon_sym_u16] = ACTIONS(413), - [anon_sym_i16] = ACTIONS(413), - [anon_sym_u32] = ACTIONS(413), - [anon_sym_i32] = ACTIONS(413), - [anon_sym_u64] = ACTIONS(413), - [anon_sym_i64] = ACTIONS(413), - [anon_sym_u128] = ACTIONS(413), - [anon_sym_i128] = ACTIONS(413), - [anon_sym_isize] = ACTIONS(413), - [anon_sym_usize] = ACTIONS(413), - [anon_sym_f32] = ACTIONS(413), - [anon_sym_f64] = ACTIONS(413), - [anon_sym_bool] = ACTIONS(413), - [anon_sym_str] = ACTIONS(413), - [anon_sym_char] = ACTIONS(413), - [anon_sym_as] = ACTIONS(413), - [anon_sym_const] = ACTIONS(413), - [anon_sym_POUND] = ACTIONS(411), - [anon_sym_EQ] = ACTIONS(413), - [anon_sym_COMMA] = ACTIONS(411), - [anon_sym_ref] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_COLON_COLON] = ACTIONS(411), - [anon_sym__] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(411), - [sym_mutable_specifier] = ACTIONS(413), - [anon_sym_DOT_DOT] = ACTIONS(413), - [anon_sym_DOT_DOT_EQ] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(413), - [anon_sym_CARET] = ACTIONS(413), - [anon_sym_EQ_EQ] = ACTIONS(411), - [anon_sym_BANG_EQ] = ACTIONS(411), - [anon_sym_LT_EQ] = ACTIONS(411), - [anon_sym_GT_EQ] = ACTIONS(411), - [anon_sym_LT_LT] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(413), - [anon_sym_PERCENT] = ACTIONS(413), - [anon_sym_PLUS_EQ] = ACTIONS(411), - [anon_sym_DASH_EQ] = ACTIONS(411), - [anon_sym_STAR_EQ] = ACTIONS(411), - [anon_sym_SLASH_EQ] = ACTIONS(411), - [anon_sym_PERCENT_EQ] = ACTIONS(411), - [anon_sym_AMP_EQ] = ACTIONS(411), - [anon_sym_PIPE_EQ] = ACTIONS(411), - [anon_sym_CARET_EQ] = ACTIONS(411), - [anon_sym_LT_LT_EQ] = ACTIONS(411), - [anon_sym_GT_GT_EQ] = ACTIONS(411), - [anon_sym_DOT] = ACTIONS(413), - [sym_integer_literal] = ACTIONS(411), - [aux_sym_string_literal_token1] = ACTIONS(411), - [sym_char_literal] = ACTIONS(411), - [anon_sym_true] = ACTIONS(413), - [anon_sym_false] = ACTIONS(413), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_crate] = ACTIONS(413), - [sym_metavariable] = ACTIONS(411), - [sym_raw_string_literal] = ACTIONS(411), - [sym_float_literal] = ACTIONS(411), - [sym_block_comment] = ACTIONS(3), - }, - [235] = { - [sym_identifier] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(435), - [anon_sym_u8] = ACTIONS(437), - [anon_sym_i8] = ACTIONS(437), - [anon_sym_u16] = ACTIONS(437), - [anon_sym_i16] = ACTIONS(437), - [anon_sym_u32] = ACTIONS(437), - [anon_sym_i32] = ACTIONS(437), - [anon_sym_u64] = ACTIONS(437), - [anon_sym_i64] = ACTIONS(437), - [anon_sym_u128] = ACTIONS(437), - [anon_sym_i128] = ACTIONS(437), - [anon_sym_isize] = ACTIONS(437), - [anon_sym_usize] = ACTIONS(437), - [anon_sym_f32] = ACTIONS(437), - [anon_sym_f64] = ACTIONS(437), - [anon_sym_bool] = ACTIONS(437), - [anon_sym_str] = ACTIONS(437), - [anon_sym_char] = ACTIONS(437), - [anon_sym_as] = ACTIONS(437), - [anon_sym_const] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(435), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(435), - [anon_sym_ref] = ACTIONS(437), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_COLON_COLON] = ACTIONS(435), - [anon_sym__] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(435), - [sym_mutable_specifier] = ACTIONS(437), - [anon_sym_DOT_DOT] = ACTIONS(437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(437), - [anon_sym_AMP_AMP] = ACTIONS(435), - [anon_sym_PIPE_PIPE] = ACTIONS(435), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_CARET] = ACTIONS(437), - [anon_sym_EQ_EQ] = ACTIONS(435), - [anon_sym_BANG_EQ] = ACTIONS(435), - [anon_sym_LT_EQ] = ACTIONS(435), - [anon_sym_GT_EQ] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(437), - [anon_sym_GT_GT] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_PLUS_EQ] = ACTIONS(435), - [anon_sym_DASH_EQ] = ACTIONS(435), - [anon_sym_STAR_EQ] = ACTIONS(435), - [anon_sym_SLASH_EQ] = ACTIONS(435), - [anon_sym_PERCENT_EQ] = ACTIONS(435), - [anon_sym_AMP_EQ] = ACTIONS(435), - [anon_sym_PIPE_EQ] = ACTIONS(435), - [anon_sym_CARET_EQ] = ACTIONS(435), - [anon_sym_LT_LT_EQ] = ACTIONS(435), - [anon_sym_GT_GT_EQ] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(437), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(435), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(437), - [anon_sym_false] = ACTIONS(437), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(437), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(435), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - [sym_block_comment] = ACTIONS(3), - }, - [236] = { - [sym_identifier] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(453), - [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_as] = ACTIONS(455), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(1035), - [anon_sym_EQ] = ACTIONS(455), - [anon_sym_COMMA] = ACTIONS(453), - [anon_sym_ref] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_COLON_COLON] = ACTIONS(1035), - [anon_sym__] = ACTIONS(1033), - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_DOT_DOT_DOT] = ACTIONS(453), - [sym_mutable_specifier] = ACTIONS(1033), - [anon_sym_DOT_DOT] = ACTIONS(1033), - [anon_sym_DOT_DOT_EQ] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT_EQ] = ACTIONS(453), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(455), - [anon_sym_PERCENT] = ACTIONS(455), - [anon_sym_PLUS_EQ] = ACTIONS(453), - [anon_sym_DASH_EQ] = ACTIONS(453), - [anon_sym_STAR_EQ] = ACTIONS(453), - [anon_sym_SLASH_EQ] = ACTIONS(453), - [anon_sym_PERCENT_EQ] = ACTIONS(453), - [anon_sym_AMP_EQ] = ACTIONS(453), - [anon_sym_PIPE_EQ] = ACTIONS(453), - [anon_sym_CARET_EQ] = ACTIONS(453), - [anon_sym_LT_LT_EQ] = ACTIONS(453), - [anon_sym_GT_GT_EQ] = ACTIONS(453), - [anon_sym_DOT] = ACTIONS(455), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1033), - [sym_super] = ACTIONS(1033), - [sym_crate] = ACTIONS(1033), - [sym_metavariable] = ACTIONS(1035), - [sym_raw_string_literal] = ACTIONS(1035), - [sym_float_literal] = ACTIONS(1035), - [sym_block_comment] = ACTIONS(3), - }, - [237] = { - [sym_identifier] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_u8] = ACTIONS(441), - [anon_sym_i8] = ACTIONS(441), - [anon_sym_u16] = ACTIONS(441), - [anon_sym_i16] = ACTIONS(441), - [anon_sym_u32] = ACTIONS(441), - [anon_sym_i32] = ACTIONS(441), - [anon_sym_u64] = ACTIONS(441), - [anon_sym_i64] = ACTIONS(441), - [anon_sym_u128] = ACTIONS(441), - [anon_sym_i128] = ACTIONS(441), - [anon_sym_isize] = ACTIONS(441), - [anon_sym_usize] = ACTIONS(441), - [anon_sym_f32] = ACTIONS(441), - [anon_sym_f64] = ACTIONS(441), - [anon_sym_bool] = ACTIONS(441), - [anon_sym_str] = ACTIONS(441), - [anon_sym_char] = ACTIONS(441), - [anon_sym_as] = ACTIONS(441), - [anon_sym_const] = ACTIONS(441), - [anon_sym_POUND] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_COMMA] = ACTIONS(439), - [anon_sym_ref] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(441), - [anon_sym_COLON_COLON] = ACTIONS(439), - [anon_sym__] = ACTIONS(441), - [anon_sym_AMP] = ACTIONS(441), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [sym_mutable_specifier] = ACTIONS(441), - [anon_sym_DOT_DOT] = ACTIONS(441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_EQ_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_GT_GT] = ACTIONS(441), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_AMP_EQ] = ACTIONS(439), - [anon_sym_PIPE_EQ] = ACTIONS(439), - [anon_sym_CARET_EQ] = ACTIONS(439), - [anon_sym_LT_LT_EQ] = ACTIONS(439), - [anon_sym_GT_GT_EQ] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(441), - [sym_integer_literal] = ACTIONS(439), - [aux_sym_string_literal_token1] = ACTIONS(439), - [sym_char_literal] = ACTIONS(439), - [anon_sym_true] = ACTIONS(441), - [anon_sym_false] = ACTIONS(441), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(441), - [sym_crate] = ACTIONS(441), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(439), - [sym_float_literal] = ACTIONS(439), - [sym_block_comment] = ACTIONS(3), - }, - [238] = { - [sym_identifier] = ACTIONS(417), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_RBRACE] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(415), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_QMARK] = ACTIONS(415), - [anon_sym_u8] = ACTIONS(417), - [anon_sym_i8] = ACTIONS(417), - [anon_sym_u16] = ACTIONS(417), - [anon_sym_i16] = ACTIONS(417), - [anon_sym_u32] = ACTIONS(417), - [anon_sym_i32] = ACTIONS(417), - [anon_sym_u64] = ACTIONS(417), - [anon_sym_i64] = ACTIONS(417), - [anon_sym_u128] = ACTIONS(417), - [anon_sym_i128] = ACTIONS(417), - [anon_sym_isize] = ACTIONS(417), - [anon_sym_usize] = ACTIONS(417), - [anon_sym_f32] = ACTIONS(417), - [anon_sym_f64] = ACTIONS(417), - [anon_sym_bool] = ACTIONS(417), - [anon_sym_str] = ACTIONS(417), - [anon_sym_char] = ACTIONS(417), - [anon_sym_as] = ACTIONS(417), - [anon_sym_const] = ACTIONS(417), - [anon_sym_POUND] = ACTIONS(415), - [anon_sym_EQ] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(415), - [anon_sym_ref] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym__] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(415), - [sym_mutable_specifier] = ACTIONS(417), - [anon_sym_DOT_DOT] = ACTIONS(417), - [anon_sym_DOT_DOT_EQ] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_EQ_EQ] = ACTIONS(415), - [anon_sym_BANG_EQ] = ACTIONS(415), - [anon_sym_LT_EQ] = ACTIONS(415), - [anon_sym_GT_EQ] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_EQ] = ACTIONS(415), - [anon_sym_DASH_EQ] = ACTIONS(415), - [anon_sym_STAR_EQ] = ACTIONS(415), - [anon_sym_SLASH_EQ] = ACTIONS(415), - [anon_sym_PERCENT_EQ] = ACTIONS(415), - [anon_sym_AMP_EQ] = ACTIONS(415), - [anon_sym_PIPE_EQ] = ACTIONS(415), - [anon_sym_CARET_EQ] = ACTIONS(415), - [anon_sym_LT_LT_EQ] = ACTIONS(415), - [anon_sym_GT_GT_EQ] = ACTIONS(415), - [anon_sym_DOT] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(415), - [aux_sym_string_literal_token1] = ACTIONS(415), - [sym_char_literal] = ACTIONS(415), - [anon_sym_true] = ACTIONS(417), - [anon_sym_false] = ACTIONS(417), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(417), - [sym_super] = ACTIONS(417), - [sym_crate] = ACTIONS(417), - [sym_metavariable] = ACTIONS(415), - [sym_raw_string_literal] = ACTIONS(415), - [sym_float_literal] = ACTIONS(415), - [sym_block_comment] = ACTIONS(3), - }, - [239] = { - [sym_identifier] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(423), - [anon_sym_RBRACE] = ACTIONS(423), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_PLUS] = ACTIONS(425), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(423), - [anon_sym_u8] = ACTIONS(425), - [anon_sym_i8] = ACTIONS(425), - [anon_sym_u16] = ACTIONS(425), - [anon_sym_i16] = ACTIONS(425), - [anon_sym_u32] = ACTIONS(425), - [anon_sym_i32] = ACTIONS(425), - [anon_sym_u64] = ACTIONS(425), - [anon_sym_i64] = ACTIONS(425), - [anon_sym_u128] = ACTIONS(425), - [anon_sym_i128] = ACTIONS(425), - [anon_sym_isize] = ACTIONS(425), - [anon_sym_usize] = ACTIONS(425), - [anon_sym_f32] = ACTIONS(425), - [anon_sym_f64] = ACTIONS(425), - [anon_sym_bool] = ACTIONS(425), - [anon_sym_str] = ACTIONS(425), - [anon_sym_char] = ACTIONS(425), - [anon_sym_as] = ACTIONS(425), - [anon_sym_const] = ACTIONS(425), - [anon_sym_POUND] = ACTIONS(423), - [anon_sym_EQ] = ACTIONS(425), - [anon_sym_COMMA] = ACTIONS(423), - [anon_sym_ref] = ACTIONS(425), - [anon_sym_LT] = ACTIONS(425), - [anon_sym_GT] = ACTIONS(425), - [anon_sym_COLON_COLON] = ACTIONS(423), - [anon_sym__] = ACTIONS(425), - [anon_sym_AMP] = ACTIONS(425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(423), - [sym_mutable_specifier] = ACTIONS(425), - [anon_sym_DOT_DOT] = ACTIONS(425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(425), - [anon_sym_AMP_AMP] = ACTIONS(423), - [anon_sym_PIPE_PIPE] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_CARET] = ACTIONS(425), - [anon_sym_EQ_EQ] = ACTIONS(423), - [anon_sym_BANG_EQ] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(425), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_SLASH] = ACTIONS(425), - [anon_sym_PERCENT] = ACTIONS(425), - [anon_sym_PLUS_EQ] = ACTIONS(423), - [anon_sym_DASH_EQ] = ACTIONS(423), - [anon_sym_STAR_EQ] = ACTIONS(423), - [anon_sym_SLASH_EQ] = ACTIONS(423), - [anon_sym_PERCENT_EQ] = ACTIONS(423), - [anon_sym_AMP_EQ] = ACTIONS(423), - [anon_sym_PIPE_EQ] = ACTIONS(423), - [anon_sym_CARET_EQ] = ACTIONS(423), - [anon_sym_LT_LT_EQ] = ACTIONS(423), - [anon_sym_GT_GT_EQ] = ACTIONS(423), - [anon_sym_DOT] = ACTIONS(425), - [sym_integer_literal] = ACTIONS(423), - [aux_sym_string_literal_token1] = ACTIONS(423), - [sym_char_literal] = ACTIONS(423), - [anon_sym_true] = ACTIONS(425), - [anon_sym_false] = ACTIONS(425), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(425), - [sym_super] = ACTIONS(425), - [sym_crate] = ACTIONS(425), - [sym_metavariable] = ACTIONS(423), - [sym_raw_string_literal] = ACTIONS(423), - [sym_float_literal] = ACTIONS(423), - [sym_block_comment] = ACTIONS(3), - }, - [240] = { - [sym_identifier] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_STAR] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(588), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_POUND] = ACTIONS(588), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_ref] = ACTIONS(590), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_COLON_COLON] = ACTIONS(588), - [anon_sym__] = ACTIONS(590), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_DOT_DOT_DOT] = ACTIONS(588), - [sym_mutable_specifier] = ACTIONS(590), - [anon_sym_DOT_DOT] = ACTIONS(590), - [anon_sym_DOT_DOT_EQ] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_AMP_AMP] = ACTIONS(588), - [anon_sym_PIPE_PIPE] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(590), - [anon_sym_CARET] = ACTIONS(590), - [anon_sym_EQ_EQ] = ACTIONS(588), - [anon_sym_BANG_EQ] = ACTIONS(588), - [anon_sym_LT_EQ] = ACTIONS(588), - [anon_sym_GT_EQ] = ACTIONS(588), - [anon_sym_LT_LT] = ACTIONS(590), - [anon_sym_GT_GT] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_PERCENT] = ACTIONS(590), - [anon_sym_PLUS_EQ] = ACTIONS(588), - [anon_sym_DASH_EQ] = ACTIONS(588), - [anon_sym_STAR_EQ] = ACTIONS(588), - [anon_sym_SLASH_EQ] = ACTIONS(588), - [anon_sym_PERCENT_EQ] = ACTIONS(588), - [anon_sym_AMP_EQ] = ACTIONS(588), - [anon_sym_PIPE_EQ] = ACTIONS(588), - [anon_sym_CARET_EQ] = ACTIONS(588), - [anon_sym_LT_LT_EQ] = ACTIONS(588), - [anon_sym_GT_GT_EQ] = ACTIONS(588), - [anon_sym_DOT] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(588), - [aux_sym_string_literal_token1] = ACTIONS(588), - [sym_char_literal] = ACTIONS(588), - [anon_sym_true] = ACTIONS(590), - [anon_sym_false] = ACTIONS(590), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(588), - [sym_raw_string_literal] = ACTIONS(588), - [sym_float_literal] = ACTIONS(588), - [sym_block_comment] = ACTIONS(3), - }, - [241] = { - [sym_empty_statement] = STATE(244), - [sym_macro_definition] = STATE(244), - [sym_attribute_item] = STATE(244), - [sym_inner_attribute_item] = STATE(244), - [sym_mod_item] = STATE(244), - [sym_foreign_mod_item] = STATE(244), - [sym_struct_item] = STATE(244), - [sym_union_item] = STATE(244), - [sym_enum_item] = STATE(244), - [sym_extern_crate_declaration] = STATE(244), - [sym_const_item] = STATE(244), - [sym_static_item] = STATE(244), - [sym_type_item] = STATE(244), - [sym_function_item] = STATE(244), - [sym_function_signature_item] = STATE(244), - [sym_function_modifiers] = STATE(2399), - [sym_impl_item] = STATE(244), - [sym_trait_item] = STATE(244), - [sym_associated_type] = STATE(244), - [sym_let_declaration] = STATE(244), - [sym_use_declaration] = STATE(244), - [sym_extern_modifier] = STATE(1436), - [sym_visibility_modifier] = STATE(1261), - [sym_bracketed_type] = STATE(2237), - [sym_generic_type_with_turbofish] = STATE(2403), - [sym_macro_invocation] = STATE(244), - [sym_scoped_identifier] = STATE(2024), - [aux_sym_declaration_list_repeat1] = STATE(244), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_macro_rules_BANG] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(1037), - [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_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(913), - [anon_sym_default] = ACTIONS(670), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_fn] = ACTIONS(917), - [anon_sym_impl] = ACTIONS(919), - [anon_sym_let] = ACTIONS(921), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(925), - [anon_sym_struct] = ACTIONS(927), - [anon_sym_trait] = ACTIONS(929), - [anon_sym_type] = ACTIONS(931), - [anon_sym_union] = ACTIONS(933), - [anon_sym_unsafe] = ACTIONS(935), - [anon_sym_use] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_extern] = ACTIONS(941), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(943), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(945), - [sym_super] = ACTIONS(945), - [sym_crate] = ACTIONS(947), - [sym_metavariable] = ACTIONS(949), - [sym_block_comment] = ACTIONS(3), - }, - [242] = { - [sym_identifier] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1041), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_u8] = ACTIONS(1039), - [anon_sym_i8] = ACTIONS(1039), - [anon_sym_u16] = ACTIONS(1039), - [anon_sym_i16] = ACTIONS(1039), - [anon_sym_u32] = ACTIONS(1039), - [anon_sym_i32] = ACTIONS(1039), - [anon_sym_u64] = ACTIONS(1039), - [anon_sym_i64] = ACTIONS(1039), - [anon_sym_u128] = ACTIONS(1039), - [anon_sym_i128] = ACTIONS(1039), - [anon_sym_isize] = ACTIONS(1039), - [anon_sym_usize] = ACTIONS(1039), - [anon_sym_f32] = ACTIONS(1039), - [anon_sym_f64] = ACTIONS(1039), - [anon_sym_bool] = ACTIONS(1039), - [anon_sym_str] = ACTIONS(1039), - [anon_sym_char] = ACTIONS(1039), - [anon_sym_as] = ACTIONS(455), - [anon_sym_const] = ACTIONS(1039), - [anon_sym_POUND] = ACTIONS(1041), - [anon_sym_EQ] = ACTIONS(455), - [anon_sym_COMMA] = ACTIONS(453), - [anon_sym_ref] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_COLON_COLON] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1039), - [anon_sym_AMP] = ACTIONS(1039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(453), - [sym_mutable_specifier] = ACTIONS(1039), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT_EQ] = ACTIONS(453), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(455), - [anon_sym_PERCENT] = ACTIONS(455), - [anon_sym_PLUS_EQ] = ACTIONS(453), - [anon_sym_DASH_EQ] = ACTIONS(453), - [anon_sym_STAR_EQ] = ACTIONS(453), - [anon_sym_SLASH_EQ] = ACTIONS(453), - [anon_sym_PERCENT_EQ] = ACTIONS(453), - [anon_sym_AMP_EQ] = ACTIONS(453), - [anon_sym_PIPE_EQ] = ACTIONS(453), - [anon_sym_CARET_EQ] = ACTIONS(453), - [anon_sym_LT_LT_EQ] = ACTIONS(453), - [anon_sym_GT_GT_EQ] = ACTIONS(453), - [anon_sym_DOT] = ACTIONS(455), - [sym_integer_literal] = ACTIONS(1041), - [aux_sym_string_literal_token1] = ACTIONS(1041), - [sym_char_literal] = ACTIONS(1041), - [anon_sym_true] = ACTIONS(1039), - [anon_sym_false] = ACTIONS(1039), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1039), - [sym_super] = ACTIONS(1039), - [sym_crate] = ACTIONS(1039), - [sym_metavariable] = ACTIONS(1041), - [sym_raw_string_literal] = ACTIONS(1041), - [sym_float_literal] = ACTIONS(1041), - [sym_block_comment] = ACTIONS(3), - }, - [243] = { - [sym_identifier] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(558), - [anon_sym_RBRACE] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(558), - [anon_sym_PLUS] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_QMARK] = ACTIONS(558), - [anon_sym_u8] = ACTIONS(560), - [anon_sym_i8] = ACTIONS(560), - [anon_sym_u16] = ACTIONS(560), - [anon_sym_i16] = ACTIONS(560), - [anon_sym_u32] = ACTIONS(560), - [anon_sym_i32] = ACTIONS(560), - [anon_sym_u64] = ACTIONS(560), - [anon_sym_i64] = ACTIONS(560), - [anon_sym_u128] = ACTIONS(560), - [anon_sym_i128] = ACTIONS(560), - [anon_sym_isize] = ACTIONS(560), - [anon_sym_usize] = ACTIONS(560), - [anon_sym_f32] = ACTIONS(560), - [anon_sym_f64] = ACTIONS(560), - [anon_sym_bool] = ACTIONS(560), - [anon_sym_str] = ACTIONS(560), - [anon_sym_char] = ACTIONS(560), - [anon_sym_as] = ACTIONS(560), - [anon_sym_const] = ACTIONS(560), - [anon_sym_POUND] = ACTIONS(558), - [anon_sym_EQ] = ACTIONS(560), - [anon_sym_COMMA] = ACTIONS(558), - [anon_sym_ref] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_COLON_COLON] = ACTIONS(558), - [anon_sym__] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(558), - [sym_mutable_specifier] = ACTIONS(560), - [anon_sym_DOT_DOT] = ACTIONS(560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(558), - [anon_sym_PIPE_PIPE] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(560), - [anon_sym_CARET] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(558), - [anon_sym_BANG_EQ] = ACTIONS(558), - [anon_sym_LT_EQ] = ACTIONS(558), - [anon_sym_GT_EQ] = ACTIONS(558), - [anon_sym_LT_LT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(560), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_PLUS_EQ] = ACTIONS(558), - [anon_sym_DASH_EQ] = ACTIONS(558), - [anon_sym_STAR_EQ] = ACTIONS(558), - [anon_sym_SLASH_EQ] = ACTIONS(558), - [anon_sym_PERCENT_EQ] = ACTIONS(558), - [anon_sym_AMP_EQ] = ACTIONS(558), - [anon_sym_PIPE_EQ] = ACTIONS(558), - [anon_sym_CARET_EQ] = ACTIONS(558), - [anon_sym_LT_LT_EQ] = ACTIONS(558), - [anon_sym_GT_GT_EQ] = ACTIONS(558), - [anon_sym_DOT] = ACTIONS(560), - [sym_integer_literal] = ACTIONS(558), - [aux_sym_string_literal_token1] = ACTIONS(558), - [sym_char_literal] = ACTIONS(558), - [anon_sym_true] = ACTIONS(560), - [anon_sym_false] = ACTIONS(560), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(560), - [sym_super] = ACTIONS(560), - [sym_crate] = ACTIONS(560), - [sym_metavariable] = ACTIONS(558), - [sym_raw_string_literal] = ACTIONS(558), - [sym_float_literal] = ACTIONS(558), - [sym_block_comment] = ACTIONS(3), - }, - [244] = { - [sym_empty_statement] = STATE(226), - [sym_macro_definition] = STATE(226), - [sym_attribute_item] = STATE(226), - [sym_inner_attribute_item] = STATE(226), - [sym_mod_item] = STATE(226), - [sym_foreign_mod_item] = STATE(226), - [sym_struct_item] = STATE(226), - [sym_union_item] = STATE(226), - [sym_enum_item] = STATE(226), - [sym_extern_crate_declaration] = STATE(226), - [sym_const_item] = STATE(226), - [sym_static_item] = STATE(226), - [sym_type_item] = STATE(226), - [sym_function_item] = STATE(226), - [sym_function_signature_item] = STATE(226), - [sym_function_modifiers] = STATE(2399), - [sym_impl_item] = STATE(226), - [sym_trait_item] = STATE(226), - [sym_associated_type] = STATE(226), - [sym_let_declaration] = STATE(226), - [sym_use_declaration] = STATE(226), - [sym_extern_modifier] = STATE(1436), - [sym_visibility_modifier] = STATE(1261), - [sym_bracketed_type] = STATE(2237), - [sym_generic_type_with_turbofish] = STATE(2403), - [sym_macro_invocation] = STATE(226), - [sym_scoped_identifier] = STATE(2024), - [aux_sym_declaration_list_repeat1] = STATE(226), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_macro_rules_BANG] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(1043), - [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_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(913), - [anon_sym_default] = ACTIONS(670), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_fn] = ACTIONS(917), - [anon_sym_impl] = ACTIONS(919), - [anon_sym_let] = ACTIONS(921), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(925), - [anon_sym_struct] = ACTIONS(927), - [anon_sym_trait] = ACTIONS(929), - [anon_sym_type] = ACTIONS(931), - [anon_sym_union] = ACTIONS(933), - [anon_sym_unsafe] = ACTIONS(935), - [anon_sym_use] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_extern] = ACTIONS(941), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(943), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(945), - [sym_super] = ACTIONS(945), - [sym_crate] = ACTIONS(947), - [sym_metavariable] = ACTIONS(949), - [sym_block_comment] = ACTIONS(3), - }, - [245] = { - [ts_builtin_sym_end] = ACTIONS(1045), - [sym_identifier] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1045), - [anon_sym_macro_rules_BANG] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1045), - [anon_sym_RBRACE] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_u8] = ACTIONS(1047), - [anon_sym_i8] = ACTIONS(1047), - [anon_sym_u16] = ACTIONS(1047), - [anon_sym_i16] = ACTIONS(1047), - [anon_sym_u32] = ACTIONS(1047), - [anon_sym_i32] = ACTIONS(1047), - [anon_sym_u64] = ACTIONS(1047), - [anon_sym_i64] = ACTIONS(1047), - [anon_sym_u128] = ACTIONS(1047), - [anon_sym_i128] = ACTIONS(1047), - [anon_sym_isize] = ACTIONS(1047), - [anon_sym_usize] = ACTIONS(1047), - [anon_sym_f32] = ACTIONS(1047), - [anon_sym_f64] = ACTIONS(1047), - [anon_sym_bool] = ACTIONS(1047), - [anon_sym_str] = ACTIONS(1047), - [anon_sym_char] = ACTIONS(1047), - [anon_sym_SQUOTE] = ACTIONS(1047), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_break] = ACTIONS(1047), - [anon_sym_const] = ACTIONS(1047), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_default] = ACTIONS(1047), - [anon_sym_enum] = ACTIONS(1047), - [anon_sym_fn] = ACTIONS(1047), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1047), - [anon_sym_impl] = ACTIONS(1047), - [anon_sym_let] = ACTIONS(1047), - [anon_sym_loop] = ACTIONS(1047), - [anon_sym_match] = ACTIONS(1047), - [anon_sym_mod] = ACTIONS(1047), - [anon_sym_pub] = ACTIONS(1047), - [anon_sym_return] = ACTIONS(1047), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_struct] = ACTIONS(1047), - [anon_sym_trait] = ACTIONS(1047), - [anon_sym_type] = ACTIONS(1047), - [anon_sym_union] = ACTIONS(1047), - [anon_sym_unsafe] = ACTIONS(1047), - [anon_sym_use] = ACTIONS(1047), - [anon_sym_while] = ACTIONS(1047), - [anon_sym_POUND] = ACTIONS(1045), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_extern] = ACTIONS(1047), - [anon_sym_LT] = ACTIONS(1045), - [anon_sym_COLON_COLON] = ACTIONS(1045), - [anon_sym_AMP] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_PIPE] = ACTIONS(1045), - [anon_sym_move] = ACTIONS(1047), - [sym_integer_literal] = ACTIONS(1045), - [aux_sym_string_literal_token1] = ACTIONS(1045), - [sym_char_literal] = ACTIONS(1045), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1047), - [sym_super] = ACTIONS(1047), - [sym_crate] = ACTIONS(1047), - [sym_metavariable] = ACTIONS(1045), - [sym_raw_string_literal] = ACTIONS(1045), - [sym_float_literal] = ACTIONS(1045), - [sym_block_comment] = ACTIONS(3), - }, - [246] = { - [sym__token_pattern] = STATE(216), - [sym_token_tree_pattern] = STATE(216), - [sym_token_binding_pattern] = STATE(216), - [sym_token_repetition_pattern] = STATE(216), - [sym__literal] = STATE(216), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_RBRACE] = ACTIONS(1055), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_await] = 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_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_where] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [sym_mutable_specifier] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [247] = { - [ts_builtin_sym_end] = ACTIONS(1069), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1069), - [anon_sym_macro_rules_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1069), - [anon_sym_RBRACE] = ACTIONS(1069), - [anon_sym_LBRACK] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1069), - [anon_sym_u8] = ACTIONS(1071), - [anon_sym_i8] = ACTIONS(1071), - [anon_sym_u16] = ACTIONS(1071), - [anon_sym_i16] = ACTIONS(1071), - [anon_sym_u32] = ACTIONS(1071), - [anon_sym_i32] = ACTIONS(1071), - [anon_sym_u64] = ACTIONS(1071), - [anon_sym_i64] = ACTIONS(1071), - [anon_sym_u128] = ACTIONS(1071), - [anon_sym_i128] = ACTIONS(1071), - [anon_sym_isize] = ACTIONS(1071), - [anon_sym_usize] = ACTIONS(1071), - [anon_sym_f32] = ACTIONS(1071), - [anon_sym_f64] = ACTIONS(1071), - [anon_sym_bool] = ACTIONS(1071), - [anon_sym_str] = ACTIONS(1071), - [anon_sym_char] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1071), - [anon_sym_async] = ACTIONS(1071), - [anon_sym_break] = ACTIONS(1071), - [anon_sym_const] = ACTIONS(1071), - [anon_sym_continue] = ACTIONS(1071), - [anon_sym_default] = ACTIONS(1071), - [anon_sym_enum] = ACTIONS(1071), - [anon_sym_fn] = ACTIONS(1071), - [anon_sym_for] = ACTIONS(1071), - [anon_sym_if] = ACTIONS(1071), - [anon_sym_impl] = ACTIONS(1071), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_loop] = ACTIONS(1071), - [anon_sym_match] = ACTIONS(1071), - [anon_sym_mod] = ACTIONS(1071), - [anon_sym_pub] = ACTIONS(1071), - [anon_sym_return] = ACTIONS(1071), - [anon_sym_static] = ACTIONS(1071), - [anon_sym_struct] = ACTIONS(1071), - [anon_sym_trait] = ACTIONS(1071), - [anon_sym_type] = ACTIONS(1071), - [anon_sym_union] = ACTIONS(1071), - [anon_sym_unsafe] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1071), - [anon_sym_while] = ACTIONS(1071), - [anon_sym_POUND] = ACTIONS(1069), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_extern] = ACTIONS(1071), - [anon_sym_LT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(1069), - [anon_sym_move] = ACTIONS(1071), - [sym_integer_literal] = ACTIONS(1069), - [aux_sym_string_literal_token1] = ACTIONS(1069), - [sym_char_literal] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(1071), - [anon_sym_false] = ACTIONS(1071), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1071), - [sym_super] = ACTIONS(1071), - [sym_crate] = ACTIONS(1071), - [sym_metavariable] = ACTIONS(1069), - [sym_raw_string_literal] = ACTIONS(1069), - [sym_float_literal] = ACTIONS(1069), - [sym_block_comment] = ACTIONS(3), - }, - [248] = { - [ts_builtin_sym_end] = ACTIONS(1073), - [sym_identifier] = ACTIONS(1075), - [anon_sym_SEMI] = ACTIONS(1073), - [anon_sym_macro_rules_BANG] = ACTIONS(1073), - [anon_sym_LPAREN] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_RBRACE] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(1073), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(1075), - [anon_sym_i8] = ACTIONS(1075), - [anon_sym_u16] = ACTIONS(1075), - [anon_sym_i16] = ACTIONS(1075), - [anon_sym_u32] = ACTIONS(1075), - [anon_sym_i32] = ACTIONS(1075), - [anon_sym_u64] = ACTIONS(1075), - [anon_sym_i64] = ACTIONS(1075), - [anon_sym_u128] = ACTIONS(1075), - [anon_sym_i128] = ACTIONS(1075), - [anon_sym_isize] = ACTIONS(1075), - [anon_sym_usize] = ACTIONS(1075), - [anon_sym_f32] = ACTIONS(1075), - [anon_sym_f64] = ACTIONS(1075), - [anon_sym_bool] = ACTIONS(1075), - [anon_sym_str] = ACTIONS(1075), - [anon_sym_char] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1075), - [anon_sym_async] = ACTIONS(1075), - [anon_sym_break] = ACTIONS(1075), - [anon_sym_const] = ACTIONS(1075), - [anon_sym_continue] = ACTIONS(1075), - [anon_sym_default] = ACTIONS(1075), - [anon_sym_enum] = ACTIONS(1075), - [anon_sym_fn] = ACTIONS(1075), - [anon_sym_for] = ACTIONS(1075), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_impl] = ACTIONS(1075), - [anon_sym_let] = ACTIONS(1075), - [anon_sym_loop] = ACTIONS(1075), - [anon_sym_match] = ACTIONS(1075), - [anon_sym_mod] = ACTIONS(1075), - [anon_sym_pub] = ACTIONS(1075), - [anon_sym_return] = ACTIONS(1075), - [anon_sym_static] = ACTIONS(1075), - [anon_sym_struct] = ACTIONS(1075), - [anon_sym_trait] = ACTIONS(1075), - [anon_sym_type] = ACTIONS(1075), - [anon_sym_union] = ACTIONS(1075), - [anon_sym_unsafe] = ACTIONS(1075), - [anon_sym_use] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1075), - [anon_sym_POUND] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_extern] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1073), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1073), - [anon_sym_move] = ACTIONS(1075), - [sym_integer_literal] = ACTIONS(1073), - [aux_sym_string_literal_token1] = ACTIONS(1073), - [sym_char_literal] = ACTIONS(1073), - [anon_sym_true] = ACTIONS(1075), - [anon_sym_false] = ACTIONS(1075), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1075), - [sym_super] = ACTIONS(1075), - [sym_crate] = ACTIONS(1075), - [sym_metavariable] = ACTIONS(1073), - [sym_raw_string_literal] = ACTIONS(1073), - [sym_float_literal] = ACTIONS(1073), - [sym_block_comment] = ACTIONS(3), - }, - [249] = { - [ts_builtin_sym_end] = ACTIONS(1077), - [sym_identifier] = ACTIONS(1079), - [anon_sym_SEMI] = ACTIONS(1077), - [anon_sym_macro_rules_BANG] = ACTIONS(1077), - [anon_sym_LPAREN] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_RBRACE] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1077), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_u8] = ACTIONS(1079), - [anon_sym_i8] = ACTIONS(1079), - [anon_sym_u16] = ACTIONS(1079), - [anon_sym_i16] = ACTIONS(1079), - [anon_sym_u32] = ACTIONS(1079), - [anon_sym_i32] = ACTIONS(1079), - [anon_sym_u64] = ACTIONS(1079), - [anon_sym_i64] = ACTIONS(1079), - [anon_sym_u128] = ACTIONS(1079), - [anon_sym_i128] = ACTIONS(1079), - [anon_sym_isize] = ACTIONS(1079), - [anon_sym_usize] = ACTIONS(1079), - [anon_sym_f32] = ACTIONS(1079), - [anon_sym_f64] = ACTIONS(1079), - [anon_sym_bool] = ACTIONS(1079), - [anon_sym_str] = ACTIONS(1079), - [anon_sym_char] = ACTIONS(1079), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_async] = ACTIONS(1079), - [anon_sym_break] = ACTIONS(1079), - [anon_sym_const] = ACTIONS(1079), - [anon_sym_continue] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1079), - [anon_sym_enum] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1079), - [anon_sym_for] = ACTIONS(1079), - [anon_sym_if] = ACTIONS(1079), - [anon_sym_impl] = ACTIONS(1079), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_loop] = ACTIONS(1079), - [anon_sym_match] = ACTIONS(1079), - [anon_sym_mod] = ACTIONS(1079), - [anon_sym_pub] = ACTIONS(1079), - [anon_sym_return] = ACTIONS(1079), - [anon_sym_static] = ACTIONS(1079), - [anon_sym_struct] = ACTIONS(1079), - [anon_sym_trait] = ACTIONS(1079), - [anon_sym_type] = ACTIONS(1079), - [anon_sym_union] = ACTIONS(1079), - [anon_sym_unsafe] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1079), - [anon_sym_while] = ACTIONS(1079), - [anon_sym_POUND] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_extern] = ACTIONS(1079), - [anon_sym_LT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(1077), - [anon_sym_AMP] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_PIPE] = ACTIONS(1077), - [anon_sym_move] = ACTIONS(1079), - [sym_integer_literal] = ACTIONS(1077), - [aux_sym_string_literal_token1] = ACTIONS(1077), - [sym_char_literal] = ACTIONS(1077), - [anon_sym_true] = ACTIONS(1079), - [anon_sym_false] = ACTIONS(1079), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1079), - [sym_super] = ACTIONS(1079), - [sym_crate] = ACTIONS(1079), - [sym_metavariable] = ACTIONS(1077), - [sym_raw_string_literal] = ACTIONS(1077), - [sym_float_literal] = ACTIONS(1077), - [sym_block_comment] = ACTIONS(3), - }, - [250] = { - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_identifier] = ACTIONS(1083), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_macro_rules_BANG] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(1081), - [anon_sym_u8] = ACTIONS(1083), - [anon_sym_i8] = ACTIONS(1083), - [anon_sym_u16] = ACTIONS(1083), - [anon_sym_i16] = ACTIONS(1083), - [anon_sym_u32] = ACTIONS(1083), - [anon_sym_i32] = ACTIONS(1083), - [anon_sym_u64] = ACTIONS(1083), - [anon_sym_i64] = ACTIONS(1083), - [anon_sym_u128] = ACTIONS(1083), - [anon_sym_i128] = ACTIONS(1083), - [anon_sym_isize] = ACTIONS(1083), - [anon_sym_usize] = ACTIONS(1083), - [anon_sym_f32] = ACTIONS(1083), - [anon_sym_f64] = ACTIONS(1083), - [anon_sym_bool] = ACTIONS(1083), - [anon_sym_str] = ACTIONS(1083), - [anon_sym_char] = ACTIONS(1083), - [anon_sym_SQUOTE] = ACTIONS(1083), - [anon_sym_async] = ACTIONS(1083), - [anon_sym_break] = ACTIONS(1083), - [anon_sym_const] = ACTIONS(1083), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_default] = ACTIONS(1083), - [anon_sym_enum] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1083), - [anon_sym_if] = ACTIONS(1083), - [anon_sym_impl] = ACTIONS(1083), - [anon_sym_let] = ACTIONS(1083), - [anon_sym_loop] = ACTIONS(1083), - [anon_sym_match] = ACTIONS(1083), - [anon_sym_mod] = ACTIONS(1083), - [anon_sym_pub] = ACTIONS(1083), - [anon_sym_return] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1083), - [anon_sym_struct] = ACTIONS(1083), - [anon_sym_trait] = ACTIONS(1083), - [anon_sym_type] = ACTIONS(1083), - [anon_sym_union] = ACTIONS(1083), - [anon_sym_unsafe] = ACTIONS(1083), - [anon_sym_use] = ACTIONS(1083), - [anon_sym_while] = ACTIONS(1083), - [anon_sym_POUND] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_extern] = ACTIONS(1083), - [anon_sym_LT] = ACTIONS(1081), - [anon_sym_COLON_COLON] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1081), - [anon_sym_move] = ACTIONS(1083), - [sym_integer_literal] = ACTIONS(1081), - [aux_sym_string_literal_token1] = ACTIONS(1081), - [sym_char_literal] = ACTIONS(1081), - [anon_sym_true] = ACTIONS(1083), - [anon_sym_false] = ACTIONS(1083), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1083), - [sym_super] = ACTIONS(1083), - [sym_crate] = ACTIONS(1083), - [sym_metavariable] = ACTIONS(1081), - [sym_raw_string_literal] = ACTIONS(1081), - [sym_float_literal] = ACTIONS(1081), - [sym_block_comment] = ACTIONS(3), - }, - [251] = { - [ts_builtin_sym_end] = ACTIONS(1085), - [sym_identifier] = ACTIONS(1087), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_macro_rules_BANG] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_u8] = ACTIONS(1087), - [anon_sym_i8] = ACTIONS(1087), - [anon_sym_u16] = ACTIONS(1087), - [anon_sym_i16] = ACTIONS(1087), - [anon_sym_u32] = ACTIONS(1087), - [anon_sym_i32] = ACTIONS(1087), - [anon_sym_u64] = ACTIONS(1087), - [anon_sym_i64] = ACTIONS(1087), - [anon_sym_u128] = ACTIONS(1087), - [anon_sym_i128] = ACTIONS(1087), - [anon_sym_isize] = ACTIONS(1087), - [anon_sym_usize] = ACTIONS(1087), - [anon_sym_f32] = ACTIONS(1087), - [anon_sym_f64] = ACTIONS(1087), - [anon_sym_bool] = ACTIONS(1087), - [anon_sym_str] = ACTIONS(1087), - [anon_sym_char] = ACTIONS(1087), - [anon_sym_SQUOTE] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1087), - [anon_sym_break] = ACTIONS(1087), - [anon_sym_const] = ACTIONS(1087), - [anon_sym_continue] = ACTIONS(1087), - [anon_sym_default] = ACTIONS(1087), - [anon_sym_enum] = ACTIONS(1087), - [anon_sym_fn] = ACTIONS(1087), - [anon_sym_for] = ACTIONS(1087), - [anon_sym_if] = ACTIONS(1087), - [anon_sym_impl] = ACTIONS(1087), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_loop] = ACTIONS(1087), - [anon_sym_match] = ACTIONS(1087), - [anon_sym_mod] = ACTIONS(1087), - [anon_sym_pub] = ACTIONS(1087), - [anon_sym_return] = ACTIONS(1087), - [anon_sym_static] = ACTIONS(1087), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_trait] = ACTIONS(1087), - [anon_sym_type] = ACTIONS(1087), - [anon_sym_union] = ACTIONS(1087), - [anon_sym_unsafe] = ACTIONS(1087), - [anon_sym_use] = ACTIONS(1087), - [anon_sym_while] = ACTIONS(1087), - [anon_sym_POUND] = ACTIONS(1085), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_extern] = ACTIONS(1087), - [anon_sym_LT] = ACTIONS(1085), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1085), - [anon_sym_DASH] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1085), - [anon_sym_move] = ACTIONS(1087), - [sym_integer_literal] = ACTIONS(1085), - [aux_sym_string_literal_token1] = ACTIONS(1085), - [sym_char_literal] = ACTIONS(1085), - [anon_sym_true] = ACTIONS(1087), - [anon_sym_false] = ACTIONS(1087), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1087), - [sym_super] = ACTIONS(1087), - [sym_crate] = ACTIONS(1087), - [sym_metavariable] = ACTIONS(1085), - [sym_raw_string_literal] = ACTIONS(1085), - [sym_float_literal] = ACTIONS(1085), - [sym_block_comment] = ACTIONS(3), - }, - [252] = { - [ts_builtin_sym_end] = ACTIONS(1089), - [sym_identifier] = ACTIONS(1091), - [anon_sym_SEMI] = ACTIONS(1089), - [anon_sym_macro_rules_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1089), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1089), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_u8] = ACTIONS(1091), - [anon_sym_i8] = ACTIONS(1091), - [anon_sym_u16] = ACTIONS(1091), - [anon_sym_i16] = ACTIONS(1091), - [anon_sym_u32] = ACTIONS(1091), - [anon_sym_i32] = ACTIONS(1091), - [anon_sym_u64] = ACTIONS(1091), - [anon_sym_i64] = ACTIONS(1091), - [anon_sym_u128] = ACTIONS(1091), - [anon_sym_i128] = ACTIONS(1091), - [anon_sym_isize] = ACTIONS(1091), - [anon_sym_usize] = ACTIONS(1091), - [anon_sym_f32] = ACTIONS(1091), - [anon_sym_f64] = ACTIONS(1091), - [anon_sym_bool] = ACTIONS(1091), - [anon_sym_str] = ACTIONS(1091), - [anon_sym_char] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1091), - [anon_sym_async] = ACTIONS(1091), - [anon_sym_break] = ACTIONS(1091), - [anon_sym_const] = ACTIONS(1091), - [anon_sym_continue] = ACTIONS(1091), - [anon_sym_default] = ACTIONS(1091), - [anon_sym_enum] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1091), - [anon_sym_for] = ACTIONS(1091), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_impl] = ACTIONS(1091), - [anon_sym_let] = ACTIONS(1091), - [anon_sym_loop] = ACTIONS(1091), - [anon_sym_match] = ACTIONS(1091), - [anon_sym_mod] = ACTIONS(1091), - [anon_sym_pub] = ACTIONS(1091), - [anon_sym_return] = ACTIONS(1091), - [anon_sym_static] = ACTIONS(1091), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_trait] = ACTIONS(1091), - [anon_sym_type] = ACTIONS(1091), - [anon_sym_union] = ACTIONS(1091), - [anon_sym_unsafe] = ACTIONS(1091), - [anon_sym_use] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(1091), - [anon_sym_POUND] = ACTIONS(1089), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_extern] = ACTIONS(1091), - [anon_sym_LT] = ACTIONS(1089), - [anon_sym_COLON_COLON] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1089), - [anon_sym_DOT_DOT] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_PIPE] = ACTIONS(1089), - [anon_sym_move] = ACTIONS(1091), - [sym_integer_literal] = ACTIONS(1089), - [aux_sym_string_literal_token1] = ACTIONS(1089), - [sym_char_literal] = ACTIONS(1089), - [anon_sym_true] = ACTIONS(1091), - [anon_sym_false] = ACTIONS(1091), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1091), - [sym_super] = ACTIONS(1091), - [sym_crate] = ACTIONS(1091), - [sym_metavariable] = ACTIONS(1089), - [sym_raw_string_literal] = ACTIONS(1089), - [sym_float_literal] = ACTIONS(1089), - [sym_block_comment] = ACTIONS(3), - }, - [253] = { - [ts_builtin_sym_end] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(395), - [anon_sym_macro_rules_BANG] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_u8] = ACTIONS(397), - [anon_sym_i8] = ACTIONS(397), - [anon_sym_u16] = ACTIONS(397), - [anon_sym_i16] = ACTIONS(397), - [anon_sym_u32] = ACTIONS(397), - [anon_sym_i32] = ACTIONS(397), - [anon_sym_u64] = ACTIONS(397), - [anon_sym_i64] = ACTIONS(397), - [anon_sym_u128] = ACTIONS(397), - [anon_sym_i128] = ACTIONS(397), - [anon_sym_isize] = ACTIONS(397), - [anon_sym_usize] = ACTIONS(397), - [anon_sym_f32] = ACTIONS(397), - [anon_sym_f64] = ACTIONS(397), - [anon_sym_bool] = ACTIONS(397), - [anon_sym_str] = ACTIONS(397), - [anon_sym_char] = ACTIONS(397), - [anon_sym_SQUOTE] = ACTIONS(397), - [anon_sym_async] = ACTIONS(397), - [anon_sym_break] = ACTIONS(397), - [anon_sym_const] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(397), - [anon_sym_default] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(397), - [anon_sym_fn] = ACTIONS(397), - [anon_sym_for] = ACTIONS(397), - [anon_sym_if] = ACTIONS(397), - [anon_sym_impl] = ACTIONS(397), - [anon_sym_let] = ACTIONS(397), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_match] = ACTIONS(397), - [anon_sym_mod] = ACTIONS(397), - [anon_sym_pub] = ACTIONS(397), - [anon_sym_return] = ACTIONS(397), - [anon_sym_static] = ACTIONS(397), - [anon_sym_struct] = ACTIONS(397), - [anon_sym_trait] = ACTIONS(397), - [anon_sym_type] = ACTIONS(397), - [anon_sym_union] = ACTIONS(397), - [anon_sym_unsafe] = ACTIONS(397), - [anon_sym_use] = ACTIONS(397), - [anon_sym_while] = ACTIONS(397), - [anon_sym_POUND] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(395), - [anon_sym_extern] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_move] = ACTIONS(397), - [sym_integer_literal] = ACTIONS(395), - [aux_sym_string_literal_token1] = ACTIONS(395), - [sym_char_literal] = ACTIONS(395), - [anon_sym_true] = ACTIONS(397), - [anon_sym_false] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_crate] = ACTIONS(397), - [sym_metavariable] = ACTIONS(395), - [sym_raw_string_literal] = ACTIONS(395), - [sym_float_literal] = ACTIONS(395), - [sym_block_comment] = ACTIONS(3), - }, - [254] = { - [ts_builtin_sym_end] = ACTIONS(387), - [sym_identifier] = ACTIONS(389), - [anon_sym_SEMI] = ACTIONS(387), - [anon_sym_macro_rules_BANG] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_u8] = ACTIONS(389), - [anon_sym_i8] = ACTIONS(389), - [anon_sym_u16] = ACTIONS(389), - [anon_sym_i16] = ACTIONS(389), - [anon_sym_u32] = ACTIONS(389), - [anon_sym_i32] = ACTIONS(389), - [anon_sym_u64] = ACTIONS(389), - [anon_sym_i64] = ACTIONS(389), - [anon_sym_u128] = ACTIONS(389), - [anon_sym_i128] = ACTIONS(389), - [anon_sym_isize] = ACTIONS(389), - [anon_sym_usize] = ACTIONS(389), - [anon_sym_f32] = ACTIONS(389), - [anon_sym_f64] = ACTIONS(389), - [anon_sym_bool] = ACTIONS(389), - [anon_sym_str] = ACTIONS(389), - [anon_sym_char] = ACTIONS(389), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_async] = ACTIONS(389), - [anon_sym_break] = ACTIONS(389), - [anon_sym_const] = ACTIONS(389), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_default] = ACTIONS(389), - [anon_sym_enum] = ACTIONS(389), - [anon_sym_fn] = ACTIONS(389), - [anon_sym_for] = ACTIONS(389), - [anon_sym_if] = ACTIONS(389), - [anon_sym_impl] = ACTIONS(389), - [anon_sym_let] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(389), - [anon_sym_match] = ACTIONS(389), - [anon_sym_mod] = ACTIONS(389), - [anon_sym_pub] = ACTIONS(389), - [anon_sym_return] = ACTIONS(389), - [anon_sym_static] = ACTIONS(389), - [anon_sym_struct] = ACTIONS(389), - [anon_sym_trait] = ACTIONS(389), - [anon_sym_type] = ACTIONS(389), - [anon_sym_union] = ACTIONS(389), - [anon_sym_unsafe] = ACTIONS(389), - [anon_sym_use] = ACTIONS(389), - [anon_sym_while] = ACTIONS(389), - [anon_sym_POUND] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_move] = ACTIONS(389), - [sym_integer_literal] = ACTIONS(387), - [aux_sym_string_literal_token1] = ACTIONS(387), - [sym_char_literal] = ACTIONS(387), - [anon_sym_true] = ACTIONS(389), - [anon_sym_false] = ACTIONS(389), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(389), - [sym_super] = ACTIONS(389), - [sym_crate] = ACTIONS(389), - [sym_metavariable] = ACTIONS(387), - [sym_raw_string_literal] = ACTIONS(387), - [sym_float_literal] = ACTIONS(387), - [sym_block_comment] = ACTIONS(3), - }, - [255] = { - [ts_builtin_sym_end] = ACTIONS(391), - [sym_identifier] = ACTIONS(393), - [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_macro_rules_BANG] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SQUOTE] = ACTIONS(393), - [anon_sym_async] = ACTIONS(393), - [anon_sym_break] = ACTIONS(393), - [anon_sym_const] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_default] = ACTIONS(393), - [anon_sym_enum] = ACTIONS(393), - [anon_sym_fn] = ACTIONS(393), - [anon_sym_for] = ACTIONS(393), - [anon_sym_if] = ACTIONS(393), - [anon_sym_impl] = ACTIONS(393), - [anon_sym_let] = ACTIONS(393), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_match] = ACTIONS(393), - [anon_sym_mod] = ACTIONS(393), - [anon_sym_pub] = ACTIONS(393), - [anon_sym_return] = ACTIONS(393), - [anon_sym_static] = ACTIONS(393), - [anon_sym_struct] = ACTIONS(393), - [anon_sym_trait] = ACTIONS(393), - [anon_sym_type] = ACTIONS(393), - [anon_sym_union] = ACTIONS(393), - [anon_sym_unsafe] = ACTIONS(393), - [anon_sym_use] = ACTIONS(393), - [anon_sym_while] = ACTIONS(393), - [anon_sym_POUND] = ACTIONS(391), - [anon_sym_BANG] = ACTIONS(391), - [anon_sym_extern] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_DOT_DOT] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(391), - [anon_sym_move] = ACTIONS(393), - [sym_integer_literal] = ACTIONS(391), - [aux_sym_string_literal_token1] = ACTIONS(391), - [sym_char_literal] = ACTIONS(391), - [anon_sym_true] = ACTIONS(393), - [anon_sym_false] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(393), - [sym_super] = ACTIONS(393), - [sym_crate] = ACTIONS(393), - [sym_metavariable] = ACTIONS(391), - [sym_raw_string_literal] = ACTIONS(391), - [sym_float_literal] = ACTIONS(391), - [sym_block_comment] = ACTIONS(3), - }, - [256] = { - [ts_builtin_sym_end] = ACTIONS(1093), - [sym_identifier] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1093), - [anon_sym_macro_rules_BANG] = ACTIONS(1093), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1093), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_u8] = ACTIONS(1095), - [anon_sym_i8] = ACTIONS(1095), - [anon_sym_u16] = ACTIONS(1095), - [anon_sym_i16] = ACTIONS(1095), - [anon_sym_u32] = ACTIONS(1095), - [anon_sym_i32] = ACTIONS(1095), - [anon_sym_u64] = ACTIONS(1095), - [anon_sym_i64] = ACTIONS(1095), - [anon_sym_u128] = ACTIONS(1095), - [anon_sym_i128] = ACTIONS(1095), - [anon_sym_isize] = ACTIONS(1095), - [anon_sym_usize] = ACTIONS(1095), - [anon_sym_f32] = ACTIONS(1095), - [anon_sym_f64] = ACTIONS(1095), - [anon_sym_bool] = ACTIONS(1095), - [anon_sym_str] = ACTIONS(1095), - [anon_sym_char] = ACTIONS(1095), - [anon_sym_SQUOTE] = ACTIONS(1095), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_break] = ACTIONS(1095), - [anon_sym_const] = ACTIONS(1095), - [anon_sym_continue] = ACTIONS(1095), - [anon_sym_default] = ACTIONS(1095), - [anon_sym_enum] = ACTIONS(1095), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_impl] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_loop] = ACTIONS(1095), - [anon_sym_match] = ACTIONS(1095), - [anon_sym_mod] = ACTIONS(1095), - [anon_sym_pub] = ACTIONS(1095), - [anon_sym_return] = ACTIONS(1095), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_struct] = ACTIONS(1095), - [anon_sym_trait] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_union] = ACTIONS(1095), - [anon_sym_unsafe] = ACTIONS(1095), - [anon_sym_use] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1095), - [anon_sym_POUND] = ACTIONS(1093), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_extern] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1093), - [anon_sym_COLON_COLON] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1093), - [anon_sym_DOT_DOT] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PIPE] = ACTIONS(1093), - [anon_sym_move] = ACTIONS(1095), - [sym_integer_literal] = ACTIONS(1093), - [aux_sym_string_literal_token1] = ACTIONS(1093), - [sym_char_literal] = ACTIONS(1093), - [anon_sym_true] = ACTIONS(1095), - [anon_sym_false] = ACTIONS(1095), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(1095), - [sym_metavariable] = ACTIONS(1093), - [sym_raw_string_literal] = ACTIONS(1093), - [sym_float_literal] = ACTIONS(1093), - [sym_block_comment] = ACTIONS(3), - }, - [257] = { - [ts_builtin_sym_end] = ACTIONS(1097), - [sym_identifier] = ACTIONS(1099), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_macro_rules_BANG] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_RBRACE] = ACTIONS(1097), - [anon_sym_LBRACK] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_u8] = ACTIONS(1099), - [anon_sym_i8] = ACTIONS(1099), - [anon_sym_u16] = ACTIONS(1099), - [anon_sym_i16] = ACTIONS(1099), - [anon_sym_u32] = ACTIONS(1099), - [anon_sym_i32] = ACTIONS(1099), - [anon_sym_u64] = ACTIONS(1099), - [anon_sym_i64] = ACTIONS(1099), - [anon_sym_u128] = ACTIONS(1099), - [anon_sym_i128] = ACTIONS(1099), - [anon_sym_isize] = ACTIONS(1099), - [anon_sym_usize] = ACTIONS(1099), - [anon_sym_f32] = ACTIONS(1099), - [anon_sym_f64] = ACTIONS(1099), - [anon_sym_bool] = ACTIONS(1099), - [anon_sym_str] = ACTIONS(1099), - [anon_sym_char] = ACTIONS(1099), - [anon_sym_SQUOTE] = ACTIONS(1099), - [anon_sym_async] = ACTIONS(1099), - [anon_sym_break] = ACTIONS(1099), - [anon_sym_const] = ACTIONS(1099), - [anon_sym_continue] = ACTIONS(1099), - [anon_sym_default] = ACTIONS(1099), - [anon_sym_enum] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1099), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_if] = ACTIONS(1099), - [anon_sym_impl] = ACTIONS(1099), - [anon_sym_let] = ACTIONS(1099), - [anon_sym_loop] = ACTIONS(1099), - [anon_sym_match] = ACTIONS(1099), - [anon_sym_mod] = ACTIONS(1099), - [anon_sym_pub] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(1099), - [anon_sym_static] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1099), - [anon_sym_trait] = ACTIONS(1099), - [anon_sym_type] = ACTIONS(1099), - [anon_sym_union] = ACTIONS(1099), - [anon_sym_unsafe] = ACTIONS(1099), - [anon_sym_use] = ACTIONS(1099), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_POUND] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_extern] = ACTIONS(1099), - [anon_sym_LT] = ACTIONS(1097), - [anon_sym_COLON_COLON] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1097), - [anon_sym_DOT_DOT] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_PIPE] = ACTIONS(1097), - [anon_sym_move] = ACTIONS(1099), - [sym_integer_literal] = ACTIONS(1097), - [aux_sym_string_literal_token1] = ACTIONS(1097), - [sym_char_literal] = ACTIONS(1097), - [anon_sym_true] = ACTIONS(1099), - [anon_sym_false] = ACTIONS(1099), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1099), - [sym_super] = ACTIONS(1099), - [sym_crate] = ACTIONS(1099), - [sym_metavariable] = ACTIONS(1097), - [sym_raw_string_literal] = ACTIONS(1097), - [sym_float_literal] = ACTIONS(1097), - [sym_block_comment] = ACTIONS(3), - }, - [258] = { - [ts_builtin_sym_end] = ACTIONS(1101), - [sym_identifier] = ACTIONS(1103), - [anon_sym_SEMI] = ACTIONS(1101), - [anon_sym_macro_rules_BANG] = ACTIONS(1101), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_RBRACE] = ACTIONS(1101), - [anon_sym_LBRACK] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1101), - [anon_sym_u8] = ACTIONS(1103), - [anon_sym_i8] = ACTIONS(1103), - [anon_sym_u16] = ACTIONS(1103), - [anon_sym_i16] = ACTIONS(1103), - [anon_sym_u32] = ACTIONS(1103), - [anon_sym_i32] = ACTIONS(1103), - [anon_sym_u64] = ACTIONS(1103), - [anon_sym_i64] = ACTIONS(1103), - [anon_sym_u128] = ACTIONS(1103), - [anon_sym_i128] = ACTIONS(1103), - [anon_sym_isize] = ACTIONS(1103), - [anon_sym_usize] = ACTIONS(1103), - [anon_sym_f32] = ACTIONS(1103), - [anon_sym_f64] = ACTIONS(1103), - [anon_sym_bool] = ACTIONS(1103), - [anon_sym_str] = ACTIONS(1103), - [anon_sym_char] = ACTIONS(1103), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_async] = ACTIONS(1103), - [anon_sym_break] = ACTIONS(1103), - [anon_sym_const] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1103), - [anon_sym_for] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1103), - [anon_sym_impl] = ACTIONS(1103), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_loop] = ACTIONS(1103), - [anon_sym_match] = ACTIONS(1103), - [anon_sym_mod] = ACTIONS(1103), - [anon_sym_pub] = ACTIONS(1103), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_static] = ACTIONS(1103), - [anon_sym_struct] = ACTIONS(1103), - [anon_sym_trait] = ACTIONS(1103), - [anon_sym_type] = ACTIONS(1103), - [anon_sym_union] = ACTIONS(1103), - [anon_sym_unsafe] = ACTIONS(1103), - [anon_sym_use] = ACTIONS(1103), - [anon_sym_while] = ACTIONS(1103), - [anon_sym_POUND] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_extern] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1101), - [anon_sym_COLON_COLON] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1101), - [anon_sym_DOT_DOT] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1101), - [anon_sym_move] = ACTIONS(1103), - [sym_integer_literal] = ACTIONS(1101), - [aux_sym_string_literal_token1] = ACTIONS(1101), - [sym_char_literal] = ACTIONS(1101), - [anon_sym_true] = ACTIONS(1103), - [anon_sym_false] = ACTIONS(1103), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1103), - [sym_super] = ACTIONS(1103), - [sym_crate] = ACTIONS(1103), - [sym_metavariable] = ACTIONS(1101), - [sym_raw_string_literal] = ACTIONS(1101), - [sym_float_literal] = ACTIONS(1101), - [sym_block_comment] = ACTIONS(3), - }, - [259] = { - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_macro_rules_BANG] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_u8] = ACTIONS(1107), - [anon_sym_i8] = ACTIONS(1107), - [anon_sym_u16] = ACTIONS(1107), - [anon_sym_i16] = ACTIONS(1107), - [anon_sym_u32] = ACTIONS(1107), - [anon_sym_i32] = ACTIONS(1107), - [anon_sym_u64] = ACTIONS(1107), - [anon_sym_i64] = ACTIONS(1107), - [anon_sym_u128] = ACTIONS(1107), - [anon_sym_i128] = ACTIONS(1107), - [anon_sym_isize] = ACTIONS(1107), - [anon_sym_usize] = ACTIONS(1107), - [anon_sym_f32] = ACTIONS(1107), - [anon_sym_f64] = ACTIONS(1107), - [anon_sym_bool] = ACTIONS(1107), - [anon_sym_str] = ACTIONS(1107), - [anon_sym_char] = ACTIONS(1107), - [anon_sym_SQUOTE] = ACTIONS(1107), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_break] = ACTIONS(1107), - [anon_sym_const] = ACTIONS(1107), - [anon_sym_continue] = ACTIONS(1107), - [anon_sym_default] = ACTIONS(1107), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_fn] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_impl] = ACTIONS(1107), - [anon_sym_let] = ACTIONS(1107), - [anon_sym_loop] = ACTIONS(1107), - [anon_sym_match] = ACTIONS(1107), - [anon_sym_mod] = ACTIONS(1107), - [anon_sym_pub] = ACTIONS(1107), - [anon_sym_return] = ACTIONS(1107), - [anon_sym_static] = ACTIONS(1107), - [anon_sym_struct] = ACTIONS(1107), - [anon_sym_trait] = ACTIONS(1107), - [anon_sym_type] = ACTIONS(1107), - [anon_sym_union] = ACTIONS(1107), - [anon_sym_unsafe] = ACTIONS(1107), - [anon_sym_use] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_POUND] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1105), - [anon_sym_extern] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1105), - [anon_sym_COLON_COLON] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1105), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1105), - [anon_sym_move] = ACTIONS(1107), - [sym_integer_literal] = ACTIONS(1105), - [aux_sym_string_literal_token1] = ACTIONS(1105), - [sym_char_literal] = ACTIONS(1105), - [anon_sym_true] = ACTIONS(1107), - [anon_sym_false] = ACTIONS(1107), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1107), - [sym_super] = ACTIONS(1107), - [sym_crate] = ACTIONS(1107), - [sym_metavariable] = ACTIONS(1105), - [sym_raw_string_literal] = ACTIONS(1105), - [sym_float_literal] = ACTIONS(1105), - [sym_block_comment] = ACTIONS(3), - }, - [260] = { - [ts_builtin_sym_end] = ACTIONS(1109), - [sym_identifier] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_macro_rules_BANG] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_u8] = ACTIONS(1111), - [anon_sym_i8] = ACTIONS(1111), - [anon_sym_u16] = ACTIONS(1111), - [anon_sym_i16] = ACTIONS(1111), - [anon_sym_u32] = ACTIONS(1111), - [anon_sym_i32] = ACTIONS(1111), - [anon_sym_u64] = ACTIONS(1111), - [anon_sym_i64] = ACTIONS(1111), - [anon_sym_u128] = ACTIONS(1111), - [anon_sym_i128] = ACTIONS(1111), - [anon_sym_isize] = ACTIONS(1111), - [anon_sym_usize] = ACTIONS(1111), - [anon_sym_f32] = ACTIONS(1111), - [anon_sym_f64] = ACTIONS(1111), - [anon_sym_bool] = ACTIONS(1111), - [anon_sym_str] = ACTIONS(1111), - [anon_sym_char] = ACTIONS(1111), - [anon_sym_SQUOTE] = ACTIONS(1111), - [anon_sym_async] = ACTIONS(1111), - [anon_sym_break] = ACTIONS(1111), - [anon_sym_const] = ACTIONS(1111), - [anon_sym_continue] = ACTIONS(1111), - [anon_sym_default] = ACTIONS(1111), - [anon_sym_enum] = ACTIONS(1111), - [anon_sym_fn] = ACTIONS(1111), - [anon_sym_for] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1111), - [anon_sym_impl] = ACTIONS(1111), - [anon_sym_let] = ACTIONS(1111), - [anon_sym_loop] = ACTIONS(1111), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_mod] = ACTIONS(1111), - [anon_sym_pub] = ACTIONS(1111), - [anon_sym_return] = ACTIONS(1111), - [anon_sym_static] = ACTIONS(1111), - [anon_sym_struct] = ACTIONS(1111), - [anon_sym_trait] = ACTIONS(1111), - [anon_sym_type] = ACTIONS(1111), - [anon_sym_union] = ACTIONS(1111), - [anon_sym_unsafe] = ACTIONS(1111), - [anon_sym_use] = ACTIONS(1111), - [anon_sym_while] = ACTIONS(1111), - [anon_sym_POUND] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_extern] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1109), - [anon_sym_COLON_COLON] = ACTIONS(1109), - [anon_sym_AMP] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_move] = ACTIONS(1111), - [sym_integer_literal] = ACTIONS(1109), - [aux_sym_string_literal_token1] = ACTIONS(1109), - [sym_char_literal] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1111), - [anon_sym_false] = ACTIONS(1111), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1111), - [sym_super] = ACTIONS(1111), - [sym_crate] = ACTIONS(1111), - [sym_metavariable] = ACTIONS(1109), - [sym_raw_string_literal] = ACTIONS(1109), - [sym_float_literal] = ACTIONS(1109), - [sym_block_comment] = ACTIONS(3), - }, - [261] = { - [ts_builtin_sym_end] = ACTIONS(1113), - [sym_identifier] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1113), - [anon_sym_macro_rules_BANG] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_SQUOTE] = ACTIONS(1115), - [anon_sym_async] = ACTIONS(1115), - [anon_sym_break] = ACTIONS(1115), - [anon_sym_const] = ACTIONS(1115), - [anon_sym_continue] = ACTIONS(1115), - [anon_sym_default] = ACTIONS(1115), - [anon_sym_enum] = ACTIONS(1115), - [anon_sym_fn] = ACTIONS(1115), - [anon_sym_for] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1115), - [anon_sym_impl] = ACTIONS(1115), - [anon_sym_let] = ACTIONS(1115), - [anon_sym_loop] = ACTIONS(1115), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_mod] = ACTIONS(1115), - [anon_sym_pub] = ACTIONS(1115), - [anon_sym_return] = ACTIONS(1115), - [anon_sym_static] = ACTIONS(1115), - [anon_sym_struct] = ACTIONS(1115), - [anon_sym_trait] = ACTIONS(1115), - [anon_sym_type] = ACTIONS(1115), - [anon_sym_union] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1115), - [anon_sym_use] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1115), - [anon_sym_POUND] = ACTIONS(1113), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1113), - [anon_sym_COLON_COLON] = ACTIONS(1113), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_move] = ACTIONS(1115), - [sym_integer_literal] = ACTIONS(1113), - [aux_sym_string_literal_token1] = ACTIONS(1113), - [sym_char_literal] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1115), - [anon_sym_false] = ACTIONS(1115), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1115), - [sym_super] = ACTIONS(1115), - [sym_crate] = ACTIONS(1115), - [sym_metavariable] = ACTIONS(1113), - [sym_raw_string_literal] = ACTIONS(1113), - [sym_float_literal] = ACTIONS(1113), - [sym_block_comment] = ACTIONS(3), - }, - [262] = { - [ts_builtin_sym_end] = ACTIONS(1117), - [sym_identifier] = ACTIONS(1119), - [anon_sym_SEMI] = ACTIONS(1117), - [anon_sym_macro_rules_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_u8] = ACTIONS(1119), - [anon_sym_i8] = ACTIONS(1119), - [anon_sym_u16] = ACTIONS(1119), - [anon_sym_i16] = ACTIONS(1119), - [anon_sym_u32] = ACTIONS(1119), - [anon_sym_i32] = ACTIONS(1119), - [anon_sym_u64] = ACTIONS(1119), - [anon_sym_i64] = ACTIONS(1119), - [anon_sym_u128] = ACTIONS(1119), - [anon_sym_i128] = ACTIONS(1119), - [anon_sym_isize] = ACTIONS(1119), - [anon_sym_usize] = ACTIONS(1119), - [anon_sym_f32] = ACTIONS(1119), - [anon_sym_f64] = ACTIONS(1119), - [anon_sym_bool] = ACTIONS(1119), - [anon_sym_str] = ACTIONS(1119), - [anon_sym_char] = ACTIONS(1119), - [anon_sym_SQUOTE] = ACTIONS(1119), - [anon_sym_async] = ACTIONS(1119), - [anon_sym_break] = ACTIONS(1119), - [anon_sym_const] = ACTIONS(1119), - [anon_sym_continue] = ACTIONS(1119), - [anon_sym_default] = ACTIONS(1119), - [anon_sym_enum] = ACTIONS(1119), - [anon_sym_fn] = ACTIONS(1119), - [anon_sym_for] = ACTIONS(1119), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_impl] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_loop] = ACTIONS(1119), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_mod] = ACTIONS(1119), - [anon_sym_pub] = ACTIONS(1119), - [anon_sym_return] = ACTIONS(1119), - [anon_sym_static] = ACTIONS(1119), - [anon_sym_struct] = ACTIONS(1119), - [anon_sym_trait] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_union] = ACTIONS(1119), - [anon_sym_unsafe] = ACTIONS(1119), - [anon_sym_use] = ACTIONS(1119), - [anon_sym_while] = ACTIONS(1119), - [anon_sym_POUND] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1119), - [anon_sym_LT] = ACTIONS(1117), - [anon_sym_COLON_COLON] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_move] = ACTIONS(1119), - [sym_integer_literal] = ACTIONS(1117), - [aux_sym_string_literal_token1] = ACTIONS(1117), - [sym_char_literal] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1119), - [anon_sym_false] = ACTIONS(1119), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1119), - [sym_super] = ACTIONS(1119), - [sym_crate] = ACTIONS(1119), - [sym_metavariable] = ACTIONS(1117), - [sym_raw_string_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1117), - [sym_block_comment] = ACTIONS(3), - }, - [263] = { - [ts_builtin_sym_end] = ACTIONS(1121), - [sym_identifier] = ACTIONS(1123), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_macro_rules_BANG] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(1121), - [anon_sym_RBRACE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_u8] = ACTIONS(1123), - [anon_sym_i8] = ACTIONS(1123), - [anon_sym_u16] = ACTIONS(1123), - [anon_sym_i16] = ACTIONS(1123), - [anon_sym_u32] = ACTIONS(1123), - [anon_sym_i32] = ACTIONS(1123), - [anon_sym_u64] = ACTIONS(1123), - [anon_sym_i64] = ACTIONS(1123), - [anon_sym_u128] = ACTIONS(1123), - [anon_sym_i128] = ACTIONS(1123), - [anon_sym_isize] = ACTIONS(1123), - [anon_sym_usize] = ACTIONS(1123), - [anon_sym_f32] = ACTIONS(1123), - [anon_sym_f64] = ACTIONS(1123), - [anon_sym_bool] = ACTIONS(1123), - [anon_sym_str] = ACTIONS(1123), - [anon_sym_char] = ACTIONS(1123), - [anon_sym_SQUOTE] = ACTIONS(1123), - [anon_sym_async] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_fn] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_impl] = ACTIONS(1123), - [anon_sym_let] = ACTIONS(1123), - [anon_sym_loop] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_mod] = ACTIONS(1123), - [anon_sym_pub] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_trait] = ACTIONS(1123), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_unsafe] = ACTIONS(1123), - [anon_sym_use] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_POUND] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_COLON_COLON] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_move] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [aux_sym_string_literal_token1] = ACTIONS(1121), - [sym_char_literal] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(1123), - [anon_sym_false] = ACTIONS(1123), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1123), - [sym_super] = ACTIONS(1123), - [sym_crate] = ACTIONS(1123), - [sym_metavariable] = ACTIONS(1121), - [sym_raw_string_literal] = ACTIONS(1121), - [sym_float_literal] = ACTIONS(1121), - [sym_block_comment] = ACTIONS(3), - }, - [264] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1127), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_macro_rules_BANG] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_LBRACK] = ACTIONS(1125), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_u8] = ACTIONS(1127), - [anon_sym_i8] = ACTIONS(1127), - [anon_sym_u16] = ACTIONS(1127), - [anon_sym_i16] = ACTIONS(1127), - [anon_sym_u32] = ACTIONS(1127), - [anon_sym_i32] = ACTIONS(1127), - [anon_sym_u64] = ACTIONS(1127), - [anon_sym_i64] = ACTIONS(1127), - [anon_sym_u128] = ACTIONS(1127), - [anon_sym_i128] = ACTIONS(1127), - [anon_sym_isize] = ACTIONS(1127), - [anon_sym_usize] = ACTIONS(1127), - [anon_sym_f32] = ACTIONS(1127), - [anon_sym_f64] = ACTIONS(1127), - [anon_sym_bool] = ACTIONS(1127), - [anon_sym_str] = ACTIONS(1127), - [anon_sym_char] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1127), - [anon_sym_async] = ACTIONS(1127), - [anon_sym_break] = ACTIONS(1127), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_continue] = ACTIONS(1127), - [anon_sym_default] = ACTIONS(1127), - [anon_sym_enum] = ACTIONS(1127), - [anon_sym_fn] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_impl] = ACTIONS(1127), - [anon_sym_let] = ACTIONS(1127), - [anon_sym_loop] = ACTIONS(1127), - [anon_sym_match] = ACTIONS(1127), - [anon_sym_mod] = ACTIONS(1127), - [anon_sym_pub] = ACTIONS(1127), - [anon_sym_return] = ACTIONS(1127), - [anon_sym_static] = ACTIONS(1127), - [anon_sym_struct] = ACTIONS(1127), - [anon_sym_trait] = ACTIONS(1127), - [anon_sym_type] = ACTIONS(1127), - [anon_sym_union] = ACTIONS(1127), - [anon_sym_unsafe] = ACTIONS(1127), - [anon_sym_use] = ACTIONS(1127), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_POUND] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_extern] = ACTIONS(1127), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_COLON_COLON] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_move] = ACTIONS(1127), - [sym_integer_literal] = ACTIONS(1125), - [aux_sym_string_literal_token1] = ACTIONS(1125), - [sym_char_literal] = ACTIONS(1125), - [anon_sym_true] = ACTIONS(1127), - [anon_sym_false] = ACTIONS(1127), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1127), - [sym_super] = ACTIONS(1127), - [sym_crate] = ACTIONS(1127), - [sym_metavariable] = ACTIONS(1125), - [sym_raw_string_literal] = ACTIONS(1125), - [sym_float_literal] = ACTIONS(1125), - [sym_block_comment] = ACTIONS(3), - }, - [265] = { - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1131), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_macro_rules_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_u8] = ACTIONS(1131), - [anon_sym_i8] = ACTIONS(1131), - [anon_sym_u16] = ACTIONS(1131), - [anon_sym_i16] = ACTIONS(1131), - [anon_sym_u32] = ACTIONS(1131), - [anon_sym_i32] = ACTIONS(1131), - [anon_sym_u64] = ACTIONS(1131), - [anon_sym_i64] = ACTIONS(1131), - [anon_sym_u128] = ACTIONS(1131), - [anon_sym_i128] = ACTIONS(1131), - [anon_sym_isize] = ACTIONS(1131), - [anon_sym_usize] = ACTIONS(1131), - [anon_sym_f32] = ACTIONS(1131), - [anon_sym_f64] = ACTIONS(1131), - [anon_sym_bool] = ACTIONS(1131), - [anon_sym_str] = ACTIONS(1131), - [anon_sym_char] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1131), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_break] = ACTIONS(1131), - [anon_sym_const] = ACTIONS(1131), - [anon_sym_continue] = ACTIONS(1131), - [anon_sym_default] = ACTIONS(1131), - [anon_sym_enum] = ACTIONS(1131), - [anon_sym_fn] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_impl] = ACTIONS(1131), - [anon_sym_let] = ACTIONS(1131), - [anon_sym_loop] = ACTIONS(1131), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_mod] = ACTIONS(1131), - [anon_sym_pub] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1131), - [anon_sym_static] = ACTIONS(1131), - [anon_sym_struct] = ACTIONS(1131), - [anon_sym_trait] = ACTIONS(1131), - [anon_sym_type] = ACTIONS(1131), - [anon_sym_union] = ACTIONS(1131), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_use] = ACTIONS(1131), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_extern] = ACTIONS(1131), - [anon_sym_LT] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1129), - [anon_sym_DOT_DOT] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_move] = ACTIONS(1131), - [sym_integer_literal] = ACTIONS(1129), - [aux_sym_string_literal_token1] = ACTIONS(1129), - [sym_char_literal] = ACTIONS(1129), - [anon_sym_true] = ACTIONS(1131), - [anon_sym_false] = ACTIONS(1131), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1131), - [sym_super] = ACTIONS(1131), - [sym_crate] = ACTIONS(1131), - [sym_metavariable] = ACTIONS(1129), - [sym_raw_string_literal] = ACTIONS(1129), - [sym_float_literal] = ACTIONS(1129), - [sym_block_comment] = ACTIONS(3), - }, - [266] = { - [ts_builtin_sym_end] = ACTIONS(1133), - [sym_identifier] = ACTIONS(1135), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_macro_rules_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_u8] = ACTIONS(1135), - [anon_sym_i8] = ACTIONS(1135), - [anon_sym_u16] = ACTIONS(1135), - [anon_sym_i16] = ACTIONS(1135), - [anon_sym_u32] = ACTIONS(1135), - [anon_sym_i32] = ACTIONS(1135), - [anon_sym_u64] = ACTIONS(1135), - [anon_sym_i64] = ACTIONS(1135), - [anon_sym_u128] = ACTIONS(1135), - [anon_sym_i128] = ACTIONS(1135), - [anon_sym_isize] = ACTIONS(1135), - [anon_sym_usize] = ACTIONS(1135), - [anon_sym_f32] = ACTIONS(1135), - [anon_sym_f64] = ACTIONS(1135), - [anon_sym_bool] = ACTIONS(1135), - [anon_sym_str] = ACTIONS(1135), - [anon_sym_char] = ACTIONS(1135), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_async] = ACTIONS(1135), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_const] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1135), - [anon_sym_default] = ACTIONS(1135), - [anon_sym_enum] = ACTIONS(1135), - [anon_sym_fn] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_if] = ACTIONS(1135), - [anon_sym_impl] = ACTIONS(1135), - [anon_sym_let] = ACTIONS(1135), - [anon_sym_loop] = ACTIONS(1135), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_mod] = ACTIONS(1135), - [anon_sym_pub] = ACTIONS(1135), - [anon_sym_return] = ACTIONS(1135), - [anon_sym_static] = ACTIONS(1135), - [anon_sym_struct] = ACTIONS(1135), - [anon_sym_trait] = ACTIONS(1135), - [anon_sym_type] = ACTIONS(1135), - [anon_sym_union] = ACTIONS(1135), - [anon_sym_unsafe] = ACTIONS(1135), - [anon_sym_use] = ACTIONS(1135), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_extern] = ACTIONS(1135), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_COLON_COLON] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_DOT_DOT] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_move] = ACTIONS(1135), - [sym_integer_literal] = ACTIONS(1133), - [aux_sym_string_literal_token1] = ACTIONS(1133), - [sym_char_literal] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1135), - [sym_super] = ACTIONS(1135), - [sym_crate] = ACTIONS(1135), - [sym_metavariable] = ACTIONS(1133), - [sym_raw_string_literal] = ACTIONS(1133), - [sym_float_literal] = ACTIONS(1133), - [sym_block_comment] = ACTIONS(3), - }, - [267] = { - [ts_builtin_sym_end] = ACTIONS(1137), - [sym_identifier] = ACTIONS(1139), - [anon_sym_SEMI] = ACTIONS(1137), - [anon_sym_macro_rules_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_RBRACE] = ACTIONS(1137), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_STAR] = ACTIONS(1137), - [anon_sym_u8] = ACTIONS(1139), - [anon_sym_i8] = ACTIONS(1139), - [anon_sym_u16] = ACTIONS(1139), - [anon_sym_i16] = ACTIONS(1139), - [anon_sym_u32] = ACTIONS(1139), - [anon_sym_i32] = ACTIONS(1139), - [anon_sym_u64] = ACTIONS(1139), - [anon_sym_i64] = ACTIONS(1139), - [anon_sym_u128] = ACTIONS(1139), - [anon_sym_i128] = ACTIONS(1139), - [anon_sym_isize] = ACTIONS(1139), - [anon_sym_usize] = ACTIONS(1139), - [anon_sym_f32] = ACTIONS(1139), - [anon_sym_f64] = ACTIONS(1139), - [anon_sym_bool] = ACTIONS(1139), - [anon_sym_str] = ACTIONS(1139), - [anon_sym_char] = ACTIONS(1139), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), - [anon_sym_enum] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_impl] = ACTIONS(1139), - [anon_sym_let] = ACTIONS(1139), - [anon_sym_loop] = ACTIONS(1139), - [anon_sym_match] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_pub] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_static] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1139), - [anon_sym_trait] = ACTIONS(1139), - [anon_sym_type] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1139), - [anon_sym_unsafe] = ACTIONS(1139), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_extern] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1137), - [anon_sym_COLON_COLON] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1137), - [anon_sym_move] = ACTIONS(1139), - [sym_integer_literal] = ACTIONS(1137), - [aux_sym_string_literal_token1] = ACTIONS(1137), - [sym_char_literal] = ACTIONS(1137), - [anon_sym_true] = ACTIONS(1139), - [anon_sym_false] = ACTIONS(1139), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1139), - [sym_super] = ACTIONS(1139), - [sym_crate] = ACTIONS(1139), - [sym_metavariable] = ACTIONS(1137), - [sym_raw_string_literal] = ACTIONS(1137), - [sym_float_literal] = ACTIONS(1137), - [sym_block_comment] = ACTIONS(3), - }, - [268] = { - [ts_builtin_sym_end] = ACTIONS(1141), - [sym_identifier] = ACTIONS(1143), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym_macro_rules_BANG] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_u8] = ACTIONS(1143), - [anon_sym_i8] = ACTIONS(1143), - [anon_sym_u16] = ACTIONS(1143), - [anon_sym_i16] = ACTIONS(1143), - [anon_sym_u32] = ACTIONS(1143), - [anon_sym_i32] = ACTIONS(1143), - [anon_sym_u64] = ACTIONS(1143), - [anon_sym_i64] = ACTIONS(1143), - [anon_sym_u128] = ACTIONS(1143), - [anon_sym_i128] = ACTIONS(1143), - [anon_sym_isize] = ACTIONS(1143), - [anon_sym_usize] = ACTIONS(1143), - [anon_sym_f32] = ACTIONS(1143), - [anon_sym_f64] = ACTIONS(1143), - [anon_sym_bool] = ACTIONS(1143), - [anon_sym_str] = ACTIONS(1143), - [anon_sym_char] = ACTIONS(1143), - [anon_sym_SQUOTE] = ACTIONS(1143), - [anon_sym_async] = ACTIONS(1143), - [anon_sym_break] = ACTIONS(1143), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1143), - [anon_sym_enum] = ACTIONS(1143), - [anon_sym_fn] = ACTIONS(1143), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_if] = ACTIONS(1143), - [anon_sym_impl] = ACTIONS(1143), - [anon_sym_let] = ACTIONS(1143), - [anon_sym_loop] = ACTIONS(1143), - [anon_sym_match] = ACTIONS(1143), - [anon_sym_mod] = ACTIONS(1143), - [anon_sym_pub] = ACTIONS(1143), - [anon_sym_return] = ACTIONS(1143), - [anon_sym_static] = ACTIONS(1143), - [anon_sym_struct] = ACTIONS(1143), - [anon_sym_trait] = ACTIONS(1143), - [anon_sym_type] = ACTIONS(1143), - [anon_sym_union] = ACTIONS(1143), - [anon_sym_unsafe] = ACTIONS(1143), - [anon_sym_use] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_extern] = ACTIONS(1143), - [anon_sym_LT] = ACTIONS(1141), - [anon_sym_COLON_COLON] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_DOT_DOT] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1141), - [anon_sym_move] = ACTIONS(1143), - [sym_integer_literal] = ACTIONS(1141), - [aux_sym_string_literal_token1] = ACTIONS(1141), - [sym_char_literal] = ACTIONS(1141), - [anon_sym_true] = ACTIONS(1143), - [anon_sym_false] = ACTIONS(1143), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1143), - [sym_super] = ACTIONS(1143), - [sym_crate] = ACTIONS(1143), - [sym_metavariable] = ACTIONS(1141), - [sym_raw_string_literal] = ACTIONS(1141), - [sym_float_literal] = ACTIONS(1141), - [sym_block_comment] = ACTIONS(3), - }, - [269] = { - [ts_builtin_sym_end] = ACTIONS(1145), - [sym_identifier] = ACTIONS(1147), - [anon_sym_SEMI] = ACTIONS(1145), - [anon_sym_macro_rules_BANG] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_u8] = ACTIONS(1147), - [anon_sym_i8] = ACTIONS(1147), - [anon_sym_u16] = ACTIONS(1147), - [anon_sym_i16] = ACTIONS(1147), - [anon_sym_u32] = ACTIONS(1147), - [anon_sym_i32] = ACTIONS(1147), - [anon_sym_u64] = ACTIONS(1147), - [anon_sym_i64] = ACTIONS(1147), - [anon_sym_u128] = ACTIONS(1147), - [anon_sym_i128] = ACTIONS(1147), - [anon_sym_isize] = ACTIONS(1147), - [anon_sym_usize] = ACTIONS(1147), - [anon_sym_f32] = ACTIONS(1147), - [anon_sym_f64] = ACTIONS(1147), - [anon_sym_bool] = ACTIONS(1147), - [anon_sym_str] = ACTIONS(1147), - [anon_sym_char] = ACTIONS(1147), - [anon_sym_SQUOTE] = ACTIONS(1147), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_const] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_default] = ACTIONS(1147), - [anon_sym_enum] = ACTIONS(1147), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_impl] = ACTIONS(1147), - [anon_sym_let] = ACTIONS(1147), - [anon_sym_loop] = ACTIONS(1147), - [anon_sym_match] = ACTIONS(1147), - [anon_sym_mod] = ACTIONS(1147), - [anon_sym_pub] = ACTIONS(1147), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_trait] = ACTIONS(1147), - [anon_sym_type] = ACTIONS(1147), - [anon_sym_union] = ACTIONS(1147), - [anon_sym_unsafe] = ACTIONS(1147), - [anon_sym_use] = ACTIONS(1147), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_POUND] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_extern] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1145), - [anon_sym_COLON_COLON] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1145), - [anon_sym_DOT_DOT] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_PIPE] = ACTIONS(1145), - [anon_sym_move] = ACTIONS(1147), - [sym_integer_literal] = ACTIONS(1145), - [aux_sym_string_literal_token1] = ACTIONS(1145), - [sym_char_literal] = ACTIONS(1145), - [anon_sym_true] = ACTIONS(1147), - [anon_sym_false] = ACTIONS(1147), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1147), - [sym_super] = ACTIONS(1147), - [sym_crate] = ACTIONS(1147), - [sym_metavariable] = ACTIONS(1145), - [sym_raw_string_literal] = ACTIONS(1145), - [sym_float_literal] = ACTIONS(1145), - [sym_block_comment] = ACTIONS(3), - }, - [270] = { - [ts_builtin_sym_end] = ACTIONS(1149), - [sym_identifier] = ACTIONS(1151), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym_macro_rules_BANG] = ACTIONS(1149), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_RBRACE] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1149), - [anon_sym_STAR] = ACTIONS(1149), - [anon_sym_u8] = ACTIONS(1151), - [anon_sym_i8] = ACTIONS(1151), - [anon_sym_u16] = ACTIONS(1151), - [anon_sym_i16] = ACTIONS(1151), - [anon_sym_u32] = ACTIONS(1151), - [anon_sym_i32] = ACTIONS(1151), - [anon_sym_u64] = ACTIONS(1151), - [anon_sym_i64] = ACTIONS(1151), - [anon_sym_u128] = ACTIONS(1151), - [anon_sym_i128] = ACTIONS(1151), - [anon_sym_isize] = ACTIONS(1151), - [anon_sym_usize] = ACTIONS(1151), - [anon_sym_f32] = ACTIONS(1151), - [anon_sym_f64] = ACTIONS(1151), - [anon_sym_bool] = ACTIONS(1151), - [anon_sym_str] = ACTIONS(1151), - [anon_sym_char] = ACTIONS(1151), - [anon_sym_SQUOTE] = ACTIONS(1151), - [anon_sym_async] = ACTIONS(1151), - [anon_sym_break] = ACTIONS(1151), - [anon_sym_const] = ACTIONS(1151), - [anon_sym_continue] = ACTIONS(1151), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_fn] = ACTIONS(1151), - [anon_sym_for] = ACTIONS(1151), - [anon_sym_if] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1151), - [anon_sym_let] = ACTIONS(1151), - [anon_sym_loop] = ACTIONS(1151), - [anon_sym_match] = ACTIONS(1151), - [anon_sym_mod] = ACTIONS(1151), - [anon_sym_pub] = ACTIONS(1151), - [anon_sym_return] = ACTIONS(1151), - [anon_sym_static] = ACTIONS(1151), - [anon_sym_struct] = ACTIONS(1151), - [anon_sym_trait] = ACTIONS(1151), - [anon_sym_type] = ACTIONS(1151), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1151), - [anon_sym_use] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_extern] = ACTIONS(1151), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_COLON_COLON] = ACTIONS(1149), - [anon_sym_AMP] = ACTIONS(1149), - [anon_sym_DOT_DOT] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1149), - [anon_sym_move] = ACTIONS(1151), - [sym_integer_literal] = ACTIONS(1149), - [aux_sym_string_literal_token1] = ACTIONS(1149), - [sym_char_literal] = ACTIONS(1149), - [anon_sym_true] = ACTIONS(1151), - [anon_sym_false] = ACTIONS(1151), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1151), - [sym_super] = ACTIONS(1151), - [sym_crate] = ACTIONS(1151), - [sym_metavariable] = ACTIONS(1149), - [sym_raw_string_literal] = ACTIONS(1149), - [sym_float_literal] = ACTIONS(1149), - [sym_block_comment] = ACTIONS(3), - }, - [271] = { - [ts_builtin_sym_end] = ACTIONS(1153), - [sym_identifier] = ACTIONS(1155), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym_macro_rules_BANG] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_RBRACE] = ACTIONS(1153), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1153), - [anon_sym_u8] = ACTIONS(1155), - [anon_sym_i8] = ACTIONS(1155), - [anon_sym_u16] = ACTIONS(1155), - [anon_sym_i16] = ACTIONS(1155), - [anon_sym_u32] = ACTIONS(1155), - [anon_sym_i32] = ACTIONS(1155), - [anon_sym_u64] = ACTIONS(1155), - [anon_sym_i64] = ACTIONS(1155), - [anon_sym_u128] = ACTIONS(1155), - [anon_sym_i128] = ACTIONS(1155), - [anon_sym_isize] = ACTIONS(1155), - [anon_sym_usize] = ACTIONS(1155), - [anon_sym_f32] = ACTIONS(1155), - [anon_sym_f64] = ACTIONS(1155), - [anon_sym_bool] = ACTIONS(1155), - [anon_sym_str] = ACTIONS(1155), - [anon_sym_char] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1155), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_break] = ACTIONS(1155), - [anon_sym_const] = ACTIONS(1155), - [anon_sym_continue] = ACTIONS(1155), - [anon_sym_default] = ACTIONS(1155), - [anon_sym_enum] = ACTIONS(1155), - [anon_sym_fn] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1155), - [anon_sym_if] = ACTIONS(1155), - [anon_sym_impl] = ACTIONS(1155), - [anon_sym_let] = ACTIONS(1155), - [anon_sym_loop] = ACTIONS(1155), - [anon_sym_match] = ACTIONS(1155), - [anon_sym_mod] = ACTIONS(1155), - [anon_sym_pub] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(1155), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_trait] = ACTIONS(1155), - [anon_sym_type] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1155), - [anon_sym_unsafe] = ACTIONS(1155), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(1155), - [anon_sym_POUND] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1153), - [anon_sym_extern] = ACTIONS(1155), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_COLON_COLON] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_move] = ACTIONS(1155), - [sym_integer_literal] = ACTIONS(1153), - [aux_sym_string_literal_token1] = ACTIONS(1153), - [sym_char_literal] = ACTIONS(1153), - [anon_sym_true] = ACTIONS(1155), - [anon_sym_false] = ACTIONS(1155), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1155), - [sym_super] = ACTIONS(1155), - [sym_crate] = ACTIONS(1155), - [sym_metavariable] = ACTIONS(1153), - [sym_raw_string_literal] = ACTIONS(1153), - [sym_float_literal] = ACTIONS(1153), - [sym_block_comment] = ACTIONS(3), - }, - [272] = { - [ts_builtin_sym_end] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1159), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_macro_rules_BANG] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_LBRACK] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1157), - [anon_sym_u8] = ACTIONS(1159), - [anon_sym_i8] = ACTIONS(1159), - [anon_sym_u16] = ACTIONS(1159), - [anon_sym_i16] = ACTIONS(1159), - [anon_sym_u32] = ACTIONS(1159), - [anon_sym_i32] = ACTIONS(1159), - [anon_sym_u64] = ACTIONS(1159), - [anon_sym_i64] = ACTIONS(1159), - [anon_sym_u128] = ACTIONS(1159), - [anon_sym_i128] = ACTIONS(1159), - [anon_sym_isize] = ACTIONS(1159), - [anon_sym_usize] = ACTIONS(1159), - [anon_sym_f32] = ACTIONS(1159), - [anon_sym_f64] = ACTIONS(1159), - [anon_sym_bool] = ACTIONS(1159), - [anon_sym_str] = ACTIONS(1159), - [anon_sym_char] = ACTIONS(1159), - [anon_sym_SQUOTE] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1159), - [anon_sym_const] = ACTIONS(1159), - [anon_sym_continue] = ACTIONS(1159), - [anon_sym_default] = ACTIONS(1159), - [anon_sym_enum] = ACTIONS(1159), - [anon_sym_fn] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_if] = ACTIONS(1159), - [anon_sym_impl] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_loop] = ACTIONS(1159), - [anon_sym_match] = ACTIONS(1159), - [anon_sym_mod] = ACTIONS(1159), - [anon_sym_pub] = ACTIONS(1159), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_struct] = ACTIONS(1159), - [anon_sym_trait] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_union] = ACTIONS(1159), - [anon_sym_unsafe] = ACTIONS(1159), - [anon_sym_use] = ACTIONS(1159), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_POUND] = ACTIONS(1157), - [anon_sym_BANG] = ACTIONS(1157), - [anon_sym_extern] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1157), - [anon_sym_COLON_COLON] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1157), - [anon_sym_DOT_DOT] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_PIPE] = ACTIONS(1157), - [anon_sym_move] = ACTIONS(1159), - [sym_integer_literal] = ACTIONS(1157), - [aux_sym_string_literal_token1] = ACTIONS(1157), - [sym_char_literal] = ACTIONS(1157), - [anon_sym_true] = ACTIONS(1159), - [anon_sym_false] = ACTIONS(1159), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1159), - [sym_super] = ACTIONS(1159), - [sym_crate] = ACTIONS(1159), - [sym_metavariable] = ACTIONS(1157), - [sym_raw_string_literal] = ACTIONS(1157), - [sym_float_literal] = ACTIONS(1157), - [sym_block_comment] = ACTIONS(3), - }, - [273] = { - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_macro_rules_BANG] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_u8] = ACTIONS(1163), - [anon_sym_i8] = ACTIONS(1163), - [anon_sym_u16] = ACTIONS(1163), - [anon_sym_i16] = ACTIONS(1163), - [anon_sym_u32] = ACTIONS(1163), - [anon_sym_i32] = ACTIONS(1163), - [anon_sym_u64] = ACTIONS(1163), - [anon_sym_i64] = ACTIONS(1163), - [anon_sym_u128] = ACTIONS(1163), - [anon_sym_i128] = ACTIONS(1163), - [anon_sym_isize] = ACTIONS(1163), - [anon_sym_usize] = ACTIONS(1163), - [anon_sym_f32] = ACTIONS(1163), - [anon_sym_f64] = ACTIONS(1163), - [anon_sym_bool] = ACTIONS(1163), - [anon_sym_str] = ACTIONS(1163), - [anon_sym_char] = ACTIONS(1163), - [anon_sym_SQUOTE] = ACTIONS(1163), - [anon_sym_async] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_const] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_enum] = ACTIONS(1163), - [anon_sym_fn] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_impl] = ACTIONS(1163), - [anon_sym_let] = ACTIONS(1163), - [anon_sym_loop] = ACTIONS(1163), - [anon_sym_match] = ACTIONS(1163), - [anon_sym_mod] = ACTIONS(1163), - [anon_sym_pub] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_static] = ACTIONS(1163), - [anon_sym_struct] = ACTIONS(1163), - [anon_sym_trait] = ACTIONS(1163), - [anon_sym_type] = ACTIONS(1163), - [anon_sym_union] = ACTIONS(1163), - [anon_sym_unsafe] = ACTIONS(1163), - [anon_sym_use] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_extern] = ACTIONS(1163), - [anon_sym_LT] = ACTIONS(1161), - [anon_sym_COLON_COLON] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_DOT_DOT] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_PIPE] = ACTIONS(1161), - [anon_sym_move] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1161), - [aux_sym_string_literal_token1] = ACTIONS(1161), - [sym_char_literal] = ACTIONS(1161), - [anon_sym_true] = ACTIONS(1163), - [anon_sym_false] = ACTIONS(1163), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1163), - [sym_super] = ACTIONS(1163), - [sym_crate] = ACTIONS(1163), - [sym_metavariable] = ACTIONS(1161), - [sym_raw_string_literal] = ACTIONS(1161), - [sym_float_literal] = ACTIONS(1161), - [sym_block_comment] = ACTIONS(3), - }, - [274] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1165), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(1171), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_RBRACK] = ACTIONS(1171), - [anon_sym_DOLLAR] = ACTIONS(1179), - [anon_sym_u8] = ACTIONS(1165), - [anon_sym_i8] = ACTIONS(1165), - [anon_sym_u16] = ACTIONS(1165), - [anon_sym_i16] = ACTIONS(1165), - [anon_sym_u32] = ACTIONS(1165), - [anon_sym_i32] = ACTIONS(1165), - [anon_sym_u64] = ACTIONS(1165), - [anon_sym_i64] = ACTIONS(1165), - [anon_sym_u128] = ACTIONS(1165), - [anon_sym_i128] = ACTIONS(1165), - [anon_sym_isize] = ACTIONS(1165), - [anon_sym_usize] = ACTIONS(1165), - [anon_sym_f32] = ACTIONS(1165), - [anon_sym_f64] = ACTIONS(1165), - [anon_sym_bool] = ACTIONS(1165), - [anon_sym_str] = ACTIONS(1165), - [anon_sym_char] = ACTIONS(1165), - [aux_sym__non_special_token_token1] = ACTIONS(1165), - [anon_sym_SQUOTE] = ACTIONS(1165), - [anon_sym_as] = ACTIONS(1165), - [anon_sym_async] = ACTIONS(1165), - [anon_sym_await] = ACTIONS(1165), - [anon_sym_break] = ACTIONS(1165), - [anon_sym_const] = ACTIONS(1165), - [anon_sym_continue] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_enum] = ACTIONS(1165), - [anon_sym_fn] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1165), - [anon_sym_impl] = ACTIONS(1165), - [anon_sym_let] = ACTIONS(1165), - [anon_sym_loop] = ACTIONS(1165), - [anon_sym_match] = ACTIONS(1165), - [anon_sym_mod] = ACTIONS(1165), - [anon_sym_pub] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1165), - [anon_sym_struct] = ACTIONS(1165), - [anon_sym_trait] = ACTIONS(1165), - [anon_sym_type] = ACTIONS(1165), - [anon_sym_union] = ACTIONS(1165), - [anon_sym_unsafe] = ACTIONS(1165), - [anon_sym_use] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1165), - [sym_mutable_specifier] = ACTIONS(1165), - [sym_integer_literal] = ACTIONS(1182), - [aux_sym_string_literal_token1] = ACTIONS(1185), - [sym_char_literal] = ACTIONS(1182), - [anon_sym_true] = ACTIONS(1188), - [anon_sym_false] = ACTIONS(1188), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1165), - [sym_super] = ACTIONS(1165), - [sym_crate] = ACTIONS(1165), - [sym_metavariable] = ACTIONS(1191), - [sym_raw_string_literal] = ACTIONS(1182), - [sym_float_literal] = ACTIONS(1182), - [sym_block_comment] = ACTIONS(3), - }, - [275] = { - [ts_builtin_sym_end] = ACTIONS(1194), - [sym_identifier] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_macro_rules_BANG] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_u8] = ACTIONS(1196), - [anon_sym_i8] = ACTIONS(1196), - [anon_sym_u16] = ACTIONS(1196), - [anon_sym_i16] = ACTIONS(1196), - [anon_sym_u32] = ACTIONS(1196), - [anon_sym_i32] = ACTIONS(1196), - [anon_sym_u64] = ACTIONS(1196), - [anon_sym_i64] = ACTIONS(1196), - [anon_sym_u128] = ACTIONS(1196), - [anon_sym_i128] = ACTIONS(1196), - [anon_sym_isize] = ACTIONS(1196), - [anon_sym_usize] = ACTIONS(1196), - [anon_sym_f32] = ACTIONS(1196), - [anon_sym_f64] = ACTIONS(1196), - [anon_sym_bool] = ACTIONS(1196), - [anon_sym_str] = ACTIONS(1196), - [anon_sym_char] = ACTIONS(1196), - [anon_sym_SQUOTE] = ACTIONS(1196), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_fn] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_impl] = ACTIONS(1196), - [anon_sym_let] = ACTIONS(1196), - [anon_sym_loop] = ACTIONS(1196), - [anon_sym_match] = ACTIONS(1196), - [anon_sym_mod] = ACTIONS(1196), - [anon_sym_pub] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_trait] = ACTIONS(1196), - [anon_sym_type] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_unsafe] = ACTIONS(1196), - [anon_sym_use] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_POUND] = ACTIONS(1194), - [anon_sym_BANG] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_COLON_COLON] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_move] = ACTIONS(1196), - [sym_integer_literal] = ACTIONS(1194), - [aux_sym_string_literal_token1] = ACTIONS(1194), - [sym_char_literal] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1196), - [sym_super] = ACTIONS(1196), - [sym_crate] = ACTIONS(1196), - [sym_metavariable] = ACTIONS(1194), - [sym_raw_string_literal] = ACTIONS(1194), - [sym_float_literal] = ACTIONS(1194), - [sym_block_comment] = ACTIONS(3), - }, - [276] = { - [ts_builtin_sym_end] = ACTIONS(1198), - [sym_identifier] = ACTIONS(1200), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_macro_rules_BANG] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_RBRACE] = ACTIONS(1198), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_u8] = ACTIONS(1200), - [anon_sym_i8] = ACTIONS(1200), - [anon_sym_u16] = ACTIONS(1200), - [anon_sym_i16] = ACTIONS(1200), - [anon_sym_u32] = ACTIONS(1200), - [anon_sym_i32] = ACTIONS(1200), - [anon_sym_u64] = ACTIONS(1200), - [anon_sym_i64] = ACTIONS(1200), - [anon_sym_u128] = ACTIONS(1200), - [anon_sym_i128] = ACTIONS(1200), - [anon_sym_isize] = ACTIONS(1200), - [anon_sym_usize] = ACTIONS(1200), - [anon_sym_f32] = ACTIONS(1200), - [anon_sym_f64] = ACTIONS(1200), - [anon_sym_bool] = ACTIONS(1200), - [anon_sym_str] = ACTIONS(1200), - [anon_sym_char] = ACTIONS(1200), - [anon_sym_SQUOTE] = ACTIONS(1200), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_fn] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_impl] = ACTIONS(1200), - [anon_sym_let] = ACTIONS(1200), - [anon_sym_loop] = ACTIONS(1200), - [anon_sym_match] = ACTIONS(1200), - [anon_sym_mod] = ACTIONS(1200), - [anon_sym_pub] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_trait] = ACTIONS(1200), - [anon_sym_type] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_unsafe] = ACTIONS(1200), - [anon_sym_use] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_POUND] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_COLON_COLON] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_DOT_DOT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_move] = ACTIONS(1200), - [sym_integer_literal] = ACTIONS(1198), - [aux_sym_string_literal_token1] = ACTIONS(1198), - [sym_char_literal] = ACTIONS(1198), - [anon_sym_true] = ACTIONS(1200), - [anon_sym_false] = ACTIONS(1200), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1198), - [sym_raw_string_literal] = ACTIONS(1198), - [sym_float_literal] = ACTIONS(1198), - [sym_block_comment] = ACTIONS(3), - }, - [277] = { - [ts_builtin_sym_end] = ACTIONS(1202), - [sym_identifier] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_macro_rules_BANG] = ACTIONS(1202), - [anon_sym_LPAREN] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_RBRACE] = ACTIONS(1202), - [anon_sym_LBRACK] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_u8] = ACTIONS(1204), - [anon_sym_i8] = ACTIONS(1204), - [anon_sym_u16] = ACTIONS(1204), - [anon_sym_i16] = ACTIONS(1204), - [anon_sym_u32] = ACTIONS(1204), - [anon_sym_i32] = ACTIONS(1204), - [anon_sym_u64] = ACTIONS(1204), - [anon_sym_i64] = ACTIONS(1204), - [anon_sym_u128] = ACTIONS(1204), - [anon_sym_i128] = ACTIONS(1204), - [anon_sym_isize] = ACTIONS(1204), - [anon_sym_usize] = ACTIONS(1204), - [anon_sym_f32] = ACTIONS(1204), - [anon_sym_f64] = ACTIONS(1204), - [anon_sym_bool] = ACTIONS(1204), - [anon_sym_str] = ACTIONS(1204), - [anon_sym_char] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_async] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_fn] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_impl] = ACTIONS(1204), - [anon_sym_let] = ACTIONS(1204), - [anon_sym_loop] = ACTIONS(1204), - [anon_sym_match] = ACTIONS(1204), - [anon_sym_mod] = ACTIONS(1204), - [anon_sym_pub] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_trait] = ACTIONS(1204), - [anon_sym_type] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_unsafe] = ACTIONS(1204), - [anon_sym_use] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_POUND] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym_LT] = ACTIONS(1202), - [anon_sym_COLON_COLON] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_DOT_DOT] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_PIPE] = ACTIONS(1202), - [anon_sym_move] = ACTIONS(1204), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1202), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1204), - [anon_sym_false] = ACTIONS(1204), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1204), - [sym_super] = ACTIONS(1204), - [sym_crate] = ACTIONS(1204), - [sym_metavariable] = ACTIONS(1202), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [278] = { - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_macro_rules_BANG] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_u8] = ACTIONS(1208), - [anon_sym_i8] = ACTIONS(1208), - [anon_sym_u16] = ACTIONS(1208), - [anon_sym_i16] = ACTIONS(1208), - [anon_sym_u32] = ACTIONS(1208), - [anon_sym_i32] = ACTIONS(1208), - [anon_sym_u64] = ACTIONS(1208), - [anon_sym_i64] = ACTIONS(1208), - [anon_sym_u128] = ACTIONS(1208), - [anon_sym_i128] = ACTIONS(1208), - [anon_sym_isize] = ACTIONS(1208), - [anon_sym_usize] = ACTIONS(1208), - [anon_sym_f32] = ACTIONS(1208), - [anon_sym_f64] = ACTIONS(1208), - [anon_sym_bool] = ACTIONS(1208), - [anon_sym_str] = ACTIONS(1208), - [anon_sym_char] = ACTIONS(1208), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_async] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_fn] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_impl] = ACTIONS(1208), - [anon_sym_let] = ACTIONS(1208), - [anon_sym_loop] = ACTIONS(1208), - [anon_sym_match] = ACTIONS(1208), - [anon_sym_mod] = ACTIONS(1208), - [anon_sym_pub] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_trait] = ACTIONS(1208), - [anon_sym_type] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_unsafe] = ACTIONS(1208), - [anon_sym_use] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_POUND] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1206), - [anon_sym_COLON_COLON] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_DOT_DOT] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(1206), - [anon_sym_move] = ACTIONS(1208), - [sym_integer_literal] = ACTIONS(1206), - [aux_sym_string_literal_token1] = ACTIONS(1206), - [sym_char_literal] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1208), - [sym_super] = ACTIONS(1208), - [sym_crate] = ACTIONS(1208), - [sym_metavariable] = ACTIONS(1206), - [sym_raw_string_literal] = ACTIONS(1206), - [sym_float_literal] = ACTIONS(1206), - [sym_block_comment] = ACTIONS(3), - }, - [279] = { - [ts_builtin_sym_end] = ACTIONS(1210), - [sym_identifier] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_macro_rules_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(1210), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_RBRACE] = ACTIONS(1210), - [anon_sym_LBRACK] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_u8] = ACTIONS(1212), - [anon_sym_i8] = ACTIONS(1212), - [anon_sym_u16] = ACTIONS(1212), - [anon_sym_i16] = ACTIONS(1212), - [anon_sym_u32] = ACTIONS(1212), - [anon_sym_i32] = ACTIONS(1212), - [anon_sym_u64] = ACTIONS(1212), - [anon_sym_i64] = ACTIONS(1212), - [anon_sym_u128] = ACTIONS(1212), - [anon_sym_i128] = ACTIONS(1212), - [anon_sym_isize] = ACTIONS(1212), - [anon_sym_usize] = ACTIONS(1212), - [anon_sym_f32] = ACTIONS(1212), - [anon_sym_f64] = ACTIONS(1212), - [anon_sym_bool] = ACTIONS(1212), - [anon_sym_str] = ACTIONS(1212), - [anon_sym_char] = ACTIONS(1212), - [anon_sym_SQUOTE] = ACTIONS(1212), - [anon_sym_async] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_fn] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_impl] = ACTIONS(1212), - [anon_sym_let] = ACTIONS(1212), - [anon_sym_loop] = ACTIONS(1212), - [anon_sym_match] = ACTIONS(1212), - [anon_sym_mod] = ACTIONS(1212), - [anon_sym_pub] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_trait] = ACTIONS(1212), - [anon_sym_type] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_unsafe] = ACTIONS(1212), - [anon_sym_use] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_POUND] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym_LT] = ACTIONS(1210), - [anon_sym_COLON_COLON] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_DOT_DOT] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_PIPE] = ACTIONS(1210), - [anon_sym_move] = ACTIONS(1212), - [sym_integer_literal] = ACTIONS(1210), - [aux_sym_string_literal_token1] = ACTIONS(1210), - [sym_char_literal] = ACTIONS(1210), - [anon_sym_true] = ACTIONS(1212), - [anon_sym_false] = ACTIONS(1212), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1212), - [sym_super] = ACTIONS(1212), - [sym_crate] = ACTIONS(1212), - [sym_metavariable] = ACTIONS(1210), - [sym_raw_string_literal] = ACTIONS(1210), - [sym_float_literal] = ACTIONS(1210), - [sym_block_comment] = ACTIONS(3), - }, - [280] = { - [ts_builtin_sym_end] = ACTIONS(1214), - [sym_identifier] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_macro_rules_BANG] = ACTIONS(1214), - [anon_sym_LPAREN] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_u8] = ACTIONS(1216), - [anon_sym_i8] = ACTIONS(1216), - [anon_sym_u16] = ACTIONS(1216), - [anon_sym_i16] = ACTIONS(1216), - [anon_sym_u32] = ACTIONS(1216), - [anon_sym_i32] = ACTIONS(1216), - [anon_sym_u64] = ACTIONS(1216), - [anon_sym_i64] = ACTIONS(1216), - [anon_sym_u128] = ACTIONS(1216), - [anon_sym_i128] = ACTIONS(1216), - [anon_sym_isize] = ACTIONS(1216), - [anon_sym_usize] = ACTIONS(1216), - [anon_sym_f32] = ACTIONS(1216), - [anon_sym_f64] = ACTIONS(1216), - [anon_sym_bool] = ACTIONS(1216), - [anon_sym_str] = ACTIONS(1216), - [anon_sym_char] = ACTIONS(1216), - [anon_sym_SQUOTE] = ACTIONS(1216), - [anon_sym_async] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_fn] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_impl] = ACTIONS(1216), - [anon_sym_let] = ACTIONS(1216), - [anon_sym_loop] = ACTIONS(1216), - [anon_sym_match] = ACTIONS(1216), - [anon_sym_mod] = ACTIONS(1216), - [anon_sym_pub] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_trait] = ACTIONS(1216), - [anon_sym_type] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_unsafe] = ACTIONS(1216), - [anon_sym_use] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_POUND] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_LT] = ACTIONS(1214), - [anon_sym_COLON_COLON] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_DOT_DOT] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(1214), - [anon_sym_move] = ACTIONS(1216), - [sym_integer_literal] = ACTIONS(1214), - [aux_sym_string_literal_token1] = ACTIONS(1214), - [sym_char_literal] = ACTIONS(1214), - [anon_sym_true] = ACTIONS(1216), - [anon_sym_false] = ACTIONS(1216), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1214), - [sym_raw_string_literal] = ACTIONS(1214), - [sym_float_literal] = ACTIONS(1214), - [sym_block_comment] = ACTIONS(3), - }, - [281] = { - [ts_builtin_sym_end] = ACTIONS(1218), - [sym_identifier] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_macro_rules_BANG] = ACTIONS(1218), - [anon_sym_LPAREN] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_RBRACE] = ACTIONS(1218), - [anon_sym_LBRACK] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_u8] = ACTIONS(1220), - [anon_sym_i8] = ACTIONS(1220), - [anon_sym_u16] = ACTIONS(1220), - [anon_sym_i16] = ACTIONS(1220), - [anon_sym_u32] = ACTIONS(1220), - [anon_sym_i32] = ACTIONS(1220), - [anon_sym_u64] = ACTIONS(1220), - [anon_sym_i64] = ACTIONS(1220), - [anon_sym_u128] = ACTIONS(1220), - [anon_sym_i128] = ACTIONS(1220), - [anon_sym_isize] = ACTIONS(1220), - [anon_sym_usize] = ACTIONS(1220), - [anon_sym_f32] = ACTIONS(1220), - [anon_sym_f64] = ACTIONS(1220), - [anon_sym_bool] = ACTIONS(1220), - [anon_sym_str] = ACTIONS(1220), - [anon_sym_char] = ACTIONS(1220), - [anon_sym_SQUOTE] = ACTIONS(1220), - [anon_sym_async] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_fn] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_impl] = ACTIONS(1220), - [anon_sym_let] = ACTIONS(1220), - [anon_sym_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1220), - [anon_sym_mod] = ACTIONS(1220), - [anon_sym_pub] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_trait] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_unsafe] = ACTIONS(1220), - [anon_sym_use] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_POUND] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1218), - [anon_sym_COLON_COLON] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_DOT_DOT] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_move] = ACTIONS(1220), - [sym_integer_literal] = ACTIONS(1218), - [aux_sym_string_literal_token1] = ACTIONS(1218), - [sym_char_literal] = ACTIONS(1218), - [anon_sym_true] = ACTIONS(1220), - [anon_sym_false] = ACTIONS(1220), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1220), - [sym_super] = ACTIONS(1220), - [sym_crate] = ACTIONS(1220), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(1218), - [sym_float_literal] = ACTIONS(1218), - [sym_block_comment] = ACTIONS(3), - }, - [282] = { - [ts_builtin_sym_end] = ACTIONS(1222), - [sym_identifier] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_macro_rules_BANG] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_u8] = ACTIONS(1224), - [anon_sym_i8] = ACTIONS(1224), - [anon_sym_u16] = ACTIONS(1224), - [anon_sym_i16] = ACTIONS(1224), - [anon_sym_u32] = ACTIONS(1224), - [anon_sym_i32] = ACTIONS(1224), - [anon_sym_u64] = ACTIONS(1224), - [anon_sym_i64] = ACTIONS(1224), - [anon_sym_u128] = ACTIONS(1224), - [anon_sym_i128] = ACTIONS(1224), - [anon_sym_isize] = ACTIONS(1224), - [anon_sym_usize] = ACTIONS(1224), - [anon_sym_f32] = ACTIONS(1224), - [anon_sym_f64] = ACTIONS(1224), - [anon_sym_bool] = ACTIONS(1224), - [anon_sym_str] = ACTIONS(1224), - [anon_sym_char] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_fn] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_impl] = ACTIONS(1224), - [anon_sym_let] = ACTIONS(1224), - [anon_sym_loop] = ACTIONS(1224), - [anon_sym_match] = ACTIONS(1224), - [anon_sym_mod] = ACTIONS(1224), - [anon_sym_pub] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_trait] = ACTIONS(1224), - [anon_sym_type] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_use] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_POUND] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1222), - [anon_sym_COLON_COLON] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_DOT_DOT] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1222), - [anon_sym_move] = ACTIONS(1224), - [sym_integer_literal] = ACTIONS(1222), - [aux_sym_string_literal_token1] = ACTIONS(1222), - [sym_char_literal] = ACTIONS(1222), - [anon_sym_true] = ACTIONS(1224), - [anon_sym_false] = ACTIONS(1224), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1224), - [sym_super] = ACTIONS(1224), - [sym_crate] = ACTIONS(1224), - [sym_metavariable] = ACTIONS(1222), - [sym_raw_string_literal] = ACTIONS(1222), - [sym_float_literal] = ACTIONS(1222), - [sym_block_comment] = ACTIONS(3), - }, - [283] = { - [ts_builtin_sym_end] = ACTIONS(1226), - [sym_identifier] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_macro_rules_BANG] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_u8] = ACTIONS(1228), - [anon_sym_i8] = ACTIONS(1228), - [anon_sym_u16] = ACTIONS(1228), - [anon_sym_i16] = ACTIONS(1228), - [anon_sym_u32] = ACTIONS(1228), - [anon_sym_i32] = ACTIONS(1228), - [anon_sym_u64] = ACTIONS(1228), - [anon_sym_i64] = ACTIONS(1228), - [anon_sym_u128] = ACTIONS(1228), - [anon_sym_i128] = ACTIONS(1228), - [anon_sym_isize] = ACTIONS(1228), - [anon_sym_usize] = ACTIONS(1228), - [anon_sym_f32] = ACTIONS(1228), - [anon_sym_f64] = ACTIONS(1228), - [anon_sym_bool] = ACTIONS(1228), - [anon_sym_str] = ACTIONS(1228), - [anon_sym_char] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_async] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_fn] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_impl] = ACTIONS(1228), - [anon_sym_let] = ACTIONS(1228), - [anon_sym_loop] = ACTIONS(1228), - [anon_sym_match] = ACTIONS(1228), - [anon_sym_mod] = ACTIONS(1228), - [anon_sym_pub] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_trait] = ACTIONS(1228), - [anon_sym_type] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1228), - [anon_sym_unsafe] = ACTIONS(1228), - [anon_sym_use] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_POUND] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1226), - [anon_sym_COLON_COLON] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_DOT_DOT] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1226), - [anon_sym_move] = ACTIONS(1228), - [sym_integer_literal] = ACTIONS(1226), - [aux_sym_string_literal_token1] = ACTIONS(1226), - [sym_char_literal] = ACTIONS(1226), - [anon_sym_true] = ACTIONS(1228), - [anon_sym_false] = ACTIONS(1228), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1228), - [sym_super] = ACTIONS(1228), - [sym_crate] = ACTIONS(1228), - [sym_metavariable] = ACTIONS(1226), - [sym_raw_string_literal] = ACTIONS(1226), - [sym_float_literal] = ACTIONS(1226), - [sym_block_comment] = ACTIONS(3), - }, - [284] = { - [ts_builtin_sym_end] = ACTIONS(1230), - [sym_identifier] = ACTIONS(1232), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_macro_rules_BANG] = ACTIONS(1230), - [anon_sym_LPAREN] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_RBRACE] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_u8] = ACTIONS(1232), - [anon_sym_i8] = ACTIONS(1232), - [anon_sym_u16] = ACTIONS(1232), - [anon_sym_i16] = ACTIONS(1232), - [anon_sym_u32] = ACTIONS(1232), - [anon_sym_i32] = ACTIONS(1232), - [anon_sym_u64] = ACTIONS(1232), - [anon_sym_i64] = ACTIONS(1232), - [anon_sym_u128] = ACTIONS(1232), - [anon_sym_i128] = ACTIONS(1232), - [anon_sym_isize] = ACTIONS(1232), - [anon_sym_usize] = ACTIONS(1232), - [anon_sym_f32] = ACTIONS(1232), - [anon_sym_f64] = ACTIONS(1232), - [anon_sym_bool] = ACTIONS(1232), - [anon_sym_str] = ACTIONS(1232), - [anon_sym_char] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1232), - [anon_sym_async] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_fn] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_impl] = ACTIONS(1232), - [anon_sym_let] = ACTIONS(1232), - [anon_sym_loop] = ACTIONS(1232), - [anon_sym_match] = ACTIONS(1232), - [anon_sym_mod] = ACTIONS(1232), - [anon_sym_pub] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_trait] = ACTIONS(1232), - [anon_sym_type] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_unsafe] = ACTIONS(1232), - [anon_sym_use] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_PIPE] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1232), - [sym_integer_literal] = ACTIONS(1230), - [aux_sym_string_literal_token1] = ACTIONS(1230), - [sym_char_literal] = ACTIONS(1230), - [anon_sym_true] = ACTIONS(1232), - [anon_sym_false] = ACTIONS(1232), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1232), - [sym_super] = ACTIONS(1232), - [sym_crate] = ACTIONS(1232), - [sym_metavariable] = ACTIONS(1230), - [sym_raw_string_literal] = ACTIONS(1230), - [sym_float_literal] = ACTIONS(1230), - [sym_block_comment] = ACTIONS(3), - }, - [285] = { - [ts_builtin_sym_end] = ACTIONS(1234), - [sym_identifier] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_macro_rules_BANG] = ACTIONS(1234), - [anon_sym_LPAREN] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_u8] = ACTIONS(1236), - [anon_sym_i8] = ACTIONS(1236), - [anon_sym_u16] = ACTIONS(1236), - [anon_sym_i16] = ACTIONS(1236), - [anon_sym_u32] = ACTIONS(1236), - [anon_sym_i32] = ACTIONS(1236), - [anon_sym_u64] = ACTIONS(1236), - [anon_sym_i64] = ACTIONS(1236), - [anon_sym_u128] = ACTIONS(1236), - [anon_sym_i128] = ACTIONS(1236), - [anon_sym_isize] = ACTIONS(1236), - [anon_sym_usize] = ACTIONS(1236), - [anon_sym_f32] = ACTIONS(1236), - [anon_sym_f64] = ACTIONS(1236), - [anon_sym_bool] = ACTIONS(1236), - [anon_sym_str] = ACTIONS(1236), - [anon_sym_char] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_async] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_fn] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_impl] = ACTIONS(1236), - [anon_sym_let] = ACTIONS(1236), - [anon_sym_loop] = ACTIONS(1236), - [anon_sym_match] = ACTIONS(1236), - [anon_sym_mod] = ACTIONS(1236), - [anon_sym_pub] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_trait] = ACTIONS(1236), - [anon_sym_type] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_unsafe] = ACTIONS(1236), - [anon_sym_use] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_POUND] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_COLON_COLON] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_DOT_DOT] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_move] = ACTIONS(1236), - [sym_integer_literal] = ACTIONS(1234), - [aux_sym_string_literal_token1] = ACTIONS(1234), - [sym_char_literal] = ACTIONS(1234), - [anon_sym_true] = ACTIONS(1236), - [anon_sym_false] = ACTIONS(1236), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1236), - [sym_super] = ACTIONS(1236), - [sym_crate] = ACTIONS(1236), - [sym_metavariable] = ACTIONS(1234), - [sym_raw_string_literal] = ACTIONS(1234), - [sym_float_literal] = ACTIONS(1234), - [sym_block_comment] = ACTIONS(3), - }, - [286] = { - [ts_builtin_sym_end] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_macro_rules_BANG] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_RBRACE] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_u8] = ACTIONS(1240), - [anon_sym_i8] = ACTIONS(1240), - [anon_sym_u16] = ACTIONS(1240), - [anon_sym_i16] = ACTIONS(1240), - [anon_sym_u32] = ACTIONS(1240), - [anon_sym_i32] = ACTIONS(1240), - [anon_sym_u64] = ACTIONS(1240), - [anon_sym_i64] = ACTIONS(1240), - [anon_sym_u128] = ACTIONS(1240), - [anon_sym_i128] = ACTIONS(1240), - [anon_sym_isize] = ACTIONS(1240), - [anon_sym_usize] = ACTIONS(1240), - [anon_sym_f32] = ACTIONS(1240), - [anon_sym_f64] = ACTIONS(1240), - [anon_sym_bool] = ACTIONS(1240), - [anon_sym_str] = ACTIONS(1240), - [anon_sym_char] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_fn] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_impl] = ACTIONS(1240), - [anon_sym_let] = ACTIONS(1240), - [anon_sym_loop] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [anon_sym_mod] = ACTIONS(1240), - [anon_sym_pub] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_trait] = ACTIONS(1240), - [anon_sym_type] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_unsafe] = ACTIONS(1240), - [anon_sym_use] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_COLON_COLON] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_DOT_DOT] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_move] = ACTIONS(1240), - [sym_integer_literal] = ACTIONS(1238), - [aux_sym_string_literal_token1] = ACTIONS(1238), - [sym_char_literal] = ACTIONS(1238), - [anon_sym_true] = ACTIONS(1240), - [anon_sym_false] = ACTIONS(1240), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1240), - [sym_super] = ACTIONS(1240), - [sym_crate] = ACTIONS(1240), - [sym_metavariable] = ACTIONS(1238), - [sym_raw_string_literal] = ACTIONS(1238), - [sym_float_literal] = ACTIONS(1238), - [sym_block_comment] = ACTIONS(3), - }, - [287] = { - [ts_builtin_sym_end] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_macro_rules_BANG] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1244), - [anon_sym_i8] = ACTIONS(1244), - [anon_sym_u16] = ACTIONS(1244), - [anon_sym_i16] = ACTIONS(1244), - [anon_sym_u32] = ACTIONS(1244), - [anon_sym_i32] = ACTIONS(1244), - [anon_sym_u64] = ACTIONS(1244), - [anon_sym_i64] = ACTIONS(1244), - [anon_sym_u128] = ACTIONS(1244), - [anon_sym_i128] = ACTIONS(1244), - [anon_sym_isize] = ACTIONS(1244), - [anon_sym_usize] = ACTIONS(1244), - [anon_sym_f32] = ACTIONS(1244), - [anon_sym_f64] = ACTIONS(1244), - [anon_sym_bool] = ACTIONS(1244), - [anon_sym_str] = ACTIONS(1244), - [anon_sym_char] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_async] = ACTIONS(1244), - [anon_sym_break] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_continue] = ACTIONS(1244), - [anon_sym_default] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_fn] = ACTIONS(1244), - [anon_sym_for] = ACTIONS(1244), - [anon_sym_if] = ACTIONS(1244), - [anon_sym_impl] = ACTIONS(1244), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_loop] = ACTIONS(1244), - [anon_sym_match] = ACTIONS(1244), - [anon_sym_mod] = ACTIONS(1244), - [anon_sym_pub] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1244), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [anon_sym_trait] = ACTIONS(1244), - [anon_sym_type] = ACTIONS(1244), - [anon_sym_union] = ACTIONS(1244), - [anon_sym_unsafe] = ACTIONS(1244), - [anon_sym_use] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_DOT_DOT] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_move] = ACTIONS(1244), - [sym_integer_literal] = ACTIONS(1242), - [aux_sym_string_literal_token1] = ACTIONS(1242), - [sym_char_literal] = ACTIONS(1242), - [anon_sym_true] = ACTIONS(1244), - [anon_sym_false] = ACTIONS(1244), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1244), - [sym_super] = ACTIONS(1244), - [sym_crate] = ACTIONS(1244), - [sym_metavariable] = ACTIONS(1242), - [sym_raw_string_literal] = ACTIONS(1242), - [sym_float_literal] = ACTIONS(1242), - [sym_block_comment] = ACTIONS(3), - }, - [288] = { - [ts_builtin_sym_end] = ACTIONS(1246), - [sym_identifier] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_macro_rules_BANG] = ACTIONS(1246), - [anon_sym_LPAREN] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_RBRACE] = ACTIONS(1246), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1248), - [anon_sym_async] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_default] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_fn] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_impl] = ACTIONS(1248), - [anon_sym_let] = ACTIONS(1248), - [anon_sym_loop] = ACTIONS(1248), - [anon_sym_match] = ACTIONS(1248), - [anon_sym_mod] = ACTIONS(1248), - [anon_sym_pub] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_trait] = ACTIONS(1248), - [anon_sym_type] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_unsafe] = ACTIONS(1248), - [anon_sym_use] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_POUND] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_COLON_COLON] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_DOT_DOT] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_move] = ACTIONS(1248), - [sym_integer_literal] = ACTIONS(1246), - [aux_sym_string_literal_token1] = ACTIONS(1246), - [sym_char_literal] = ACTIONS(1246), - [anon_sym_true] = ACTIONS(1248), - [anon_sym_false] = ACTIONS(1248), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1248), - [sym_super] = ACTIONS(1248), - [sym_crate] = ACTIONS(1248), - [sym_metavariable] = ACTIONS(1246), - [sym_raw_string_literal] = ACTIONS(1246), - [sym_float_literal] = ACTIONS(1246), - [sym_block_comment] = ACTIONS(3), - }, - [289] = { - [ts_builtin_sym_end] = ACTIONS(1250), - [sym_identifier] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_macro_rules_BANG] = ACTIONS(1250), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_u8] = ACTIONS(1252), - [anon_sym_i8] = ACTIONS(1252), - [anon_sym_u16] = ACTIONS(1252), - [anon_sym_i16] = ACTIONS(1252), - [anon_sym_u32] = ACTIONS(1252), - [anon_sym_i32] = ACTIONS(1252), - [anon_sym_u64] = ACTIONS(1252), - [anon_sym_i64] = ACTIONS(1252), - [anon_sym_u128] = ACTIONS(1252), - [anon_sym_i128] = ACTIONS(1252), - [anon_sym_isize] = ACTIONS(1252), - [anon_sym_usize] = ACTIONS(1252), - [anon_sym_f32] = ACTIONS(1252), - [anon_sym_f64] = ACTIONS(1252), - [anon_sym_bool] = ACTIONS(1252), - [anon_sym_str] = ACTIONS(1252), - [anon_sym_char] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1252), - [anon_sym_async] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_fn] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_impl] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_pub] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_trait] = ACTIONS(1252), - [anon_sym_type] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_unsafe] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_DOT_DOT] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_PIPE] = ACTIONS(1250), - [anon_sym_move] = ACTIONS(1252), - [sym_integer_literal] = ACTIONS(1250), - [aux_sym_string_literal_token1] = ACTIONS(1250), - [sym_char_literal] = ACTIONS(1250), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1252), - [sym_super] = ACTIONS(1252), - [sym_crate] = ACTIONS(1252), - [sym_metavariable] = ACTIONS(1250), - [sym_raw_string_literal] = ACTIONS(1250), - [sym_float_literal] = ACTIONS(1250), - [sym_block_comment] = ACTIONS(3), - }, - [290] = { - [ts_builtin_sym_end] = ACTIONS(1254), - [sym_identifier] = ACTIONS(1256), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_macro_rules_BANG] = ACTIONS(1254), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_u8] = ACTIONS(1256), - [anon_sym_i8] = ACTIONS(1256), - [anon_sym_u16] = ACTIONS(1256), - [anon_sym_i16] = ACTIONS(1256), - [anon_sym_u32] = ACTIONS(1256), - [anon_sym_i32] = ACTIONS(1256), - [anon_sym_u64] = ACTIONS(1256), - [anon_sym_i64] = ACTIONS(1256), - [anon_sym_u128] = ACTIONS(1256), - [anon_sym_i128] = ACTIONS(1256), - [anon_sym_isize] = ACTIONS(1256), - [anon_sym_usize] = ACTIONS(1256), - [anon_sym_f32] = ACTIONS(1256), - [anon_sym_f64] = ACTIONS(1256), - [anon_sym_bool] = ACTIONS(1256), - [anon_sym_str] = ACTIONS(1256), - [anon_sym_char] = ACTIONS(1256), - [anon_sym_SQUOTE] = ACTIONS(1256), - [anon_sym_async] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_fn] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_impl] = ACTIONS(1256), - [anon_sym_let] = ACTIONS(1256), - [anon_sym_loop] = ACTIONS(1256), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_mod] = ACTIONS(1256), - [anon_sym_pub] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_trait] = ACTIONS(1256), - [anon_sym_type] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_unsafe] = ACTIONS(1256), - [anon_sym_use] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_POUND] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1254), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_move] = ACTIONS(1256), - [sym_integer_literal] = ACTIONS(1254), - [aux_sym_string_literal_token1] = ACTIONS(1254), - [sym_char_literal] = ACTIONS(1254), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1256), - [sym_super] = ACTIONS(1256), - [sym_crate] = ACTIONS(1256), - [sym_metavariable] = ACTIONS(1254), - [sym_raw_string_literal] = ACTIONS(1254), - [sym_float_literal] = ACTIONS(1254), - [sym_block_comment] = ACTIONS(3), - }, - [291] = { - [sym__token_pattern] = STATE(302), - [sym_token_tree_pattern] = STATE(302), - [sym_token_binding_pattern] = STATE(302), - [sym_token_repetition_pattern] = STATE(302), - [sym__literal] = STATE(302), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(302), - [sym_identifier] = ACTIONS(1258), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1258), - [anon_sym_i8] = ACTIONS(1258), - [anon_sym_u16] = ACTIONS(1258), - [anon_sym_i16] = ACTIONS(1258), - [anon_sym_u32] = ACTIONS(1258), - [anon_sym_i32] = ACTIONS(1258), - [anon_sym_u64] = ACTIONS(1258), - [anon_sym_i64] = ACTIONS(1258), - [anon_sym_u128] = ACTIONS(1258), - [anon_sym_i128] = ACTIONS(1258), - [anon_sym_isize] = ACTIONS(1258), - [anon_sym_usize] = ACTIONS(1258), - [anon_sym_f32] = ACTIONS(1258), - [anon_sym_f64] = ACTIONS(1258), - [anon_sym_bool] = ACTIONS(1258), - [anon_sym_str] = ACTIONS(1258), - [anon_sym_char] = ACTIONS(1258), - [aux_sym__non_special_token_token1] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_as] = ACTIONS(1258), - [anon_sym_async] = ACTIONS(1258), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_const] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_default] = ACTIONS(1258), - [anon_sym_enum] = ACTIONS(1258), - [anon_sym_fn] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_impl] = ACTIONS(1258), - [anon_sym_let] = ACTIONS(1258), - [anon_sym_loop] = ACTIONS(1258), - [anon_sym_match] = ACTIONS(1258), - [anon_sym_mod] = ACTIONS(1258), - [anon_sym_pub] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1258), - [anon_sym_struct] = ACTIONS(1258), - [anon_sym_trait] = ACTIONS(1258), - [anon_sym_type] = ACTIONS(1258), - [anon_sym_union] = ACTIONS(1258), - [anon_sym_unsafe] = ACTIONS(1258), - [anon_sym_use] = ACTIONS(1258), - [anon_sym_where] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1258), - [sym_mutable_specifier] = ACTIONS(1258), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [292] = { - [sym__token_pattern] = STATE(303), - [sym_token_tree_pattern] = STATE(303), - [sym_token_binding_pattern] = STATE(303), - [sym_token_repetition_pattern] = STATE(303), - [sym__literal] = STATE(303), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_RBRACE] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1262), - [anon_sym_i8] = ACTIONS(1262), - [anon_sym_u16] = ACTIONS(1262), - [anon_sym_i16] = ACTIONS(1262), - [anon_sym_u32] = ACTIONS(1262), - [anon_sym_i32] = ACTIONS(1262), - [anon_sym_u64] = ACTIONS(1262), - [anon_sym_i64] = ACTIONS(1262), - [anon_sym_u128] = ACTIONS(1262), - [anon_sym_i128] = ACTIONS(1262), - [anon_sym_isize] = ACTIONS(1262), - [anon_sym_usize] = ACTIONS(1262), - [anon_sym_f32] = ACTIONS(1262), - [anon_sym_f64] = ACTIONS(1262), - [anon_sym_bool] = ACTIONS(1262), - [anon_sym_str] = ACTIONS(1262), - [anon_sym_char] = ACTIONS(1262), - [aux_sym__non_special_token_token1] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_as] = ACTIONS(1262), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_await] = ACTIONS(1262), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1262), - [anon_sym_enum] = ACTIONS(1262), - [anon_sym_fn] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_impl] = ACTIONS(1262), - [anon_sym_let] = ACTIONS(1262), - [anon_sym_loop] = ACTIONS(1262), - [anon_sym_match] = ACTIONS(1262), - [anon_sym_mod] = ACTIONS(1262), - [anon_sym_pub] = ACTIONS(1262), - [anon_sym_return] = ACTIONS(1262), - [anon_sym_static] = ACTIONS(1262), - [anon_sym_struct] = ACTIONS(1262), - [anon_sym_trait] = ACTIONS(1262), - [anon_sym_type] = ACTIONS(1262), - [anon_sym_union] = ACTIONS(1262), - [anon_sym_unsafe] = ACTIONS(1262), - [anon_sym_use] = ACTIONS(1262), - [anon_sym_where] = ACTIONS(1262), - [anon_sym_while] = ACTIONS(1262), - [sym_mutable_specifier] = ACTIONS(1262), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1262), - [sym_super] = ACTIONS(1262), - [sym_crate] = ACTIONS(1262), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [293] = { - [sym__token_pattern] = STATE(304), - [sym_token_tree_pattern] = STATE(304), - [sym_token_binding_pattern] = STATE(304), - [sym_token_repetition_pattern] = STATE(304), - [sym__literal] = STATE(304), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(304), - [sym_identifier] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_RBRACK] = ACTIONS(1260), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1264), - [anon_sym_i8] = ACTIONS(1264), - [anon_sym_u16] = ACTIONS(1264), - [anon_sym_i16] = ACTIONS(1264), - [anon_sym_u32] = ACTIONS(1264), - [anon_sym_i32] = ACTIONS(1264), - [anon_sym_u64] = ACTIONS(1264), - [anon_sym_i64] = ACTIONS(1264), - [anon_sym_u128] = ACTIONS(1264), - [anon_sym_i128] = ACTIONS(1264), - [anon_sym_isize] = ACTIONS(1264), - [anon_sym_usize] = ACTIONS(1264), - [anon_sym_f32] = ACTIONS(1264), - [anon_sym_f64] = ACTIONS(1264), - [anon_sym_bool] = ACTIONS(1264), - [anon_sym_str] = ACTIONS(1264), - [anon_sym_char] = ACTIONS(1264), - [aux_sym__non_special_token_token1] = ACTIONS(1264), - [anon_sym_SQUOTE] = ACTIONS(1264), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_async] = ACTIONS(1264), - [anon_sym_await] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_fn] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_impl] = ACTIONS(1264), - [anon_sym_let] = ACTIONS(1264), - [anon_sym_loop] = ACTIONS(1264), - [anon_sym_match] = ACTIONS(1264), - [anon_sym_mod] = ACTIONS(1264), - [anon_sym_pub] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_trait] = ACTIONS(1264), - [anon_sym_type] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_unsafe] = ACTIONS(1264), - [anon_sym_use] = ACTIONS(1264), - [anon_sym_where] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [sym_mutable_specifier] = ACTIONS(1264), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1264), - [sym_super] = ACTIONS(1264), - [sym_crate] = ACTIONS(1264), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [294] = { - [ts_builtin_sym_end] = ACTIONS(1266), - [sym_identifier] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym_macro_rules_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(1266), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_RBRACE] = ACTIONS(1266), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_u8] = ACTIONS(1268), - [anon_sym_i8] = ACTIONS(1268), - [anon_sym_u16] = ACTIONS(1268), - [anon_sym_i16] = ACTIONS(1268), - [anon_sym_u32] = ACTIONS(1268), - [anon_sym_i32] = ACTIONS(1268), - [anon_sym_u64] = ACTIONS(1268), - [anon_sym_i64] = ACTIONS(1268), - [anon_sym_u128] = ACTIONS(1268), - [anon_sym_i128] = ACTIONS(1268), - [anon_sym_isize] = ACTIONS(1268), - [anon_sym_usize] = ACTIONS(1268), - [anon_sym_f32] = ACTIONS(1268), - [anon_sym_f64] = ACTIONS(1268), - [anon_sym_bool] = ACTIONS(1268), - [anon_sym_str] = ACTIONS(1268), - [anon_sym_char] = ACTIONS(1268), - [anon_sym_SQUOTE] = ACTIONS(1268), - [anon_sym_async] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_fn] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_impl] = ACTIONS(1268), - [anon_sym_let] = ACTIONS(1268), - [anon_sym_loop] = ACTIONS(1268), - [anon_sym_match] = ACTIONS(1268), - [anon_sym_mod] = ACTIONS(1268), - [anon_sym_pub] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_trait] = ACTIONS(1268), - [anon_sym_type] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_unsafe] = ACTIONS(1268), - [anon_sym_use] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_POUND] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_DOT_DOT] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_move] = ACTIONS(1268), - [sym_integer_literal] = ACTIONS(1266), - [aux_sym_string_literal_token1] = ACTIONS(1266), - [sym_char_literal] = ACTIONS(1266), - [anon_sym_true] = ACTIONS(1268), - [anon_sym_false] = ACTIONS(1268), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1268), - [sym_super] = ACTIONS(1268), - [sym_crate] = ACTIONS(1268), - [sym_metavariable] = ACTIONS(1266), - [sym_raw_string_literal] = ACTIONS(1266), - [sym_float_literal] = ACTIONS(1266), - [sym_block_comment] = ACTIONS(3), - }, - [295] = { - [sym__token_pattern] = STATE(425), - [sym_token_tree_pattern] = STATE(425), - [sym_token_binding_pattern] = STATE(425), - [sym_token_repetition_pattern] = STATE(425), - [sym__literal] = STATE(425), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(425), - [sym_identifier] = ACTIONS(1270), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1270), - [anon_sym_i8] = ACTIONS(1270), - [anon_sym_u16] = ACTIONS(1270), - [anon_sym_i16] = ACTIONS(1270), - [anon_sym_u32] = ACTIONS(1270), - [anon_sym_i32] = ACTIONS(1270), - [anon_sym_u64] = ACTIONS(1270), - [anon_sym_i64] = ACTIONS(1270), - [anon_sym_u128] = ACTIONS(1270), - [anon_sym_i128] = ACTIONS(1270), - [anon_sym_isize] = ACTIONS(1270), - [anon_sym_usize] = ACTIONS(1270), - [anon_sym_f32] = ACTIONS(1270), - [anon_sym_f64] = ACTIONS(1270), - [anon_sym_bool] = ACTIONS(1270), - [anon_sym_str] = ACTIONS(1270), - [anon_sym_char] = ACTIONS(1270), - [aux_sym__non_special_token_token1] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_as] = ACTIONS(1270), - [anon_sym_async] = ACTIONS(1270), - [anon_sym_await] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_fn] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_impl] = ACTIONS(1270), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_loop] = ACTIONS(1270), - [anon_sym_match] = ACTIONS(1270), - [anon_sym_mod] = ACTIONS(1270), - [anon_sym_pub] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_trait] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_unsafe] = ACTIONS(1270), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_where] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [sym_mutable_specifier] = ACTIONS(1270), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [296] = { - [ts_builtin_sym_end] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_macro_rules_BANG] = ACTIONS(1274), - [anon_sym_LPAREN] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_u8] = ACTIONS(1276), - [anon_sym_i8] = ACTIONS(1276), - [anon_sym_u16] = ACTIONS(1276), - [anon_sym_i16] = ACTIONS(1276), - [anon_sym_u32] = ACTIONS(1276), - [anon_sym_i32] = ACTIONS(1276), - [anon_sym_u64] = ACTIONS(1276), - [anon_sym_i64] = ACTIONS(1276), - [anon_sym_u128] = ACTIONS(1276), - [anon_sym_i128] = ACTIONS(1276), - [anon_sym_isize] = ACTIONS(1276), - [anon_sym_usize] = ACTIONS(1276), - [anon_sym_f32] = ACTIONS(1276), - [anon_sym_f64] = ACTIONS(1276), - [anon_sym_bool] = ACTIONS(1276), - [anon_sym_str] = ACTIONS(1276), - [anon_sym_char] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_async] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_fn] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_impl] = ACTIONS(1276), - [anon_sym_let] = ACTIONS(1276), - [anon_sym_loop] = ACTIONS(1276), - [anon_sym_match] = ACTIONS(1276), - [anon_sym_mod] = ACTIONS(1276), - [anon_sym_pub] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_trait] = ACTIONS(1276), - [anon_sym_type] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_unsafe] = ACTIONS(1276), - [anon_sym_use] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_POUND] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_DOT_DOT] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1274), - [anon_sym_move] = ACTIONS(1276), - [sym_integer_literal] = ACTIONS(1274), - [aux_sym_string_literal_token1] = ACTIONS(1274), - [sym_char_literal] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1276), - [anon_sym_false] = ACTIONS(1276), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1276), - [sym_super] = ACTIONS(1276), - [sym_crate] = ACTIONS(1276), - [sym_metavariable] = ACTIONS(1274), - [sym_raw_string_literal] = ACTIONS(1274), - [sym_float_literal] = ACTIONS(1274), - [sym_block_comment] = ACTIONS(3), - }, - [297] = { - [ts_builtin_sym_end] = ACTIONS(1278), - [sym_identifier] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_macro_rules_BANG] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_u8] = ACTIONS(1280), - [anon_sym_i8] = ACTIONS(1280), - [anon_sym_u16] = ACTIONS(1280), - [anon_sym_i16] = ACTIONS(1280), - [anon_sym_u32] = ACTIONS(1280), - [anon_sym_i32] = ACTIONS(1280), - [anon_sym_u64] = ACTIONS(1280), - [anon_sym_i64] = ACTIONS(1280), - [anon_sym_u128] = ACTIONS(1280), - [anon_sym_i128] = ACTIONS(1280), - [anon_sym_isize] = ACTIONS(1280), - [anon_sym_usize] = ACTIONS(1280), - [anon_sym_f32] = ACTIONS(1280), - [anon_sym_f64] = ACTIONS(1280), - [anon_sym_bool] = ACTIONS(1280), - [anon_sym_str] = ACTIONS(1280), - [anon_sym_char] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_fn] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_impl] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_pub] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_trait] = ACTIONS(1280), - [anon_sym_type] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_unsafe] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_DOT_DOT] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_move] = ACTIONS(1280), - [sym_integer_literal] = ACTIONS(1278), - [aux_sym_string_literal_token1] = ACTIONS(1278), - [sym_char_literal] = ACTIONS(1278), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1280), - [sym_super] = ACTIONS(1280), - [sym_crate] = ACTIONS(1280), - [sym_metavariable] = ACTIONS(1278), - [sym_raw_string_literal] = ACTIONS(1278), - [sym_float_literal] = ACTIONS(1278), - [sym_block_comment] = ACTIONS(3), - }, - [298] = { - [ts_builtin_sym_end] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_macro_rules_BANG] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_u8] = ACTIONS(1284), - [anon_sym_i8] = ACTIONS(1284), - [anon_sym_u16] = ACTIONS(1284), - [anon_sym_i16] = ACTIONS(1284), - [anon_sym_u32] = ACTIONS(1284), - [anon_sym_i32] = ACTIONS(1284), - [anon_sym_u64] = ACTIONS(1284), - [anon_sym_i64] = ACTIONS(1284), - [anon_sym_u128] = ACTIONS(1284), - [anon_sym_i128] = ACTIONS(1284), - [anon_sym_isize] = ACTIONS(1284), - [anon_sym_usize] = ACTIONS(1284), - [anon_sym_f32] = ACTIONS(1284), - [anon_sym_f64] = ACTIONS(1284), - [anon_sym_bool] = ACTIONS(1284), - [anon_sym_str] = ACTIONS(1284), - [anon_sym_char] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_fn] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_impl] = ACTIONS(1284), - [anon_sym_let] = ACTIONS(1284), - [anon_sym_loop] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1284), - [anon_sym_mod] = ACTIONS(1284), - [anon_sym_pub] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_trait] = ACTIONS(1284), - [anon_sym_type] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_use] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_POUND] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1282), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_DOT_DOT] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1282), - [anon_sym_move] = ACTIONS(1284), - [sym_integer_literal] = ACTIONS(1282), - [aux_sym_string_literal_token1] = ACTIONS(1282), - [sym_char_literal] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1284), - [anon_sym_false] = ACTIONS(1284), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1284), - [sym_super] = ACTIONS(1284), - [sym_crate] = ACTIONS(1284), - [sym_metavariable] = ACTIONS(1282), - [sym_raw_string_literal] = ACTIONS(1282), - [sym_float_literal] = ACTIONS(1282), - [sym_block_comment] = ACTIONS(3), - }, - [299] = { - [ts_builtin_sym_end] = ACTIONS(1286), - [sym_identifier] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_macro_rules_BANG] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_u8] = ACTIONS(1288), - [anon_sym_i8] = ACTIONS(1288), - [anon_sym_u16] = ACTIONS(1288), - [anon_sym_i16] = ACTIONS(1288), - [anon_sym_u32] = ACTIONS(1288), - [anon_sym_i32] = ACTIONS(1288), - [anon_sym_u64] = ACTIONS(1288), - [anon_sym_i64] = ACTIONS(1288), - [anon_sym_u128] = ACTIONS(1288), - [anon_sym_i128] = ACTIONS(1288), - [anon_sym_isize] = ACTIONS(1288), - [anon_sym_usize] = ACTIONS(1288), - [anon_sym_f32] = ACTIONS(1288), - [anon_sym_f64] = ACTIONS(1288), - [anon_sym_bool] = ACTIONS(1288), - [anon_sym_str] = ACTIONS(1288), - [anon_sym_char] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_impl] = ACTIONS(1288), - [anon_sym_let] = ACTIONS(1288), - [anon_sym_loop] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1288), - [anon_sym_mod] = ACTIONS(1288), - [anon_sym_pub] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_trait] = ACTIONS(1288), - [anon_sym_type] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_use] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1286), - [anon_sym_COLON_COLON] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_move] = ACTIONS(1288), - [sym_integer_literal] = ACTIONS(1286), - [aux_sym_string_literal_token1] = ACTIONS(1286), - [sym_char_literal] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1288), - [anon_sym_false] = ACTIONS(1288), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1288), - [sym_super] = ACTIONS(1288), - [sym_crate] = ACTIONS(1288), - [sym_metavariable] = ACTIONS(1286), - [sym_raw_string_literal] = ACTIONS(1286), - [sym_float_literal] = ACTIONS(1286), - [sym_block_comment] = ACTIONS(3), - }, - [300] = { - [ts_builtin_sym_end] = ACTIONS(1290), - [sym_identifier] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_macro_rules_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_u8] = ACTIONS(1292), - [anon_sym_i8] = ACTIONS(1292), - [anon_sym_u16] = ACTIONS(1292), - [anon_sym_i16] = ACTIONS(1292), - [anon_sym_u32] = ACTIONS(1292), - [anon_sym_i32] = ACTIONS(1292), - [anon_sym_u64] = ACTIONS(1292), - [anon_sym_i64] = ACTIONS(1292), - [anon_sym_u128] = ACTIONS(1292), - [anon_sym_i128] = ACTIONS(1292), - [anon_sym_isize] = ACTIONS(1292), - [anon_sym_usize] = ACTIONS(1292), - [anon_sym_f32] = ACTIONS(1292), - [anon_sym_f64] = ACTIONS(1292), - [anon_sym_bool] = ACTIONS(1292), - [anon_sym_str] = ACTIONS(1292), - [anon_sym_char] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_async] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_fn] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1292), - [anon_sym_let] = ACTIONS(1292), - [anon_sym_loop] = ACTIONS(1292), - [anon_sym_match] = ACTIONS(1292), - [anon_sym_mod] = ACTIONS(1292), - [anon_sym_pub] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_trait] = ACTIONS(1292), - [anon_sym_type] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_unsafe] = ACTIONS(1292), - [anon_sym_use] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_POUND] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_COLON_COLON] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_DOT_DOT] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_move] = ACTIONS(1292), - [sym_integer_literal] = ACTIONS(1290), - [aux_sym_string_literal_token1] = ACTIONS(1290), - [sym_char_literal] = ACTIONS(1290), - [anon_sym_true] = ACTIONS(1292), - [anon_sym_false] = ACTIONS(1292), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1292), - [sym_super] = ACTIONS(1292), - [sym_crate] = ACTIONS(1292), - [sym_metavariable] = ACTIONS(1290), - [sym_raw_string_literal] = ACTIONS(1290), - [sym_float_literal] = ACTIONS(1290), - [sym_block_comment] = ACTIONS(3), - }, - [301] = { - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_macro_rules_BANG] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_u8] = ACTIONS(1296), - [anon_sym_i8] = ACTIONS(1296), - [anon_sym_u16] = ACTIONS(1296), - [anon_sym_i16] = ACTIONS(1296), - [anon_sym_u32] = ACTIONS(1296), - [anon_sym_i32] = ACTIONS(1296), - [anon_sym_u64] = ACTIONS(1296), - [anon_sym_i64] = ACTIONS(1296), - [anon_sym_u128] = ACTIONS(1296), - [anon_sym_i128] = ACTIONS(1296), - [anon_sym_isize] = ACTIONS(1296), - [anon_sym_usize] = ACTIONS(1296), - [anon_sym_f32] = ACTIONS(1296), - [anon_sym_f64] = ACTIONS(1296), - [anon_sym_bool] = ACTIONS(1296), - [anon_sym_str] = ACTIONS(1296), - [anon_sym_char] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_async] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_fn] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1296), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_loop] = ACTIONS(1296), - [anon_sym_match] = ACTIONS(1296), - [anon_sym_mod] = ACTIONS(1296), - [anon_sym_pub] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_trait] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1296), - [anon_sym_use] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_POUND] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_COLON_COLON] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_move] = ACTIONS(1296), - [sym_integer_literal] = ACTIONS(1294), - [aux_sym_string_literal_token1] = ACTIONS(1294), - [sym_char_literal] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1296), - [sym_super] = ACTIONS(1296), - [sym_crate] = ACTIONS(1296), - [sym_metavariable] = ACTIONS(1294), - [sym_raw_string_literal] = ACTIONS(1294), - [sym_float_literal] = ACTIONS(1294), - [sym_block_comment] = ACTIONS(3), - }, - [302] = { - [sym__token_pattern] = STATE(216), - [sym_token_tree_pattern] = STATE(216), - [sym_token_binding_pattern] = STATE(216), - [sym_token_repetition_pattern] = STATE(216), - [sym__literal] = STATE(216), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_await] = 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_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_where] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [sym_mutable_specifier] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [303] = { - [sym__token_pattern] = STATE(216), - [sym_token_tree_pattern] = STATE(216), - [sym_token_binding_pattern] = STATE(216), - [sym_token_repetition_pattern] = STATE(216), - [sym__literal] = STATE(216), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_await] = 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_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_where] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [sym_mutable_specifier] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [304] = { - [sym__token_pattern] = STATE(216), - [sym_token_tree_pattern] = STATE(216), - [sym_token_binding_pattern] = STATE(216), - [sym_token_repetition_pattern] = STATE(216), - [sym__literal] = STATE(216), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_RBRACK] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1059), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_await] = 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_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_where] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [sym_mutable_specifier] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [305] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_macro_rules_BANG] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_u8] = ACTIONS(1302), - [anon_sym_i8] = ACTIONS(1302), - [anon_sym_u16] = ACTIONS(1302), - [anon_sym_i16] = ACTIONS(1302), - [anon_sym_u32] = ACTIONS(1302), - [anon_sym_i32] = ACTIONS(1302), - [anon_sym_u64] = ACTIONS(1302), - [anon_sym_i64] = ACTIONS(1302), - [anon_sym_u128] = ACTIONS(1302), - [anon_sym_i128] = ACTIONS(1302), - [anon_sym_isize] = ACTIONS(1302), - [anon_sym_usize] = ACTIONS(1302), - [anon_sym_f32] = ACTIONS(1302), - [anon_sym_f64] = ACTIONS(1302), - [anon_sym_bool] = ACTIONS(1302), - [anon_sym_str] = ACTIONS(1302), - [anon_sym_char] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_async] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_fn] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_impl] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_loop] = ACTIONS(1302), - [anon_sym_match] = ACTIONS(1302), - [anon_sym_mod] = ACTIONS(1302), - [anon_sym_pub] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_trait] = ACTIONS(1302), - [anon_sym_type] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_unsafe] = ACTIONS(1302), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_COLON_COLON] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_DOT_DOT] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_move] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1300), - [aux_sym_string_literal_token1] = ACTIONS(1300), - [sym_char_literal] = ACTIONS(1300), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1302), - [sym_super] = ACTIONS(1302), - [sym_crate] = ACTIONS(1302), - [sym_metavariable] = ACTIONS(1300), - [sym_raw_string_literal] = ACTIONS(1300), - [sym_float_literal] = ACTIONS(1300), - [sym_block_comment] = ACTIONS(3), - }, - [306] = { - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_identifier] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_macro_rules_BANG] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_u8] = ACTIONS(1306), - [anon_sym_i8] = ACTIONS(1306), - [anon_sym_u16] = ACTIONS(1306), - [anon_sym_i16] = ACTIONS(1306), - [anon_sym_u32] = ACTIONS(1306), - [anon_sym_i32] = ACTIONS(1306), - [anon_sym_u64] = ACTIONS(1306), - [anon_sym_i64] = ACTIONS(1306), - [anon_sym_u128] = ACTIONS(1306), - [anon_sym_i128] = ACTIONS(1306), - [anon_sym_isize] = ACTIONS(1306), - [anon_sym_usize] = ACTIONS(1306), - [anon_sym_f32] = ACTIONS(1306), - [anon_sym_f64] = ACTIONS(1306), - [anon_sym_bool] = ACTIONS(1306), - [anon_sym_str] = ACTIONS(1306), - [anon_sym_char] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_async] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_impl] = ACTIONS(1306), - [anon_sym_let] = ACTIONS(1306), - [anon_sym_loop] = ACTIONS(1306), - [anon_sym_match] = ACTIONS(1306), - [anon_sym_mod] = ACTIONS(1306), - [anon_sym_pub] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_trait] = ACTIONS(1306), - [anon_sym_type] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_unsafe] = ACTIONS(1306), - [anon_sym_use] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_POUND] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_COLON_COLON] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_DOT_DOT] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1304), - [anon_sym_move] = ACTIONS(1306), - [sym_integer_literal] = ACTIONS(1304), - [aux_sym_string_literal_token1] = ACTIONS(1304), - [sym_char_literal] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1306), - [sym_super] = ACTIONS(1306), - [sym_crate] = ACTIONS(1306), - [sym_metavariable] = ACTIONS(1304), - [sym_raw_string_literal] = ACTIONS(1304), - [sym_float_literal] = ACTIONS(1304), - [sym_block_comment] = ACTIONS(3), - }, - [307] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_macro_rules_BANG] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_u8] = ACTIONS(1310), - [anon_sym_i8] = ACTIONS(1310), - [anon_sym_u16] = ACTIONS(1310), - [anon_sym_i16] = ACTIONS(1310), - [anon_sym_u32] = ACTIONS(1310), - [anon_sym_i32] = ACTIONS(1310), - [anon_sym_u64] = ACTIONS(1310), - [anon_sym_i64] = ACTIONS(1310), - [anon_sym_u128] = ACTIONS(1310), - [anon_sym_i128] = ACTIONS(1310), - [anon_sym_isize] = ACTIONS(1310), - [anon_sym_usize] = ACTIONS(1310), - [anon_sym_f32] = ACTIONS(1310), - [anon_sym_f64] = ACTIONS(1310), - [anon_sym_bool] = ACTIONS(1310), - [anon_sym_str] = ACTIONS(1310), - [anon_sym_char] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_fn] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_impl] = ACTIONS(1310), - [anon_sym_let] = ACTIONS(1310), - [anon_sym_loop] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_mod] = ACTIONS(1310), - [anon_sym_pub] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_trait] = ACTIONS(1310), - [anon_sym_type] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_unsafe] = ACTIONS(1310), - [anon_sym_use] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_POUND] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_COLON_COLON] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_move] = ACTIONS(1310), - [sym_integer_literal] = ACTIONS(1308), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1310), - [sym_super] = ACTIONS(1310), - [sym_crate] = ACTIONS(1310), - [sym_metavariable] = ACTIONS(1308), - [sym_raw_string_literal] = ACTIONS(1308), - [sym_float_literal] = ACTIONS(1308), - [sym_block_comment] = ACTIONS(3), - }, - [308] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_macro_rules_BANG] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_POUND] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym_LT] = ACTIONS(1312), - [anon_sym_COLON_COLON] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_move] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1312), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1312), - [sym_raw_string_literal] = ACTIONS(1312), - [sym_float_literal] = ACTIONS(1312), - [sym_block_comment] = ACTIONS(3), - }, - [309] = { - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_macro_rules_BANG] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1318), - [anon_sym_i8] = ACTIONS(1318), - [anon_sym_u16] = ACTIONS(1318), - [anon_sym_i16] = ACTIONS(1318), - [anon_sym_u32] = ACTIONS(1318), - [anon_sym_i32] = ACTIONS(1318), - [anon_sym_u64] = ACTIONS(1318), - [anon_sym_i64] = ACTIONS(1318), - [anon_sym_u128] = ACTIONS(1318), - [anon_sym_i128] = ACTIONS(1318), - [anon_sym_isize] = ACTIONS(1318), - [anon_sym_usize] = ACTIONS(1318), - [anon_sym_f32] = ACTIONS(1318), - [anon_sym_f64] = ACTIONS(1318), - [anon_sym_bool] = ACTIONS(1318), - [anon_sym_str] = ACTIONS(1318), - [anon_sym_char] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_async] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_fn] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_impl] = ACTIONS(1318), - [anon_sym_let] = ACTIONS(1318), - [anon_sym_loop] = ACTIONS(1318), - [anon_sym_match] = ACTIONS(1318), - [anon_sym_mod] = ACTIONS(1318), - [anon_sym_pub] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_trait] = ACTIONS(1318), - [anon_sym_type] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_unsafe] = ACTIONS(1318), - [anon_sym_use] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_DOT_DOT] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1318), - [sym_integer_literal] = ACTIONS(1316), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1316), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1318), - [sym_super] = ACTIONS(1318), - [sym_crate] = ACTIONS(1318), - [sym_metavariable] = ACTIONS(1316), - [sym_raw_string_literal] = ACTIONS(1316), - [sym_float_literal] = ACTIONS(1316), - [sym_block_comment] = ACTIONS(3), - }, - [310] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_macro_rules_BANG] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_u8] = ACTIONS(1322), - [anon_sym_i8] = ACTIONS(1322), - [anon_sym_u16] = ACTIONS(1322), - [anon_sym_i16] = ACTIONS(1322), - [anon_sym_u32] = ACTIONS(1322), - [anon_sym_i32] = ACTIONS(1322), - [anon_sym_u64] = ACTIONS(1322), - [anon_sym_i64] = ACTIONS(1322), - [anon_sym_u128] = ACTIONS(1322), - [anon_sym_i128] = ACTIONS(1322), - [anon_sym_isize] = ACTIONS(1322), - [anon_sym_usize] = ACTIONS(1322), - [anon_sym_f32] = ACTIONS(1322), - [anon_sym_f64] = ACTIONS(1322), - [anon_sym_bool] = ACTIONS(1322), - [anon_sym_str] = ACTIONS(1322), - [anon_sym_char] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_async] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_fn] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_impl] = ACTIONS(1322), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_loop] = ACTIONS(1322), - [anon_sym_match] = ACTIONS(1322), - [anon_sym_mod] = ACTIONS(1322), - [anon_sym_pub] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_trait] = ACTIONS(1322), - [anon_sym_type] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_unsafe] = ACTIONS(1322), - [anon_sym_use] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_POUND] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_COLON_COLON] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_DOT_DOT] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1320), - [anon_sym_move] = ACTIONS(1322), - [sym_integer_literal] = ACTIONS(1320), - [aux_sym_string_literal_token1] = ACTIONS(1320), - [sym_char_literal] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1322), - [sym_super] = ACTIONS(1322), - [sym_crate] = ACTIONS(1322), - [sym_metavariable] = ACTIONS(1320), - [sym_raw_string_literal] = ACTIONS(1320), - [sym_float_literal] = ACTIONS(1320), - [sym_block_comment] = ACTIONS(3), - }, - [311] = { - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_identifier] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_macro_rules_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1326), - [anon_sym_i8] = ACTIONS(1326), - [anon_sym_u16] = ACTIONS(1326), - [anon_sym_i16] = ACTIONS(1326), - [anon_sym_u32] = ACTIONS(1326), - [anon_sym_i32] = ACTIONS(1326), - [anon_sym_u64] = ACTIONS(1326), - [anon_sym_i64] = ACTIONS(1326), - [anon_sym_u128] = ACTIONS(1326), - [anon_sym_i128] = ACTIONS(1326), - [anon_sym_isize] = ACTIONS(1326), - [anon_sym_usize] = ACTIONS(1326), - [anon_sym_f32] = ACTIONS(1326), - [anon_sym_f64] = ACTIONS(1326), - [anon_sym_bool] = ACTIONS(1326), - [anon_sym_str] = ACTIONS(1326), - [anon_sym_char] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_async] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_fn] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_impl] = ACTIONS(1326), - [anon_sym_let] = ACTIONS(1326), - [anon_sym_loop] = ACTIONS(1326), - [anon_sym_match] = ACTIONS(1326), - [anon_sym_mod] = ACTIONS(1326), - [anon_sym_pub] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_trait] = ACTIONS(1326), - [anon_sym_type] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_unsafe] = ACTIONS(1326), - [anon_sym_use] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_DOT_DOT] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_move] = ACTIONS(1326), - [sym_integer_literal] = ACTIONS(1324), - [aux_sym_string_literal_token1] = ACTIONS(1324), - [sym_char_literal] = ACTIONS(1324), - [anon_sym_true] = ACTIONS(1326), - [anon_sym_false] = ACTIONS(1326), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1326), - [sym_super] = ACTIONS(1326), - [sym_crate] = ACTIONS(1326), - [sym_metavariable] = ACTIONS(1324), - [sym_raw_string_literal] = ACTIONS(1324), - [sym_float_literal] = ACTIONS(1324), - [sym_block_comment] = ACTIONS(3), - }, - [312] = { - [ts_builtin_sym_end] = ACTIONS(1328), - [sym_identifier] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_macro_rules_BANG] = ACTIONS(1328), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_async] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_fn] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_impl] = ACTIONS(1330), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_loop] = ACTIONS(1330), - [anon_sym_match] = ACTIONS(1330), - [anon_sym_mod] = ACTIONS(1330), - [anon_sym_pub] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_trait] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_unsafe] = ACTIONS(1330), - [anon_sym_use] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_POUND] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym_LT] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_DOT_DOT] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PIPE] = ACTIONS(1328), - [anon_sym_move] = ACTIONS(1330), - [sym_integer_literal] = ACTIONS(1328), - [aux_sym_string_literal_token1] = ACTIONS(1328), - [sym_char_literal] = ACTIONS(1328), - [anon_sym_true] = ACTIONS(1330), - [anon_sym_false] = ACTIONS(1330), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1330), - [sym_super] = ACTIONS(1330), - [sym_crate] = ACTIONS(1330), - [sym_metavariable] = ACTIONS(1328), - [sym_raw_string_literal] = ACTIONS(1328), - [sym_float_literal] = ACTIONS(1328), - [sym_block_comment] = ACTIONS(3), - }, - [313] = { - [sym__token_pattern] = STATE(436), - [sym_token_tree_pattern] = STATE(436), - [sym_token_binding_pattern] = STATE(436), - [sym_token_repetition_pattern] = STATE(436), - [sym__literal] = STATE(436), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(436), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_RBRACK] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1332), - [anon_sym_i8] = ACTIONS(1332), - [anon_sym_u16] = ACTIONS(1332), - [anon_sym_i16] = ACTIONS(1332), - [anon_sym_u32] = ACTIONS(1332), - [anon_sym_i32] = ACTIONS(1332), - [anon_sym_u64] = ACTIONS(1332), - [anon_sym_i64] = ACTIONS(1332), - [anon_sym_u128] = ACTIONS(1332), - [anon_sym_i128] = ACTIONS(1332), - [anon_sym_isize] = ACTIONS(1332), - [anon_sym_usize] = ACTIONS(1332), - [anon_sym_f32] = ACTIONS(1332), - [anon_sym_f64] = ACTIONS(1332), - [anon_sym_bool] = ACTIONS(1332), - [anon_sym_str] = ACTIONS(1332), - [anon_sym_char] = ACTIONS(1332), - [aux_sym__non_special_token_token1] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_async] = ACTIONS(1332), - [anon_sym_await] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_fn] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_impl] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_pub] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_trait] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_unsafe] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_where] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [sym_mutable_specifier] = ACTIONS(1332), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1332), - [sym_super] = ACTIONS(1332), - [sym_crate] = ACTIONS(1332), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [314] = { - [sym__token_pattern] = STATE(246), - [sym_token_tree_pattern] = STATE(246), - [sym_token_binding_pattern] = STATE(246), - [sym_token_repetition_pattern] = STATE(246), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(246), - [sym_identifier] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1336), - [anon_sym_i8] = ACTIONS(1336), - [anon_sym_u16] = ACTIONS(1336), - [anon_sym_i16] = ACTIONS(1336), - [anon_sym_u32] = ACTIONS(1336), - [anon_sym_i32] = ACTIONS(1336), - [anon_sym_u64] = ACTIONS(1336), - [anon_sym_i64] = ACTIONS(1336), - [anon_sym_u128] = ACTIONS(1336), - [anon_sym_i128] = ACTIONS(1336), - [anon_sym_isize] = ACTIONS(1336), - [anon_sym_usize] = ACTIONS(1336), - [anon_sym_f32] = ACTIONS(1336), - [anon_sym_f64] = ACTIONS(1336), - [anon_sym_bool] = ACTIONS(1336), - [anon_sym_str] = ACTIONS(1336), - [anon_sym_char] = ACTIONS(1336), - [aux_sym__non_special_token_token1] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_as] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_await] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_impl] = ACTIONS(1336), - [anon_sym_let] = ACTIONS(1336), - [anon_sym_loop] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_mod] = ACTIONS(1336), - [anon_sym_pub] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_trait] = ACTIONS(1336), - [anon_sym_type] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_unsafe] = ACTIONS(1336), - [anon_sym_use] = ACTIONS(1336), - [anon_sym_where] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [sym_mutable_specifier] = ACTIONS(1336), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1336), - [sym_super] = ACTIONS(1336), - [sym_crate] = ACTIONS(1336), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [315] = { - [ts_builtin_sym_end] = ACTIONS(1338), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_macro_rules_BANG] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_POUND] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1338), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_DOT_DOT] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_move] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1338), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1340), - [anon_sym_false] = ACTIONS(1340), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1338), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), - }, - [316] = { - [sym__token_pattern] = STATE(444), - [sym_token_tree_pattern] = STATE(444), - [sym_token_binding_pattern] = STATE(444), - [sym_token_repetition_pattern] = STATE(444), - [sym__literal] = STATE(444), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(444), - [sym_identifier] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_u8] = ACTIONS(1342), - [anon_sym_i8] = ACTIONS(1342), - [anon_sym_u16] = ACTIONS(1342), - [anon_sym_i16] = ACTIONS(1342), - [anon_sym_u32] = ACTIONS(1342), - [anon_sym_i32] = ACTIONS(1342), - [anon_sym_u64] = ACTIONS(1342), - [anon_sym_i64] = ACTIONS(1342), - [anon_sym_u128] = ACTIONS(1342), - [anon_sym_i128] = ACTIONS(1342), - [anon_sym_isize] = ACTIONS(1342), - [anon_sym_usize] = ACTIONS(1342), - [anon_sym_f32] = ACTIONS(1342), - [anon_sym_f64] = ACTIONS(1342), - [anon_sym_bool] = ACTIONS(1342), - [anon_sym_str] = ACTIONS(1342), - [anon_sym_char] = ACTIONS(1342), - [aux_sym__non_special_token_token1] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_as] = ACTIONS(1342), - [anon_sym_async] = ACTIONS(1342), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_impl] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_pub] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_trait] = ACTIONS(1342), - [anon_sym_type] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_where] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [sym_mutable_specifier] = ACTIONS(1342), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1342), - [sym_super] = ACTIONS(1342), - [sym_crate] = ACTIONS(1342), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [317] = { - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym_macro_rules_BANG] = ACTIONS(1344), - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_u8] = ACTIONS(1346), - [anon_sym_i8] = ACTIONS(1346), - [anon_sym_u16] = ACTIONS(1346), - [anon_sym_i16] = ACTIONS(1346), - [anon_sym_u32] = ACTIONS(1346), - [anon_sym_i32] = ACTIONS(1346), - [anon_sym_u64] = ACTIONS(1346), - [anon_sym_i64] = ACTIONS(1346), - [anon_sym_u128] = ACTIONS(1346), - [anon_sym_i128] = ACTIONS(1346), - [anon_sym_isize] = ACTIONS(1346), - [anon_sym_usize] = ACTIONS(1346), - [anon_sym_f32] = ACTIONS(1346), - [anon_sym_f64] = ACTIONS(1346), - [anon_sym_bool] = ACTIONS(1346), - [anon_sym_str] = ACTIONS(1346), - [anon_sym_char] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_fn] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_impl] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_pub] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_trait] = ACTIONS(1346), - [anon_sym_type] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_unsafe] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_LT] = ACTIONS(1344), - [anon_sym_COLON_COLON] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_DOT_DOT] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PIPE] = ACTIONS(1344), - [anon_sym_move] = ACTIONS(1346), - [sym_integer_literal] = ACTIONS(1344), - [aux_sym_string_literal_token1] = ACTIONS(1344), - [sym_char_literal] = ACTIONS(1344), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1344), - [sym_raw_string_literal] = ACTIONS(1344), - [sym_float_literal] = ACTIONS(1344), - [sym_block_comment] = ACTIONS(3), - }, - [318] = { - [ts_builtin_sym_end] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym_macro_rules_BANG] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_RBRACE] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_LT] = ACTIONS(1348), - [anon_sym_COLON_COLON] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_DOT_DOT] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PIPE] = ACTIONS(1348), - [anon_sym_move] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1348), - [aux_sym_string_literal_token1] = ACTIONS(1348), - [sym_char_literal] = ACTIONS(1348), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_metavariable] = ACTIONS(1348), - [sym_raw_string_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1348), - [sym_block_comment] = ACTIONS(3), - }, - [319] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_identifier] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_macro_rules_BANG] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_u8] = ACTIONS(1354), - [anon_sym_i8] = ACTIONS(1354), - [anon_sym_u16] = ACTIONS(1354), - [anon_sym_i16] = ACTIONS(1354), - [anon_sym_u32] = ACTIONS(1354), - [anon_sym_i32] = ACTIONS(1354), - [anon_sym_u64] = ACTIONS(1354), - [anon_sym_i64] = ACTIONS(1354), - [anon_sym_u128] = ACTIONS(1354), - [anon_sym_i128] = ACTIONS(1354), - [anon_sym_isize] = ACTIONS(1354), - [anon_sym_usize] = ACTIONS(1354), - [anon_sym_f32] = ACTIONS(1354), - [anon_sym_f64] = ACTIONS(1354), - [anon_sym_bool] = ACTIONS(1354), - [anon_sym_str] = ACTIONS(1354), - [anon_sym_char] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_fn] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_impl] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_loop] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_pub] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_trait] = ACTIONS(1354), - [anon_sym_type] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_unsafe] = ACTIONS(1354), - [anon_sym_use] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_COLON_COLON] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_DOT_DOT] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_move] = ACTIONS(1354), - [sym_integer_literal] = ACTIONS(1352), - [aux_sym_string_literal_token1] = ACTIONS(1352), - [sym_char_literal] = ACTIONS(1352), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1354), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1352), - [sym_raw_string_literal] = ACTIONS(1352), - [sym_float_literal] = ACTIONS(1352), - [sym_block_comment] = ACTIONS(3), - }, - [320] = { - [ts_builtin_sym_end] = ACTIONS(1356), - [sym_identifier] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_macro_rules_BANG] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_RBRACE] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_u8] = ACTIONS(1358), - [anon_sym_i8] = ACTIONS(1358), - [anon_sym_u16] = ACTIONS(1358), - [anon_sym_i16] = ACTIONS(1358), - [anon_sym_u32] = ACTIONS(1358), - [anon_sym_i32] = ACTIONS(1358), - [anon_sym_u64] = ACTIONS(1358), - [anon_sym_i64] = ACTIONS(1358), - [anon_sym_u128] = ACTIONS(1358), - [anon_sym_i128] = ACTIONS(1358), - [anon_sym_isize] = ACTIONS(1358), - [anon_sym_usize] = ACTIONS(1358), - [anon_sym_f32] = ACTIONS(1358), - [anon_sym_f64] = ACTIONS(1358), - [anon_sym_bool] = ACTIONS(1358), - [anon_sym_str] = ACTIONS(1358), - [anon_sym_char] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [anon_sym_async] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_fn] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_impl] = ACTIONS(1358), - [anon_sym_let] = ACTIONS(1358), - [anon_sym_loop] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_pub] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_trait] = ACTIONS(1358), - [anon_sym_type] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_unsafe] = ACTIONS(1358), - [anon_sym_use] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_COLON_COLON] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_move] = ACTIONS(1358), - [sym_integer_literal] = ACTIONS(1356), - [aux_sym_string_literal_token1] = ACTIONS(1356), - [sym_char_literal] = ACTIONS(1356), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1358), - [sym_super] = ACTIONS(1358), - [sym_crate] = ACTIONS(1358), - [sym_metavariable] = ACTIONS(1356), - [sym_raw_string_literal] = ACTIONS(1356), - [sym_float_literal] = ACTIONS(1356), - [sym_block_comment] = ACTIONS(3), - }, - [321] = { - [ts_builtin_sym_end] = ACTIONS(1360), - [sym_identifier] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym_macro_rules_BANG] = ACTIONS(1360), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_u8] = ACTIONS(1362), - [anon_sym_i8] = ACTIONS(1362), - [anon_sym_u16] = ACTIONS(1362), - [anon_sym_i16] = ACTIONS(1362), - [anon_sym_u32] = ACTIONS(1362), - [anon_sym_i32] = ACTIONS(1362), - [anon_sym_u64] = ACTIONS(1362), - [anon_sym_i64] = ACTIONS(1362), - [anon_sym_u128] = ACTIONS(1362), - [anon_sym_i128] = ACTIONS(1362), - [anon_sym_isize] = ACTIONS(1362), - [anon_sym_usize] = ACTIONS(1362), - [anon_sym_f32] = ACTIONS(1362), - [anon_sym_f64] = ACTIONS(1362), - [anon_sym_bool] = ACTIONS(1362), - [anon_sym_str] = ACTIONS(1362), - [anon_sym_char] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_impl] = ACTIONS(1362), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_loop] = ACTIONS(1362), - [anon_sym_match] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_pub] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_trait] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_unsafe] = ACTIONS(1362), - [anon_sym_use] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym_LT] = ACTIONS(1360), - [anon_sym_COLON_COLON] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_DOT_DOT] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PIPE] = ACTIONS(1360), - [anon_sym_move] = ACTIONS(1362), - [sym_integer_literal] = ACTIONS(1360), - [aux_sym_string_literal_token1] = ACTIONS(1360), - [sym_char_literal] = ACTIONS(1360), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1362), - [sym_super] = ACTIONS(1362), - [sym_crate] = ACTIONS(1362), - [sym_metavariable] = ACTIONS(1360), - [sym_raw_string_literal] = ACTIONS(1360), - [sym_float_literal] = ACTIONS(1360), - [sym_block_comment] = ACTIONS(3), - }, - [322] = { - [ts_builtin_sym_end] = ACTIONS(1364), - [sym_identifier] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym_macro_rules_BANG] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1364), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_u8] = ACTIONS(1366), - [anon_sym_i8] = ACTIONS(1366), - [anon_sym_u16] = ACTIONS(1366), - [anon_sym_i16] = ACTIONS(1366), - [anon_sym_u32] = ACTIONS(1366), - [anon_sym_i32] = ACTIONS(1366), - [anon_sym_u64] = ACTIONS(1366), - [anon_sym_i64] = ACTIONS(1366), - [anon_sym_u128] = ACTIONS(1366), - [anon_sym_i128] = ACTIONS(1366), - [anon_sym_isize] = ACTIONS(1366), - [anon_sym_usize] = ACTIONS(1366), - [anon_sym_f32] = ACTIONS(1366), - [anon_sym_f64] = ACTIONS(1366), - [anon_sym_bool] = ACTIONS(1366), - [anon_sym_str] = ACTIONS(1366), - [anon_sym_char] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_impl] = ACTIONS(1366), - [anon_sym_let] = ACTIONS(1366), - [anon_sym_loop] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1366), - [anon_sym_mod] = ACTIONS(1366), - [anon_sym_pub] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_trait] = ACTIONS(1366), - [anon_sym_type] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_unsafe] = ACTIONS(1366), - [anon_sym_use] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_COLON_COLON] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_DOT_DOT] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_PIPE] = ACTIONS(1364), - [anon_sym_move] = ACTIONS(1366), - [sym_integer_literal] = ACTIONS(1364), - [aux_sym_string_literal_token1] = ACTIONS(1364), - [sym_char_literal] = ACTIONS(1364), - [anon_sym_true] = ACTIONS(1366), - [anon_sym_false] = ACTIONS(1366), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1366), - [sym_super] = ACTIONS(1366), - [sym_crate] = ACTIONS(1366), - [sym_metavariable] = ACTIONS(1364), - [sym_raw_string_literal] = ACTIONS(1364), - [sym_float_literal] = ACTIONS(1364), - [sym_block_comment] = ACTIONS(3), - }, - [323] = { - [ts_builtin_sym_end] = ACTIONS(1368), - [sym_identifier] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_macro_rules_BANG] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_u8] = ACTIONS(1370), - [anon_sym_i8] = ACTIONS(1370), - [anon_sym_u16] = ACTIONS(1370), - [anon_sym_i16] = ACTIONS(1370), - [anon_sym_u32] = ACTIONS(1370), - [anon_sym_i32] = ACTIONS(1370), - [anon_sym_u64] = ACTIONS(1370), - [anon_sym_i64] = ACTIONS(1370), - [anon_sym_u128] = ACTIONS(1370), - [anon_sym_i128] = ACTIONS(1370), - [anon_sym_isize] = ACTIONS(1370), - [anon_sym_usize] = ACTIONS(1370), - [anon_sym_f32] = ACTIONS(1370), - [anon_sym_f64] = ACTIONS(1370), - [anon_sym_bool] = ACTIONS(1370), - [anon_sym_str] = ACTIONS(1370), - [anon_sym_char] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_async] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_fn] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_impl] = ACTIONS(1370), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_loop] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1370), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_pub] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_trait] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_unsafe] = ACTIONS(1370), - [anon_sym_use] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym_LT] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_move] = ACTIONS(1370), - [sym_integer_literal] = ACTIONS(1368), - [aux_sym_string_literal_token1] = ACTIONS(1368), - [sym_char_literal] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1370), - [sym_super] = ACTIONS(1370), - [sym_crate] = ACTIONS(1370), - [sym_metavariable] = ACTIONS(1368), - [sym_raw_string_literal] = ACTIONS(1368), - [sym_float_literal] = ACTIONS(1368), - [sym_block_comment] = ACTIONS(3), - }, - [324] = { - [ts_builtin_sym_end] = ACTIONS(1372), - [sym_identifier] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_macro_rules_BANG] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_u8] = ACTIONS(1374), - [anon_sym_i8] = ACTIONS(1374), - [anon_sym_u16] = ACTIONS(1374), - [anon_sym_i16] = ACTIONS(1374), - [anon_sym_u32] = ACTIONS(1374), - [anon_sym_i32] = ACTIONS(1374), - [anon_sym_u64] = ACTIONS(1374), - [anon_sym_i64] = ACTIONS(1374), - [anon_sym_u128] = ACTIONS(1374), - [anon_sym_i128] = ACTIONS(1374), - [anon_sym_isize] = ACTIONS(1374), - [anon_sym_usize] = ACTIONS(1374), - [anon_sym_f32] = ACTIONS(1374), - [anon_sym_f64] = ACTIONS(1374), - [anon_sym_bool] = ACTIONS(1374), - [anon_sym_str] = ACTIONS(1374), - [anon_sym_char] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_async] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_impl] = ACTIONS(1374), - [anon_sym_let] = ACTIONS(1374), - [anon_sym_loop] = ACTIONS(1374), - [anon_sym_match] = ACTIONS(1374), - [anon_sym_mod] = ACTIONS(1374), - [anon_sym_pub] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_trait] = ACTIONS(1374), - [anon_sym_type] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_unsafe] = ACTIONS(1374), - [anon_sym_use] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_POUND] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym_LT] = ACTIONS(1372), - [anon_sym_COLON_COLON] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1372), - [anon_sym_move] = ACTIONS(1374), - [sym_integer_literal] = ACTIONS(1372), - [aux_sym_string_literal_token1] = ACTIONS(1372), - [sym_char_literal] = ACTIONS(1372), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1374), - [sym_super] = ACTIONS(1374), - [sym_crate] = ACTIONS(1374), - [sym_metavariable] = ACTIONS(1372), - [sym_raw_string_literal] = ACTIONS(1372), - [sym_float_literal] = ACTIONS(1372), - [sym_block_comment] = ACTIONS(3), - }, - [325] = { - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_identifier] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_macro_rules_BANG] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_u8] = ACTIONS(1378), - [anon_sym_i8] = ACTIONS(1378), - [anon_sym_u16] = ACTIONS(1378), - [anon_sym_i16] = ACTIONS(1378), - [anon_sym_u32] = ACTIONS(1378), - [anon_sym_i32] = ACTIONS(1378), - [anon_sym_u64] = ACTIONS(1378), - [anon_sym_i64] = ACTIONS(1378), - [anon_sym_u128] = ACTIONS(1378), - [anon_sym_i128] = ACTIONS(1378), - [anon_sym_isize] = ACTIONS(1378), - [anon_sym_usize] = ACTIONS(1378), - [anon_sym_f32] = ACTIONS(1378), - [anon_sym_f64] = ACTIONS(1378), - [anon_sym_bool] = ACTIONS(1378), - [anon_sym_str] = ACTIONS(1378), - [anon_sym_char] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_fn] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_impl] = ACTIONS(1378), - [anon_sym_let] = ACTIONS(1378), - [anon_sym_loop] = ACTIONS(1378), - [anon_sym_match] = ACTIONS(1378), - [anon_sym_mod] = ACTIONS(1378), - [anon_sym_pub] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_trait] = ACTIONS(1378), - [anon_sym_type] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_unsafe] = ACTIONS(1378), - [anon_sym_use] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym_LT] = ACTIONS(1376), - [anon_sym_COLON_COLON] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_move] = ACTIONS(1378), - [sym_integer_literal] = ACTIONS(1376), - [aux_sym_string_literal_token1] = ACTIONS(1376), - [sym_char_literal] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1378), - [sym_super] = ACTIONS(1378), - [sym_crate] = ACTIONS(1378), - [sym_metavariable] = ACTIONS(1376), - [sym_raw_string_literal] = ACTIONS(1376), - [sym_float_literal] = ACTIONS(1376), - [sym_block_comment] = ACTIONS(3), - }, - [326] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym_macro_rules_BANG] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_u8] = ACTIONS(1382), - [anon_sym_i8] = ACTIONS(1382), - [anon_sym_u16] = ACTIONS(1382), - [anon_sym_i16] = ACTIONS(1382), - [anon_sym_u32] = ACTIONS(1382), - [anon_sym_i32] = ACTIONS(1382), - [anon_sym_u64] = ACTIONS(1382), - [anon_sym_i64] = ACTIONS(1382), - [anon_sym_u128] = ACTIONS(1382), - [anon_sym_i128] = ACTIONS(1382), - [anon_sym_isize] = ACTIONS(1382), - [anon_sym_usize] = ACTIONS(1382), - [anon_sym_f32] = ACTIONS(1382), - [anon_sym_f64] = ACTIONS(1382), - [anon_sym_bool] = ACTIONS(1382), - [anon_sym_str] = ACTIONS(1382), - [anon_sym_char] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_async] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_impl] = ACTIONS(1382), - [anon_sym_let] = ACTIONS(1382), - [anon_sym_loop] = ACTIONS(1382), - [anon_sym_match] = ACTIONS(1382), - [anon_sym_mod] = ACTIONS(1382), - [anon_sym_pub] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_trait] = ACTIONS(1382), - [anon_sym_type] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_unsafe] = ACTIONS(1382), - [anon_sym_use] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym_LT] = ACTIONS(1380), - [anon_sym_COLON_COLON] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_DOT_DOT] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1380), - [anon_sym_move] = ACTIONS(1382), - [sym_integer_literal] = ACTIONS(1380), - [aux_sym_string_literal_token1] = ACTIONS(1380), - [sym_char_literal] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1382), - [anon_sym_false] = ACTIONS(1382), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1382), - [sym_super] = ACTIONS(1382), - [sym_crate] = ACTIONS(1382), - [sym_metavariable] = ACTIONS(1380), - [sym_raw_string_literal] = ACTIONS(1380), - [sym_float_literal] = ACTIONS(1380), - [sym_block_comment] = ACTIONS(3), - }, - [327] = { - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_identifier] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_macro_rules_BANG] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_LBRACK] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_u8] = ACTIONS(1386), - [anon_sym_i8] = ACTIONS(1386), - [anon_sym_u16] = ACTIONS(1386), - [anon_sym_i16] = ACTIONS(1386), - [anon_sym_u32] = ACTIONS(1386), - [anon_sym_i32] = ACTIONS(1386), - [anon_sym_u64] = ACTIONS(1386), - [anon_sym_i64] = ACTIONS(1386), - [anon_sym_u128] = ACTIONS(1386), - [anon_sym_i128] = ACTIONS(1386), - [anon_sym_isize] = ACTIONS(1386), - [anon_sym_usize] = ACTIONS(1386), - [anon_sym_f32] = ACTIONS(1386), - [anon_sym_f64] = ACTIONS(1386), - [anon_sym_bool] = ACTIONS(1386), - [anon_sym_str] = ACTIONS(1386), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_fn] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_impl] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_loop] = ACTIONS(1386), - [anon_sym_match] = ACTIONS(1386), - [anon_sym_mod] = ACTIONS(1386), - [anon_sym_pub] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_trait] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_unsafe] = ACTIONS(1386), - [anon_sym_use] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym_LT] = ACTIONS(1384), - [anon_sym_COLON_COLON] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_DOT_DOT] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(1384), - [anon_sym_move] = ACTIONS(1386), - [sym_integer_literal] = ACTIONS(1384), - [aux_sym_string_literal_token1] = ACTIONS(1384), - [sym_char_literal] = ACTIONS(1384), - [anon_sym_true] = ACTIONS(1386), - [anon_sym_false] = ACTIONS(1386), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1386), - [sym_super] = ACTIONS(1386), - [sym_crate] = ACTIONS(1386), - [sym_metavariable] = ACTIONS(1384), - [sym_raw_string_literal] = ACTIONS(1384), - [sym_float_literal] = ACTIONS(1384), - [sym_block_comment] = ACTIONS(3), - }, - [328] = { - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_macro_rules_BANG] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_u8] = ACTIONS(1390), - [anon_sym_i8] = ACTIONS(1390), - [anon_sym_u16] = ACTIONS(1390), - [anon_sym_i16] = ACTIONS(1390), - [anon_sym_u32] = ACTIONS(1390), - [anon_sym_i32] = ACTIONS(1390), - [anon_sym_u64] = ACTIONS(1390), - [anon_sym_i64] = ACTIONS(1390), - [anon_sym_u128] = ACTIONS(1390), - [anon_sym_i128] = ACTIONS(1390), - [anon_sym_isize] = ACTIONS(1390), - [anon_sym_usize] = ACTIONS(1390), - [anon_sym_f32] = ACTIONS(1390), - [anon_sym_f64] = ACTIONS(1390), - [anon_sym_bool] = ACTIONS(1390), - [anon_sym_str] = ACTIONS(1390), - [anon_sym_char] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_async] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_fn] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_impl] = ACTIONS(1390), - [anon_sym_let] = ACTIONS(1390), - [anon_sym_loop] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1390), - [anon_sym_mod] = ACTIONS(1390), - [anon_sym_pub] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_trait] = ACTIONS(1390), - [anon_sym_type] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_unsafe] = ACTIONS(1390), - [anon_sym_use] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym_LT] = ACTIONS(1388), - [anon_sym_COLON_COLON] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_DOT_DOT] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1388), - [anon_sym_move] = ACTIONS(1390), - [sym_integer_literal] = ACTIONS(1388), - [aux_sym_string_literal_token1] = ACTIONS(1388), - [sym_char_literal] = ACTIONS(1388), - [anon_sym_true] = ACTIONS(1390), - [anon_sym_false] = ACTIONS(1390), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1390), - [sym_super] = ACTIONS(1390), - [sym_crate] = ACTIONS(1390), - [sym_metavariable] = ACTIONS(1388), - [sym_raw_string_literal] = ACTIONS(1388), - [sym_float_literal] = ACTIONS(1388), - [sym_block_comment] = ACTIONS(3), - }, - [329] = { - [ts_builtin_sym_end] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_macro_rules_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_RBRACE] = ACTIONS(1392), - [anon_sym_LBRACK] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_u8] = ACTIONS(1394), - [anon_sym_i8] = ACTIONS(1394), - [anon_sym_u16] = ACTIONS(1394), - [anon_sym_i16] = ACTIONS(1394), - [anon_sym_u32] = ACTIONS(1394), - [anon_sym_i32] = ACTIONS(1394), - [anon_sym_u64] = ACTIONS(1394), - [anon_sym_i64] = ACTIONS(1394), - [anon_sym_u128] = ACTIONS(1394), - [anon_sym_i128] = ACTIONS(1394), - [anon_sym_isize] = ACTIONS(1394), - [anon_sym_usize] = ACTIONS(1394), - [anon_sym_f32] = ACTIONS(1394), - [anon_sym_f64] = ACTIONS(1394), - [anon_sym_bool] = ACTIONS(1394), - [anon_sym_str] = ACTIONS(1394), - [anon_sym_char] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [anon_sym_async] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_fn] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_impl] = ACTIONS(1394), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_loop] = ACTIONS(1394), - [anon_sym_match] = ACTIONS(1394), - [anon_sym_mod] = ACTIONS(1394), - [anon_sym_pub] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_trait] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_unsafe] = ACTIONS(1394), - [anon_sym_use] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym_LT] = ACTIONS(1392), - [anon_sym_COLON_COLON] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(1392), - [anon_sym_move] = ACTIONS(1394), - [sym_integer_literal] = ACTIONS(1392), - [aux_sym_string_literal_token1] = ACTIONS(1392), - [sym_char_literal] = ACTIONS(1392), - [anon_sym_true] = ACTIONS(1394), - [anon_sym_false] = ACTIONS(1394), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1394), - [sym_super] = ACTIONS(1394), - [sym_crate] = ACTIONS(1394), - [sym_metavariable] = ACTIONS(1392), - [sym_raw_string_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1392), - [sym_block_comment] = ACTIONS(3), - }, - [330] = { - [ts_builtin_sym_end] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_macro_rules_BANG] = ACTIONS(1396), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_RBRACE] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_u8] = ACTIONS(1398), - [anon_sym_i8] = ACTIONS(1398), - [anon_sym_u16] = ACTIONS(1398), - [anon_sym_i16] = ACTIONS(1398), - [anon_sym_u32] = ACTIONS(1398), - [anon_sym_i32] = ACTIONS(1398), - [anon_sym_u64] = ACTIONS(1398), - [anon_sym_i64] = ACTIONS(1398), - [anon_sym_u128] = ACTIONS(1398), - [anon_sym_i128] = ACTIONS(1398), - [anon_sym_isize] = ACTIONS(1398), - [anon_sym_usize] = ACTIONS(1398), - [anon_sym_f32] = ACTIONS(1398), - [anon_sym_f64] = ACTIONS(1398), - [anon_sym_bool] = ACTIONS(1398), - [anon_sym_str] = ACTIONS(1398), - [anon_sym_char] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1398), - [anon_sym_async] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_fn] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_impl] = ACTIONS(1398), - [anon_sym_let] = ACTIONS(1398), - [anon_sym_loop] = ACTIONS(1398), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_mod] = ACTIONS(1398), - [anon_sym_pub] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_trait] = ACTIONS(1398), - [anon_sym_type] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_unsafe] = ACTIONS(1398), - [anon_sym_use] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_COLON_COLON] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_DOT_DOT] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_PIPE] = ACTIONS(1396), - [anon_sym_move] = ACTIONS(1398), - [sym_integer_literal] = ACTIONS(1396), - [aux_sym_string_literal_token1] = ACTIONS(1396), - [sym_char_literal] = ACTIONS(1396), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1398), - [sym_super] = ACTIONS(1398), - [sym_crate] = ACTIONS(1398), - [sym_metavariable] = ACTIONS(1396), - [sym_raw_string_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1396), - [sym_block_comment] = ACTIONS(3), - }, - [331] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_macro_rules_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_u8] = ACTIONS(1402), - [anon_sym_i8] = ACTIONS(1402), - [anon_sym_u16] = ACTIONS(1402), - [anon_sym_i16] = ACTIONS(1402), - [anon_sym_u32] = ACTIONS(1402), - [anon_sym_i32] = ACTIONS(1402), - [anon_sym_u64] = ACTIONS(1402), - [anon_sym_i64] = ACTIONS(1402), - [anon_sym_u128] = ACTIONS(1402), - [anon_sym_i128] = ACTIONS(1402), - [anon_sym_isize] = ACTIONS(1402), - [anon_sym_usize] = ACTIONS(1402), - [anon_sym_f32] = ACTIONS(1402), - [anon_sym_f64] = ACTIONS(1402), - [anon_sym_bool] = ACTIONS(1402), - [anon_sym_str] = ACTIONS(1402), - [anon_sym_char] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1402), - [anon_sym_async] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_fn] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_impl] = ACTIONS(1402), - [anon_sym_let] = ACTIONS(1402), - [anon_sym_loop] = ACTIONS(1402), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_mod] = ACTIONS(1402), - [anon_sym_pub] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_trait] = ACTIONS(1402), - [anon_sym_type] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1402), - [anon_sym_use] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_COLON_COLON] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_move] = ACTIONS(1402), - [sym_integer_literal] = ACTIONS(1400), - [aux_sym_string_literal_token1] = ACTIONS(1400), - [sym_char_literal] = ACTIONS(1400), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1402), - [sym_super] = ACTIONS(1402), - [sym_crate] = ACTIONS(1402), - [sym_metavariable] = ACTIONS(1400), - [sym_raw_string_literal] = ACTIONS(1400), - [sym_float_literal] = ACTIONS(1400), - [sym_block_comment] = ACTIONS(3), - }, - [332] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_macro_rules_BANG] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_u8] = ACTIONS(1406), - [anon_sym_i8] = ACTIONS(1406), - [anon_sym_u16] = ACTIONS(1406), - [anon_sym_i16] = ACTIONS(1406), - [anon_sym_u32] = ACTIONS(1406), - [anon_sym_i32] = ACTIONS(1406), - [anon_sym_u64] = ACTIONS(1406), - [anon_sym_i64] = ACTIONS(1406), - [anon_sym_u128] = ACTIONS(1406), - [anon_sym_i128] = ACTIONS(1406), - [anon_sym_isize] = ACTIONS(1406), - [anon_sym_usize] = ACTIONS(1406), - [anon_sym_f32] = ACTIONS(1406), - [anon_sym_f64] = ACTIONS(1406), - [anon_sym_bool] = ACTIONS(1406), - [anon_sym_str] = ACTIONS(1406), - [anon_sym_char] = ACTIONS(1406), - [anon_sym_SQUOTE] = ACTIONS(1406), - [anon_sym_async] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_fn] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_impl] = ACTIONS(1406), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_loop] = ACTIONS(1406), - [anon_sym_match] = ACTIONS(1406), - [anon_sym_mod] = ACTIONS(1406), - [anon_sym_pub] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_trait] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1406), - [anon_sym_use] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym_LT] = ACTIONS(1404), - [anon_sym_COLON_COLON] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1404), - [anon_sym_move] = ACTIONS(1406), - [sym_integer_literal] = ACTIONS(1404), - [aux_sym_string_literal_token1] = ACTIONS(1404), - [sym_char_literal] = ACTIONS(1404), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1406), - [sym_super] = ACTIONS(1406), - [sym_crate] = ACTIONS(1406), - [sym_metavariable] = ACTIONS(1404), - [sym_raw_string_literal] = ACTIONS(1404), - [sym_float_literal] = ACTIONS(1404), - [sym_block_comment] = ACTIONS(3), - }, - [333] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_macro_rules_BANG] = ACTIONS(1408), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_impl] = ACTIONS(1410), - [anon_sym_let] = ACTIONS(1410), - [anon_sym_loop] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_mod] = ACTIONS(1410), - [anon_sym_pub] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_trait] = ACTIONS(1410), - [anon_sym_type] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_unsafe] = ACTIONS(1410), - [anon_sym_use] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1408), - [anon_sym_COLON_COLON] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_DOT_DOT] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_PIPE] = ACTIONS(1408), - [anon_sym_move] = ACTIONS(1410), - [sym_integer_literal] = ACTIONS(1408), - [aux_sym_string_literal_token1] = ACTIONS(1408), - [sym_char_literal] = ACTIONS(1408), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1410), - [sym_super] = ACTIONS(1410), - [sym_crate] = ACTIONS(1410), - [sym_metavariable] = ACTIONS(1408), - [sym_raw_string_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1408), - [sym_block_comment] = ACTIONS(3), - }, - [334] = { - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_identifier] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_macro_rules_BANG] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_u8] = ACTIONS(1414), - [anon_sym_i8] = ACTIONS(1414), - [anon_sym_u16] = ACTIONS(1414), - [anon_sym_i16] = ACTIONS(1414), - [anon_sym_u32] = ACTIONS(1414), - [anon_sym_i32] = ACTIONS(1414), - [anon_sym_u64] = ACTIONS(1414), - [anon_sym_i64] = ACTIONS(1414), - [anon_sym_u128] = ACTIONS(1414), - [anon_sym_i128] = ACTIONS(1414), - [anon_sym_isize] = ACTIONS(1414), - [anon_sym_usize] = ACTIONS(1414), - [anon_sym_f32] = ACTIONS(1414), - [anon_sym_f64] = ACTIONS(1414), - [anon_sym_bool] = ACTIONS(1414), - [anon_sym_str] = ACTIONS(1414), - [anon_sym_char] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_async] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_impl] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(1414), - [anon_sym_loop] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_mod] = ACTIONS(1414), - [anon_sym_pub] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_trait] = ACTIONS(1414), - [anon_sym_type] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_unsafe] = ACTIONS(1414), - [anon_sym_use] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_LT] = ACTIONS(1412), - [anon_sym_COLON_COLON] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_DOT_DOT] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1412), - [anon_sym_move] = ACTIONS(1414), - [sym_integer_literal] = ACTIONS(1412), - [aux_sym_string_literal_token1] = ACTIONS(1412), - [sym_char_literal] = ACTIONS(1412), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1414), - [sym_super] = ACTIONS(1414), - [sym_crate] = ACTIONS(1414), - [sym_metavariable] = ACTIONS(1412), - [sym_raw_string_literal] = ACTIONS(1412), - [sym_float_literal] = ACTIONS(1412), - [sym_block_comment] = ACTIONS(3), - }, - [335] = { - [ts_builtin_sym_end] = ACTIONS(1416), - [sym_identifier] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_macro_rules_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_u8] = ACTIONS(1418), - [anon_sym_i8] = ACTIONS(1418), - [anon_sym_u16] = ACTIONS(1418), - [anon_sym_i16] = ACTIONS(1418), - [anon_sym_u32] = ACTIONS(1418), - [anon_sym_i32] = ACTIONS(1418), - [anon_sym_u64] = ACTIONS(1418), - [anon_sym_i64] = ACTIONS(1418), - [anon_sym_u128] = ACTIONS(1418), - [anon_sym_i128] = ACTIONS(1418), - [anon_sym_isize] = ACTIONS(1418), - [anon_sym_usize] = ACTIONS(1418), - [anon_sym_f32] = ACTIONS(1418), - [anon_sym_f64] = ACTIONS(1418), - [anon_sym_bool] = ACTIONS(1418), - [anon_sym_str] = ACTIONS(1418), - [anon_sym_char] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_fn] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_impl] = ACTIONS(1418), - [anon_sym_let] = ACTIONS(1418), - [anon_sym_loop] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1418), - [anon_sym_pub] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_trait] = ACTIONS(1418), - [anon_sym_type] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1418), - [anon_sym_use] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_move] = ACTIONS(1418), - [sym_integer_literal] = ACTIONS(1416), - [aux_sym_string_literal_token1] = ACTIONS(1416), - [sym_char_literal] = ACTIONS(1416), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1418), - [sym_super] = ACTIONS(1418), - [sym_crate] = ACTIONS(1418), - [sym_metavariable] = ACTIONS(1416), - [sym_raw_string_literal] = ACTIONS(1416), - [sym_float_literal] = ACTIONS(1416), - [sym_block_comment] = ACTIONS(3), - }, - [336] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [sym_identifier] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_macro_rules_BANG] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_u8] = ACTIONS(1422), - [anon_sym_i8] = ACTIONS(1422), - [anon_sym_u16] = ACTIONS(1422), - [anon_sym_i16] = ACTIONS(1422), - [anon_sym_u32] = ACTIONS(1422), - [anon_sym_i32] = ACTIONS(1422), - [anon_sym_u64] = ACTIONS(1422), - [anon_sym_i64] = ACTIONS(1422), - [anon_sym_u128] = ACTIONS(1422), - [anon_sym_i128] = ACTIONS(1422), - [anon_sym_isize] = ACTIONS(1422), - [anon_sym_usize] = ACTIONS(1422), - [anon_sym_f32] = ACTIONS(1422), - [anon_sym_f64] = ACTIONS(1422), - [anon_sym_bool] = ACTIONS(1422), - [anon_sym_str] = ACTIONS(1422), - [anon_sym_char] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_async] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_fn] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_impl] = ACTIONS(1422), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_loop] = ACTIONS(1422), - [anon_sym_match] = ACTIONS(1422), - [anon_sym_mod] = ACTIONS(1422), - [anon_sym_pub] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_trait] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_unsafe] = ACTIONS(1422), - [anon_sym_use] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_POUND] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_COLON_COLON] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_DOT_DOT] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_move] = ACTIONS(1422), - [sym_integer_literal] = ACTIONS(1420), - [aux_sym_string_literal_token1] = ACTIONS(1420), - [sym_char_literal] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1422), - [sym_super] = ACTIONS(1422), - [sym_crate] = ACTIONS(1422), - [sym_metavariable] = ACTIONS(1420), - [sym_raw_string_literal] = ACTIONS(1420), - [sym_float_literal] = ACTIONS(1420), - [sym_block_comment] = ACTIONS(3), - }, - [337] = { - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_identifier] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_macro_rules_BANG] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_u8] = ACTIONS(1426), - [anon_sym_i8] = ACTIONS(1426), - [anon_sym_u16] = ACTIONS(1426), - [anon_sym_i16] = ACTIONS(1426), - [anon_sym_u32] = ACTIONS(1426), - [anon_sym_i32] = ACTIONS(1426), - [anon_sym_u64] = ACTIONS(1426), - [anon_sym_i64] = ACTIONS(1426), - [anon_sym_u128] = ACTIONS(1426), - [anon_sym_i128] = ACTIONS(1426), - [anon_sym_isize] = ACTIONS(1426), - [anon_sym_usize] = ACTIONS(1426), - [anon_sym_f32] = ACTIONS(1426), - [anon_sym_f64] = ACTIONS(1426), - [anon_sym_bool] = ACTIONS(1426), - [anon_sym_str] = ACTIONS(1426), - [anon_sym_char] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_fn] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_impl] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_mod] = ACTIONS(1426), - [anon_sym_pub] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_trait] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_unsafe] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_POUND] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_LT] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_DOT_DOT] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PIPE] = ACTIONS(1424), - [anon_sym_move] = ACTIONS(1426), - [sym_integer_literal] = ACTIONS(1424), - [aux_sym_string_literal_token1] = ACTIONS(1424), - [sym_char_literal] = ACTIONS(1424), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1426), - [sym_super] = ACTIONS(1426), - [sym_crate] = ACTIONS(1426), - [sym_metavariable] = ACTIONS(1424), - [sym_raw_string_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1424), - [sym_block_comment] = ACTIONS(3), - }, - [338] = { - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_macro_rules_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_u8] = ACTIONS(1430), - [anon_sym_i8] = ACTIONS(1430), - [anon_sym_u16] = ACTIONS(1430), - [anon_sym_i16] = ACTIONS(1430), - [anon_sym_u32] = ACTIONS(1430), - [anon_sym_i32] = ACTIONS(1430), - [anon_sym_u64] = ACTIONS(1430), - [anon_sym_i64] = ACTIONS(1430), - [anon_sym_u128] = ACTIONS(1430), - [anon_sym_i128] = ACTIONS(1430), - [anon_sym_isize] = ACTIONS(1430), - [anon_sym_usize] = ACTIONS(1430), - [anon_sym_f32] = ACTIONS(1430), - [anon_sym_f64] = ACTIONS(1430), - [anon_sym_bool] = ACTIONS(1430), - [anon_sym_str] = ACTIONS(1430), - [anon_sym_char] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_async] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_fn] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_impl] = ACTIONS(1430), - [anon_sym_let] = ACTIONS(1430), - [anon_sym_loop] = ACTIONS(1430), - [anon_sym_match] = ACTIONS(1430), - [anon_sym_mod] = ACTIONS(1430), - [anon_sym_pub] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_trait] = ACTIONS(1430), - [anon_sym_type] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_unsafe] = ACTIONS(1430), - [anon_sym_use] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_POUND] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_DOT_DOT] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_move] = ACTIONS(1430), - [sym_integer_literal] = ACTIONS(1428), - [aux_sym_string_literal_token1] = ACTIONS(1428), - [sym_char_literal] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1430), - [anon_sym_false] = ACTIONS(1430), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1430), - [sym_super] = ACTIONS(1430), - [sym_crate] = ACTIONS(1430), - [sym_metavariable] = ACTIONS(1428), - [sym_raw_string_literal] = ACTIONS(1428), - [sym_float_literal] = ACTIONS(1428), - [sym_block_comment] = ACTIONS(3), - }, - [339] = { - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_macro_rules_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_u8] = ACTIONS(1434), - [anon_sym_i8] = ACTIONS(1434), - [anon_sym_u16] = ACTIONS(1434), - [anon_sym_i16] = ACTIONS(1434), - [anon_sym_u32] = ACTIONS(1434), - [anon_sym_i32] = ACTIONS(1434), - [anon_sym_u64] = ACTIONS(1434), - [anon_sym_i64] = ACTIONS(1434), - [anon_sym_u128] = ACTIONS(1434), - [anon_sym_i128] = ACTIONS(1434), - [anon_sym_isize] = ACTIONS(1434), - [anon_sym_usize] = ACTIONS(1434), - [anon_sym_f32] = ACTIONS(1434), - [anon_sym_f64] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_str] = ACTIONS(1434), - [anon_sym_char] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_impl] = ACTIONS(1434), - [anon_sym_let] = ACTIONS(1434), - [anon_sym_loop] = ACTIONS(1434), - [anon_sym_match] = ACTIONS(1434), - [anon_sym_mod] = ACTIONS(1434), - [anon_sym_pub] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_trait] = ACTIONS(1434), - [anon_sym_type] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_unsafe] = ACTIONS(1434), - [anon_sym_use] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym_LT] = ACTIONS(1432), - [anon_sym_COLON_COLON] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_DOT_DOT] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_move] = ACTIONS(1434), - [sym_integer_literal] = ACTIONS(1432), - [aux_sym_string_literal_token1] = ACTIONS(1432), - [sym_char_literal] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1434), - [anon_sym_false] = ACTIONS(1434), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1434), - [sym_super] = ACTIONS(1434), - [sym_crate] = ACTIONS(1434), - [sym_metavariable] = ACTIONS(1432), - [sym_raw_string_literal] = ACTIONS(1432), - [sym_float_literal] = ACTIONS(1432), - [sym_block_comment] = ACTIONS(3), - }, - [340] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_macro_rules_BANG] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_u8] = ACTIONS(1438), - [anon_sym_i8] = ACTIONS(1438), - [anon_sym_u16] = ACTIONS(1438), - [anon_sym_i16] = ACTIONS(1438), - [anon_sym_u32] = ACTIONS(1438), - [anon_sym_i32] = ACTIONS(1438), - [anon_sym_u64] = ACTIONS(1438), - [anon_sym_i64] = ACTIONS(1438), - [anon_sym_u128] = ACTIONS(1438), - [anon_sym_i128] = ACTIONS(1438), - [anon_sym_isize] = ACTIONS(1438), - [anon_sym_usize] = ACTIONS(1438), - [anon_sym_f32] = ACTIONS(1438), - [anon_sym_f64] = ACTIONS(1438), - [anon_sym_bool] = ACTIONS(1438), - [anon_sym_str] = ACTIONS(1438), - [anon_sym_char] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_async] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_impl] = ACTIONS(1438), - [anon_sym_let] = ACTIONS(1438), - [anon_sym_loop] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1438), - [anon_sym_mod] = ACTIONS(1438), - [anon_sym_pub] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_trait] = ACTIONS(1438), - [anon_sym_type] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_unsafe] = ACTIONS(1438), - [anon_sym_use] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(1436), - [anon_sym_COLON_COLON] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_DOT_DOT] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_move] = ACTIONS(1438), - [sym_integer_literal] = ACTIONS(1436), - [aux_sym_string_literal_token1] = ACTIONS(1436), - [sym_char_literal] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1438), - [anon_sym_false] = ACTIONS(1438), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1438), - [sym_super] = ACTIONS(1438), - [sym_crate] = ACTIONS(1438), - [sym_metavariable] = ACTIONS(1436), - [sym_raw_string_literal] = ACTIONS(1436), - [sym_float_literal] = ACTIONS(1436), - [sym_block_comment] = ACTIONS(3), - }, - [341] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_macro_rules_BANG] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_u8] = ACTIONS(1442), - [anon_sym_i8] = ACTIONS(1442), - [anon_sym_u16] = ACTIONS(1442), - [anon_sym_i16] = ACTIONS(1442), - [anon_sym_u32] = ACTIONS(1442), - [anon_sym_i32] = ACTIONS(1442), - [anon_sym_u64] = ACTIONS(1442), - [anon_sym_i64] = ACTIONS(1442), - [anon_sym_u128] = ACTIONS(1442), - [anon_sym_i128] = ACTIONS(1442), - [anon_sym_isize] = ACTIONS(1442), - [anon_sym_usize] = ACTIONS(1442), - [anon_sym_f32] = ACTIONS(1442), - [anon_sym_f64] = ACTIONS(1442), - [anon_sym_bool] = ACTIONS(1442), - [anon_sym_str] = ACTIONS(1442), - [anon_sym_char] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_async] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_impl] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1442), - [anon_sym_loop] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1442), - [anon_sym_mod] = ACTIONS(1442), - [anon_sym_pub] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_trait] = ACTIONS(1442), - [anon_sym_type] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_unsafe] = ACTIONS(1442), - [anon_sym_use] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym_LT] = ACTIONS(1440), - [anon_sym_COLON_COLON] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_DOT_DOT] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_move] = ACTIONS(1442), - [sym_integer_literal] = ACTIONS(1440), - [aux_sym_string_literal_token1] = ACTIONS(1440), - [sym_char_literal] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1442), - [anon_sym_false] = ACTIONS(1442), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1442), - [sym_super] = ACTIONS(1442), - [sym_crate] = ACTIONS(1442), - [sym_metavariable] = ACTIONS(1440), - [sym_raw_string_literal] = ACTIONS(1440), - [sym_float_literal] = ACTIONS(1440), - [sym_block_comment] = ACTIONS(3), - }, - [342] = { - [ts_builtin_sym_end] = ACTIONS(1444), - [sym_identifier] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_macro_rules_BANG] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_u8] = ACTIONS(1446), - [anon_sym_i8] = ACTIONS(1446), - [anon_sym_u16] = ACTIONS(1446), - [anon_sym_i16] = ACTIONS(1446), - [anon_sym_u32] = ACTIONS(1446), - [anon_sym_i32] = ACTIONS(1446), - [anon_sym_u64] = ACTIONS(1446), - [anon_sym_i64] = ACTIONS(1446), - [anon_sym_u128] = ACTIONS(1446), - [anon_sym_i128] = ACTIONS(1446), - [anon_sym_isize] = ACTIONS(1446), - [anon_sym_usize] = ACTIONS(1446), - [anon_sym_f32] = ACTIONS(1446), - [anon_sym_f64] = ACTIONS(1446), - [anon_sym_bool] = ACTIONS(1446), - [anon_sym_str] = ACTIONS(1446), - [anon_sym_char] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_async] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_fn] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_impl] = ACTIONS(1446), - [anon_sym_let] = ACTIONS(1446), - [anon_sym_loop] = ACTIONS(1446), - [anon_sym_match] = ACTIONS(1446), - [anon_sym_mod] = ACTIONS(1446), - [anon_sym_pub] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_trait] = ACTIONS(1446), - [anon_sym_type] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_unsafe] = ACTIONS(1446), - [anon_sym_use] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_COLON_COLON] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_DOT_DOT] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_move] = ACTIONS(1446), - [sym_integer_literal] = ACTIONS(1444), - [aux_sym_string_literal_token1] = ACTIONS(1444), - [sym_char_literal] = ACTIONS(1444), - [anon_sym_true] = ACTIONS(1446), - [anon_sym_false] = ACTIONS(1446), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1446), - [sym_super] = ACTIONS(1446), - [sym_crate] = ACTIONS(1446), - [sym_metavariable] = ACTIONS(1444), - [sym_raw_string_literal] = ACTIONS(1444), - [sym_float_literal] = ACTIONS(1444), - [sym_block_comment] = ACTIONS(3), - }, - [343] = { - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_identifier] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_macro_rules_BANG] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_u8] = ACTIONS(1450), - [anon_sym_i8] = ACTIONS(1450), - [anon_sym_u16] = ACTIONS(1450), - [anon_sym_i16] = ACTIONS(1450), - [anon_sym_u32] = ACTIONS(1450), - [anon_sym_i32] = ACTIONS(1450), - [anon_sym_u64] = ACTIONS(1450), - [anon_sym_i64] = ACTIONS(1450), - [anon_sym_u128] = ACTIONS(1450), - [anon_sym_i128] = ACTIONS(1450), - [anon_sym_isize] = ACTIONS(1450), - [anon_sym_usize] = ACTIONS(1450), - [anon_sym_f32] = ACTIONS(1450), - [anon_sym_f64] = ACTIONS(1450), - [anon_sym_bool] = ACTIONS(1450), - [anon_sym_str] = ACTIONS(1450), - [anon_sym_char] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_async] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_default] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_fn] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_impl] = ACTIONS(1450), - [anon_sym_let] = ACTIONS(1450), - [anon_sym_loop] = ACTIONS(1450), - [anon_sym_match] = ACTIONS(1450), - [anon_sym_mod] = ACTIONS(1450), - [anon_sym_pub] = ACTIONS(1450), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_trait] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_union] = ACTIONS(1450), - [anon_sym_unsafe] = ACTIONS(1450), - [anon_sym_use] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_COLON_COLON] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_DOT_DOT] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_move] = ACTIONS(1450), - [sym_integer_literal] = ACTIONS(1448), - [aux_sym_string_literal_token1] = ACTIONS(1448), - [sym_char_literal] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1450), - [anon_sym_false] = ACTIONS(1450), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1450), - [sym_super] = ACTIONS(1450), - [sym_crate] = ACTIONS(1450), - [sym_metavariable] = ACTIONS(1448), - [sym_raw_string_literal] = ACTIONS(1448), - [sym_float_literal] = ACTIONS(1448), - [sym_block_comment] = ACTIONS(3), - }, - [344] = { - [ts_builtin_sym_end] = ACTIONS(1452), - [sym_identifier] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_macro_rules_BANG] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_u8] = ACTIONS(1454), - [anon_sym_i8] = ACTIONS(1454), - [anon_sym_u16] = ACTIONS(1454), - [anon_sym_i16] = ACTIONS(1454), - [anon_sym_u32] = ACTIONS(1454), - [anon_sym_i32] = ACTIONS(1454), - [anon_sym_u64] = ACTIONS(1454), - [anon_sym_i64] = ACTIONS(1454), - [anon_sym_u128] = ACTIONS(1454), - [anon_sym_i128] = ACTIONS(1454), - [anon_sym_isize] = ACTIONS(1454), - [anon_sym_usize] = ACTIONS(1454), - [anon_sym_f32] = ACTIONS(1454), - [anon_sym_f64] = ACTIONS(1454), - [anon_sym_bool] = ACTIONS(1454), - [anon_sym_str] = ACTIONS(1454), - [anon_sym_char] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_async] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_fn] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_impl] = ACTIONS(1454), - [anon_sym_let] = ACTIONS(1454), - [anon_sym_loop] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_mod] = ACTIONS(1454), - [anon_sym_pub] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_trait] = ACTIONS(1454), - [anon_sym_type] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_unsafe] = ACTIONS(1454), - [anon_sym_use] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_POUND] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_COLON_COLON] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_DOT_DOT] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_move] = ACTIONS(1454), - [sym_integer_literal] = ACTIONS(1452), - [aux_sym_string_literal_token1] = ACTIONS(1452), - [sym_char_literal] = ACTIONS(1452), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1454), - [sym_super] = ACTIONS(1454), - [sym_crate] = ACTIONS(1454), - [sym_metavariable] = ACTIONS(1452), - [sym_raw_string_literal] = ACTIONS(1452), - [sym_float_literal] = ACTIONS(1452), - [sym_block_comment] = ACTIONS(3), - }, - [345] = { - [ts_builtin_sym_end] = ACTIONS(1456), - [sym_identifier] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_macro_rules_BANG] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_u8] = ACTIONS(1458), - [anon_sym_i8] = ACTIONS(1458), - [anon_sym_u16] = ACTIONS(1458), - [anon_sym_i16] = ACTIONS(1458), - [anon_sym_u32] = ACTIONS(1458), - [anon_sym_i32] = ACTIONS(1458), - [anon_sym_u64] = ACTIONS(1458), - [anon_sym_i64] = ACTIONS(1458), - [anon_sym_u128] = ACTIONS(1458), - [anon_sym_i128] = ACTIONS(1458), - [anon_sym_isize] = ACTIONS(1458), - [anon_sym_usize] = ACTIONS(1458), - [anon_sym_f32] = ACTIONS(1458), - [anon_sym_f64] = ACTIONS(1458), - [anon_sym_bool] = ACTIONS(1458), - [anon_sym_str] = ACTIONS(1458), - [anon_sym_char] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_async] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [anon_sym_fn] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_impl] = ACTIONS(1458), - [anon_sym_let] = ACTIONS(1458), - [anon_sym_loop] = ACTIONS(1458), - [anon_sym_match] = ACTIONS(1458), - [anon_sym_mod] = ACTIONS(1458), - [anon_sym_pub] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_trait] = ACTIONS(1458), - [anon_sym_type] = ACTIONS(1458), - [anon_sym_union] = ACTIONS(1458), - [anon_sym_unsafe] = ACTIONS(1458), - [anon_sym_use] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_COLON_COLON] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_move] = ACTIONS(1458), - [sym_integer_literal] = ACTIONS(1456), - [aux_sym_string_literal_token1] = ACTIONS(1456), - [sym_char_literal] = ACTIONS(1456), - [anon_sym_true] = ACTIONS(1458), - [anon_sym_false] = ACTIONS(1458), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1458), - [sym_super] = ACTIONS(1458), - [sym_crate] = ACTIONS(1458), - [sym_metavariable] = ACTIONS(1456), - [sym_raw_string_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1456), - [sym_block_comment] = ACTIONS(3), - }, - [346] = { - [ts_builtin_sym_end] = ACTIONS(1460), - [sym_identifier] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_macro_rules_BANG] = ACTIONS(1460), - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_u8] = ACTIONS(1462), - [anon_sym_i8] = ACTIONS(1462), - [anon_sym_u16] = ACTIONS(1462), - [anon_sym_i16] = ACTIONS(1462), - [anon_sym_u32] = ACTIONS(1462), - [anon_sym_i32] = ACTIONS(1462), - [anon_sym_u64] = ACTIONS(1462), - [anon_sym_i64] = ACTIONS(1462), - [anon_sym_u128] = ACTIONS(1462), - [anon_sym_i128] = ACTIONS(1462), - [anon_sym_isize] = ACTIONS(1462), - [anon_sym_usize] = ACTIONS(1462), - [anon_sym_f32] = ACTIONS(1462), - [anon_sym_f64] = ACTIONS(1462), - [anon_sym_bool] = ACTIONS(1462), - [anon_sym_str] = ACTIONS(1462), - [anon_sym_char] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_const] = ACTIONS(1462), - [anon_sym_continue] = ACTIONS(1462), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_enum] = ACTIONS(1462), - [anon_sym_fn] = ACTIONS(1462), - [anon_sym_for] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_impl] = ACTIONS(1462), - [anon_sym_let] = ACTIONS(1462), - [anon_sym_loop] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_mod] = ACTIONS(1462), - [anon_sym_pub] = ACTIONS(1462), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_static] = ACTIONS(1462), - [anon_sym_struct] = ACTIONS(1462), - [anon_sym_trait] = ACTIONS(1462), - [anon_sym_type] = ACTIONS(1462), - [anon_sym_union] = ACTIONS(1462), - [anon_sym_unsafe] = ACTIONS(1462), - [anon_sym_use] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1462), - [anon_sym_POUND] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_COLON_COLON] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_DOT_DOT] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_move] = ACTIONS(1462), - [sym_integer_literal] = ACTIONS(1460), - [aux_sym_string_literal_token1] = ACTIONS(1460), - [sym_char_literal] = ACTIONS(1460), - [anon_sym_true] = ACTIONS(1462), - [anon_sym_false] = ACTIONS(1462), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1462), - [sym_super] = ACTIONS(1462), - [sym_crate] = ACTIONS(1462), - [sym_metavariable] = ACTIONS(1460), - [sym_raw_string_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1460), - [sym_block_comment] = ACTIONS(3), - }, - [347] = { - [ts_builtin_sym_end] = ACTIONS(1464), - [sym_identifier] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_macro_rules_BANG] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_u8] = ACTIONS(1466), - [anon_sym_i8] = ACTIONS(1466), - [anon_sym_u16] = ACTIONS(1466), - [anon_sym_i16] = ACTIONS(1466), - [anon_sym_u32] = ACTIONS(1466), - [anon_sym_i32] = ACTIONS(1466), - [anon_sym_u64] = ACTIONS(1466), - [anon_sym_i64] = ACTIONS(1466), - [anon_sym_u128] = ACTIONS(1466), - [anon_sym_i128] = ACTIONS(1466), - [anon_sym_isize] = ACTIONS(1466), - [anon_sym_usize] = ACTIONS(1466), - [anon_sym_f32] = ACTIONS(1466), - [anon_sym_f64] = ACTIONS(1466), - [anon_sym_bool] = ACTIONS(1466), - [anon_sym_str] = ACTIONS(1466), - [anon_sym_char] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1466), - [anon_sym_enum] = ACTIONS(1466), - [anon_sym_fn] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_impl] = ACTIONS(1466), - [anon_sym_let] = ACTIONS(1466), - [anon_sym_loop] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_mod] = ACTIONS(1466), - [anon_sym_pub] = ACTIONS(1466), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_struct] = ACTIONS(1466), - [anon_sym_trait] = ACTIONS(1466), - [anon_sym_type] = ACTIONS(1466), - [anon_sym_union] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1466), - [anon_sym_use] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_COLON_COLON] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_DOT_DOT] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_move] = ACTIONS(1466), - [sym_integer_literal] = ACTIONS(1464), - [aux_sym_string_literal_token1] = ACTIONS(1464), - [sym_char_literal] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1466), - [anon_sym_false] = ACTIONS(1466), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1466), - [sym_super] = ACTIONS(1466), - [sym_crate] = ACTIONS(1466), - [sym_metavariable] = ACTIONS(1464), - [sym_raw_string_literal] = ACTIONS(1464), - [sym_float_literal] = ACTIONS(1464), - [sym_block_comment] = ACTIONS(3), - }, - [348] = { - [ts_builtin_sym_end] = ACTIONS(1468), - [sym_identifier] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_macro_rules_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_u8] = ACTIONS(1470), - [anon_sym_i8] = ACTIONS(1470), - [anon_sym_u16] = ACTIONS(1470), - [anon_sym_i16] = ACTIONS(1470), - [anon_sym_u32] = ACTIONS(1470), - [anon_sym_i32] = ACTIONS(1470), - [anon_sym_u64] = ACTIONS(1470), - [anon_sym_i64] = ACTIONS(1470), - [anon_sym_u128] = ACTIONS(1470), - [anon_sym_i128] = ACTIONS(1470), - [anon_sym_isize] = ACTIONS(1470), - [anon_sym_usize] = ACTIONS(1470), - [anon_sym_f32] = ACTIONS(1470), - [anon_sym_f64] = ACTIONS(1470), - [anon_sym_bool] = ACTIONS(1470), - [anon_sym_str] = ACTIONS(1470), - [anon_sym_char] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_default] = ACTIONS(1470), - [anon_sym_enum] = ACTIONS(1470), - [anon_sym_fn] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_impl] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_mod] = ACTIONS(1470), - [anon_sym_pub] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_static] = ACTIONS(1470), - [anon_sym_struct] = ACTIONS(1470), - [anon_sym_trait] = ACTIONS(1470), - [anon_sym_type] = ACTIONS(1470), - [anon_sym_union] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1468), - [anon_sym_COLON_COLON] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_DOT_DOT] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1470), - [sym_integer_literal] = ACTIONS(1468), - [aux_sym_string_literal_token1] = ACTIONS(1468), - [sym_char_literal] = ACTIONS(1468), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1470), - [sym_super] = ACTIONS(1470), - [sym_crate] = ACTIONS(1470), - [sym_metavariable] = ACTIONS(1468), - [sym_raw_string_literal] = ACTIONS(1468), - [sym_float_literal] = ACTIONS(1468), - [sym_block_comment] = ACTIONS(3), - }, - [349] = { - [ts_builtin_sym_end] = ACTIONS(1472), - [sym_identifier] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_macro_rules_BANG] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_u8] = ACTIONS(1474), - [anon_sym_i8] = ACTIONS(1474), - [anon_sym_u16] = ACTIONS(1474), - [anon_sym_i16] = ACTIONS(1474), - [anon_sym_u32] = ACTIONS(1474), - [anon_sym_i32] = ACTIONS(1474), - [anon_sym_u64] = ACTIONS(1474), - [anon_sym_i64] = ACTIONS(1474), - [anon_sym_u128] = ACTIONS(1474), - [anon_sym_i128] = ACTIONS(1474), - [anon_sym_isize] = ACTIONS(1474), - [anon_sym_usize] = ACTIONS(1474), - [anon_sym_f32] = ACTIONS(1474), - [anon_sym_f64] = ACTIONS(1474), - [anon_sym_bool] = ACTIONS(1474), - [anon_sym_str] = ACTIONS(1474), - [anon_sym_char] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_async] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_enum] = ACTIONS(1474), - [anon_sym_fn] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_impl] = ACTIONS(1474), - [anon_sym_let] = ACTIONS(1474), - [anon_sym_loop] = ACTIONS(1474), - [anon_sym_match] = ACTIONS(1474), - [anon_sym_mod] = ACTIONS(1474), - [anon_sym_pub] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_static] = ACTIONS(1474), - [anon_sym_struct] = ACTIONS(1474), - [anon_sym_trait] = ACTIONS(1474), - [anon_sym_type] = ACTIONS(1474), - [anon_sym_union] = ACTIONS(1474), - [anon_sym_unsafe] = ACTIONS(1474), - [anon_sym_use] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(1472), - [anon_sym_COLON_COLON] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_move] = ACTIONS(1474), - [sym_integer_literal] = ACTIONS(1472), - [aux_sym_string_literal_token1] = ACTIONS(1472), - [sym_char_literal] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1474), - [anon_sym_false] = ACTIONS(1474), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1474), - [sym_super] = ACTIONS(1474), - [sym_crate] = ACTIONS(1474), - [sym_metavariable] = ACTIONS(1472), - [sym_raw_string_literal] = ACTIONS(1472), - [sym_float_literal] = ACTIONS(1472), - [sym_block_comment] = ACTIONS(3), - }, - [350] = { - [ts_builtin_sym_end] = ACTIONS(1476), - [sym_identifier] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_macro_rules_BANG] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_u8] = ACTIONS(1478), - [anon_sym_i8] = ACTIONS(1478), - [anon_sym_u16] = ACTIONS(1478), - [anon_sym_i16] = ACTIONS(1478), - [anon_sym_u32] = ACTIONS(1478), - [anon_sym_i32] = ACTIONS(1478), - [anon_sym_u64] = ACTIONS(1478), - [anon_sym_i64] = ACTIONS(1478), - [anon_sym_u128] = ACTIONS(1478), - [anon_sym_i128] = ACTIONS(1478), - [anon_sym_isize] = ACTIONS(1478), - [anon_sym_usize] = ACTIONS(1478), - [anon_sym_f32] = ACTIONS(1478), - [anon_sym_f64] = ACTIONS(1478), - [anon_sym_bool] = ACTIONS(1478), - [anon_sym_str] = ACTIONS(1478), - [anon_sym_char] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_async] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_default] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - [anon_sym_fn] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_impl] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1478), - [anon_sym_loop] = ACTIONS(1478), - [anon_sym_match] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_pub] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [anon_sym_trait] = ACTIONS(1478), - [anon_sym_type] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_use] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_COLON_COLON] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_move] = ACTIONS(1478), - [sym_integer_literal] = ACTIONS(1476), - [aux_sym_string_literal_token1] = ACTIONS(1476), - [sym_char_literal] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1478), - [anon_sym_false] = ACTIONS(1478), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1478), - [sym_super] = ACTIONS(1478), - [sym_crate] = ACTIONS(1478), - [sym_metavariable] = ACTIONS(1476), - [sym_raw_string_literal] = ACTIONS(1476), - [sym_float_literal] = ACTIONS(1476), - [sym_block_comment] = ACTIONS(3), - }, - [351] = { - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_macro_rules_BANG] = ACTIONS(1480), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_u8] = ACTIONS(1482), - [anon_sym_i8] = ACTIONS(1482), - [anon_sym_u16] = ACTIONS(1482), - [anon_sym_i16] = ACTIONS(1482), - [anon_sym_u32] = ACTIONS(1482), - [anon_sym_i32] = ACTIONS(1482), - [anon_sym_u64] = ACTIONS(1482), - [anon_sym_i64] = ACTIONS(1482), - [anon_sym_u128] = ACTIONS(1482), - [anon_sym_i128] = ACTIONS(1482), - [anon_sym_isize] = ACTIONS(1482), - [anon_sym_usize] = ACTIONS(1482), - [anon_sym_f32] = ACTIONS(1482), - [anon_sym_f64] = ACTIONS(1482), - [anon_sym_bool] = ACTIONS(1482), - [anon_sym_str] = ACTIONS(1482), - [anon_sym_char] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_async] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [anon_sym_fn] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_impl] = ACTIONS(1482), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_loop] = ACTIONS(1482), - [anon_sym_match] = ACTIONS(1482), - [anon_sym_mod] = ACTIONS(1482), - [anon_sym_pub] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_struct] = ACTIONS(1482), - [anon_sym_trait] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_union] = ACTIONS(1482), - [anon_sym_unsafe] = ACTIONS(1482), - [anon_sym_use] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_POUND] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1482), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_COLON_COLON] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_move] = ACTIONS(1482), - [sym_integer_literal] = ACTIONS(1480), - [aux_sym_string_literal_token1] = ACTIONS(1480), - [sym_char_literal] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1482), - [sym_super] = ACTIONS(1482), - [sym_crate] = ACTIONS(1482), - [sym_metavariable] = ACTIONS(1480), - [sym_raw_string_literal] = ACTIONS(1480), - [sym_float_literal] = ACTIONS(1480), - [sym_block_comment] = ACTIONS(3), - }, - [352] = { - [ts_builtin_sym_end] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_macro_rules_BANG] = ACTIONS(1484), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_u8] = ACTIONS(1486), - [anon_sym_i8] = ACTIONS(1486), - [anon_sym_u16] = ACTIONS(1486), - [anon_sym_i16] = ACTIONS(1486), - [anon_sym_u32] = ACTIONS(1486), - [anon_sym_i32] = ACTIONS(1486), - [anon_sym_u64] = ACTIONS(1486), - [anon_sym_i64] = ACTIONS(1486), - [anon_sym_u128] = ACTIONS(1486), - [anon_sym_i128] = ACTIONS(1486), - [anon_sym_isize] = ACTIONS(1486), - [anon_sym_usize] = ACTIONS(1486), - [anon_sym_f32] = ACTIONS(1486), - [anon_sym_f64] = ACTIONS(1486), - [anon_sym_bool] = ACTIONS(1486), - [anon_sym_str] = ACTIONS(1486), - [anon_sym_char] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_async] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [anon_sym_fn] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_impl] = ACTIONS(1486), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_loop] = ACTIONS(1486), - [anon_sym_match] = ACTIONS(1486), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_pub] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_trait] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1486), - [anon_sym_unsafe] = ACTIONS(1486), - [anon_sym_use] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_POUND] = ACTIONS(1484), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_move] = ACTIONS(1486), - [sym_integer_literal] = ACTIONS(1484), - [aux_sym_string_literal_token1] = ACTIONS(1484), - [sym_char_literal] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1486), - [sym_super] = ACTIONS(1486), - [sym_crate] = ACTIONS(1486), - [sym_metavariable] = ACTIONS(1484), - [sym_raw_string_literal] = ACTIONS(1484), - [sym_float_literal] = ACTIONS(1484), - [sym_block_comment] = ACTIONS(3), - }, - [353] = { - [ts_builtin_sym_end] = ACTIONS(1488), - [sym_identifier] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_macro_rules_BANG] = ACTIONS(1488), - [anon_sym_LPAREN] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u128] = ACTIONS(1490), - [anon_sym_i128] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_str] = ACTIONS(1490), - [anon_sym_char] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_async] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_default] = ACTIONS(1490), - [anon_sym_enum] = ACTIONS(1490), - [anon_sym_fn] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_impl] = ACTIONS(1490), - [anon_sym_let] = ACTIONS(1490), - [anon_sym_loop] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1490), - [anon_sym_mod] = ACTIONS(1490), - [anon_sym_pub] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_static] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_trait] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_unsafe] = ACTIONS(1490), - [anon_sym_use] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_POUND] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(1488), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1488), - [aux_sym_string_literal_token1] = ACTIONS(1488), - [sym_char_literal] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1490), - [sym_super] = ACTIONS(1490), - [sym_crate] = ACTIONS(1490), - [sym_metavariable] = ACTIONS(1488), - [sym_raw_string_literal] = ACTIONS(1488), - [sym_float_literal] = ACTIONS(1488), - [sym_block_comment] = ACTIONS(3), - }, - [354] = { - [ts_builtin_sym_end] = ACTIONS(1492), - [sym_identifier] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_macro_rules_BANG] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_u8] = ACTIONS(1494), - [anon_sym_i8] = ACTIONS(1494), - [anon_sym_u16] = ACTIONS(1494), - [anon_sym_i16] = ACTIONS(1494), - [anon_sym_u32] = ACTIONS(1494), - [anon_sym_i32] = ACTIONS(1494), - [anon_sym_u64] = ACTIONS(1494), - [anon_sym_i64] = ACTIONS(1494), - [anon_sym_u128] = ACTIONS(1494), - [anon_sym_i128] = ACTIONS(1494), - [anon_sym_isize] = ACTIONS(1494), - [anon_sym_usize] = ACTIONS(1494), - [anon_sym_f32] = ACTIONS(1494), - [anon_sym_f64] = ACTIONS(1494), - [anon_sym_bool] = ACTIONS(1494), - [anon_sym_str] = ACTIONS(1494), - [anon_sym_char] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_async] = ACTIONS(1494), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1494), - [anon_sym_default] = ACTIONS(1494), - [anon_sym_enum] = ACTIONS(1494), - [anon_sym_fn] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_impl] = ACTIONS(1494), - [anon_sym_let] = ACTIONS(1494), - [anon_sym_loop] = ACTIONS(1494), - [anon_sym_match] = ACTIONS(1494), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_pub] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_static] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_trait] = ACTIONS(1494), - [anon_sym_type] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_unsafe] = ACTIONS(1494), - [anon_sym_use] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_COLON_COLON] = ACTIONS(1492), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_DOT_DOT] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_move] = ACTIONS(1494), - [sym_integer_literal] = ACTIONS(1492), - [aux_sym_string_literal_token1] = ACTIONS(1492), - [sym_char_literal] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1494), - [sym_super] = ACTIONS(1494), - [sym_crate] = ACTIONS(1494), - [sym_metavariable] = ACTIONS(1492), - [sym_raw_string_literal] = ACTIONS(1492), - [sym_float_literal] = ACTIONS(1492), - [sym_block_comment] = ACTIONS(3), - }, - [355] = { - [ts_builtin_sym_end] = ACTIONS(1496), - [sym_identifier] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_macro_rules_BANG] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1496), - [anon_sym_u8] = ACTIONS(1498), - [anon_sym_i8] = ACTIONS(1498), - [anon_sym_u16] = ACTIONS(1498), - [anon_sym_i16] = ACTIONS(1498), - [anon_sym_u32] = ACTIONS(1498), - [anon_sym_i32] = ACTIONS(1498), - [anon_sym_u64] = ACTIONS(1498), - [anon_sym_i64] = ACTIONS(1498), - [anon_sym_u128] = ACTIONS(1498), - [anon_sym_i128] = ACTIONS(1498), - [anon_sym_isize] = ACTIONS(1498), - [anon_sym_usize] = ACTIONS(1498), - [anon_sym_f32] = ACTIONS(1498), - [anon_sym_f64] = ACTIONS(1498), - [anon_sym_bool] = ACTIONS(1498), - [anon_sym_str] = ACTIONS(1498), - [anon_sym_char] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_async] = ACTIONS(1498), - [anon_sym_break] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [anon_sym_continue] = ACTIONS(1498), - [anon_sym_default] = ACTIONS(1498), - [anon_sym_enum] = ACTIONS(1498), - [anon_sym_fn] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1498), - [anon_sym_impl] = ACTIONS(1498), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_loop] = ACTIONS(1498), - [anon_sym_match] = ACTIONS(1498), - [anon_sym_mod] = ACTIONS(1498), - [anon_sym_pub] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1498), - [anon_sym_trait] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1498), - [anon_sym_unsafe] = ACTIONS(1498), - [anon_sym_use] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1496), - [anon_sym_move] = ACTIONS(1498), - [sym_integer_literal] = ACTIONS(1496), - [aux_sym_string_literal_token1] = ACTIONS(1496), - [sym_char_literal] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1498), - [anon_sym_false] = ACTIONS(1498), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1498), - [sym_super] = ACTIONS(1498), - [sym_crate] = ACTIONS(1498), - [sym_metavariable] = ACTIONS(1496), - [sym_raw_string_literal] = ACTIONS(1496), - [sym_float_literal] = ACTIONS(1496), - [sym_block_comment] = ACTIONS(3), - }, - [356] = { - [ts_builtin_sym_end] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym_macro_rules_BANG] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1500), - [anon_sym_u8] = ACTIONS(1502), - [anon_sym_i8] = ACTIONS(1502), - [anon_sym_u16] = ACTIONS(1502), - [anon_sym_i16] = ACTIONS(1502), - [anon_sym_u32] = ACTIONS(1502), - [anon_sym_i32] = ACTIONS(1502), - [anon_sym_u64] = ACTIONS(1502), - [anon_sym_i64] = ACTIONS(1502), - [anon_sym_u128] = ACTIONS(1502), - [anon_sym_i128] = ACTIONS(1502), - [anon_sym_isize] = ACTIONS(1502), - [anon_sym_usize] = ACTIONS(1502), - [anon_sym_f32] = ACTIONS(1502), - [anon_sym_f64] = ACTIONS(1502), - [anon_sym_bool] = ACTIONS(1502), - [anon_sym_str] = ACTIONS(1502), - [anon_sym_char] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_break] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1502), - [anon_sym_continue] = ACTIONS(1502), - [anon_sym_default] = ACTIONS(1502), - [anon_sym_enum] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1502), - [anon_sym_impl] = ACTIONS(1502), - [anon_sym_let] = ACTIONS(1502), - [anon_sym_loop] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_mod] = ACTIONS(1502), - [anon_sym_pub] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1502), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_struct] = ACTIONS(1502), - [anon_sym_trait] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_union] = ACTIONS(1502), - [anon_sym_unsafe] = ACTIONS(1502), - [anon_sym_use] = ACTIONS(1502), - [anon_sym_while] = ACTIONS(1502), - [anon_sym_POUND] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_COLON_COLON] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_move] = ACTIONS(1502), - [sym_integer_literal] = ACTIONS(1500), - [aux_sym_string_literal_token1] = ACTIONS(1500), - [sym_char_literal] = ACTIONS(1500), - [anon_sym_true] = ACTIONS(1502), - [anon_sym_false] = ACTIONS(1502), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1502), - [sym_super] = ACTIONS(1502), - [sym_crate] = ACTIONS(1502), - [sym_metavariable] = ACTIONS(1500), - [sym_raw_string_literal] = ACTIONS(1500), - [sym_float_literal] = ACTIONS(1500), - [sym_block_comment] = ACTIONS(3), - }, - [357] = { - [ts_builtin_sym_end] = ACTIONS(1504), - [sym_identifier] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_macro_rules_BANG] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_u8] = ACTIONS(1506), - [anon_sym_i8] = ACTIONS(1506), - [anon_sym_u16] = ACTIONS(1506), - [anon_sym_i16] = ACTIONS(1506), - [anon_sym_u32] = ACTIONS(1506), - [anon_sym_i32] = ACTIONS(1506), - [anon_sym_u64] = ACTIONS(1506), - [anon_sym_i64] = ACTIONS(1506), - [anon_sym_u128] = ACTIONS(1506), - [anon_sym_i128] = ACTIONS(1506), - [anon_sym_isize] = ACTIONS(1506), - [anon_sym_usize] = ACTIONS(1506), - [anon_sym_f32] = ACTIONS(1506), - [anon_sym_f64] = ACTIONS(1506), - [anon_sym_bool] = ACTIONS(1506), - [anon_sym_str] = ACTIONS(1506), - [anon_sym_char] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_async] = ACTIONS(1506), - [anon_sym_break] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1506), - [anon_sym_continue] = ACTIONS(1506), - [anon_sym_default] = ACTIONS(1506), - [anon_sym_enum] = ACTIONS(1506), - [anon_sym_fn] = ACTIONS(1506), - [anon_sym_for] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1506), - [anon_sym_impl] = ACTIONS(1506), - [anon_sym_let] = ACTIONS(1506), - [anon_sym_loop] = ACTIONS(1506), - [anon_sym_match] = ACTIONS(1506), - [anon_sym_mod] = ACTIONS(1506), - [anon_sym_pub] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1506), - [anon_sym_static] = ACTIONS(1506), - [anon_sym_struct] = ACTIONS(1506), - [anon_sym_trait] = ACTIONS(1506), - [anon_sym_type] = ACTIONS(1506), - [anon_sym_union] = ACTIONS(1506), - [anon_sym_unsafe] = ACTIONS(1506), - [anon_sym_use] = ACTIONS(1506), - [anon_sym_while] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1504), - [anon_sym_COLON_COLON] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_DOT_DOT] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_move] = ACTIONS(1506), - [sym_integer_literal] = ACTIONS(1504), - [aux_sym_string_literal_token1] = ACTIONS(1504), - [sym_char_literal] = ACTIONS(1504), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1506), - [sym_super] = ACTIONS(1506), - [sym_crate] = ACTIONS(1506), - [sym_metavariable] = ACTIONS(1504), - [sym_raw_string_literal] = ACTIONS(1504), - [sym_float_literal] = ACTIONS(1504), - [sym_block_comment] = ACTIONS(3), - }, - [358] = { - [ts_builtin_sym_end] = ACTIONS(1508), - [sym_identifier] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_macro_rules_BANG] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_fn] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_impl] = ACTIONS(1510), - [anon_sym_let] = ACTIONS(1510), - [anon_sym_loop] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_mod] = ACTIONS(1510), - [anon_sym_pub] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_trait] = ACTIONS(1510), - [anon_sym_type] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_unsafe] = ACTIONS(1510), - [anon_sym_use] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_COLON_COLON] = ACTIONS(1508), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_DOT_DOT] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_move] = ACTIONS(1510), - [sym_integer_literal] = ACTIONS(1508), - [aux_sym_string_literal_token1] = ACTIONS(1508), - [sym_char_literal] = ACTIONS(1508), - [anon_sym_true] = ACTIONS(1510), - [anon_sym_false] = ACTIONS(1510), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1510), - [sym_super] = ACTIONS(1510), - [sym_crate] = ACTIONS(1510), - [sym_metavariable] = ACTIONS(1508), - [sym_raw_string_literal] = ACTIONS(1508), - [sym_float_literal] = ACTIONS(1508), - [sym_block_comment] = ACTIONS(3), - }, - [359] = { - [ts_builtin_sym_end] = ACTIONS(1512), - [sym_identifier] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_macro_rules_BANG] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_u8] = ACTIONS(1514), - [anon_sym_i8] = ACTIONS(1514), - [anon_sym_u16] = ACTIONS(1514), - [anon_sym_i16] = ACTIONS(1514), - [anon_sym_u32] = ACTIONS(1514), - [anon_sym_i32] = ACTIONS(1514), - [anon_sym_u64] = ACTIONS(1514), - [anon_sym_i64] = ACTIONS(1514), - [anon_sym_u128] = ACTIONS(1514), - [anon_sym_i128] = ACTIONS(1514), - [anon_sym_isize] = ACTIONS(1514), - [anon_sym_usize] = ACTIONS(1514), - [anon_sym_f32] = ACTIONS(1514), - [anon_sym_f64] = ACTIONS(1514), - [anon_sym_bool] = ACTIONS(1514), - [anon_sym_str] = ACTIONS(1514), - [anon_sym_char] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_async] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_impl] = ACTIONS(1514), - [anon_sym_let] = ACTIONS(1514), - [anon_sym_loop] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_pub] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_trait] = ACTIONS(1514), - [anon_sym_type] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_unsafe] = ACTIONS(1514), - [anon_sym_use] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_POUND] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_LT] = ACTIONS(1512), - [anon_sym_COLON_COLON] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_DOT_DOT] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1512), - [anon_sym_move] = ACTIONS(1514), - [sym_integer_literal] = ACTIONS(1512), - [aux_sym_string_literal_token1] = ACTIONS(1512), - [sym_char_literal] = ACTIONS(1512), - [anon_sym_true] = ACTIONS(1514), - [anon_sym_false] = ACTIONS(1514), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1514), - [sym_super] = ACTIONS(1514), - [sym_crate] = ACTIONS(1514), - [sym_metavariable] = ACTIONS(1512), - [sym_raw_string_literal] = ACTIONS(1512), - [sym_float_literal] = ACTIONS(1512), - [sym_block_comment] = ACTIONS(3), - }, - [360] = { - [ts_builtin_sym_end] = ACTIONS(1516), - [sym_identifier] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_macro_rules_BANG] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_impl] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_mod] = ACTIONS(1518), - [anon_sym_pub] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_trait] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_unsafe] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_DOT_DOT] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_move] = ACTIONS(1518), - [sym_integer_literal] = ACTIONS(1516), - [aux_sym_string_literal_token1] = ACTIONS(1516), - [sym_char_literal] = ACTIONS(1516), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1518), - [sym_super] = ACTIONS(1518), - [sym_crate] = ACTIONS(1518), - [sym_metavariable] = ACTIONS(1516), - [sym_raw_string_literal] = ACTIONS(1516), - [sym_float_literal] = ACTIONS(1516), - [sym_block_comment] = ACTIONS(3), - }, - [361] = { - [ts_builtin_sym_end] = ACTIONS(1520), - [sym_identifier] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_macro_rules_BANG] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_u8] = ACTIONS(1522), - [anon_sym_i8] = ACTIONS(1522), - [anon_sym_u16] = ACTIONS(1522), - [anon_sym_i16] = ACTIONS(1522), - [anon_sym_u32] = ACTIONS(1522), - [anon_sym_i32] = ACTIONS(1522), - [anon_sym_u64] = ACTIONS(1522), - [anon_sym_i64] = ACTIONS(1522), - [anon_sym_u128] = ACTIONS(1522), - [anon_sym_i128] = ACTIONS(1522), - [anon_sym_isize] = ACTIONS(1522), - [anon_sym_usize] = ACTIONS(1522), - [anon_sym_f32] = ACTIONS(1522), - [anon_sym_f64] = ACTIONS(1522), - [anon_sym_bool] = ACTIONS(1522), - [anon_sym_str] = ACTIONS(1522), - [anon_sym_char] = ACTIONS(1522), - [anon_sym_SQUOTE] = ACTIONS(1522), - [anon_sym_async] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_enum] = ACTIONS(1522), - [anon_sym_fn] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_impl] = ACTIONS(1522), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_loop] = ACTIONS(1522), - [anon_sym_match] = ACTIONS(1522), - [anon_sym_mod] = ACTIONS(1522), - [anon_sym_pub] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_static] = ACTIONS(1522), - [anon_sym_struct] = ACTIONS(1522), - [anon_sym_trait] = ACTIONS(1522), - [anon_sym_type] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_unsafe] = ACTIONS(1522), - [anon_sym_use] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_extern] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_move] = ACTIONS(1522), - [sym_integer_literal] = ACTIONS(1520), - [aux_sym_string_literal_token1] = ACTIONS(1520), - [sym_char_literal] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1522), - [anon_sym_false] = ACTIONS(1522), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1520), - [sym_raw_string_literal] = ACTIONS(1520), - [sym_float_literal] = ACTIONS(1520), - [sym_block_comment] = ACTIONS(3), - }, - [362] = { - [ts_builtin_sym_end] = ACTIONS(1524), - [sym_identifier] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_macro_rules_BANG] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_SQUOTE] = ACTIONS(1526), - [anon_sym_async] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_default] = ACTIONS(1526), - [anon_sym_enum] = ACTIONS(1526), - [anon_sym_fn] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_impl] = ACTIONS(1526), - [anon_sym_let] = ACTIONS(1526), - [anon_sym_loop] = ACTIONS(1526), - [anon_sym_match] = ACTIONS(1526), - [anon_sym_mod] = ACTIONS(1526), - [anon_sym_pub] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_static] = ACTIONS(1526), - [anon_sym_struct] = ACTIONS(1526), - [anon_sym_trait] = ACTIONS(1526), - [anon_sym_type] = ACTIONS(1526), - [anon_sym_union] = ACTIONS(1526), - [anon_sym_unsafe] = ACTIONS(1526), - [anon_sym_use] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1524), - [anon_sym_extern] = ACTIONS(1526), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_COLON_COLON] = ACTIONS(1524), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_DOT_DOT] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_move] = ACTIONS(1526), - [sym_integer_literal] = ACTIONS(1524), - [aux_sym_string_literal_token1] = ACTIONS(1524), - [sym_char_literal] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1526), - [anon_sym_false] = ACTIONS(1526), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1526), - [sym_super] = ACTIONS(1526), - [sym_crate] = ACTIONS(1526), - [sym_metavariable] = ACTIONS(1524), - [sym_raw_string_literal] = ACTIONS(1524), - [sym_float_literal] = ACTIONS(1524), - [sym_block_comment] = ACTIONS(3), - }, - [363] = { - [ts_builtin_sym_end] = ACTIONS(1528), - [sym_identifier] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_macro_rules_BANG] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_u8] = ACTIONS(1530), - [anon_sym_i8] = ACTIONS(1530), - [anon_sym_u16] = ACTIONS(1530), - [anon_sym_i16] = ACTIONS(1530), - [anon_sym_u32] = ACTIONS(1530), - [anon_sym_i32] = ACTIONS(1530), - [anon_sym_u64] = ACTIONS(1530), - [anon_sym_i64] = ACTIONS(1530), - [anon_sym_u128] = ACTIONS(1530), - [anon_sym_i128] = ACTIONS(1530), - [anon_sym_isize] = ACTIONS(1530), - [anon_sym_usize] = ACTIONS(1530), - [anon_sym_f32] = ACTIONS(1530), - [anon_sym_f64] = ACTIONS(1530), - [anon_sym_bool] = ACTIONS(1530), - [anon_sym_str] = ACTIONS(1530), - [anon_sym_char] = ACTIONS(1530), - [anon_sym_SQUOTE] = ACTIONS(1530), - [anon_sym_async] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_enum] = ACTIONS(1530), - [anon_sym_fn] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_impl] = ACTIONS(1530), - [anon_sym_let] = ACTIONS(1530), - [anon_sym_loop] = ACTIONS(1530), - [anon_sym_match] = ACTIONS(1530), - [anon_sym_mod] = ACTIONS(1530), - [anon_sym_pub] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_struct] = ACTIONS(1530), - [anon_sym_trait] = ACTIONS(1530), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), - [anon_sym_unsafe] = ACTIONS(1530), - [anon_sym_use] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1530), - [anon_sym_POUND] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym_LT] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_DOT_DOT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_move] = ACTIONS(1530), - [sym_integer_literal] = ACTIONS(1528), - [aux_sym_string_literal_token1] = ACTIONS(1528), - [sym_char_literal] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1530), - [sym_super] = ACTIONS(1530), - [sym_crate] = ACTIONS(1530), - [sym_metavariable] = ACTIONS(1528), - [sym_raw_string_literal] = ACTIONS(1528), - [sym_float_literal] = ACTIONS(1528), - [sym_block_comment] = ACTIONS(3), - }, - [364] = { - [ts_builtin_sym_end] = ACTIONS(1532), - [sym_identifier] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1532), - [anon_sym_macro_rules_BANG] = ACTIONS(1532), - [anon_sym_LPAREN] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_RBRACE] = ACTIONS(1532), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(1532), - [anon_sym_u8] = ACTIONS(1534), - [anon_sym_i8] = ACTIONS(1534), - [anon_sym_u16] = ACTIONS(1534), - [anon_sym_i16] = ACTIONS(1534), - [anon_sym_u32] = ACTIONS(1534), - [anon_sym_i32] = ACTIONS(1534), - [anon_sym_u64] = ACTIONS(1534), - [anon_sym_i64] = ACTIONS(1534), - [anon_sym_u128] = ACTIONS(1534), - [anon_sym_i128] = ACTIONS(1534), - [anon_sym_isize] = ACTIONS(1534), - [anon_sym_usize] = ACTIONS(1534), - [anon_sym_f32] = ACTIONS(1534), - [anon_sym_f64] = ACTIONS(1534), - [anon_sym_bool] = ACTIONS(1534), - [anon_sym_str] = ACTIONS(1534), - [anon_sym_char] = ACTIONS(1534), - [anon_sym_SQUOTE] = ACTIONS(1534), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1534), - [anon_sym_enum] = ACTIONS(1534), - [anon_sym_fn] = ACTIONS(1534), - [anon_sym_for] = ACTIONS(1534), - [anon_sym_if] = ACTIONS(1534), - [anon_sym_impl] = ACTIONS(1534), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_loop] = ACTIONS(1534), - [anon_sym_match] = ACTIONS(1534), - [anon_sym_mod] = ACTIONS(1534), - [anon_sym_pub] = ACTIONS(1534), - [anon_sym_return] = ACTIONS(1534), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_struct] = ACTIONS(1534), - [anon_sym_trait] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_union] = ACTIONS(1534), - [anon_sym_unsafe] = ACTIONS(1534), - [anon_sym_use] = ACTIONS(1534), - [anon_sym_while] = ACTIONS(1534), - [anon_sym_POUND] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1532), - [anon_sym_extern] = ACTIONS(1534), - [anon_sym_LT] = ACTIONS(1532), - [anon_sym_COLON_COLON] = ACTIONS(1532), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_DOT_DOT] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(1532), - [anon_sym_move] = ACTIONS(1534), - [sym_integer_literal] = ACTIONS(1532), - [aux_sym_string_literal_token1] = ACTIONS(1532), - [sym_char_literal] = ACTIONS(1532), - [anon_sym_true] = ACTIONS(1534), - [anon_sym_false] = ACTIONS(1534), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1534), - [sym_super] = ACTIONS(1534), - [sym_crate] = ACTIONS(1534), - [sym_metavariable] = ACTIONS(1532), - [sym_raw_string_literal] = ACTIONS(1532), - [sym_float_literal] = ACTIONS(1532), - [sym_block_comment] = ACTIONS(3), - }, - [365] = { - [ts_builtin_sym_end] = ACTIONS(1536), - [sym_identifier] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1536), - [anon_sym_macro_rules_BANG] = ACTIONS(1536), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1536), - [anon_sym_STAR] = ACTIONS(1536), - [anon_sym_u8] = ACTIONS(1538), - [anon_sym_i8] = ACTIONS(1538), - [anon_sym_u16] = ACTIONS(1538), - [anon_sym_i16] = ACTIONS(1538), - [anon_sym_u32] = ACTIONS(1538), - [anon_sym_i32] = ACTIONS(1538), - [anon_sym_u64] = ACTIONS(1538), - [anon_sym_i64] = ACTIONS(1538), - [anon_sym_u128] = ACTIONS(1538), - [anon_sym_i128] = ACTIONS(1538), - [anon_sym_isize] = ACTIONS(1538), - [anon_sym_usize] = ACTIONS(1538), - [anon_sym_f32] = ACTIONS(1538), - [anon_sym_f64] = ACTIONS(1538), - [anon_sym_bool] = ACTIONS(1538), - [anon_sym_str] = ACTIONS(1538), - [anon_sym_char] = ACTIONS(1538), - [anon_sym_SQUOTE] = ACTIONS(1538), - [anon_sym_async] = ACTIONS(1538), - [anon_sym_break] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1538), - [anon_sym_enum] = ACTIONS(1538), - [anon_sym_fn] = ACTIONS(1538), - [anon_sym_for] = ACTIONS(1538), - [anon_sym_if] = ACTIONS(1538), - [anon_sym_impl] = ACTIONS(1538), - [anon_sym_let] = ACTIONS(1538), - [anon_sym_loop] = ACTIONS(1538), - [anon_sym_match] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1538), - [anon_sym_pub] = ACTIONS(1538), - [anon_sym_return] = ACTIONS(1538), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_struct] = ACTIONS(1538), - [anon_sym_trait] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_union] = ACTIONS(1538), - [anon_sym_unsafe] = ACTIONS(1538), - [anon_sym_use] = ACTIONS(1538), - [anon_sym_while] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1536), - [anon_sym_extern] = ACTIONS(1538), - [anon_sym_LT] = ACTIONS(1536), - [anon_sym_COLON_COLON] = ACTIONS(1536), - [anon_sym_AMP] = ACTIONS(1536), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_PIPE] = ACTIONS(1536), - [anon_sym_move] = ACTIONS(1538), - [sym_integer_literal] = ACTIONS(1536), - [aux_sym_string_literal_token1] = ACTIONS(1536), - [sym_char_literal] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1538), - [sym_super] = ACTIONS(1538), - [sym_crate] = ACTIONS(1538), - [sym_metavariable] = ACTIONS(1536), - [sym_raw_string_literal] = ACTIONS(1536), - [sym_float_literal] = ACTIONS(1536), - [sym_block_comment] = ACTIONS(3), - }, - [366] = { - [ts_builtin_sym_end] = ACTIONS(1540), - [sym_identifier] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_macro_rules_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_u8] = ACTIONS(1542), - [anon_sym_i8] = ACTIONS(1542), - [anon_sym_u16] = ACTIONS(1542), - [anon_sym_i16] = ACTIONS(1542), - [anon_sym_u32] = ACTIONS(1542), - [anon_sym_i32] = ACTIONS(1542), - [anon_sym_u64] = ACTIONS(1542), - [anon_sym_i64] = ACTIONS(1542), - [anon_sym_u128] = ACTIONS(1542), - [anon_sym_i128] = ACTIONS(1542), - [anon_sym_isize] = ACTIONS(1542), - [anon_sym_usize] = ACTIONS(1542), - [anon_sym_f32] = ACTIONS(1542), - [anon_sym_f64] = ACTIONS(1542), - [anon_sym_bool] = ACTIONS(1542), - [anon_sym_str] = ACTIONS(1542), - [anon_sym_char] = ACTIONS(1542), - [anon_sym_SQUOTE] = ACTIONS(1542), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_break] = ACTIONS(1542), - [anon_sym_const] = ACTIONS(1542), - [anon_sym_continue] = ACTIONS(1542), - [anon_sym_default] = ACTIONS(1542), - [anon_sym_enum] = ACTIONS(1542), - [anon_sym_fn] = ACTIONS(1542), - [anon_sym_for] = ACTIONS(1542), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_impl] = ACTIONS(1542), - [anon_sym_let] = ACTIONS(1542), - [anon_sym_loop] = ACTIONS(1542), - [anon_sym_match] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1542), - [anon_sym_pub] = ACTIONS(1542), - [anon_sym_return] = ACTIONS(1542), - [anon_sym_static] = ACTIONS(1542), - [anon_sym_struct] = ACTIONS(1542), - [anon_sym_trait] = ACTIONS(1542), - [anon_sym_type] = ACTIONS(1542), - [anon_sym_union] = ACTIONS(1542), - [anon_sym_unsafe] = ACTIONS(1542), - [anon_sym_use] = ACTIONS(1542), - [anon_sym_while] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_extern] = ACTIONS(1542), - [anon_sym_LT] = ACTIONS(1540), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_DOT_DOT] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_move] = ACTIONS(1542), - [sym_integer_literal] = ACTIONS(1540), - [aux_sym_string_literal_token1] = ACTIONS(1540), - [sym_char_literal] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1542), - [anon_sym_false] = ACTIONS(1542), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1540), - [sym_raw_string_literal] = ACTIONS(1540), - [sym_float_literal] = ACTIONS(1540), - [sym_block_comment] = ACTIONS(3), - }, - [367] = { - [ts_builtin_sym_end] = ACTIONS(1544), - [sym_identifier] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_macro_rules_BANG] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1544), - [anon_sym_u8] = ACTIONS(1546), - [anon_sym_i8] = ACTIONS(1546), - [anon_sym_u16] = ACTIONS(1546), - [anon_sym_i16] = ACTIONS(1546), - [anon_sym_u32] = ACTIONS(1546), - [anon_sym_i32] = ACTIONS(1546), - [anon_sym_u64] = ACTIONS(1546), - [anon_sym_i64] = ACTIONS(1546), - [anon_sym_u128] = ACTIONS(1546), - [anon_sym_i128] = ACTIONS(1546), - [anon_sym_isize] = ACTIONS(1546), - [anon_sym_usize] = ACTIONS(1546), - [anon_sym_f32] = ACTIONS(1546), - [anon_sym_f64] = ACTIONS(1546), - [anon_sym_bool] = ACTIONS(1546), - [anon_sym_str] = ACTIONS(1546), - [anon_sym_char] = ACTIONS(1546), - [anon_sym_SQUOTE] = ACTIONS(1546), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1546), - [anon_sym_const] = ACTIONS(1546), - [anon_sym_continue] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1546), - [anon_sym_enum] = ACTIONS(1546), - [anon_sym_fn] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1546), - [anon_sym_impl] = ACTIONS(1546), - [anon_sym_let] = ACTIONS(1546), - [anon_sym_loop] = ACTIONS(1546), - [anon_sym_match] = ACTIONS(1546), - [anon_sym_mod] = ACTIONS(1546), - [anon_sym_pub] = ACTIONS(1546), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_struct] = ACTIONS(1546), - [anon_sym_trait] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_unsafe] = ACTIONS(1546), - [anon_sym_use] = ACTIONS(1546), - [anon_sym_while] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1544), - [anon_sym_extern] = ACTIONS(1546), - [anon_sym_LT] = ACTIONS(1544), - [anon_sym_COLON_COLON] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_move] = ACTIONS(1546), - [sym_integer_literal] = ACTIONS(1544), - [aux_sym_string_literal_token1] = ACTIONS(1544), - [sym_char_literal] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1546), - [anon_sym_false] = ACTIONS(1546), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1546), - [sym_super] = ACTIONS(1546), - [sym_crate] = ACTIONS(1546), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(1544), - [sym_float_literal] = ACTIONS(1544), - [sym_block_comment] = ACTIONS(3), - }, - [368] = { - [ts_builtin_sym_end] = ACTIONS(1548), - [sym_identifier] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1548), - [anon_sym_macro_rules_BANG] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1550), - [anon_sym_i8] = ACTIONS(1550), - [anon_sym_u16] = ACTIONS(1550), - [anon_sym_i16] = ACTIONS(1550), - [anon_sym_u32] = ACTIONS(1550), - [anon_sym_i32] = ACTIONS(1550), - [anon_sym_u64] = ACTIONS(1550), - [anon_sym_i64] = ACTIONS(1550), - [anon_sym_u128] = ACTIONS(1550), - [anon_sym_i128] = ACTIONS(1550), - [anon_sym_isize] = ACTIONS(1550), - [anon_sym_usize] = ACTIONS(1550), - [anon_sym_f32] = ACTIONS(1550), - [anon_sym_f64] = ACTIONS(1550), - [anon_sym_bool] = ACTIONS(1550), - [anon_sym_str] = ACTIONS(1550), - [anon_sym_char] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1550), - [anon_sym_async] = ACTIONS(1550), - [anon_sym_break] = ACTIONS(1550), - [anon_sym_const] = ACTIONS(1550), - [anon_sym_continue] = ACTIONS(1550), - [anon_sym_default] = ACTIONS(1550), - [anon_sym_enum] = ACTIONS(1550), - [anon_sym_fn] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_impl] = ACTIONS(1550), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_loop] = ACTIONS(1550), - [anon_sym_match] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1550), - [anon_sym_pub] = ACTIONS(1550), - [anon_sym_return] = ACTIONS(1550), - [anon_sym_static] = ACTIONS(1550), - [anon_sym_struct] = ACTIONS(1550), - [anon_sym_trait] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(1550), - [anon_sym_union] = ACTIONS(1550), - [anon_sym_unsafe] = ACTIONS(1550), - [anon_sym_use] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(1548), - [anon_sym_BANG] = ACTIONS(1548), - [anon_sym_extern] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1548), - [anon_sym_COLON_COLON] = ACTIONS(1548), - [anon_sym_AMP] = ACTIONS(1548), - [anon_sym_DOT_DOT] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(1548), - [anon_sym_move] = ACTIONS(1550), - [sym_integer_literal] = ACTIONS(1548), - [aux_sym_string_literal_token1] = ACTIONS(1548), - [sym_char_literal] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1550), - [anon_sym_false] = ACTIONS(1550), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1550), - [sym_super] = ACTIONS(1550), - [sym_crate] = ACTIONS(1550), - [sym_metavariable] = ACTIONS(1548), - [sym_raw_string_literal] = ACTIONS(1548), - [sym_float_literal] = ACTIONS(1548), - [sym_block_comment] = ACTIONS(3), - }, - [369] = { - [ts_builtin_sym_end] = ACTIONS(1552), - [sym_identifier] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_macro_rules_BANG] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1552), - [anon_sym_u8] = ACTIONS(1554), - [anon_sym_i8] = ACTIONS(1554), - [anon_sym_u16] = ACTIONS(1554), - [anon_sym_i16] = ACTIONS(1554), - [anon_sym_u32] = ACTIONS(1554), - [anon_sym_i32] = ACTIONS(1554), - [anon_sym_u64] = ACTIONS(1554), - [anon_sym_i64] = ACTIONS(1554), - [anon_sym_u128] = ACTIONS(1554), - [anon_sym_i128] = ACTIONS(1554), - [anon_sym_isize] = ACTIONS(1554), - [anon_sym_usize] = ACTIONS(1554), - [anon_sym_f32] = ACTIONS(1554), - [anon_sym_f64] = ACTIONS(1554), - [anon_sym_bool] = ACTIONS(1554), - [anon_sym_str] = ACTIONS(1554), - [anon_sym_char] = ACTIONS(1554), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_async] = ACTIONS(1554), - [anon_sym_break] = ACTIONS(1554), - [anon_sym_const] = ACTIONS(1554), - [anon_sym_continue] = ACTIONS(1554), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_enum] = ACTIONS(1554), - [anon_sym_fn] = ACTIONS(1554), - [anon_sym_for] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1554), - [anon_sym_impl] = ACTIONS(1554), - [anon_sym_let] = ACTIONS(1554), - [anon_sym_loop] = ACTIONS(1554), - [anon_sym_match] = ACTIONS(1554), - [anon_sym_mod] = ACTIONS(1554), - [anon_sym_pub] = ACTIONS(1554), - [anon_sym_return] = ACTIONS(1554), - [anon_sym_static] = ACTIONS(1554), - [anon_sym_struct] = ACTIONS(1554), - [anon_sym_trait] = ACTIONS(1554), - [anon_sym_type] = ACTIONS(1554), - [anon_sym_union] = ACTIONS(1554), - [anon_sym_unsafe] = ACTIONS(1554), - [anon_sym_use] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(1552), - [anon_sym_BANG] = ACTIONS(1552), - [anon_sym_extern] = ACTIONS(1554), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_COLON_COLON] = ACTIONS(1552), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1552), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_move] = ACTIONS(1554), - [sym_integer_literal] = ACTIONS(1552), - [aux_sym_string_literal_token1] = ACTIONS(1552), - [sym_char_literal] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1554), - [anon_sym_false] = ACTIONS(1554), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1554), - [sym_super] = ACTIONS(1554), - [sym_crate] = ACTIONS(1554), - [sym_metavariable] = ACTIONS(1552), - [sym_raw_string_literal] = ACTIONS(1552), - [sym_float_literal] = ACTIONS(1552), - [sym_block_comment] = ACTIONS(3), - }, - [370] = { - [ts_builtin_sym_end] = ACTIONS(1556), - [sym_identifier] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_macro_rules_BANG] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_u8] = ACTIONS(1558), - [anon_sym_i8] = ACTIONS(1558), - [anon_sym_u16] = ACTIONS(1558), - [anon_sym_i16] = ACTIONS(1558), - [anon_sym_u32] = ACTIONS(1558), - [anon_sym_i32] = ACTIONS(1558), - [anon_sym_u64] = ACTIONS(1558), - [anon_sym_i64] = ACTIONS(1558), - [anon_sym_u128] = ACTIONS(1558), - [anon_sym_i128] = ACTIONS(1558), - [anon_sym_isize] = ACTIONS(1558), - [anon_sym_usize] = ACTIONS(1558), - [anon_sym_f32] = ACTIONS(1558), - [anon_sym_f64] = ACTIONS(1558), - [anon_sym_bool] = ACTIONS(1558), - [anon_sym_str] = ACTIONS(1558), - [anon_sym_char] = ACTIONS(1558), - [anon_sym_SQUOTE] = ACTIONS(1558), - [anon_sym_async] = ACTIONS(1558), - [anon_sym_break] = ACTIONS(1558), - [anon_sym_const] = ACTIONS(1558), - [anon_sym_continue] = ACTIONS(1558), - [anon_sym_default] = ACTIONS(1558), - [anon_sym_enum] = ACTIONS(1558), - [anon_sym_fn] = ACTIONS(1558), - [anon_sym_for] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(1558), - [anon_sym_impl] = ACTIONS(1558), - [anon_sym_let] = ACTIONS(1558), - [anon_sym_loop] = ACTIONS(1558), - [anon_sym_match] = ACTIONS(1558), - [anon_sym_mod] = ACTIONS(1558), - [anon_sym_pub] = ACTIONS(1558), - [anon_sym_return] = ACTIONS(1558), - [anon_sym_static] = ACTIONS(1558), - [anon_sym_struct] = ACTIONS(1558), - [anon_sym_trait] = ACTIONS(1558), - [anon_sym_type] = ACTIONS(1558), - [anon_sym_union] = ACTIONS(1558), - [anon_sym_unsafe] = ACTIONS(1558), - [anon_sym_use] = ACTIONS(1558), - [anon_sym_while] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(1556), - [anon_sym_BANG] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_move] = ACTIONS(1558), - [sym_integer_literal] = ACTIONS(1556), - [aux_sym_string_literal_token1] = ACTIONS(1556), - [sym_char_literal] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1558), - [anon_sym_false] = ACTIONS(1558), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1558), - [sym_super] = ACTIONS(1558), - [sym_crate] = ACTIONS(1558), - [sym_metavariable] = ACTIONS(1556), - [sym_raw_string_literal] = ACTIONS(1556), - [sym_float_literal] = ACTIONS(1556), - [sym_block_comment] = ACTIONS(3), - }, - [371] = { - [ts_builtin_sym_end] = ACTIONS(1560), - [sym_identifier] = ACTIONS(1562), - [anon_sym_SEMI] = ACTIONS(1560), - [anon_sym_macro_rules_BANG] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_u8] = ACTIONS(1562), - [anon_sym_i8] = ACTIONS(1562), - [anon_sym_u16] = ACTIONS(1562), - [anon_sym_i16] = ACTIONS(1562), - [anon_sym_u32] = ACTIONS(1562), - [anon_sym_i32] = ACTIONS(1562), - [anon_sym_u64] = ACTIONS(1562), - [anon_sym_i64] = ACTIONS(1562), - [anon_sym_u128] = ACTIONS(1562), - [anon_sym_i128] = ACTIONS(1562), - [anon_sym_isize] = ACTIONS(1562), - [anon_sym_usize] = ACTIONS(1562), - [anon_sym_f32] = ACTIONS(1562), - [anon_sym_f64] = ACTIONS(1562), - [anon_sym_bool] = ACTIONS(1562), - [anon_sym_str] = ACTIONS(1562), - [anon_sym_char] = ACTIONS(1562), - [anon_sym_SQUOTE] = ACTIONS(1562), - [anon_sym_async] = ACTIONS(1562), - [anon_sym_break] = ACTIONS(1562), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_continue] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1562), - [anon_sym_enum] = ACTIONS(1562), - [anon_sym_fn] = ACTIONS(1562), - [anon_sym_for] = ACTIONS(1562), - [anon_sym_if] = ACTIONS(1562), - [anon_sym_impl] = ACTIONS(1562), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_loop] = ACTIONS(1562), - [anon_sym_match] = ACTIONS(1562), - [anon_sym_mod] = ACTIONS(1562), - [anon_sym_pub] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_struct] = ACTIONS(1562), - [anon_sym_trait] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_union] = ACTIONS(1562), - [anon_sym_unsafe] = ACTIONS(1562), - [anon_sym_use] = ACTIONS(1562), - [anon_sym_while] = ACTIONS(1562), - [anon_sym_POUND] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1560), - [anon_sym_extern] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1560), - [anon_sym_COLON_COLON] = ACTIONS(1560), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_DOT_DOT] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_PIPE] = ACTIONS(1560), - [anon_sym_move] = ACTIONS(1562), - [sym_integer_literal] = ACTIONS(1560), - [aux_sym_string_literal_token1] = ACTIONS(1560), - [sym_char_literal] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1562), - [anon_sym_false] = ACTIONS(1562), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1562), - [sym_super] = ACTIONS(1562), - [sym_crate] = ACTIONS(1562), - [sym_metavariable] = ACTIONS(1560), - [sym_raw_string_literal] = ACTIONS(1560), - [sym_float_literal] = ACTIONS(1560), - [sym_block_comment] = ACTIONS(3), - }, - [372] = { - [ts_builtin_sym_end] = ACTIONS(1564), - [sym_identifier] = ACTIONS(1566), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_macro_rules_BANG] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_RBRACE] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1564), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_SQUOTE] = ACTIONS(1566), - [anon_sym_async] = ACTIONS(1566), - [anon_sym_break] = ACTIONS(1566), - [anon_sym_const] = ACTIONS(1566), - [anon_sym_continue] = ACTIONS(1566), - [anon_sym_default] = ACTIONS(1566), - [anon_sym_enum] = ACTIONS(1566), - [anon_sym_fn] = ACTIONS(1566), - [anon_sym_for] = ACTIONS(1566), - [anon_sym_if] = ACTIONS(1566), - [anon_sym_impl] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1566), - [anon_sym_loop] = ACTIONS(1566), - [anon_sym_match] = ACTIONS(1566), - [anon_sym_mod] = ACTIONS(1566), - [anon_sym_pub] = ACTIONS(1566), - [anon_sym_return] = ACTIONS(1566), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_struct] = ACTIONS(1566), - [anon_sym_trait] = ACTIONS(1566), - [anon_sym_type] = ACTIONS(1566), - [anon_sym_union] = ACTIONS(1566), - [anon_sym_unsafe] = ACTIONS(1566), - [anon_sym_use] = ACTIONS(1566), - [anon_sym_while] = ACTIONS(1566), - [anon_sym_POUND] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1564), - [anon_sym_extern] = ACTIONS(1566), - [anon_sym_LT] = ACTIONS(1564), - [anon_sym_COLON_COLON] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1564), - [anon_sym_DOT_DOT] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_move] = ACTIONS(1566), - [sym_integer_literal] = ACTIONS(1564), - [aux_sym_string_literal_token1] = ACTIONS(1564), - [sym_char_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(1566), - [anon_sym_false] = ACTIONS(1566), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1566), - [sym_super] = ACTIONS(1566), - [sym_crate] = ACTIONS(1566), - [sym_metavariable] = ACTIONS(1564), - [sym_raw_string_literal] = ACTIONS(1564), - [sym_float_literal] = ACTIONS(1564), - [sym_block_comment] = ACTIONS(3), - }, - [373] = { - [ts_builtin_sym_end] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [anon_sym_SEMI] = ACTIONS(1568), - [anon_sym_macro_rules_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1568), - [anon_sym_u8] = ACTIONS(1570), - [anon_sym_i8] = ACTIONS(1570), - [anon_sym_u16] = ACTIONS(1570), - [anon_sym_i16] = ACTIONS(1570), - [anon_sym_u32] = ACTIONS(1570), - [anon_sym_i32] = ACTIONS(1570), - [anon_sym_u64] = ACTIONS(1570), - [anon_sym_i64] = ACTIONS(1570), - [anon_sym_u128] = ACTIONS(1570), - [anon_sym_i128] = ACTIONS(1570), - [anon_sym_isize] = ACTIONS(1570), - [anon_sym_usize] = ACTIONS(1570), - [anon_sym_f32] = ACTIONS(1570), - [anon_sym_f64] = ACTIONS(1570), - [anon_sym_bool] = ACTIONS(1570), - [anon_sym_str] = ACTIONS(1570), - [anon_sym_char] = ACTIONS(1570), - [anon_sym_SQUOTE] = ACTIONS(1570), - [anon_sym_async] = ACTIONS(1570), - [anon_sym_break] = ACTIONS(1570), - [anon_sym_const] = ACTIONS(1570), - [anon_sym_continue] = ACTIONS(1570), - [anon_sym_default] = ACTIONS(1570), - [anon_sym_enum] = ACTIONS(1570), - [anon_sym_fn] = ACTIONS(1570), - [anon_sym_for] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_impl] = ACTIONS(1570), - [anon_sym_let] = ACTIONS(1570), - [anon_sym_loop] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1570), - [anon_sym_mod] = ACTIONS(1570), - [anon_sym_pub] = ACTIONS(1570), - [anon_sym_return] = ACTIONS(1570), - [anon_sym_static] = ACTIONS(1570), - [anon_sym_struct] = ACTIONS(1570), - [anon_sym_trait] = ACTIONS(1570), - [anon_sym_type] = ACTIONS(1570), - [anon_sym_union] = ACTIONS(1570), - [anon_sym_unsafe] = ACTIONS(1570), - [anon_sym_use] = ACTIONS(1570), - [anon_sym_while] = ACTIONS(1570), - [anon_sym_POUND] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_extern] = ACTIONS(1570), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_DOT_DOT] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_move] = ACTIONS(1570), - [sym_integer_literal] = ACTIONS(1568), - [aux_sym_string_literal_token1] = ACTIONS(1568), - [sym_char_literal] = ACTIONS(1568), - [anon_sym_true] = ACTIONS(1570), - [anon_sym_false] = ACTIONS(1570), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1570), - [sym_super] = ACTIONS(1570), - [sym_crate] = ACTIONS(1570), - [sym_metavariable] = ACTIONS(1568), - [sym_raw_string_literal] = ACTIONS(1568), - [sym_float_literal] = ACTIONS(1568), - [sym_block_comment] = ACTIONS(3), - }, - [374] = { - [ts_builtin_sym_end] = ACTIONS(1572), - [sym_identifier] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_macro_rules_BANG] = ACTIONS(1572), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_u8] = ACTIONS(1574), - [anon_sym_i8] = ACTIONS(1574), - [anon_sym_u16] = ACTIONS(1574), - [anon_sym_i16] = ACTIONS(1574), - [anon_sym_u32] = ACTIONS(1574), - [anon_sym_i32] = ACTIONS(1574), - [anon_sym_u64] = ACTIONS(1574), - [anon_sym_i64] = ACTIONS(1574), - [anon_sym_u128] = ACTIONS(1574), - [anon_sym_i128] = ACTIONS(1574), - [anon_sym_isize] = ACTIONS(1574), - [anon_sym_usize] = ACTIONS(1574), - [anon_sym_f32] = ACTIONS(1574), - [anon_sym_f64] = ACTIONS(1574), - [anon_sym_bool] = ACTIONS(1574), - [anon_sym_str] = ACTIONS(1574), - [anon_sym_char] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1574), - [anon_sym_break] = ACTIONS(1574), - [anon_sym_const] = ACTIONS(1574), - [anon_sym_continue] = ACTIONS(1574), - [anon_sym_default] = ACTIONS(1574), - [anon_sym_enum] = ACTIONS(1574), - [anon_sym_fn] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1574), - [anon_sym_if] = ACTIONS(1574), - [anon_sym_impl] = ACTIONS(1574), - [anon_sym_let] = ACTIONS(1574), - [anon_sym_loop] = ACTIONS(1574), - [anon_sym_match] = ACTIONS(1574), - [anon_sym_mod] = ACTIONS(1574), - [anon_sym_pub] = ACTIONS(1574), - [anon_sym_return] = ACTIONS(1574), - [anon_sym_static] = ACTIONS(1574), - [anon_sym_struct] = ACTIONS(1574), - [anon_sym_trait] = ACTIONS(1574), - [anon_sym_type] = ACTIONS(1574), - [anon_sym_union] = ACTIONS(1574), - [anon_sym_unsafe] = ACTIONS(1574), - [anon_sym_use] = ACTIONS(1574), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_POUND] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1572), - [anon_sym_extern] = ACTIONS(1574), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_move] = ACTIONS(1574), - [sym_integer_literal] = ACTIONS(1572), - [aux_sym_string_literal_token1] = ACTIONS(1572), - [sym_char_literal] = ACTIONS(1572), - [anon_sym_true] = ACTIONS(1574), - [anon_sym_false] = ACTIONS(1574), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1574), - [sym_super] = ACTIONS(1574), - [sym_crate] = ACTIONS(1574), - [sym_metavariable] = ACTIONS(1572), - [sym_raw_string_literal] = ACTIONS(1572), - [sym_float_literal] = ACTIONS(1572), - [sym_block_comment] = ACTIONS(3), - }, - [375] = { - [ts_builtin_sym_end] = ACTIONS(1576), - [sym_identifier] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [anon_sym_macro_rules_BANG] = ACTIONS(1576), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_RBRACE] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1576), - [anon_sym_u8] = ACTIONS(1578), - [anon_sym_i8] = ACTIONS(1578), - [anon_sym_u16] = ACTIONS(1578), - [anon_sym_i16] = ACTIONS(1578), - [anon_sym_u32] = ACTIONS(1578), - [anon_sym_i32] = ACTIONS(1578), - [anon_sym_u64] = ACTIONS(1578), - [anon_sym_i64] = ACTIONS(1578), - [anon_sym_u128] = ACTIONS(1578), - [anon_sym_i128] = ACTIONS(1578), - [anon_sym_isize] = ACTIONS(1578), - [anon_sym_usize] = ACTIONS(1578), - [anon_sym_f32] = ACTIONS(1578), - [anon_sym_f64] = ACTIONS(1578), - [anon_sym_bool] = ACTIONS(1578), - [anon_sym_str] = ACTIONS(1578), - [anon_sym_char] = ACTIONS(1578), - [anon_sym_SQUOTE] = ACTIONS(1578), - [anon_sym_async] = ACTIONS(1578), - [anon_sym_break] = ACTIONS(1578), - [anon_sym_const] = ACTIONS(1578), - [anon_sym_continue] = ACTIONS(1578), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_enum] = ACTIONS(1578), - [anon_sym_fn] = ACTIONS(1578), - [anon_sym_for] = ACTIONS(1578), - [anon_sym_if] = ACTIONS(1578), - [anon_sym_impl] = ACTIONS(1578), - [anon_sym_let] = ACTIONS(1578), - [anon_sym_loop] = ACTIONS(1578), - [anon_sym_match] = ACTIONS(1578), - [anon_sym_mod] = ACTIONS(1578), - [anon_sym_pub] = ACTIONS(1578), - [anon_sym_return] = ACTIONS(1578), - [anon_sym_static] = ACTIONS(1578), - [anon_sym_struct] = ACTIONS(1578), - [anon_sym_trait] = ACTIONS(1578), - [anon_sym_type] = ACTIONS(1578), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1578), - [anon_sym_use] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1578), - [anon_sym_POUND] = ACTIONS(1576), - [anon_sym_BANG] = ACTIONS(1576), - [anon_sym_extern] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_COLON_COLON] = ACTIONS(1576), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_DOT_DOT] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_move] = ACTIONS(1578), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1576), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1578), - [anon_sym_false] = ACTIONS(1578), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1578), - [sym_super] = ACTIONS(1578), - [sym_crate] = ACTIONS(1578), - [sym_metavariable] = ACTIONS(1576), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), - [sym_block_comment] = ACTIONS(3), - }, - [376] = { - [ts_builtin_sym_end] = ACTIONS(1580), - [sym_identifier] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_macro_rules_BANG] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_STAR] = ACTIONS(1580), - [anon_sym_u8] = ACTIONS(1582), - [anon_sym_i8] = ACTIONS(1582), - [anon_sym_u16] = ACTIONS(1582), - [anon_sym_i16] = ACTIONS(1582), - [anon_sym_u32] = ACTIONS(1582), - [anon_sym_i32] = ACTIONS(1582), - [anon_sym_u64] = ACTIONS(1582), - [anon_sym_i64] = ACTIONS(1582), - [anon_sym_u128] = ACTIONS(1582), - [anon_sym_i128] = ACTIONS(1582), - [anon_sym_isize] = ACTIONS(1582), - [anon_sym_usize] = ACTIONS(1582), - [anon_sym_f32] = ACTIONS(1582), - [anon_sym_f64] = ACTIONS(1582), - [anon_sym_bool] = ACTIONS(1582), - [anon_sym_str] = ACTIONS(1582), - [anon_sym_char] = ACTIONS(1582), - [anon_sym_SQUOTE] = ACTIONS(1582), - [anon_sym_async] = ACTIONS(1582), - [anon_sym_break] = ACTIONS(1582), - [anon_sym_const] = ACTIONS(1582), - [anon_sym_continue] = ACTIONS(1582), - [anon_sym_default] = ACTIONS(1582), - [anon_sym_enum] = ACTIONS(1582), - [anon_sym_fn] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1582), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_impl] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1582), - [anon_sym_loop] = ACTIONS(1582), - [anon_sym_match] = ACTIONS(1582), - [anon_sym_mod] = ACTIONS(1582), - [anon_sym_pub] = ACTIONS(1582), - [anon_sym_return] = ACTIONS(1582), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_struct] = ACTIONS(1582), - [anon_sym_trait] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_union] = ACTIONS(1582), - [anon_sym_unsafe] = ACTIONS(1582), - [anon_sym_use] = ACTIONS(1582), - [anon_sym_while] = ACTIONS(1582), - [anon_sym_POUND] = ACTIONS(1580), - [anon_sym_BANG] = ACTIONS(1580), - [anon_sym_extern] = ACTIONS(1582), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_COLON_COLON] = ACTIONS(1580), - [anon_sym_AMP] = ACTIONS(1580), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_move] = ACTIONS(1582), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1580), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1582), - [anon_sym_false] = ACTIONS(1582), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1580), - [sym_raw_string_literal] = ACTIONS(1580), - [sym_float_literal] = ACTIONS(1580), - [sym_block_comment] = ACTIONS(3), - }, - [377] = { - [ts_builtin_sym_end] = ACTIONS(1584), - [sym_identifier] = ACTIONS(1586), - [anon_sym_SEMI] = ACTIONS(1584), - [anon_sym_macro_rules_BANG] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1584), - [anon_sym_u8] = ACTIONS(1586), - [anon_sym_i8] = ACTIONS(1586), - [anon_sym_u16] = ACTIONS(1586), - [anon_sym_i16] = ACTIONS(1586), - [anon_sym_u32] = ACTIONS(1586), - [anon_sym_i32] = ACTIONS(1586), - [anon_sym_u64] = ACTIONS(1586), - [anon_sym_i64] = ACTIONS(1586), - [anon_sym_u128] = ACTIONS(1586), - [anon_sym_i128] = ACTIONS(1586), - [anon_sym_isize] = ACTIONS(1586), - [anon_sym_usize] = ACTIONS(1586), - [anon_sym_f32] = ACTIONS(1586), - [anon_sym_f64] = ACTIONS(1586), - [anon_sym_bool] = ACTIONS(1586), - [anon_sym_str] = ACTIONS(1586), - [anon_sym_char] = ACTIONS(1586), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_async] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1586), - [anon_sym_const] = ACTIONS(1586), - [anon_sym_continue] = ACTIONS(1586), - [anon_sym_default] = ACTIONS(1586), - [anon_sym_enum] = ACTIONS(1586), - [anon_sym_fn] = ACTIONS(1586), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_impl] = ACTIONS(1586), - [anon_sym_let] = ACTIONS(1586), - [anon_sym_loop] = ACTIONS(1586), - [anon_sym_match] = ACTIONS(1586), - [anon_sym_mod] = ACTIONS(1586), - [anon_sym_pub] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_static] = ACTIONS(1586), - [anon_sym_struct] = ACTIONS(1586), - [anon_sym_trait] = ACTIONS(1586), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_union] = ACTIONS(1586), - [anon_sym_unsafe] = ACTIONS(1586), - [anon_sym_use] = ACTIONS(1586), - [anon_sym_while] = ACTIONS(1586), - [anon_sym_POUND] = ACTIONS(1584), - [anon_sym_BANG] = ACTIONS(1584), - [anon_sym_extern] = ACTIONS(1586), - [anon_sym_LT] = ACTIONS(1584), - [anon_sym_COLON_COLON] = ACTIONS(1584), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_DOT_DOT] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1584), - [anon_sym_move] = ACTIONS(1586), - [sym_integer_literal] = ACTIONS(1584), - [aux_sym_string_literal_token1] = ACTIONS(1584), - [sym_char_literal] = ACTIONS(1584), - [anon_sym_true] = ACTIONS(1586), - [anon_sym_false] = ACTIONS(1586), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1586), - [sym_super] = ACTIONS(1586), - [sym_crate] = ACTIONS(1586), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1584), - [sym_float_literal] = ACTIONS(1584), - [sym_block_comment] = ACTIONS(3), - }, - [378] = { - [ts_builtin_sym_end] = ACTIONS(1588), - [sym_identifier] = ACTIONS(1590), - [anon_sym_SEMI] = ACTIONS(1588), - [anon_sym_macro_rules_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_RBRACE] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(1588), - [anon_sym_u8] = ACTIONS(1590), - [anon_sym_i8] = ACTIONS(1590), - [anon_sym_u16] = ACTIONS(1590), - [anon_sym_i16] = ACTIONS(1590), - [anon_sym_u32] = ACTIONS(1590), - [anon_sym_i32] = ACTIONS(1590), - [anon_sym_u64] = ACTIONS(1590), - [anon_sym_i64] = ACTIONS(1590), - [anon_sym_u128] = ACTIONS(1590), - [anon_sym_i128] = ACTIONS(1590), - [anon_sym_isize] = ACTIONS(1590), - [anon_sym_usize] = ACTIONS(1590), - [anon_sym_f32] = ACTIONS(1590), - [anon_sym_f64] = ACTIONS(1590), - [anon_sym_bool] = ACTIONS(1590), - [anon_sym_str] = ACTIONS(1590), - [anon_sym_char] = ACTIONS(1590), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(1590), - [anon_sym_break] = ACTIONS(1590), - [anon_sym_const] = ACTIONS(1590), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_default] = ACTIONS(1590), - [anon_sym_enum] = ACTIONS(1590), - [anon_sym_fn] = ACTIONS(1590), - [anon_sym_for] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1590), - [anon_sym_impl] = ACTIONS(1590), - [anon_sym_let] = ACTIONS(1590), - [anon_sym_loop] = ACTIONS(1590), - [anon_sym_match] = ACTIONS(1590), - [anon_sym_mod] = ACTIONS(1590), - [anon_sym_pub] = ACTIONS(1590), - [anon_sym_return] = ACTIONS(1590), - [anon_sym_static] = ACTIONS(1590), - [anon_sym_struct] = ACTIONS(1590), - [anon_sym_trait] = ACTIONS(1590), - [anon_sym_type] = ACTIONS(1590), - [anon_sym_union] = ACTIONS(1590), - [anon_sym_unsafe] = ACTIONS(1590), - [anon_sym_use] = ACTIONS(1590), - [anon_sym_while] = ACTIONS(1590), - [anon_sym_POUND] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_extern] = ACTIONS(1590), - [anon_sym_LT] = ACTIONS(1588), - [anon_sym_COLON_COLON] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_DOT_DOT] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_move] = ACTIONS(1590), - [sym_integer_literal] = ACTIONS(1588), - [aux_sym_string_literal_token1] = ACTIONS(1588), - [sym_char_literal] = ACTIONS(1588), - [anon_sym_true] = ACTIONS(1590), - [anon_sym_false] = ACTIONS(1590), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1590), - [sym_super] = ACTIONS(1590), - [sym_crate] = ACTIONS(1590), - [sym_metavariable] = ACTIONS(1588), - [sym_raw_string_literal] = ACTIONS(1588), - [sym_float_literal] = ACTIONS(1588), - [sym_block_comment] = ACTIONS(3), - }, - [379] = { - [ts_builtin_sym_end] = ACTIONS(1592), - [sym_identifier] = ACTIONS(1594), - [anon_sym_SEMI] = ACTIONS(1592), - [anon_sym_macro_rules_BANG] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1592), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_RBRACE] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1592), - [anon_sym_u8] = ACTIONS(1594), - [anon_sym_i8] = ACTIONS(1594), - [anon_sym_u16] = ACTIONS(1594), - [anon_sym_i16] = ACTIONS(1594), - [anon_sym_u32] = ACTIONS(1594), - [anon_sym_i32] = ACTIONS(1594), - [anon_sym_u64] = ACTIONS(1594), - [anon_sym_i64] = ACTIONS(1594), - [anon_sym_u128] = ACTIONS(1594), - [anon_sym_i128] = ACTIONS(1594), - [anon_sym_isize] = ACTIONS(1594), - [anon_sym_usize] = ACTIONS(1594), - [anon_sym_f32] = ACTIONS(1594), - [anon_sym_f64] = ACTIONS(1594), - [anon_sym_bool] = ACTIONS(1594), - [anon_sym_str] = ACTIONS(1594), - [anon_sym_char] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1594), - [anon_sym_async] = ACTIONS(1594), - [anon_sym_break] = ACTIONS(1594), - [anon_sym_const] = ACTIONS(1594), - [anon_sym_continue] = ACTIONS(1594), - [anon_sym_default] = ACTIONS(1594), - [anon_sym_enum] = ACTIONS(1594), - [anon_sym_fn] = ACTIONS(1594), - [anon_sym_for] = ACTIONS(1594), - [anon_sym_if] = ACTIONS(1594), - [anon_sym_impl] = ACTIONS(1594), - [anon_sym_let] = ACTIONS(1594), - [anon_sym_loop] = ACTIONS(1594), - [anon_sym_match] = ACTIONS(1594), - [anon_sym_mod] = ACTIONS(1594), - [anon_sym_pub] = ACTIONS(1594), - [anon_sym_return] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_struct] = ACTIONS(1594), - [anon_sym_trait] = ACTIONS(1594), - [anon_sym_type] = ACTIONS(1594), - [anon_sym_union] = ACTIONS(1594), - [anon_sym_unsafe] = ACTIONS(1594), - [anon_sym_use] = ACTIONS(1594), - [anon_sym_while] = ACTIONS(1594), - [anon_sym_POUND] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1592), - [anon_sym_extern] = ACTIONS(1594), - [anon_sym_LT] = ACTIONS(1592), - [anon_sym_COLON_COLON] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1592), - [anon_sym_DOT_DOT] = ACTIONS(1592), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(1592), - [anon_sym_move] = ACTIONS(1594), - [sym_integer_literal] = ACTIONS(1592), - [aux_sym_string_literal_token1] = ACTIONS(1592), - [sym_char_literal] = ACTIONS(1592), - [anon_sym_true] = ACTIONS(1594), - [anon_sym_false] = ACTIONS(1594), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1594), - [sym_super] = ACTIONS(1594), - [sym_crate] = ACTIONS(1594), - [sym_metavariable] = ACTIONS(1592), - [sym_raw_string_literal] = ACTIONS(1592), - [sym_float_literal] = ACTIONS(1592), - [sym_block_comment] = ACTIONS(3), - }, - [380] = { - [ts_builtin_sym_end] = ACTIONS(1596), - [sym_identifier] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_macro_rules_BANG] = ACTIONS(1596), - [anon_sym_LPAREN] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1596), - [anon_sym_STAR] = ACTIONS(1596), - [anon_sym_u8] = ACTIONS(1598), - [anon_sym_i8] = ACTIONS(1598), - [anon_sym_u16] = ACTIONS(1598), - [anon_sym_i16] = ACTIONS(1598), - [anon_sym_u32] = ACTIONS(1598), - [anon_sym_i32] = ACTIONS(1598), - [anon_sym_u64] = ACTIONS(1598), - [anon_sym_i64] = ACTIONS(1598), - [anon_sym_u128] = ACTIONS(1598), - [anon_sym_i128] = ACTIONS(1598), - [anon_sym_isize] = ACTIONS(1598), - [anon_sym_usize] = ACTIONS(1598), - [anon_sym_f32] = ACTIONS(1598), - [anon_sym_f64] = ACTIONS(1598), - [anon_sym_bool] = ACTIONS(1598), - [anon_sym_str] = ACTIONS(1598), - [anon_sym_char] = ACTIONS(1598), - [anon_sym_SQUOTE] = ACTIONS(1598), - [anon_sym_async] = ACTIONS(1598), - [anon_sym_break] = ACTIONS(1598), - [anon_sym_const] = ACTIONS(1598), - [anon_sym_continue] = ACTIONS(1598), - [anon_sym_default] = ACTIONS(1598), - [anon_sym_enum] = ACTIONS(1598), - [anon_sym_fn] = ACTIONS(1598), - [anon_sym_for] = ACTIONS(1598), - [anon_sym_if] = ACTIONS(1598), - [anon_sym_impl] = ACTIONS(1598), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_loop] = ACTIONS(1598), - [anon_sym_match] = ACTIONS(1598), - [anon_sym_mod] = ACTIONS(1598), - [anon_sym_pub] = ACTIONS(1598), - [anon_sym_return] = ACTIONS(1598), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_struct] = ACTIONS(1598), - [anon_sym_trait] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_union] = ACTIONS(1598), - [anon_sym_unsafe] = ACTIONS(1598), - [anon_sym_use] = ACTIONS(1598), - [anon_sym_while] = ACTIONS(1598), - [anon_sym_POUND] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(1596), - [anon_sym_extern] = ACTIONS(1598), - [anon_sym_LT] = ACTIONS(1596), - [anon_sym_COLON_COLON] = ACTIONS(1596), - [anon_sym_AMP] = ACTIONS(1596), - [anon_sym_DOT_DOT] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_move] = ACTIONS(1598), - [sym_integer_literal] = ACTIONS(1596), - [aux_sym_string_literal_token1] = ACTIONS(1596), - [sym_char_literal] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1598), - [anon_sym_false] = ACTIONS(1598), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1598), - [sym_super] = ACTIONS(1598), - [sym_crate] = ACTIONS(1598), - [sym_metavariable] = ACTIONS(1596), - [sym_raw_string_literal] = ACTIONS(1596), - [sym_float_literal] = ACTIONS(1596), - [sym_block_comment] = ACTIONS(3), - }, - [381] = { - [ts_builtin_sym_end] = ACTIONS(1600), - [sym_identifier] = ACTIONS(1602), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_macro_rules_BANG] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_RBRACE] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1600), - [anon_sym_u8] = ACTIONS(1602), - [anon_sym_i8] = ACTIONS(1602), - [anon_sym_u16] = ACTIONS(1602), - [anon_sym_i16] = ACTIONS(1602), - [anon_sym_u32] = ACTIONS(1602), - [anon_sym_i32] = ACTIONS(1602), - [anon_sym_u64] = ACTIONS(1602), - [anon_sym_i64] = ACTIONS(1602), - [anon_sym_u128] = ACTIONS(1602), - [anon_sym_i128] = ACTIONS(1602), - [anon_sym_isize] = ACTIONS(1602), - [anon_sym_usize] = ACTIONS(1602), - [anon_sym_f32] = ACTIONS(1602), - [anon_sym_f64] = ACTIONS(1602), - [anon_sym_bool] = ACTIONS(1602), - [anon_sym_str] = ACTIONS(1602), - [anon_sym_char] = ACTIONS(1602), - [anon_sym_SQUOTE] = ACTIONS(1602), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_break] = ACTIONS(1602), - [anon_sym_const] = ACTIONS(1602), - [anon_sym_continue] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1602), - [anon_sym_enum] = ACTIONS(1602), - [anon_sym_fn] = ACTIONS(1602), - [anon_sym_for] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(1602), - [anon_sym_impl] = ACTIONS(1602), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_loop] = ACTIONS(1602), - [anon_sym_match] = ACTIONS(1602), - [anon_sym_mod] = ACTIONS(1602), - [anon_sym_pub] = ACTIONS(1602), - [anon_sym_return] = ACTIONS(1602), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_struct] = ACTIONS(1602), - [anon_sym_trait] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_union] = ACTIONS(1602), - [anon_sym_unsafe] = ACTIONS(1602), - [anon_sym_use] = ACTIONS(1602), - [anon_sym_while] = ACTIONS(1602), - [anon_sym_POUND] = ACTIONS(1600), - [anon_sym_BANG] = ACTIONS(1600), - [anon_sym_extern] = ACTIONS(1602), - [anon_sym_LT] = ACTIONS(1600), - [anon_sym_COLON_COLON] = ACTIONS(1600), - [anon_sym_AMP] = ACTIONS(1600), - [anon_sym_DOT_DOT] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_PIPE] = ACTIONS(1600), - [anon_sym_move] = ACTIONS(1602), - [sym_integer_literal] = ACTIONS(1600), - [aux_sym_string_literal_token1] = ACTIONS(1600), - [sym_char_literal] = ACTIONS(1600), - [anon_sym_true] = ACTIONS(1602), - [anon_sym_false] = ACTIONS(1602), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1602), - [sym_super] = ACTIONS(1602), - [sym_crate] = ACTIONS(1602), - [sym_metavariable] = ACTIONS(1600), - [sym_raw_string_literal] = ACTIONS(1600), - [sym_float_literal] = ACTIONS(1600), - [sym_block_comment] = ACTIONS(3), - }, - [382] = { - [ts_builtin_sym_end] = ACTIONS(1604), - [sym_identifier] = ACTIONS(1606), - [anon_sym_SEMI] = ACTIONS(1604), - [anon_sym_macro_rules_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_RBRACE] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1604), - [anon_sym_u8] = ACTIONS(1606), - [anon_sym_i8] = ACTIONS(1606), - [anon_sym_u16] = ACTIONS(1606), - [anon_sym_i16] = ACTIONS(1606), - [anon_sym_u32] = ACTIONS(1606), - [anon_sym_i32] = ACTIONS(1606), - [anon_sym_u64] = ACTIONS(1606), - [anon_sym_i64] = ACTIONS(1606), - [anon_sym_u128] = ACTIONS(1606), - [anon_sym_i128] = ACTIONS(1606), - [anon_sym_isize] = ACTIONS(1606), - [anon_sym_usize] = ACTIONS(1606), - [anon_sym_f32] = ACTIONS(1606), - [anon_sym_f64] = ACTIONS(1606), - [anon_sym_bool] = ACTIONS(1606), - [anon_sym_str] = ACTIONS(1606), - [anon_sym_char] = ACTIONS(1606), - [anon_sym_SQUOTE] = ACTIONS(1606), - [anon_sym_async] = ACTIONS(1606), - [anon_sym_break] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1606), - [anon_sym_continue] = ACTIONS(1606), - [anon_sym_default] = ACTIONS(1606), - [anon_sym_enum] = ACTIONS(1606), - [anon_sym_fn] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(1606), - [anon_sym_if] = ACTIONS(1606), - [anon_sym_impl] = ACTIONS(1606), - [anon_sym_let] = ACTIONS(1606), - [anon_sym_loop] = ACTIONS(1606), - [anon_sym_match] = ACTIONS(1606), - [anon_sym_mod] = ACTIONS(1606), - [anon_sym_pub] = ACTIONS(1606), - [anon_sym_return] = ACTIONS(1606), - [anon_sym_static] = ACTIONS(1606), - [anon_sym_struct] = ACTIONS(1606), - [anon_sym_trait] = ACTIONS(1606), - [anon_sym_type] = ACTIONS(1606), - [anon_sym_union] = ACTIONS(1606), - [anon_sym_unsafe] = ACTIONS(1606), - [anon_sym_use] = ACTIONS(1606), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_POUND] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_extern] = ACTIONS(1606), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1604), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_DOT_DOT] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_move] = ACTIONS(1606), - [sym_integer_literal] = ACTIONS(1604), - [aux_sym_string_literal_token1] = ACTIONS(1604), - [sym_char_literal] = ACTIONS(1604), - [anon_sym_true] = ACTIONS(1606), - [anon_sym_false] = ACTIONS(1606), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1606), - [sym_super] = ACTIONS(1606), - [sym_crate] = ACTIONS(1606), - [sym_metavariable] = ACTIONS(1604), - [sym_raw_string_literal] = ACTIONS(1604), - [sym_float_literal] = ACTIONS(1604), - [sym_block_comment] = ACTIONS(3), - }, - [383] = { - [ts_builtin_sym_end] = ACTIONS(1608), - [sym_identifier] = ACTIONS(1610), - [anon_sym_SEMI] = ACTIONS(1608), - [anon_sym_macro_rules_BANG] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1610), - [anon_sym_i8] = ACTIONS(1610), - [anon_sym_u16] = ACTIONS(1610), - [anon_sym_i16] = ACTIONS(1610), - [anon_sym_u32] = ACTIONS(1610), - [anon_sym_i32] = ACTIONS(1610), - [anon_sym_u64] = ACTIONS(1610), - [anon_sym_i64] = ACTIONS(1610), - [anon_sym_u128] = ACTIONS(1610), - [anon_sym_i128] = ACTIONS(1610), - [anon_sym_isize] = ACTIONS(1610), - [anon_sym_usize] = ACTIONS(1610), - [anon_sym_f32] = ACTIONS(1610), - [anon_sym_f64] = ACTIONS(1610), - [anon_sym_bool] = ACTIONS(1610), - [anon_sym_str] = ACTIONS(1610), - [anon_sym_char] = ACTIONS(1610), - [anon_sym_SQUOTE] = ACTIONS(1610), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_break] = ACTIONS(1610), - [anon_sym_const] = ACTIONS(1610), - [anon_sym_continue] = ACTIONS(1610), - [anon_sym_default] = ACTIONS(1610), - [anon_sym_enum] = ACTIONS(1610), - [anon_sym_fn] = ACTIONS(1610), - [anon_sym_for] = ACTIONS(1610), - [anon_sym_if] = ACTIONS(1610), - [anon_sym_impl] = ACTIONS(1610), - [anon_sym_let] = ACTIONS(1610), - [anon_sym_loop] = ACTIONS(1610), - [anon_sym_match] = ACTIONS(1610), - [anon_sym_mod] = ACTIONS(1610), - [anon_sym_pub] = ACTIONS(1610), - [anon_sym_return] = ACTIONS(1610), - [anon_sym_static] = ACTIONS(1610), - [anon_sym_struct] = ACTIONS(1610), - [anon_sym_trait] = ACTIONS(1610), - [anon_sym_type] = ACTIONS(1610), - [anon_sym_union] = ACTIONS(1610), - [anon_sym_unsafe] = ACTIONS(1610), - [anon_sym_use] = ACTIONS(1610), - [anon_sym_while] = ACTIONS(1610), - [anon_sym_POUND] = ACTIONS(1608), - [anon_sym_BANG] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(1608), - [anon_sym_DOT_DOT] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_PIPE] = ACTIONS(1608), - [anon_sym_move] = ACTIONS(1610), - [sym_integer_literal] = ACTIONS(1608), - [aux_sym_string_literal_token1] = ACTIONS(1608), - [sym_char_literal] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1610), - [anon_sym_false] = ACTIONS(1610), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1610), - [sym_super] = ACTIONS(1610), - [sym_crate] = ACTIONS(1610), - [sym_metavariable] = ACTIONS(1608), - [sym_raw_string_literal] = ACTIONS(1608), - [sym_float_literal] = ACTIONS(1608), - [sym_block_comment] = ACTIONS(3), - }, - [384] = { - [ts_builtin_sym_end] = ACTIONS(1612), - [sym_identifier] = ACTIONS(1614), - [anon_sym_SEMI] = ACTIONS(1612), - [anon_sym_macro_rules_BANG] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1612), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1612), - [anon_sym_u8] = ACTIONS(1614), - [anon_sym_i8] = ACTIONS(1614), - [anon_sym_u16] = ACTIONS(1614), - [anon_sym_i16] = ACTIONS(1614), - [anon_sym_u32] = ACTIONS(1614), - [anon_sym_i32] = ACTIONS(1614), - [anon_sym_u64] = ACTIONS(1614), - [anon_sym_i64] = ACTIONS(1614), - [anon_sym_u128] = ACTIONS(1614), - [anon_sym_i128] = ACTIONS(1614), - [anon_sym_isize] = ACTIONS(1614), - [anon_sym_usize] = ACTIONS(1614), - [anon_sym_f32] = ACTIONS(1614), - [anon_sym_f64] = ACTIONS(1614), - [anon_sym_bool] = ACTIONS(1614), - [anon_sym_str] = ACTIONS(1614), - [anon_sym_char] = ACTIONS(1614), - [anon_sym_SQUOTE] = ACTIONS(1614), - [anon_sym_async] = ACTIONS(1614), - [anon_sym_break] = ACTIONS(1614), - [anon_sym_const] = ACTIONS(1614), - [anon_sym_continue] = ACTIONS(1614), - [anon_sym_default] = ACTIONS(1614), - [anon_sym_enum] = ACTIONS(1614), - [anon_sym_fn] = ACTIONS(1614), - [anon_sym_for] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(1614), - [anon_sym_impl] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(1614), - [anon_sym_loop] = ACTIONS(1614), - [anon_sym_match] = ACTIONS(1614), - [anon_sym_mod] = ACTIONS(1614), - [anon_sym_pub] = ACTIONS(1614), - [anon_sym_return] = ACTIONS(1614), - [anon_sym_static] = ACTIONS(1614), - [anon_sym_struct] = ACTIONS(1614), - [anon_sym_trait] = ACTIONS(1614), - [anon_sym_type] = ACTIONS(1614), - [anon_sym_union] = ACTIONS(1614), - [anon_sym_unsafe] = ACTIONS(1614), - [anon_sym_use] = ACTIONS(1614), - [anon_sym_while] = ACTIONS(1614), - [anon_sym_POUND] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1612), - [anon_sym_extern] = ACTIONS(1614), - [anon_sym_LT] = ACTIONS(1612), - [anon_sym_COLON_COLON] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_DOT_DOT] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_move] = ACTIONS(1614), - [sym_integer_literal] = ACTIONS(1612), - [aux_sym_string_literal_token1] = ACTIONS(1612), - [sym_char_literal] = ACTIONS(1612), - [anon_sym_true] = ACTIONS(1614), - [anon_sym_false] = ACTIONS(1614), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1614), - [sym_super] = ACTIONS(1614), - [sym_crate] = ACTIONS(1614), - [sym_metavariable] = ACTIONS(1612), - [sym_raw_string_literal] = ACTIONS(1612), - [sym_float_literal] = ACTIONS(1612), - [sym_block_comment] = ACTIONS(3), - }, - [385] = { - [ts_builtin_sym_end] = ACTIONS(1616), - [sym_identifier] = ACTIONS(1618), - [anon_sym_SEMI] = ACTIONS(1616), - [anon_sym_macro_rules_BANG] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1616), - [anon_sym_RBRACE] = ACTIONS(1616), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1616), - [anon_sym_u8] = ACTIONS(1618), - [anon_sym_i8] = ACTIONS(1618), - [anon_sym_u16] = ACTIONS(1618), - [anon_sym_i16] = ACTIONS(1618), - [anon_sym_u32] = ACTIONS(1618), - [anon_sym_i32] = ACTIONS(1618), - [anon_sym_u64] = ACTIONS(1618), - [anon_sym_i64] = ACTIONS(1618), - [anon_sym_u128] = ACTIONS(1618), - [anon_sym_i128] = ACTIONS(1618), - [anon_sym_isize] = ACTIONS(1618), - [anon_sym_usize] = ACTIONS(1618), - [anon_sym_f32] = ACTIONS(1618), - [anon_sym_f64] = ACTIONS(1618), - [anon_sym_bool] = ACTIONS(1618), - [anon_sym_str] = ACTIONS(1618), - [anon_sym_char] = ACTIONS(1618), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_break] = ACTIONS(1618), - [anon_sym_const] = ACTIONS(1618), - [anon_sym_continue] = ACTIONS(1618), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_enum] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1618), - [anon_sym_for] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1618), - [anon_sym_impl] = ACTIONS(1618), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_loop] = ACTIONS(1618), - [anon_sym_match] = ACTIONS(1618), - [anon_sym_mod] = ACTIONS(1618), - [anon_sym_pub] = ACTIONS(1618), - [anon_sym_return] = ACTIONS(1618), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_struct] = ACTIONS(1618), - [anon_sym_trait] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_union] = ACTIONS(1618), - [anon_sym_unsafe] = ACTIONS(1618), - [anon_sym_use] = ACTIONS(1618), - [anon_sym_while] = ACTIONS(1618), - [anon_sym_POUND] = ACTIONS(1616), - [anon_sym_BANG] = ACTIONS(1616), - [anon_sym_extern] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(1616), - [anon_sym_COLON_COLON] = ACTIONS(1616), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_DOT_DOT] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1616), - [anon_sym_move] = ACTIONS(1618), - [sym_integer_literal] = ACTIONS(1616), - [aux_sym_string_literal_token1] = ACTIONS(1616), - [sym_char_literal] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1618), - [anon_sym_false] = ACTIONS(1618), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1618), - [sym_super] = ACTIONS(1618), - [sym_crate] = ACTIONS(1618), - [sym_metavariable] = ACTIONS(1616), - [sym_raw_string_literal] = ACTIONS(1616), - [sym_float_literal] = ACTIONS(1616), - [sym_block_comment] = ACTIONS(3), - }, - [386] = { - [ts_builtin_sym_end] = ACTIONS(1620), - [sym_identifier] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_macro_rules_BANG] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_u8] = ACTIONS(1622), - [anon_sym_i8] = ACTIONS(1622), - [anon_sym_u16] = ACTIONS(1622), - [anon_sym_i16] = ACTIONS(1622), - [anon_sym_u32] = ACTIONS(1622), - [anon_sym_i32] = ACTIONS(1622), - [anon_sym_u64] = ACTIONS(1622), - [anon_sym_i64] = ACTIONS(1622), - [anon_sym_u128] = ACTIONS(1622), - [anon_sym_i128] = ACTIONS(1622), - [anon_sym_isize] = ACTIONS(1622), - [anon_sym_usize] = ACTIONS(1622), - [anon_sym_f32] = ACTIONS(1622), - [anon_sym_f64] = ACTIONS(1622), - [anon_sym_bool] = ACTIONS(1622), - [anon_sym_str] = ACTIONS(1622), - [anon_sym_char] = ACTIONS(1622), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_async] = ACTIONS(1622), - [anon_sym_break] = ACTIONS(1622), - [anon_sym_const] = ACTIONS(1622), - [anon_sym_continue] = ACTIONS(1622), - [anon_sym_default] = ACTIONS(1622), - [anon_sym_enum] = ACTIONS(1622), - [anon_sym_fn] = ACTIONS(1622), - [anon_sym_for] = ACTIONS(1622), - [anon_sym_if] = ACTIONS(1622), - [anon_sym_impl] = ACTIONS(1622), - [anon_sym_let] = ACTIONS(1622), - [anon_sym_loop] = ACTIONS(1622), - [anon_sym_match] = ACTIONS(1622), - [anon_sym_mod] = ACTIONS(1622), - [anon_sym_pub] = ACTIONS(1622), - [anon_sym_return] = ACTIONS(1622), - [anon_sym_static] = ACTIONS(1622), - [anon_sym_struct] = ACTIONS(1622), - [anon_sym_trait] = ACTIONS(1622), - [anon_sym_type] = ACTIONS(1622), - [anon_sym_union] = ACTIONS(1622), - [anon_sym_unsafe] = ACTIONS(1622), - [anon_sym_use] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(1622), - [anon_sym_POUND] = ACTIONS(1620), - [anon_sym_BANG] = ACTIONS(1620), - [anon_sym_extern] = ACTIONS(1622), - [anon_sym_LT] = ACTIONS(1620), - [anon_sym_COLON_COLON] = ACTIONS(1620), - [anon_sym_AMP] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_move] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(1620), - [aux_sym_string_literal_token1] = ACTIONS(1620), - [sym_char_literal] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1622), - [sym_super] = ACTIONS(1622), - [sym_crate] = ACTIONS(1622), - [sym_metavariable] = ACTIONS(1620), - [sym_raw_string_literal] = ACTIONS(1620), - [sym_float_literal] = ACTIONS(1620), - [sym_block_comment] = ACTIONS(3), - }, - [387] = { - [ts_builtin_sym_end] = ACTIONS(1624), - [sym_identifier] = ACTIONS(1626), - [anon_sym_SEMI] = ACTIONS(1624), - [anon_sym_macro_rules_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1624), - [anon_sym_LBRACK] = ACTIONS(1624), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_u8] = ACTIONS(1626), - [anon_sym_i8] = ACTIONS(1626), - [anon_sym_u16] = ACTIONS(1626), - [anon_sym_i16] = ACTIONS(1626), - [anon_sym_u32] = ACTIONS(1626), - [anon_sym_i32] = ACTIONS(1626), - [anon_sym_u64] = ACTIONS(1626), - [anon_sym_i64] = ACTIONS(1626), - [anon_sym_u128] = ACTIONS(1626), - [anon_sym_i128] = ACTIONS(1626), - [anon_sym_isize] = ACTIONS(1626), - [anon_sym_usize] = ACTIONS(1626), - [anon_sym_f32] = ACTIONS(1626), - [anon_sym_f64] = ACTIONS(1626), - [anon_sym_bool] = ACTIONS(1626), - [anon_sym_str] = ACTIONS(1626), - [anon_sym_char] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_async] = ACTIONS(1626), - [anon_sym_break] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1626), - [anon_sym_continue] = ACTIONS(1626), - [anon_sym_default] = ACTIONS(1626), - [anon_sym_enum] = ACTIONS(1626), - [anon_sym_fn] = ACTIONS(1626), - [anon_sym_for] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1626), - [anon_sym_impl] = ACTIONS(1626), - [anon_sym_let] = ACTIONS(1626), - [anon_sym_loop] = ACTIONS(1626), - [anon_sym_match] = ACTIONS(1626), - [anon_sym_mod] = ACTIONS(1626), - [anon_sym_pub] = ACTIONS(1626), - [anon_sym_return] = ACTIONS(1626), - [anon_sym_static] = ACTIONS(1626), - [anon_sym_struct] = ACTIONS(1626), - [anon_sym_trait] = ACTIONS(1626), - [anon_sym_type] = ACTIONS(1626), - [anon_sym_union] = ACTIONS(1626), - [anon_sym_unsafe] = ACTIONS(1626), - [anon_sym_use] = ACTIONS(1626), - [anon_sym_while] = ACTIONS(1626), - [anon_sym_POUND] = ACTIONS(1624), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_extern] = ACTIONS(1626), - [anon_sym_LT] = ACTIONS(1624), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(1624), - [anon_sym_DOT_DOT] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_PIPE] = ACTIONS(1624), - [anon_sym_move] = ACTIONS(1626), - [sym_integer_literal] = ACTIONS(1624), - [aux_sym_string_literal_token1] = ACTIONS(1624), - [sym_char_literal] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(1626), - [anon_sym_false] = ACTIONS(1626), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1626), - [sym_super] = ACTIONS(1626), - [sym_crate] = ACTIONS(1626), - [sym_metavariable] = ACTIONS(1624), - [sym_raw_string_literal] = ACTIONS(1624), - [sym_float_literal] = ACTIONS(1624), - [sym_block_comment] = ACTIONS(3), - }, - [388] = { - [ts_builtin_sym_end] = ACTIONS(1628), - [sym_identifier] = ACTIONS(1630), - [anon_sym_SEMI] = ACTIONS(1628), - [anon_sym_macro_rules_BANG] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_RBRACE] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1628), - [anon_sym_u8] = ACTIONS(1630), - [anon_sym_i8] = ACTIONS(1630), - [anon_sym_u16] = ACTIONS(1630), - [anon_sym_i16] = ACTIONS(1630), - [anon_sym_u32] = ACTIONS(1630), - [anon_sym_i32] = ACTIONS(1630), - [anon_sym_u64] = ACTIONS(1630), - [anon_sym_i64] = ACTIONS(1630), - [anon_sym_u128] = ACTIONS(1630), - [anon_sym_i128] = ACTIONS(1630), - [anon_sym_isize] = ACTIONS(1630), - [anon_sym_usize] = ACTIONS(1630), - [anon_sym_f32] = ACTIONS(1630), - [anon_sym_f64] = ACTIONS(1630), - [anon_sym_bool] = ACTIONS(1630), - [anon_sym_str] = ACTIONS(1630), - [anon_sym_char] = ACTIONS(1630), - [anon_sym_SQUOTE] = ACTIONS(1630), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_break] = ACTIONS(1630), - [anon_sym_const] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(1630), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_enum] = ACTIONS(1630), - [anon_sym_fn] = ACTIONS(1630), - [anon_sym_for] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1630), - [anon_sym_impl] = ACTIONS(1630), - [anon_sym_let] = ACTIONS(1630), - [anon_sym_loop] = ACTIONS(1630), - [anon_sym_match] = ACTIONS(1630), - [anon_sym_mod] = ACTIONS(1630), - [anon_sym_pub] = ACTIONS(1630), - [anon_sym_return] = ACTIONS(1630), - [anon_sym_static] = ACTIONS(1630), - [anon_sym_struct] = ACTIONS(1630), - [anon_sym_trait] = ACTIONS(1630), - [anon_sym_type] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_unsafe] = ACTIONS(1630), - [anon_sym_use] = ACTIONS(1630), - [anon_sym_while] = ACTIONS(1630), - [anon_sym_POUND] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1628), - [anon_sym_extern] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(1628), - [anon_sym_COLON_COLON] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1628), - [anon_sym_DOT_DOT] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_PIPE] = ACTIONS(1628), - [anon_sym_move] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(1628), - [aux_sym_string_literal_token1] = ACTIONS(1628), - [sym_char_literal] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1630), - [anon_sym_false] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1630), - [sym_super] = ACTIONS(1630), - [sym_crate] = ACTIONS(1630), - [sym_metavariable] = ACTIONS(1628), - [sym_raw_string_literal] = ACTIONS(1628), - [sym_float_literal] = ACTIONS(1628), - [sym_block_comment] = ACTIONS(3), - }, - [389] = { - [ts_builtin_sym_end] = ACTIONS(1632), - [sym_identifier] = ACTIONS(1634), - [anon_sym_SEMI] = ACTIONS(1632), - [anon_sym_macro_rules_BANG] = ACTIONS(1632), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(1632), - [anon_sym_RBRACE] = ACTIONS(1632), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1632), - [anon_sym_u8] = ACTIONS(1634), - [anon_sym_i8] = ACTIONS(1634), - [anon_sym_u16] = ACTIONS(1634), - [anon_sym_i16] = ACTIONS(1634), - [anon_sym_u32] = ACTIONS(1634), - [anon_sym_i32] = ACTIONS(1634), - [anon_sym_u64] = ACTIONS(1634), - [anon_sym_i64] = ACTIONS(1634), - [anon_sym_u128] = ACTIONS(1634), - [anon_sym_i128] = ACTIONS(1634), - [anon_sym_isize] = ACTIONS(1634), - [anon_sym_usize] = ACTIONS(1634), - [anon_sym_f32] = ACTIONS(1634), - [anon_sym_f64] = ACTIONS(1634), - [anon_sym_bool] = ACTIONS(1634), - [anon_sym_str] = ACTIONS(1634), - [anon_sym_char] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1634), - [anon_sym_async] = ACTIONS(1634), - [anon_sym_break] = ACTIONS(1634), - [anon_sym_const] = ACTIONS(1634), - [anon_sym_continue] = ACTIONS(1634), - [anon_sym_default] = ACTIONS(1634), - [anon_sym_enum] = ACTIONS(1634), - [anon_sym_fn] = ACTIONS(1634), - [anon_sym_for] = ACTIONS(1634), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_impl] = ACTIONS(1634), - [anon_sym_let] = ACTIONS(1634), - [anon_sym_loop] = ACTIONS(1634), - [anon_sym_match] = ACTIONS(1634), - [anon_sym_mod] = ACTIONS(1634), - [anon_sym_pub] = ACTIONS(1634), - [anon_sym_return] = ACTIONS(1634), - [anon_sym_static] = ACTIONS(1634), - [anon_sym_struct] = ACTIONS(1634), - [anon_sym_trait] = ACTIONS(1634), - [anon_sym_type] = ACTIONS(1634), - [anon_sym_union] = ACTIONS(1634), - [anon_sym_unsafe] = ACTIONS(1634), - [anon_sym_use] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1632), - [anon_sym_extern] = ACTIONS(1634), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_COLON_COLON] = ACTIONS(1632), - [anon_sym_AMP] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(1632), - [anon_sym_DASH] = ACTIONS(1632), - [anon_sym_PIPE] = ACTIONS(1632), - [anon_sym_move] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1632), - [aux_sym_string_literal_token1] = ACTIONS(1632), - [sym_char_literal] = ACTIONS(1632), - [anon_sym_true] = ACTIONS(1634), - [anon_sym_false] = ACTIONS(1634), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1634), - [sym_super] = ACTIONS(1634), - [sym_crate] = ACTIONS(1634), - [sym_metavariable] = ACTIONS(1632), - [sym_raw_string_literal] = ACTIONS(1632), - [sym_float_literal] = ACTIONS(1632), - [sym_block_comment] = ACTIONS(3), - }, - [390] = { - [ts_builtin_sym_end] = ACTIONS(1636), - [sym_identifier] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_macro_rules_BANG] = ACTIONS(1636), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_STAR] = ACTIONS(1636), - [anon_sym_u8] = ACTIONS(1638), - [anon_sym_i8] = ACTIONS(1638), - [anon_sym_u16] = ACTIONS(1638), - [anon_sym_i16] = ACTIONS(1638), - [anon_sym_u32] = ACTIONS(1638), - [anon_sym_i32] = ACTIONS(1638), - [anon_sym_u64] = ACTIONS(1638), - [anon_sym_i64] = ACTIONS(1638), - [anon_sym_u128] = ACTIONS(1638), - [anon_sym_i128] = ACTIONS(1638), - [anon_sym_isize] = ACTIONS(1638), - [anon_sym_usize] = ACTIONS(1638), - [anon_sym_f32] = ACTIONS(1638), - [anon_sym_f64] = ACTIONS(1638), - [anon_sym_bool] = ACTIONS(1638), - [anon_sym_str] = ACTIONS(1638), - [anon_sym_char] = ACTIONS(1638), - [anon_sym_SQUOTE] = ACTIONS(1638), - [anon_sym_async] = ACTIONS(1638), - [anon_sym_break] = ACTIONS(1638), - [anon_sym_const] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(1638), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_enum] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1638), - [anon_sym_for] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1638), - [anon_sym_impl] = ACTIONS(1638), - [anon_sym_let] = ACTIONS(1638), - [anon_sym_loop] = ACTIONS(1638), - [anon_sym_match] = ACTIONS(1638), - [anon_sym_mod] = ACTIONS(1638), - [anon_sym_pub] = ACTIONS(1638), - [anon_sym_return] = ACTIONS(1638), - [anon_sym_static] = ACTIONS(1638), - [anon_sym_struct] = ACTIONS(1638), - [anon_sym_trait] = ACTIONS(1638), - [anon_sym_type] = ACTIONS(1638), - [anon_sym_union] = ACTIONS(1638), - [anon_sym_unsafe] = ACTIONS(1638), - [anon_sym_use] = ACTIONS(1638), - [anon_sym_while] = ACTIONS(1638), - [anon_sym_POUND] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_extern] = ACTIONS(1638), - [anon_sym_LT] = ACTIONS(1636), - [anon_sym_COLON_COLON] = ACTIONS(1636), - [anon_sym_AMP] = ACTIONS(1636), - [anon_sym_DOT_DOT] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_move] = ACTIONS(1638), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1636), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1638), - [anon_sym_false] = ACTIONS(1638), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1638), - [sym_super] = ACTIONS(1638), - [sym_crate] = ACTIONS(1638), - [sym_metavariable] = ACTIONS(1636), - [sym_raw_string_literal] = ACTIONS(1636), - [sym_float_literal] = ACTIONS(1636), - [sym_block_comment] = ACTIONS(3), - }, - [391] = { - [ts_builtin_sym_end] = ACTIONS(1640), - [sym_identifier] = ACTIONS(1642), - [anon_sym_SEMI] = ACTIONS(1640), - [anon_sym_macro_rules_BANG] = ACTIONS(1640), - [anon_sym_LPAREN] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_RBRACE] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(1640), - [anon_sym_STAR] = ACTIONS(1640), - [anon_sym_u8] = ACTIONS(1642), - [anon_sym_i8] = ACTIONS(1642), - [anon_sym_u16] = ACTIONS(1642), - [anon_sym_i16] = ACTIONS(1642), - [anon_sym_u32] = ACTIONS(1642), - [anon_sym_i32] = ACTIONS(1642), - [anon_sym_u64] = ACTIONS(1642), - [anon_sym_i64] = ACTIONS(1642), - [anon_sym_u128] = ACTIONS(1642), - [anon_sym_i128] = ACTIONS(1642), - [anon_sym_isize] = ACTIONS(1642), - [anon_sym_usize] = ACTIONS(1642), - [anon_sym_f32] = ACTIONS(1642), - [anon_sym_f64] = ACTIONS(1642), - [anon_sym_bool] = ACTIONS(1642), - [anon_sym_str] = ACTIONS(1642), - [anon_sym_char] = ACTIONS(1642), - [anon_sym_SQUOTE] = ACTIONS(1642), - [anon_sym_async] = ACTIONS(1642), - [anon_sym_break] = ACTIONS(1642), - [anon_sym_const] = ACTIONS(1642), - [anon_sym_continue] = ACTIONS(1642), - [anon_sym_default] = ACTIONS(1642), - [anon_sym_enum] = ACTIONS(1642), - [anon_sym_fn] = ACTIONS(1642), - [anon_sym_for] = ACTIONS(1642), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1642), - [anon_sym_let] = ACTIONS(1642), - [anon_sym_loop] = ACTIONS(1642), - [anon_sym_match] = ACTIONS(1642), - [anon_sym_mod] = ACTIONS(1642), - [anon_sym_pub] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1642), - [anon_sym_static] = ACTIONS(1642), - [anon_sym_struct] = ACTIONS(1642), - [anon_sym_trait] = ACTIONS(1642), - [anon_sym_type] = ACTIONS(1642), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_use] = ACTIONS(1642), - [anon_sym_while] = ACTIONS(1642), - [anon_sym_POUND] = ACTIONS(1640), - [anon_sym_BANG] = ACTIONS(1640), - [anon_sym_extern] = ACTIONS(1642), - [anon_sym_LT] = ACTIONS(1640), - [anon_sym_COLON_COLON] = ACTIONS(1640), - [anon_sym_AMP] = ACTIONS(1640), - [anon_sym_DOT_DOT] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_move] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1640), - [aux_sym_string_literal_token1] = ACTIONS(1640), - [sym_char_literal] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1642), - [anon_sym_false] = ACTIONS(1642), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1640), - [sym_raw_string_literal] = ACTIONS(1640), - [sym_float_literal] = ACTIONS(1640), - [sym_block_comment] = ACTIONS(3), - }, - [392] = { - [ts_builtin_sym_end] = ACTIONS(1644), - [sym_identifier] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_macro_rules_BANG] = ACTIONS(1644), - [anon_sym_LPAREN] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1644), - [anon_sym_RBRACE] = ACTIONS(1644), - [anon_sym_LBRACK] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1644), - [anon_sym_u8] = ACTIONS(1646), - [anon_sym_i8] = ACTIONS(1646), - [anon_sym_u16] = ACTIONS(1646), - [anon_sym_i16] = ACTIONS(1646), - [anon_sym_u32] = ACTIONS(1646), - [anon_sym_i32] = ACTIONS(1646), - [anon_sym_u64] = ACTIONS(1646), - [anon_sym_i64] = ACTIONS(1646), - [anon_sym_u128] = ACTIONS(1646), - [anon_sym_i128] = ACTIONS(1646), - [anon_sym_isize] = ACTIONS(1646), - [anon_sym_usize] = ACTIONS(1646), - [anon_sym_f32] = ACTIONS(1646), - [anon_sym_f64] = ACTIONS(1646), - [anon_sym_bool] = ACTIONS(1646), - [anon_sym_str] = ACTIONS(1646), - [anon_sym_char] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1646), - [anon_sym_async] = ACTIONS(1646), - [anon_sym_break] = ACTIONS(1646), - [anon_sym_const] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(1646), - [anon_sym_default] = ACTIONS(1646), - [anon_sym_enum] = ACTIONS(1646), - [anon_sym_fn] = ACTIONS(1646), - [anon_sym_for] = ACTIONS(1646), - [anon_sym_if] = ACTIONS(1646), - [anon_sym_impl] = ACTIONS(1646), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_loop] = ACTIONS(1646), - [anon_sym_match] = ACTIONS(1646), - [anon_sym_mod] = ACTIONS(1646), - [anon_sym_pub] = ACTIONS(1646), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1646), - [anon_sym_trait] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_union] = ACTIONS(1646), - [anon_sym_unsafe] = ACTIONS(1646), - [anon_sym_use] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1646), - [anon_sym_POUND] = ACTIONS(1644), - [anon_sym_BANG] = ACTIONS(1644), - [anon_sym_extern] = ACTIONS(1646), - [anon_sym_LT] = ACTIONS(1644), - [anon_sym_COLON_COLON] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_DOT_DOT] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_PIPE] = ACTIONS(1644), - [anon_sym_move] = ACTIONS(1646), - [sym_integer_literal] = ACTIONS(1644), - [aux_sym_string_literal_token1] = ACTIONS(1644), - [sym_char_literal] = ACTIONS(1644), - [anon_sym_true] = ACTIONS(1646), - [anon_sym_false] = ACTIONS(1646), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1646), - [sym_super] = ACTIONS(1646), - [sym_crate] = ACTIONS(1646), - [sym_metavariable] = ACTIONS(1644), - [sym_raw_string_literal] = ACTIONS(1644), - [sym_float_literal] = ACTIONS(1644), - [sym_block_comment] = ACTIONS(3), - }, - [393] = { - [ts_builtin_sym_end] = ACTIONS(1648), - [sym_identifier] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_macro_rules_BANG] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_STAR] = ACTIONS(1648), - [anon_sym_u8] = ACTIONS(1650), - [anon_sym_i8] = ACTIONS(1650), - [anon_sym_u16] = ACTIONS(1650), - [anon_sym_i16] = ACTIONS(1650), - [anon_sym_u32] = ACTIONS(1650), - [anon_sym_i32] = ACTIONS(1650), - [anon_sym_u64] = ACTIONS(1650), - [anon_sym_i64] = ACTIONS(1650), - [anon_sym_u128] = ACTIONS(1650), - [anon_sym_i128] = ACTIONS(1650), - [anon_sym_isize] = ACTIONS(1650), - [anon_sym_usize] = ACTIONS(1650), - [anon_sym_f32] = ACTIONS(1650), - [anon_sym_f64] = ACTIONS(1650), - [anon_sym_bool] = ACTIONS(1650), - [anon_sym_str] = ACTIONS(1650), - [anon_sym_char] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1650), - [anon_sym_async] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_continue] = ACTIONS(1650), - [anon_sym_default] = ACTIONS(1650), - [anon_sym_enum] = ACTIONS(1650), - [anon_sym_fn] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_impl] = ACTIONS(1650), - [anon_sym_let] = ACTIONS(1650), - [anon_sym_loop] = ACTIONS(1650), - [anon_sym_match] = ACTIONS(1650), - [anon_sym_mod] = ACTIONS(1650), - [anon_sym_pub] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_static] = ACTIONS(1650), - [anon_sym_struct] = ACTIONS(1650), - [anon_sym_trait] = ACTIONS(1650), - [anon_sym_type] = ACTIONS(1650), - [anon_sym_union] = ACTIONS(1650), - [anon_sym_unsafe] = ACTIONS(1650), - [anon_sym_use] = ACTIONS(1650), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_POUND] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1648), - [anon_sym_COLON_COLON] = ACTIONS(1648), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_move] = ACTIONS(1650), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1648), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1648), - [sym_raw_string_literal] = ACTIONS(1648), - [sym_float_literal] = ACTIONS(1648), - [sym_block_comment] = ACTIONS(3), - }, - [394] = { - [ts_builtin_sym_end] = ACTIONS(1652), - [sym_identifier] = ACTIONS(1654), - [anon_sym_SEMI] = ACTIONS(1652), - [anon_sym_macro_rules_BANG] = ACTIONS(1652), - [anon_sym_LPAREN] = ACTIONS(1652), - [anon_sym_LBRACE] = ACTIONS(1652), - [anon_sym_RBRACE] = ACTIONS(1652), - [anon_sym_LBRACK] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_u8] = ACTIONS(1654), - [anon_sym_i8] = ACTIONS(1654), - [anon_sym_u16] = ACTIONS(1654), - [anon_sym_i16] = ACTIONS(1654), - [anon_sym_u32] = ACTIONS(1654), - [anon_sym_i32] = ACTIONS(1654), - [anon_sym_u64] = ACTIONS(1654), - [anon_sym_i64] = ACTIONS(1654), - [anon_sym_u128] = ACTIONS(1654), - [anon_sym_i128] = ACTIONS(1654), - [anon_sym_isize] = ACTIONS(1654), - [anon_sym_usize] = ACTIONS(1654), - [anon_sym_f32] = ACTIONS(1654), - [anon_sym_f64] = ACTIONS(1654), - [anon_sym_bool] = ACTIONS(1654), - [anon_sym_str] = ACTIONS(1654), - [anon_sym_char] = ACTIONS(1654), - [anon_sym_SQUOTE] = ACTIONS(1654), - [anon_sym_async] = ACTIONS(1654), - [anon_sym_break] = ACTIONS(1654), - [anon_sym_const] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(1654), - [anon_sym_default] = ACTIONS(1654), - [anon_sym_enum] = ACTIONS(1654), - [anon_sym_fn] = ACTIONS(1654), - [anon_sym_for] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1654), - [anon_sym_impl] = ACTIONS(1654), - [anon_sym_let] = ACTIONS(1654), - [anon_sym_loop] = ACTIONS(1654), - [anon_sym_match] = ACTIONS(1654), - [anon_sym_mod] = ACTIONS(1654), - [anon_sym_pub] = ACTIONS(1654), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_static] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1654), - [anon_sym_trait] = ACTIONS(1654), - [anon_sym_type] = ACTIONS(1654), - [anon_sym_union] = ACTIONS(1654), - [anon_sym_unsafe] = ACTIONS(1654), - [anon_sym_use] = ACTIONS(1654), - [anon_sym_while] = ACTIONS(1654), - [anon_sym_POUND] = ACTIONS(1652), - [anon_sym_BANG] = ACTIONS(1652), - [anon_sym_extern] = ACTIONS(1654), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_COLON_COLON] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_DOT_DOT] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_move] = ACTIONS(1654), - [sym_integer_literal] = ACTIONS(1652), - [aux_sym_string_literal_token1] = ACTIONS(1652), - [sym_char_literal] = ACTIONS(1652), - [anon_sym_true] = ACTIONS(1654), - [anon_sym_false] = ACTIONS(1654), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1654), - [sym_super] = ACTIONS(1654), - [sym_crate] = ACTIONS(1654), - [sym_metavariable] = ACTIONS(1652), - [sym_raw_string_literal] = ACTIONS(1652), - [sym_float_literal] = ACTIONS(1652), - [sym_block_comment] = ACTIONS(3), - }, - [395] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [sym_identifier] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_macro_rules_BANG] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_STAR] = ACTIONS(1656), - [anon_sym_u8] = ACTIONS(1658), - [anon_sym_i8] = ACTIONS(1658), - [anon_sym_u16] = ACTIONS(1658), - [anon_sym_i16] = ACTIONS(1658), - [anon_sym_u32] = ACTIONS(1658), - [anon_sym_i32] = ACTIONS(1658), - [anon_sym_u64] = ACTIONS(1658), - [anon_sym_i64] = ACTIONS(1658), - [anon_sym_u128] = ACTIONS(1658), - [anon_sym_i128] = ACTIONS(1658), - [anon_sym_isize] = ACTIONS(1658), - [anon_sym_usize] = ACTIONS(1658), - [anon_sym_f32] = ACTIONS(1658), - [anon_sym_f64] = ACTIONS(1658), - [anon_sym_bool] = ACTIONS(1658), - [anon_sym_str] = ACTIONS(1658), - [anon_sym_char] = ACTIONS(1658), - [anon_sym_SQUOTE] = ACTIONS(1658), - [anon_sym_async] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_continue] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_enum] = ACTIONS(1658), - [anon_sym_fn] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_impl] = ACTIONS(1658), - [anon_sym_let] = ACTIONS(1658), - [anon_sym_loop] = ACTIONS(1658), - [anon_sym_match] = ACTIONS(1658), - [anon_sym_mod] = ACTIONS(1658), - [anon_sym_pub] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_static] = ACTIONS(1658), - [anon_sym_struct] = ACTIONS(1658), - [anon_sym_trait] = ACTIONS(1658), - [anon_sym_type] = ACTIONS(1658), - [anon_sym_union] = ACTIONS(1658), - [anon_sym_unsafe] = ACTIONS(1658), - [anon_sym_use] = ACTIONS(1658), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_POUND] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_extern] = ACTIONS(1658), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_COLON_COLON] = ACTIONS(1656), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_DOT_DOT] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_move] = ACTIONS(1658), - [sym_integer_literal] = ACTIONS(1656), - [aux_sym_string_literal_token1] = ACTIONS(1656), - [sym_char_literal] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(1658), - [anon_sym_false] = ACTIONS(1658), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1658), - [sym_super] = ACTIONS(1658), - [sym_crate] = ACTIONS(1658), - [sym_metavariable] = ACTIONS(1656), - [sym_raw_string_literal] = ACTIONS(1656), - [sym_float_literal] = ACTIONS(1656), - [sym_block_comment] = ACTIONS(3), - }, - [396] = { - [ts_builtin_sym_end] = ACTIONS(1660), - [sym_identifier] = ACTIONS(1662), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_macro_rules_BANG] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1660), - [anon_sym_u8] = ACTIONS(1662), - [anon_sym_i8] = ACTIONS(1662), - [anon_sym_u16] = ACTIONS(1662), - [anon_sym_i16] = ACTIONS(1662), - [anon_sym_u32] = ACTIONS(1662), - [anon_sym_i32] = ACTIONS(1662), - [anon_sym_u64] = ACTIONS(1662), - [anon_sym_i64] = ACTIONS(1662), - [anon_sym_u128] = ACTIONS(1662), - [anon_sym_i128] = ACTIONS(1662), - [anon_sym_isize] = ACTIONS(1662), - [anon_sym_usize] = ACTIONS(1662), - [anon_sym_f32] = ACTIONS(1662), - [anon_sym_f64] = ACTIONS(1662), - [anon_sym_bool] = ACTIONS(1662), - [anon_sym_str] = ACTIONS(1662), - [anon_sym_char] = ACTIONS(1662), - [anon_sym_SQUOTE] = ACTIONS(1662), - [anon_sym_async] = ACTIONS(1662), - [anon_sym_break] = ACTIONS(1662), - [anon_sym_const] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(1662), - [anon_sym_default] = ACTIONS(1662), - [anon_sym_enum] = ACTIONS(1662), - [anon_sym_fn] = ACTIONS(1662), - [anon_sym_for] = ACTIONS(1662), - [anon_sym_if] = ACTIONS(1662), - [anon_sym_impl] = ACTIONS(1662), - [anon_sym_let] = ACTIONS(1662), - [anon_sym_loop] = ACTIONS(1662), - [anon_sym_match] = ACTIONS(1662), - [anon_sym_mod] = ACTIONS(1662), - [anon_sym_pub] = ACTIONS(1662), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_static] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(1662), - [anon_sym_trait] = ACTIONS(1662), - [anon_sym_type] = ACTIONS(1662), - [anon_sym_union] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1662), - [anon_sym_use] = ACTIONS(1662), - [anon_sym_while] = ACTIONS(1662), - [anon_sym_POUND] = ACTIONS(1660), - [anon_sym_BANG] = ACTIONS(1660), - [anon_sym_extern] = ACTIONS(1662), - [anon_sym_LT] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1660), - [anon_sym_AMP] = ACTIONS(1660), - [anon_sym_DOT_DOT] = ACTIONS(1660), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_PIPE] = ACTIONS(1660), - [anon_sym_move] = ACTIONS(1662), - [sym_integer_literal] = ACTIONS(1660), - [aux_sym_string_literal_token1] = ACTIONS(1660), - [sym_char_literal] = ACTIONS(1660), - [anon_sym_true] = ACTIONS(1662), - [anon_sym_false] = ACTIONS(1662), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1662), - [sym_super] = ACTIONS(1662), - [sym_crate] = ACTIONS(1662), - [sym_metavariable] = ACTIONS(1660), - [sym_raw_string_literal] = ACTIONS(1660), - [sym_float_literal] = ACTIONS(1660), - [sym_block_comment] = ACTIONS(3), - }, - [397] = { - [ts_builtin_sym_end] = ACTIONS(1664), - [sym_identifier] = ACTIONS(1666), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_macro_rules_BANG] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_u8] = ACTIONS(1666), - [anon_sym_i8] = ACTIONS(1666), - [anon_sym_u16] = ACTIONS(1666), - [anon_sym_i16] = ACTIONS(1666), - [anon_sym_u32] = ACTIONS(1666), - [anon_sym_i32] = ACTIONS(1666), - [anon_sym_u64] = ACTIONS(1666), - [anon_sym_i64] = ACTIONS(1666), - [anon_sym_u128] = ACTIONS(1666), - [anon_sym_i128] = ACTIONS(1666), - [anon_sym_isize] = ACTIONS(1666), - [anon_sym_usize] = ACTIONS(1666), - [anon_sym_f32] = ACTIONS(1666), - [anon_sym_f64] = ACTIONS(1666), - [anon_sym_bool] = ACTIONS(1666), - [anon_sym_str] = ACTIONS(1666), - [anon_sym_char] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(1666), - [anon_sym_async] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1666), - [anon_sym_enum] = ACTIONS(1666), - [anon_sym_fn] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_impl] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_mod] = ACTIONS(1666), - [anon_sym_pub] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_static] = ACTIONS(1666), - [anon_sym_struct] = ACTIONS(1666), - [anon_sym_trait] = ACTIONS(1666), - [anon_sym_type] = ACTIONS(1666), - [anon_sym_union] = ACTIONS(1666), - [anon_sym_unsafe] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(1664), - [anon_sym_COLON_COLON] = ACTIONS(1664), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_DOT_DOT] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_move] = ACTIONS(1666), - [sym_integer_literal] = ACTIONS(1664), - [aux_sym_string_literal_token1] = ACTIONS(1664), - [sym_char_literal] = ACTIONS(1664), - [anon_sym_true] = ACTIONS(1666), - [anon_sym_false] = ACTIONS(1666), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1666), - [sym_super] = ACTIONS(1666), - [sym_crate] = ACTIONS(1666), - [sym_metavariable] = ACTIONS(1664), - [sym_raw_string_literal] = ACTIONS(1664), - [sym_float_literal] = ACTIONS(1664), - [sym_block_comment] = ACTIONS(3), - }, - [398] = { - [ts_builtin_sym_end] = ACTIONS(1668), - [sym_identifier] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_macro_rules_BANG] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_u8] = ACTIONS(1670), - [anon_sym_i8] = ACTIONS(1670), - [anon_sym_u16] = ACTIONS(1670), - [anon_sym_i16] = ACTIONS(1670), - [anon_sym_u32] = ACTIONS(1670), - [anon_sym_i32] = ACTIONS(1670), - [anon_sym_u64] = ACTIONS(1670), - [anon_sym_i64] = ACTIONS(1670), - [anon_sym_u128] = ACTIONS(1670), - [anon_sym_i128] = ACTIONS(1670), - [anon_sym_isize] = ACTIONS(1670), - [anon_sym_usize] = ACTIONS(1670), - [anon_sym_f32] = ACTIONS(1670), - [anon_sym_f64] = ACTIONS(1670), - [anon_sym_bool] = ACTIONS(1670), - [anon_sym_str] = ACTIONS(1670), - [anon_sym_char] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [anon_sym_async] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(1670), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_enum] = ACTIONS(1670), - [anon_sym_fn] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_impl] = ACTIONS(1670), - [anon_sym_let] = ACTIONS(1670), - [anon_sym_loop] = ACTIONS(1670), - [anon_sym_match] = ACTIONS(1670), - [anon_sym_mod] = ACTIONS(1670), - [anon_sym_pub] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(1670), - [anon_sym_struct] = ACTIONS(1670), - [anon_sym_trait] = ACTIONS(1670), - [anon_sym_type] = ACTIONS(1670), - [anon_sym_union] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1670), - [anon_sym_use] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_POUND] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_extern] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1668), - [anon_sym_COLON_COLON] = ACTIONS(1668), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_move] = ACTIONS(1670), - [sym_integer_literal] = ACTIONS(1668), - [aux_sym_string_literal_token1] = ACTIONS(1668), - [sym_char_literal] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1670), - [anon_sym_false] = ACTIONS(1670), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1670), - [sym_super] = ACTIONS(1670), - [sym_crate] = ACTIONS(1670), - [sym_metavariable] = ACTIONS(1668), - [sym_raw_string_literal] = ACTIONS(1668), - [sym_float_literal] = ACTIONS(1668), - [sym_block_comment] = ACTIONS(3), - }, - [399] = { - [ts_builtin_sym_end] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_macro_rules_BANG] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_STAR] = ACTIONS(1672), - [anon_sym_u8] = ACTIONS(1674), - [anon_sym_i8] = ACTIONS(1674), - [anon_sym_u16] = ACTIONS(1674), - [anon_sym_i16] = ACTIONS(1674), - [anon_sym_u32] = ACTIONS(1674), - [anon_sym_i32] = ACTIONS(1674), - [anon_sym_u64] = ACTIONS(1674), - [anon_sym_i64] = ACTIONS(1674), - [anon_sym_u128] = ACTIONS(1674), - [anon_sym_i128] = ACTIONS(1674), - [anon_sym_isize] = ACTIONS(1674), - [anon_sym_usize] = ACTIONS(1674), - [anon_sym_f32] = ACTIONS(1674), - [anon_sym_f64] = ACTIONS(1674), - [anon_sym_bool] = ACTIONS(1674), - [anon_sym_str] = ACTIONS(1674), - [anon_sym_char] = ACTIONS(1674), - [anon_sym_SQUOTE] = ACTIONS(1674), - [anon_sym_async] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), - [anon_sym_fn] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_impl] = ACTIONS(1674), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_loop] = ACTIONS(1674), - [anon_sym_match] = ACTIONS(1674), - [anon_sym_mod] = ACTIONS(1674), - [anon_sym_pub] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_static] = ACTIONS(1674), - [anon_sym_struct] = ACTIONS(1674), - [anon_sym_trait] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_union] = ACTIONS(1674), - [anon_sym_unsafe] = ACTIONS(1674), - [anon_sym_use] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_POUND] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_extern] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_COLON_COLON] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_DOT_DOT] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_move] = ACTIONS(1674), - [sym_integer_literal] = ACTIONS(1672), - [aux_sym_string_literal_token1] = ACTIONS(1672), - [sym_char_literal] = ACTIONS(1672), - [anon_sym_true] = ACTIONS(1674), - [anon_sym_false] = ACTIONS(1674), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1674), - [sym_super] = ACTIONS(1674), - [sym_crate] = ACTIONS(1674), - [sym_metavariable] = ACTIONS(1672), - [sym_raw_string_literal] = ACTIONS(1672), - [sym_float_literal] = ACTIONS(1672), - [sym_block_comment] = ACTIONS(3), - }, - [400] = { - [ts_builtin_sym_end] = ACTIONS(1676), - [sym_identifier] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1676), - [anon_sym_macro_rules_BANG] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_RBRACE] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_STAR] = ACTIONS(1676), - [anon_sym_u8] = ACTIONS(1678), - [anon_sym_i8] = ACTIONS(1678), - [anon_sym_u16] = ACTIONS(1678), - [anon_sym_i16] = ACTIONS(1678), - [anon_sym_u32] = ACTIONS(1678), - [anon_sym_i32] = ACTIONS(1678), - [anon_sym_u64] = ACTIONS(1678), - [anon_sym_i64] = ACTIONS(1678), - [anon_sym_u128] = ACTIONS(1678), - [anon_sym_i128] = ACTIONS(1678), - [anon_sym_isize] = ACTIONS(1678), - [anon_sym_usize] = ACTIONS(1678), - [anon_sym_f32] = ACTIONS(1678), - [anon_sym_f64] = ACTIONS(1678), - [anon_sym_bool] = ACTIONS(1678), - [anon_sym_str] = ACTIONS(1678), - [anon_sym_char] = ACTIONS(1678), - [anon_sym_SQUOTE] = ACTIONS(1678), - [anon_sym_async] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1678), - [anon_sym_enum] = ACTIONS(1678), - [anon_sym_fn] = ACTIONS(1678), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_impl] = ACTIONS(1678), - [anon_sym_let] = ACTIONS(1678), - [anon_sym_loop] = ACTIONS(1678), - [anon_sym_match] = ACTIONS(1678), - [anon_sym_mod] = ACTIONS(1678), - [anon_sym_pub] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_static] = ACTIONS(1678), - [anon_sym_struct] = ACTIONS(1678), - [anon_sym_trait] = ACTIONS(1678), - [anon_sym_type] = ACTIONS(1678), - [anon_sym_union] = ACTIONS(1678), - [anon_sym_unsafe] = ACTIONS(1678), - [anon_sym_use] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1678), - [anon_sym_POUND] = ACTIONS(1676), - [anon_sym_BANG] = ACTIONS(1676), - [anon_sym_extern] = ACTIONS(1678), - [anon_sym_LT] = ACTIONS(1676), - [anon_sym_COLON_COLON] = ACTIONS(1676), - [anon_sym_AMP] = ACTIONS(1676), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PIPE] = ACTIONS(1676), - [anon_sym_move] = ACTIONS(1678), - [sym_integer_literal] = ACTIONS(1676), - [aux_sym_string_literal_token1] = ACTIONS(1676), - [sym_char_literal] = ACTIONS(1676), - [anon_sym_true] = ACTIONS(1678), - [anon_sym_false] = ACTIONS(1678), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1678), - [sym_super] = ACTIONS(1678), - [sym_crate] = ACTIONS(1678), - [sym_metavariable] = ACTIONS(1676), - [sym_raw_string_literal] = ACTIONS(1676), - [sym_float_literal] = ACTIONS(1676), - [sym_block_comment] = ACTIONS(3), - }, - [401] = { - [ts_builtin_sym_end] = ACTIONS(1680), - [sym_identifier] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_macro_rules_BANG] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1680), - [anon_sym_LBRACE] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_u8] = ACTIONS(1682), - [anon_sym_i8] = ACTIONS(1682), - [anon_sym_u16] = ACTIONS(1682), - [anon_sym_i16] = ACTIONS(1682), - [anon_sym_u32] = ACTIONS(1682), - [anon_sym_i32] = ACTIONS(1682), - [anon_sym_u64] = ACTIONS(1682), - [anon_sym_i64] = ACTIONS(1682), - [anon_sym_u128] = ACTIONS(1682), - [anon_sym_i128] = ACTIONS(1682), - [anon_sym_isize] = ACTIONS(1682), - [anon_sym_usize] = ACTIONS(1682), - [anon_sym_f32] = ACTIONS(1682), - [anon_sym_f64] = ACTIONS(1682), - [anon_sym_bool] = ACTIONS(1682), - [anon_sym_str] = ACTIONS(1682), - [anon_sym_char] = ACTIONS(1682), - [anon_sym_SQUOTE] = ACTIONS(1682), - [anon_sym_async] = ACTIONS(1682), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_default] = ACTIONS(1682), - [anon_sym_enum] = ACTIONS(1682), - [anon_sym_fn] = ACTIONS(1682), - [anon_sym_for] = ACTIONS(1682), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_impl] = ACTIONS(1682), - [anon_sym_let] = ACTIONS(1682), - [anon_sym_loop] = ACTIONS(1682), - [anon_sym_match] = ACTIONS(1682), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_pub] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_static] = ACTIONS(1682), - [anon_sym_struct] = ACTIONS(1682), - [anon_sym_trait] = ACTIONS(1682), - [anon_sym_type] = ACTIONS(1682), - [anon_sym_union] = ACTIONS(1682), - [anon_sym_unsafe] = ACTIONS(1682), - [anon_sym_use] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1682), - [anon_sym_POUND] = ACTIONS(1680), - [anon_sym_BANG] = ACTIONS(1680), - [anon_sym_extern] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_COLON_COLON] = ACTIONS(1680), - [anon_sym_AMP] = ACTIONS(1680), - [anon_sym_DOT_DOT] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_move] = ACTIONS(1682), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1680), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1682), - [anon_sym_false] = ACTIONS(1682), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1682), - [sym_super] = ACTIONS(1682), - [sym_crate] = ACTIONS(1682), - [sym_metavariable] = ACTIONS(1680), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), - [sym_block_comment] = ACTIONS(3), - }, - [402] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_macro_rules_BANG] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1684), - [anon_sym_u8] = ACTIONS(1686), - [anon_sym_i8] = ACTIONS(1686), - [anon_sym_u16] = ACTIONS(1686), - [anon_sym_i16] = ACTIONS(1686), - [anon_sym_u32] = ACTIONS(1686), - [anon_sym_i32] = ACTIONS(1686), - [anon_sym_u64] = ACTIONS(1686), - [anon_sym_i64] = ACTIONS(1686), - [anon_sym_u128] = ACTIONS(1686), - [anon_sym_i128] = ACTIONS(1686), - [anon_sym_isize] = ACTIONS(1686), - [anon_sym_usize] = ACTIONS(1686), - [anon_sym_f32] = ACTIONS(1686), - [anon_sym_f64] = ACTIONS(1686), - [anon_sym_bool] = ACTIONS(1686), - [anon_sym_str] = ACTIONS(1686), - [anon_sym_char] = ACTIONS(1686), - [anon_sym_SQUOTE] = ACTIONS(1686), - [anon_sym_async] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_const] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_enum] = ACTIONS(1686), - [anon_sym_fn] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_impl] = ACTIONS(1686), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_loop] = ACTIONS(1686), - [anon_sym_match] = ACTIONS(1686), - [anon_sym_mod] = ACTIONS(1686), - [anon_sym_pub] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_struct] = ACTIONS(1686), - [anon_sym_trait] = ACTIONS(1686), - [anon_sym_type] = ACTIONS(1686), - [anon_sym_union] = ACTIONS(1686), - [anon_sym_unsafe] = ACTIONS(1686), - [anon_sym_use] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_LT] = ACTIONS(1684), - [anon_sym_COLON_COLON] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1684), - [anon_sym_DOT_DOT] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1684), - [anon_sym_move] = ACTIONS(1686), - [sym_integer_literal] = ACTIONS(1684), - [aux_sym_string_literal_token1] = ACTIONS(1684), - [sym_char_literal] = ACTIONS(1684), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1684), - [sym_raw_string_literal] = ACTIONS(1684), - [sym_float_literal] = ACTIONS(1684), - [sym_block_comment] = ACTIONS(3), - }, - [403] = { - [ts_builtin_sym_end] = ACTIONS(1688), - [sym_identifier] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_macro_rules_BANG] = ACTIONS(1688), - [anon_sym_LPAREN] = ACTIONS(1688), - [anon_sym_LBRACE] = ACTIONS(1688), - [anon_sym_RBRACE] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(1688), - [anon_sym_u8] = ACTIONS(1690), - [anon_sym_i8] = ACTIONS(1690), - [anon_sym_u16] = ACTIONS(1690), - [anon_sym_i16] = ACTIONS(1690), - [anon_sym_u32] = ACTIONS(1690), - [anon_sym_i32] = ACTIONS(1690), - [anon_sym_u64] = ACTIONS(1690), - [anon_sym_i64] = ACTIONS(1690), - [anon_sym_u128] = ACTIONS(1690), - [anon_sym_i128] = ACTIONS(1690), - [anon_sym_isize] = ACTIONS(1690), - [anon_sym_usize] = ACTIONS(1690), - [anon_sym_f32] = ACTIONS(1690), - [anon_sym_f64] = ACTIONS(1690), - [anon_sym_bool] = ACTIONS(1690), - [anon_sym_str] = ACTIONS(1690), - [anon_sym_char] = ACTIONS(1690), - [anon_sym_SQUOTE] = ACTIONS(1690), - [anon_sym_async] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [anon_sym_default] = ACTIONS(1690), - [anon_sym_enum] = ACTIONS(1690), - [anon_sym_fn] = ACTIONS(1690), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_impl] = ACTIONS(1690), - [anon_sym_let] = ACTIONS(1690), - [anon_sym_loop] = ACTIONS(1690), - [anon_sym_match] = ACTIONS(1690), - [anon_sym_mod] = ACTIONS(1690), - [anon_sym_pub] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_static] = ACTIONS(1690), - [anon_sym_struct] = ACTIONS(1690), - [anon_sym_trait] = ACTIONS(1690), - [anon_sym_type] = ACTIONS(1690), - [anon_sym_union] = ACTIONS(1690), - [anon_sym_unsafe] = ACTIONS(1690), - [anon_sym_use] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1688), - [anon_sym_BANG] = ACTIONS(1688), - [anon_sym_extern] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_COLON_COLON] = ACTIONS(1688), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_DOT_DOT] = ACTIONS(1688), - [anon_sym_DASH] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1688), - [anon_sym_move] = ACTIONS(1690), - [sym_integer_literal] = ACTIONS(1688), - [aux_sym_string_literal_token1] = ACTIONS(1688), - [sym_char_literal] = ACTIONS(1688), - [anon_sym_true] = ACTIONS(1690), - [anon_sym_false] = ACTIONS(1690), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1690), - [sym_super] = ACTIONS(1690), - [sym_crate] = ACTIONS(1690), - [sym_metavariable] = ACTIONS(1688), - [sym_raw_string_literal] = ACTIONS(1688), - [sym_float_literal] = ACTIONS(1688), - [sym_block_comment] = ACTIONS(3), - }, - [404] = { - [ts_builtin_sym_end] = ACTIONS(1692), - [sym_identifier] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [anon_sym_macro_rules_BANG] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_RBRACE] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1692), - [anon_sym_u8] = ACTIONS(1694), - [anon_sym_i8] = ACTIONS(1694), - [anon_sym_u16] = ACTIONS(1694), - [anon_sym_i16] = ACTIONS(1694), - [anon_sym_u32] = ACTIONS(1694), - [anon_sym_i32] = ACTIONS(1694), - [anon_sym_u64] = ACTIONS(1694), - [anon_sym_i64] = ACTIONS(1694), - [anon_sym_u128] = ACTIONS(1694), - [anon_sym_i128] = ACTIONS(1694), - [anon_sym_isize] = ACTIONS(1694), - [anon_sym_usize] = ACTIONS(1694), - [anon_sym_f32] = ACTIONS(1694), - [anon_sym_f64] = ACTIONS(1694), - [anon_sym_bool] = ACTIONS(1694), - [anon_sym_str] = ACTIONS(1694), - [anon_sym_char] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1694), - [anon_sym_async] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_const] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1694), - [anon_sym_enum] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(1694), - [anon_sym_for] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_impl] = ACTIONS(1694), - [anon_sym_let] = ACTIONS(1694), - [anon_sym_loop] = ACTIONS(1694), - [anon_sym_match] = ACTIONS(1694), - [anon_sym_mod] = ACTIONS(1694), - [anon_sym_pub] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_static] = ACTIONS(1694), - [anon_sym_struct] = ACTIONS(1694), - [anon_sym_trait] = ACTIONS(1694), - [anon_sym_type] = ACTIONS(1694), - [anon_sym_union] = ACTIONS(1694), - [anon_sym_unsafe] = ACTIONS(1694), - [anon_sym_use] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_POUND] = ACTIONS(1692), - [anon_sym_BANG] = ACTIONS(1692), - [anon_sym_extern] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_COLON_COLON] = ACTIONS(1692), - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1692), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PIPE] = ACTIONS(1692), - [anon_sym_move] = ACTIONS(1694), - [sym_integer_literal] = ACTIONS(1692), - [aux_sym_string_literal_token1] = ACTIONS(1692), - [sym_char_literal] = ACTIONS(1692), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1694), - [sym_super] = ACTIONS(1694), - [sym_crate] = ACTIONS(1694), - [sym_metavariable] = ACTIONS(1692), - [sym_raw_string_literal] = ACTIONS(1692), - [sym_float_literal] = ACTIONS(1692), - [sym_block_comment] = ACTIONS(3), - }, - [405] = { - [ts_builtin_sym_end] = ACTIONS(1696), - [sym_identifier] = ACTIONS(1698), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_macro_rules_BANG] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_u8] = ACTIONS(1698), - [anon_sym_i8] = ACTIONS(1698), - [anon_sym_u16] = ACTIONS(1698), - [anon_sym_i16] = ACTIONS(1698), - [anon_sym_u32] = ACTIONS(1698), - [anon_sym_i32] = ACTIONS(1698), - [anon_sym_u64] = ACTIONS(1698), - [anon_sym_i64] = ACTIONS(1698), - [anon_sym_u128] = ACTIONS(1698), - [anon_sym_i128] = ACTIONS(1698), - [anon_sym_isize] = ACTIONS(1698), - [anon_sym_usize] = ACTIONS(1698), - [anon_sym_f32] = ACTIONS(1698), - [anon_sym_f64] = ACTIONS(1698), - [anon_sym_bool] = ACTIONS(1698), - [anon_sym_str] = ACTIONS(1698), - [anon_sym_char] = ACTIONS(1698), - [anon_sym_SQUOTE] = ACTIONS(1698), - [anon_sym_async] = ACTIONS(1698), - [anon_sym_break] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(1698), - [anon_sym_default] = ACTIONS(1698), - [anon_sym_enum] = ACTIONS(1698), - [anon_sym_fn] = ACTIONS(1698), - [anon_sym_for] = ACTIONS(1698), - [anon_sym_if] = ACTIONS(1698), - [anon_sym_impl] = ACTIONS(1698), - [anon_sym_let] = ACTIONS(1698), - [anon_sym_loop] = ACTIONS(1698), - [anon_sym_match] = ACTIONS(1698), - [anon_sym_mod] = ACTIONS(1698), - [anon_sym_pub] = ACTIONS(1698), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_static] = ACTIONS(1698), - [anon_sym_struct] = ACTIONS(1698), - [anon_sym_trait] = ACTIONS(1698), - [anon_sym_type] = ACTIONS(1698), - [anon_sym_union] = ACTIONS(1698), - [anon_sym_unsafe] = ACTIONS(1698), - [anon_sym_use] = ACTIONS(1698), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_extern] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1696), - [anon_sym_move] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [aux_sym_string_literal_token1] = ACTIONS(1696), - [sym_char_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1698), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1698), - [sym_super] = ACTIONS(1698), - [sym_crate] = ACTIONS(1698), - [sym_metavariable] = ACTIONS(1696), - [sym_raw_string_literal] = ACTIONS(1696), - [sym_float_literal] = ACTIONS(1696), - [sym_block_comment] = ACTIONS(3), - }, - [406] = { - [ts_builtin_sym_end] = ACTIONS(1700), - [sym_identifier] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_macro_rules_BANG] = ACTIONS(1700), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1700), - [anon_sym_RBRACE] = ACTIONS(1700), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_STAR] = ACTIONS(1700), - [anon_sym_u8] = ACTIONS(1702), - [anon_sym_i8] = ACTIONS(1702), - [anon_sym_u16] = ACTIONS(1702), - [anon_sym_i16] = ACTIONS(1702), - [anon_sym_u32] = ACTIONS(1702), - [anon_sym_i32] = ACTIONS(1702), - [anon_sym_u64] = ACTIONS(1702), - [anon_sym_i64] = ACTIONS(1702), - [anon_sym_u128] = ACTIONS(1702), - [anon_sym_i128] = ACTIONS(1702), - [anon_sym_isize] = ACTIONS(1702), - [anon_sym_usize] = ACTIONS(1702), - [anon_sym_f32] = ACTIONS(1702), - [anon_sym_f64] = ACTIONS(1702), - [anon_sym_bool] = ACTIONS(1702), - [anon_sym_str] = ACTIONS(1702), - [anon_sym_char] = ACTIONS(1702), - [anon_sym_SQUOTE] = ACTIONS(1702), - [anon_sym_async] = ACTIONS(1702), - [anon_sym_break] = ACTIONS(1702), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_continue] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1702), - [anon_sym_enum] = ACTIONS(1702), - [anon_sym_fn] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_impl] = ACTIONS(1702), - [anon_sym_let] = ACTIONS(1702), - [anon_sym_loop] = ACTIONS(1702), - [anon_sym_match] = ACTIONS(1702), - [anon_sym_mod] = ACTIONS(1702), - [anon_sym_pub] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_static] = ACTIONS(1702), - [anon_sym_struct] = ACTIONS(1702), - [anon_sym_trait] = ACTIONS(1702), - [anon_sym_type] = ACTIONS(1702), - [anon_sym_union] = ACTIONS(1702), - [anon_sym_unsafe] = ACTIONS(1702), - [anon_sym_use] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_BANG] = ACTIONS(1700), - [anon_sym_extern] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_COLON_COLON] = ACTIONS(1700), - [anon_sym_AMP] = ACTIONS(1700), - [anon_sym_DOT_DOT] = ACTIONS(1700), - [anon_sym_DASH] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1700), - [anon_sym_move] = ACTIONS(1702), - [sym_integer_literal] = ACTIONS(1700), - [aux_sym_string_literal_token1] = ACTIONS(1700), - [sym_char_literal] = ACTIONS(1700), - [anon_sym_true] = ACTIONS(1702), - [anon_sym_false] = ACTIONS(1702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1702), - [sym_super] = ACTIONS(1702), - [sym_crate] = ACTIONS(1702), - [sym_metavariable] = ACTIONS(1700), - [sym_raw_string_literal] = ACTIONS(1700), - [sym_float_literal] = ACTIONS(1700), - [sym_block_comment] = ACTIONS(3), - }, - [407] = { - [ts_builtin_sym_end] = ACTIONS(1704), - [sym_identifier] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1704), - [anon_sym_macro_rules_BANG] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1704), - [anon_sym_RBRACE] = ACTIONS(1704), - [anon_sym_LBRACK] = ACTIONS(1704), - [anon_sym_STAR] = ACTIONS(1704), - [anon_sym_u8] = ACTIONS(1706), - [anon_sym_i8] = ACTIONS(1706), - [anon_sym_u16] = ACTIONS(1706), - [anon_sym_i16] = ACTIONS(1706), - [anon_sym_u32] = ACTIONS(1706), - [anon_sym_i32] = ACTIONS(1706), - [anon_sym_u64] = ACTIONS(1706), - [anon_sym_i64] = ACTIONS(1706), - [anon_sym_u128] = ACTIONS(1706), - [anon_sym_i128] = ACTIONS(1706), - [anon_sym_isize] = ACTIONS(1706), - [anon_sym_usize] = ACTIONS(1706), - [anon_sym_f32] = ACTIONS(1706), - [anon_sym_f64] = ACTIONS(1706), - [anon_sym_bool] = ACTIONS(1706), - [anon_sym_str] = ACTIONS(1706), - [anon_sym_char] = ACTIONS(1706), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_async] = ACTIONS(1706), - [anon_sym_break] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(1706), - [anon_sym_default] = ACTIONS(1706), - [anon_sym_enum] = ACTIONS(1706), - [anon_sym_fn] = ACTIONS(1706), - [anon_sym_for] = ACTIONS(1706), - [anon_sym_if] = ACTIONS(1706), - [anon_sym_impl] = ACTIONS(1706), - [anon_sym_let] = ACTIONS(1706), - [anon_sym_loop] = ACTIONS(1706), - [anon_sym_match] = ACTIONS(1706), - [anon_sym_mod] = ACTIONS(1706), - [anon_sym_pub] = ACTIONS(1706), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_static] = ACTIONS(1706), - [anon_sym_struct] = ACTIONS(1706), - [anon_sym_trait] = ACTIONS(1706), - [anon_sym_type] = ACTIONS(1706), - [anon_sym_union] = ACTIONS(1706), - [anon_sym_unsafe] = ACTIONS(1706), - [anon_sym_use] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(1704), - [anon_sym_BANG] = ACTIONS(1704), - [anon_sym_extern] = ACTIONS(1706), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_COLON_COLON] = ACTIONS(1704), - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_DOT_DOT] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1704), - [anon_sym_move] = ACTIONS(1706), - [sym_integer_literal] = ACTIONS(1704), - [aux_sym_string_literal_token1] = ACTIONS(1704), - [sym_char_literal] = ACTIONS(1704), - [anon_sym_true] = ACTIONS(1706), - [anon_sym_false] = ACTIONS(1706), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1706), - [sym_super] = ACTIONS(1706), - [sym_crate] = ACTIONS(1706), - [sym_metavariable] = ACTIONS(1704), - [sym_raw_string_literal] = ACTIONS(1704), - [sym_float_literal] = ACTIONS(1704), - [sym_block_comment] = ACTIONS(3), - }, - [408] = { - [ts_builtin_sym_end] = ACTIONS(1708), - [sym_identifier] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1708), - [anon_sym_macro_rules_BANG] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_RBRACE] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(1708), - [anon_sym_u8] = ACTIONS(1710), - [anon_sym_i8] = ACTIONS(1710), - [anon_sym_u16] = ACTIONS(1710), - [anon_sym_i16] = ACTIONS(1710), - [anon_sym_u32] = ACTIONS(1710), - [anon_sym_i32] = ACTIONS(1710), - [anon_sym_u64] = ACTIONS(1710), - [anon_sym_i64] = ACTIONS(1710), - [anon_sym_u128] = ACTIONS(1710), - [anon_sym_i128] = ACTIONS(1710), - [anon_sym_isize] = ACTIONS(1710), - [anon_sym_usize] = ACTIONS(1710), - [anon_sym_f32] = ACTIONS(1710), - [anon_sym_f64] = ACTIONS(1710), - [anon_sym_bool] = ACTIONS(1710), - [anon_sym_str] = ACTIONS(1710), - [anon_sym_char] = ACTIONS(1710), - [anon_sym_SQUOTE] = ACTIONS(1710), - [anon_sym_async] = ACTIONS(1710), - [anon_sym_break] = ACTIONS(1710), - [anon_sym_const] = ACTIONS(1710), - [anon_sym_continue] = ACTIONS(1710), - [anon_sym_default] = ACTIONS(1710), - [anon_sym_enum] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1710), - [anon_sym_for] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_impl] = ACTIONS(1710), - [anon_sym_let] = ACTIONS(1710), - [anon_sym_loop] = ACTIONS(1710), - [anon_sym_match] = ACTIONS(1710), - [anon_sym_mod] = ACTIONS(1710), - [anon_sym_pub] = ACTIONS(1710), - [anon_sym_return] = ACTIONS(1710), - [anon_sym_static] = ACTIONS(1710), - [anon_sym_struct] = ACTIONS(1710), - [anon_sym_trait] = ACTIONS(1710), - [anon_sym_type] = ACTIONS(1710), - [anon_sym_union] = ACTIONS(1710), - [anon_sym_unsafe] = ACTIONS(1710), - [anon_sym_use] = ACTIONS(1710), - [anon_sym_while] = ACTIONS(1710), - [anon_sym_POUND] = ACTIONS(1708), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_extern] = ACTIONS(1710), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_COLON_COLON] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_DOT_DOT] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_move] = ACTIONS(1710), - [sym_integer_literal] = ACTIONS(1708), - [aux_sym_string_literal_token1] = ACTIONS(1708), - [sym_char_literal] = ACTIONS(1708), - [anon_sym_true] = ACTIONS(1710), - [anon_sym_false] = ACTIONS(1710), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1710), - [sym_super] = ACTIONS(1710), - [sym_crate] = ACTIONS(1710), - [sym_metavariable] = ACTIONS(1708), - [sym_raw_string_literal] = ACTIONS(1708), - [sym_float_literal] = ACTIONS(1708), - [sym_block_comment] = ACTIONS(3), - }, - [409] = { - [ts_builtin_sym_end] = ACTIONS(1712), - [sym_identifier] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_macro_rules_BANG] = ACTIONS(1712), - [anon_sym_LPAREN] = ACTIONS(1712), - [anon_sym_LBRACE] = ACTIONS(1712), - [anon_sym_RBRACE] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1712), - [anon_sym_STAR] = ACTIONS(1712), - [anon_sym_u8] = ACTIONS(1714), - [anon_sym_i8] = ACTIONS(1714), - [anon_sym_u16] = ACTIONS(1714), - [anon_sym_i16] = ACTIONS(1714), - [anon_sym_u32] = ACTIONS(1714), - [anon_sym_i32] = ACTIONS(1714), - [anon_sym_u64] = ACTIONS(1714), - [anon_sym_i64] = ACTIONS(1714), - [anon_sym_u128] = ACTIONS(1714), - [anon_sym_i128] = ACTIONS(1714), - [anon_sym_isize] = ACTIONS(1714), - [anon_sym_usize] = ACTIONS(1714), - [anon_sym_f32] = ACTIONS(1714), - [anon_sym_f64] = ACTIONS(1714), - [anon_sym_bool] = ACTIONS(1714), - [anon_sym_str] = ACTIONS(1714), - [anon_sym_char] = ACTIONS(1714), - [anon_sym_SQUOTE] = ACTIONS(1714), - [anon_sym_async] = ACTIONS(1714), - [anon_sym_break] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(1714), - [anon_sym_default] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), - [anon_sym_fn] = ACTIONS(1714), - [anon_sym_for] = ACTIONS(1714), - [anon_sym_if] = ACTIONS(1714), - [anon_sym_impl] = ACTIONS(1714), - [anon_sym_let] = ACTIONS(1714), - [anon_sym_loop] = ACTIONS(1714), - [anon_sym_match] = ACTIONS(1714), - [anon_sym_mod] = ACTIONS(1714), - [anon_sym_pub] = ACTIONS(1714), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_struct] = ACTIONS(1714), - [anon_sym_trait] = ACTIONS(1714), - [anon_sym_type] = ACTIONS(1714), - [anon_sym_union] = ACTIONS(1714), - [anon_sym_unsafe] = ACTIONS(1714), - [anon_sym_use] = ACTIONS(1714), - [anon_sym_while] = ACTIONS(1714), - [anon_sym_POUND] = ACTIONS(1712), - [anon_sym_BANG] = ACTIONS(1712), - [anon_sym_extern] = ACTIONS(1714), - [anon_sym_LT] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1712), - [anon_sym_AMP] = ACTIONS(1712), - [anon_sym_DOT_DOT] = ACTIONS(1712), - [anon_sym_DASH] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(1712), - [anon_sym_move] = ACTIONS(1714), - [sym_integer_literal] = ACTIONS(1712), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1712), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1714), - [sym_super] = ACTIONS(1714), - [sym_crate] = ACTIONS(1714), - [sym_metavariable] = ACTIONS(1712), - [sym_raw_string_literal] = ACTIONS(1712), - [sym_float_literal] = ACTIONS(1712), - [sym_block_comment] = ACTIONS(3), - }, - [410] = { - [ts_builtin_sym_end] = ACTIONS(1716), - [sym_identifier] = ACTIONS(1718), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_macro_rules_BANG] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1716), - [anon_sym_RBRACE] = ACTIONS(1716), - [anon_sym_LBRACK] = ACTIONS(1716), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_u8] = ACTIONS(1718), - [anon_sym_i8] = ACTIONS(1718), - [anon_sym_u16] = ACTIONS(1718), - [anon_sym_i16] = ACTIONS(1718), - [anon_sym_u32] = ACTIONS(1718), - [anon_sym_i32] = ACTIONS(1718), - [anon_sym_u64] = ACTIONS(1718), - [anon_sym_i64] = ACTIONS(1718), - [anon_sym_u128] = ACTIONS(1718), - [anon_sym_i128] = ACTIONS(1718), - [anon_sym_isize] = ACTIONS(1718), - [anon_sym_usize] = ACTIONS(1718), - [anon_sym_f32] = ACTIONS(1718), - [anon_sym_f64] = ACTIONS(1718), - [anon_sym_bool] = ACTIONS(1718), - [anon_sym_str] = ACTIONS(1718), - [anon_sym_char] = ACTIONS(1718), - [anon_sym_SQUOTE] = ACTIONS(1718), - [anon_sym_async] = ACTIONS(1718), - [anon_sym_break] = ACTIONS(1718), - [anon_sym_const] = ACTIONS(1718), - [anon_sym_continue] = ACTIONS(1718), - [anon_sym_default] = ACTIONS(1718), - [anon_sym_enum] = ACTIONS(1718), - [anon_sym_fn] = ACTIONS(1718), - [anon_sym_for] = ACTIONS(1718), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_impl] = ACTIONS(1718), - [anon_sym_let] = ACTIONS(1718), - [anon_sym_loop] = ACTIONS(1718), - [anon_sym_match] = ACTIONS(1718), - [anon_sym_mod] = ACTIONS(1718), - [anon_sym_pub] = ACTIONS(1718), - [anon_sym_return] = ACTIONS(1718), - [anon_sym_static] = ACTIONS(1718), - [anon_sym_struct] = ACTIONS(1718), - [anon_sym_trait] = ACTIONS(1718), - [anon_sym_type] = ACTIONS(1718), - [anon_sym_union] = ACTIONS(1718), - [anon_sym_unsafe] = ACTIONS(1718), - [anon_sym_use] = ACTIONS(1718), - [anon_sym_while] = ACTIONS(1718), - [anon_sym_POUND] = ACTIONS(1716), - [anon_sym_BANG] = ACTIONS(1716), - [anon_sym_extern] = ACTIONS(1718), - [anon_sym_LT] = ACTIONS(1716), - [anon_sym_COLON_COLON] = ACTIONS(1716), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_DOT_DOT] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_move] = ACTIONS(1718), - [sym_integer_literal] = ACTIONS(1716), - [aux_sym_string_literal_token1] = ACTIONS(1716), - [sym_char_literal] = ACTIONS(1716), - [anon_sym_true] = ACTIONS(1718), - [anon_sym_false] = ACTIONS(1718), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1718), - [sym_super] = ACTIONS(1718), - [sym_crate] = ACTIONS(1718), - [sym_metavariable] = ACTIONS(1716), - [sym_raw_string_literal] = ACTIONS(1716), - [sym_float_literal] = ACTIONS(1716), - [sym_block_comment] = ACTIONS(3), - }, - [411] = { - [ts_builtin_sym_end] = ACTIONS(1720), - [sym_identifier] = ACTIONS(1722), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_macro_rules_BANG] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_RBRACE] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1720), - [anon_sym_u8] = ACTIONS(1722), - [anon_sym_i8] = ACTIONS(1722), - [anon_sym_u16] = ACTIONS(1722), - [anon_sym_i16] = ACTIONS(1722), - [anon_sym_u32] = ACTIONS(1722), - [anon_sym_i32] = ACTIONS(1722), - [anon_sym_u64] = ACTIONS(1722), - [anon_sym_i64] = ACTIONS(1722), - [anon_sym_u128] = ACTIONS(1722), - [anon_sym_i128] = ACTIONS(1722), - [anon_sym_isize] = ACTIONS(1722), - [anon_sym_usize] = ACTIONS(1722), - [anon_sym_f32] = ACTIONS(1722), - [anon_sym_f64] = ACTIONS(1722), - [anon_sym_bool] = ACTIONS(1722), - [anon_sym_str] = ACTIONS(1722), - [anon_sym_char] = ACTIONS(1722), - [anon_sym_SQUOTE] = ACTIONS(1722), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_impl] = ACTIONS(1722), - [anon_sym_let] = ACTIONS(1722), - [anon_sym_loop] = ACTIONS(1722), - [anon_sym_match] = ACTIONS(1722), - [anon_sym_mod] = ACTIONS(1722), - [anon_sym_pub] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_trait] = ACTIONS(1722), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_unsafe] = ACTIONS(1722), - [anon_sym_use] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_POUND] = ACTIONS(1720), - [anon_sym_BANG] = ACTIONS(1720), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(1720), - [anon_sym_COLON_COLON] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1720), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_move] = ACTIONS(1722), - [sym_integer_literal] = ACTIONS(1720), - [aux_sym_string_literal_token1] = ACTIONS(1720), - [sym_char_literal] = ACTIONS(1720), - [anon_sym_true] = ACTIONS(1722), - [anon_sym_false] = ACTIONS(1722), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_crate] = ACTIONS(1722), - [sym_metavariable] = ACTIONS(1720), - [sym_raw_string_literal] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1720), - [sym_block_comment] = ACTIONS(3), - }, - [412] = { - [ts_builtin_sym_end] = ACTIONS(1724), - [sym_identifier] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_macro_rules_BANG] = ACTIONS(1724), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_u8] = ACTIONS(1726), - [anon_sym_i8] = ACTIONS(1726), - [anon_sym_u16] = ACTIONS(1726), - [anon_sym_i16] = ACTIONS(1726), - [anon_sym_u32] = ACTIONS(1726), - [anon_sym_i32] = ACTIONS(1726), - [anon_sym_u64] = ACTIONS(1726), - [anon_sym_i64] = ACTIONS(1726), - [anon_sym_u128] = ACTIONS(1726), - [anon_sym_i128] = ACTIONS(1726), - [anon_sym_isize] = ACTIONS(1726), - [anon_sym_usize] = ACTIONS(1726), - [anon_sym_f32] = ACTIONS(1726), - [anon_sym_f64] = ACTIONS(1726), - [anon_sym_bool] = ACTIONS(1726), - [anon_sym_str] = ACTIONS(1726), - [anon_sym_char] = ACTIONS(1726), - [anon_sym_SQUOTE] = ACTIONS(1726), - [anon_sym_async] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_fn] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_impl] = ACTIONS(1726), - [anon_sym_let] = ACTIONS(1726), - [anon_sym_loop] = ACTIONS(1726), - [anon_sym_match] = ACTIONS(1726), - [anon_sym_mod] = ACTIONS(1726), - [anon_sym_pub] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_trait] = ACTIONS(1726), - [anon_sym_type] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_unsafe] = ACTIONS(1726), - [anon_sym_use] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_POUND] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_COLON_COLON] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_DOT_DOT] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1724), - [anon_sym_PIPE] = ACTIONS(1724), - [anon_sym_move] = ACTIONS(1726), - [sym_integer_literal] = ACTIONS(1724), - [aux_sym_string_literal_token1] = ACTIONS(1724), - [sym_char_literal] = ACTIONS(1724), - [anon_sym_true] = ACTIONS(1726), - [anon_sym_false] = ACTIONS(1726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_crate] = ACTIONS(1726), - [sym_metavariable] = ACTIONS(1724), - [sym_raw_string_literal] = ACTIONS(1724), - [sym_float_literal] = ACTIONS(1724), - [sym_block_comment] = ACTIONS(3), - }, - [413] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_macro_rules_BANG] = ACTIONS(1728), - [anon_sym_LPAREN] = ACTIONS(1728), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_u8] = ACTIONS(1730), - [anon_sym_i8] = ACTIONS(1730), - [anon_sym_u16] = ACTIONS(1730), - [anon_sym_i16] = ACTIONS(1730), - [anon_sym_u32] = ACTIONS(1730), - [anon_sym_i32] = ACTIONS(1730), - [anon_sym_u64] = ACTIONS(1730), - [anon_sym_i64] = ACTIONS(1730), - [anon_sym_u128] = ACTIONS(1730), - [anon_sym_i128] = ACTIONS(1730), - [anon_sym_isize] = ACTIONS(1730), - [anon_sym_usize] = ACTIONS(1730), - [anon_sym_f32] = ACTIONS(1730), - [anon_sym_f64] = ACTIONS(1730), - [anon_sym_bool] = ACTIONS(1730), - [anon_sym_str] = ACTIONS(1730), - [anon_sym_char] = ACTIONS(1730), - [anon_sym_SQUOTE] = ACTIONS(1730), - [anon_sym_async] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_const] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_default] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_fn] = ACTIONS(1730), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_impl] = ACTIONS(1730), - [anon_sym_let] = ACTIONS(1730), - [anon_sym_loop] = ACTIONS(1730), - [anon_sym_match] = ACTIONS(1730), - [anon_sym_mod] = ACTIONS(1730), - [anon_sym_pub] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_static] = ACTIONS(1730), - [anon_sym_struct] = ACTIONS(1730), - [anon_sym_trait] = ACTIONS(1730), - [anon_sym_type] = ACTIONS(1730), - [anon_sym_union] = ACTIONS(1730), - [anon_sym_unsafe] = ACTIONS(1730), - [anon_sym_use] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_POUND] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_extern] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1728), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_DOT_DOT] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_move] = ACTIONS(1730), - [sym_integer_literal] = ACTIONS(1728), - [aux_sym_string_literal_token1] = ACTIONS(1728), - [sym_char_literal] = ACTIONS(1728), - [anon_sym_true] = ACTIONS(1730), - [anon_sym_false] = ACTIONS(1730), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1730), - [sym_super] = ACTIONS(1730), - [sym_crate] = ACTIONS(1730), - [sym_metavariable] = ACTIONS(1728), - [sym_raw_string_literal] = ACTIONS(1728), - [sym_float_literal] = ACTIONS(1728), - [sym_block_comment] = ACTIONS(3), - }, - [414] = { - [ts_builtin_sym_end] = ACTIONS(1732), - [sym_identifier] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_macro_rules_BANG] = ACTIONS(1732), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_RBRACE] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_u8] = ACTIONS(1734), - [anon_sym_i8] = ACTIONS(1734), - [anon_sym_u16] = ACTIONS(1734), - [anon_sym_i16] = ACTIONS(1734), - [anon_sym_u32] = ACTIONS(1734), - [anon_sym_i32] = ACTIONS(1734), - [anon_sym_u64] = ACTIONS(1734), - [anon_sym_i64] = ACTIONS(1734), - [anon_sym_u128] = ACTIONS(1734), - [anon_sym_i128] = ACTIONS(1734), - [anon_sym_isize] = ACTIONS(1734), - [anon_sym_usize] = ACTIONS(1734), - [anon_sym_f32] = ACTIONS(1734), - [anon_sym_f64] = ACTIONS(1734), - [anon_sym_bool] = ACTIONS(1734), - [anon_sym_str] = ACTIONS(1734), - [anon_sym_char] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1734), - [anon_sym_async] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_const] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_default] = ACTIONS(1734), - [anon_sym_enum] = ACTIONS(1734), - [anon_sym_fn] = ACTIONS(1734), - [anon_sym_for] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_impl] = ACTIONS(1734), - [anon_sym_let] = ACTIONS(1734), - [anon_sym_loop] = ACTIONS(1734), - [anon_sym_match] = ACTIONS(1734), - [anon_sym_mod] = ACTIONS(1734), - [anon_sym_pub] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_static] = ACTIONS(1734), - [anon_sym_struct] = ACTIONS(1734), - [anon_sym_trait] = ACTIONS(1734), - [anon_sym_type] = ACTIONS(1734), - [anon_sym_union] = ACTIONS(1734), - [anon_sym_unsafe] = ACTIONS(1734), - [anon_sym_use] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_POUND] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_move] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [aux_sym_string_literal_token1] = ACTIONS(1732), - [sym_char_literal] = ACTIONS(1732), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1734), - [sym_super] = ACTIONS(1734), - [sym_crate] = ACTIONS(1734), - [sym_metavariable] = ACTIONS(1732), - [sym_raw_string_literal] = ACTIONS(1732), - [sym_float_literal] = ACTIONS(1732), - [sym_block_comment] = ACTIONS(3), - }, - [415] = { - [ts_builtin_sym_end] = ACTIONS(1736), - [sym_identifier] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_macro_rules_BANG] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_SQUOTE] = ACTIONS(1738), - [anon_sym_async] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_fn] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_impl] = ACTIONS(1738), - [anon_sym_let] = ACTIONS(1738), - [anon_sym_loop] = ACTIONS(1738), - [anon_sym_match] = ACTIONS(1738), - [anon_sym_mod] = ACTIONS(1738), - [anon_sym_pub] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_trait] = ACTIONS(1738), - [anon_sym_type] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_unsafe] = ACTIONS(1738), - [anon_sym_use] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1736), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1736), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_AMP] = ACTIONS(1736), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_move] = ACTIONS(1738), - [sym_integer_literal] = ACTIONS(1736), - [aux_sym_string_literal_token1] = ACTIONS(1736), - [sym_char_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1738), - [anon_sym_false] = ACTIONS(1738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_crate] = ACTIONS(1738), - [sym_metavariable] = ACTIONS(1736), - [sym_raw_string_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1736), - [sym_block_comment] = ACTIONS(3), - }, - [416] = { - [ts_builtin_sym_end] = ACTIONS(1740), - [sym_identifier] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_macro_rules_BANG] = ACTIONS(1740), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_u8] = ACTIONS(1742), - [anon_sym_i8] = ACTIONS(1742), - [anon_sym_u16] = ACTIONS(1742), - [anon_sym_i16] = ACTIONS(1742), - [anon_sym_u32] = ACTIONS(1742), - [anon_sym_i32] = ACTIONS(1742), - [anon_sym_u64] = ACTIONS(1742), - [anon_sym_i64] = ACTIONS(1742), - [anon_sym_u128] = ACTIONS(1742), - [anon_sym_i128] = ACTIONS(1742), - [anon_sym_isize] = ACTIONS(1742), - [anon_sym_usize] = ACTIONS(1742), - [anon_sym_f32] = ACTIONS(1742), - [anon_sym_f64] = ACTIONS(1742), - [anon_sym_bool] = ACTIONS(1742), - [anon_sym_str] = ACTIONS(1742), - [anon_sym_char] = ACTIONS(1742), - [anon_sym_SQUOTE] = ACTIONS(1742), - [anon_sym_async] = ACTIONS(1742), - [anon_sym_break] = ACTIONS(1742), - [anon_sym_const] = ACTIONS(1742), - [anon_sym_continue] = ACTIONS(1742), - [anon_sym_default] = ACTIONS(1742), - [anon_sym_enum] = ACTIONS(1742), - [anon_sym_fn] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(1742), - [anon_sym_if] = ACTIONS(1742), - [anon_sym_impl] = ACTIONS(1742), - [anon_sym_let] = ACTIONS(1742), - [anon_sym_loop] = ACTIONS(1742), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_mod] = ACTIONS(1742), - [anon_sym_pub] = ACTIONS(1742), - [anon_sym_return] = ACTIONS(1742), - [anon_sym_static] = ACTIONS(1742), - [anon_sym_struct] = ACTIONS(1742), - [anon_sym_trait] = ACTIONS(1742), - [anon_sym_type] = ACTIONS(1742), - [anon_sym_union] = ACTIONS(1742), - [anon_sym_unsafe] = ACTIONS(1742), - [anon_sym_use] = ACTIONS(1742), - [anon_sym_while] = ACTIONS(1742), - [anon_sym_POUND] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_extern] = ACTIONS(1742), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_COLON_COLON] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_DOT_DOT] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_move] = ACTIONS(1742), - [sym_integer_literal] = ACTIONS(1740), - [aux_sym_string_literal_token1] = ACTIONS(1740), - [sym_char_literal] = ACTIONS(1740), - [anon_sym_true] = ACTIONS(1742), - [anon_sym_false] = ACTIONS(1742), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1742), - [sym_super] = ACTIONS(1742), - [sym_crate] = ACTIONS(1742), - [sym_metavariable] = ACTIONS(1740), - [sym_raw_string_literal] = ACTIONS(1740), - [sym_float_literal] = ACTIONS(1740), - [sym_block_comment] = ACTIONS(3), - }, - [417] = { - [ts_builtin_sym_end] = ACTIONS(1744), - [sym_identifier] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_macro_rules_BANG] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1744), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1744), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_u8] = ACTIONS(1746), - [anon_sym_i8] = ACTIONS(1746), - [anon_sym_u16] = ACTIONS(1746), - [anon_sym_i16] = ACTIONS(1746), - [anon_sym_u32] = ACTIONS(1746), - [anon_sym_i32] = ACTIONS(1746), - [anon_sym_u64] = ACTIONS(1746), - [anon_sym_i64] = ACTIONS(1746), - [anon_sym_u128] = ACTIONS(1746), - [anon_sym_i128] = ACTIONS(1746), - [anon_sym_isize] = ACTIONS(1746), - [anon_sym_usize] = ACTIONS(1746), - [anon_sym_f32] = ACTIONS(1746), - [anon_sym_f64] = ACTIONS(1746), - [anon_sym_bool] = ACTIONS(1746), - [anon_sym_str] = ACTIONS(1746), - [anon_sym_char] = ACTIONS(1746), - [anon_sym_SQUOTE] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_fn] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_impl] = ACTIONS(1746), - [anon_sym_let] = ACTIONS(1746), - [anon_sym_loop] = ACTIONS(1746), - [anon_sym_match] = ACTIONS(1746), - [anon_sym_mod] = ACTIONS(1746), - [anon_sym_pub] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_trait] = ACTIONS(1746), - [anon_sym_type] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(1746), - [anon_sym_use] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_POUND] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1744), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1744), - [anon_sym_DOT_DOT] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1744), - [anon_sym_move] = ACTIONS(1746), - [sym_integer_literal] = ACTIONS(1744), - [aux_sym_string_literal_token1] = ACTIONS(1744), - [sym_char_literal] = ACTIONS(1744), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_crate] = ACTIONS(1746), - [sym_metavariable] = ACTIONS(1744), - [sym_raw_string_literal] = ACTIONS(1744), - [sym_float_literal] = ACTIONS(1744), - [sym_block_comment] = ACTIONS(3), - }, - [418] = { - [ts_builtin_sym_end] = ACTIONS(1748), - [sym_identifier] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_macro_rules_BANG] = ACTIONS(1748), - [anon_sym_LPAREN] = ACTIONS(1748), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_RBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_u8] = ACTIONS(1750), - [anon_sym_i8] = ACTIONS(1750), - [anon_sym_u16] = ACTIONS(1750), - [anon_sym_i16] = ACTIONS(1750), - [anon_sym_u32] = ACTIONS(1750), - [anon_sym_i32] = ACTIONS(1750), - [anon_sym_u64] = ACTIONS(1750), - [anon_sym_i64] = ACTIONS(1750), - [anon_sym_u128] = ACTIONS(1750), - [anon_sym_i128] = ACTIONS(1750), - [anon_sym_isize] = ACTIONS(1750), - [anon_sym_usize] = ACTIONS(1750), - [anon_sym_f32] = ACTIONS(1750), - [anon_sym_f64] = ACTIONS(1750), - [anon_sym_bool] = ACTIONS(1750), - [anon_sym_str] = ACTIONS(1750), - [anon_sym_char] = ACTIONS(1750), - [anon_sym_SQUOTE] = ACTIONS(1750), - [anon_sym_async] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_fn] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_impl] = ACTIONS(1750), - [anon_sym_let] = ACTIONS(1750), - [anon_sym_loop] = ACTIONS(1750), - [anon_sym_match] = ACTIONS(1750), - [anon_sym_mod] = ACTIONS(1750), - [anon_sym_pub] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_trait] = ACTIONS(1750), - [anon_sym_type] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_unsafe] = ACTIONS(1750), - [anon_sym_use] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_POUND] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1748), - [anon_sym_COLON_COLON] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_DOT_DOT] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_PIPE] = ACTIONS(1748), - [anon_sym_move] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1748), - [aux_sym_string_literal_token1] = ACTIONS(1748), - [sym_char_literal] = ACTIONS(1748), - [anon_sym_true] = ACTIONS(1750), - [anon_sym_false] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_crate] = ACTIONS(1750), - [sym_metavariable] = ACTIONS(1748), - [sym_raw_string_literal] = ACTIONS(1748), - [sym_float_literal] = ACTIONS(1748), - [sym_block_comment] = ACTIONS(3), - }, - [419] = { - [ts_builtin_sym_end] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_macro_rules_BANG] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_RBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_u8] = ACTIONS(1754), - [anon_sym_i8] = ACTIONS(1754), - [anon_sym_u16] = ACTIONS(1754), - [anon_sym_i16] = ACTIONS(1754), - [anon_sym_u32] = ACTIONS(1754), - [anon_sym_i32] = ACTIONS(1754), - [anon_sym_u64] = ACTIONS(1754), - [anon_sym_i64] = ACTIONS(1754), - [anon_sym_u128] = ACTIONS(1754), - [anon_sym_i128] = ACTIONS(1754), - [anon_sym_isize] = ACTIONS(1754), - [anon_sym_usize] = ACTIONS(1754), - [anon_sym_f32] = ACTIONS(1754), - [anon_sym_f64] = ACTIONS(1754), - [anon_sym_bool] = ACTIONS(1754), - [anon_sym_str] = ACTIONS(1754), - [anon_sym_char] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1754), - [anon_sym_async] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_fn] = ACTIONS(1754), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_impl] = ACTIONS(1754), - [anon_sym_let] = ACTIONS(1754), - [anon_sym_loop] = ACTIONS(1754), - [anon_sym_match] = ACTIONS(1754), - [anon_sym_mod] = ACTIONS(1754), - [anon_sym_pub] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(1754), - [anon_sym_trait] = ACTIONS(1754), - [anon_sym_type] = ACTIONS(1754), - [anon_sym_union] = ACTIONS(1754), - [anon_sym_unsafe] = ACTIONS(1754), - [anon_sym_use] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_POUND] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_extern] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_PIPE] = ACTIONS(1752), - [anon_sym_move] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [aux_sym_string_literal_token1] = ACTIONS(1752), - [sym_char_literal] = ACTIONS(1752), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1754), - [sym_super] = ACTIONS(1754), - [sym_crate] = ACTIONS(1754), - [sym_metavariable] = ACTIONS(1752), - [sym_raw_string_literal] = ACTIONS(1752), - [sym_float_literal] = ACTIONS(1752), - [sym_block_comment] = ACTIONS(3), - }, - [420] = { - [ts_builtin_sym_end] = ACTIONS(1756), - [sym_identifier] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_macro_rules_BANG] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_u8] = ACTIONS(1758), - [anon_sym_i8] = ACTIONS(1758), - [anon_sym_u16] = ACTIONS(1758), - [anon_sym_i16] = ACTIONS(1758), - [anon_sym_u32] = ACTIONS(1758), - [anon_sym_i32] = ACTIONS(1758), - [anon_sym_u64] = ACTIONS(1758), - [anon_sym_i64] = ACTIONS(1758), - [anon_sym_u128] = ACTIONS(1758), - [anon_sym_i128] = ACTIONS(1758), - [anon_sym_isize] = ACTIONS(1758), - [anon_sym_usize] = ACTIONS(1758), - [anon_sym_f32] = ACTIONS(1758), - [anon_sym_f64] = ACTIONS(1758), - [anon_sym_bool] = ACTIONS(1758), - [anon_sym_str] = ACTIONS(1758), - [anon_sym_char] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1758), - [anon_sym_async] = ACTIONS(1758), - [anon_sym_break] = ACTIONS(1758), - [anon_sym_const] = ACTIONS(1758), - [anon_sym_continue] = ACTIONS(1758), - [anon_sym_default] = ACTIONS(1758), - [anon_sym_enum] = ACTIONS(1758), - [anon_sym_fn] = ACTIONS(1758), - [anon_sym_for] = ACTIONS(1758), - [anon_sym_if] = ACTIONS(1758), - [anon_sym_impl] = ACTIONS(1758), - [anon_sym_let] = ACTIONS(1758), - [anon_sym_loop] = ACTIONS(1758), - [anon_sym_match] = ACTIONS(1758), - [anon_sym_mod] = ACTIONS(1758), - [anon_sym_pub] = ACTIONS(1758), - [anon_sym_return] = ACTIONS(1758), - [anon_sym_static] = ACTIONS(1758), - [anon_sym_struct] = ACTIONS(1758), - [anon_sym_trait] = ACTIONS(1758), - [anon_sym_type] = ACTIONS(1758), - [anon_sym_union] = ACTIONS(1758), - [anon_sym_unsafe] = ACTIONS(1758), - [anon_sym_use] = ACTIONS(1758), - [anon_sym_while] = ACTIONS(1758), - [anon_sym_POUND] = ACTIONS(1756), - [anon_sym_BANG] = ACTIONS(1756), - [anon_sym_extern] = ACTIONS(1758), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_COLON_COLON] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_move] = ACTIONS(1758), - [sym_integer_literal] = ACTIONS(1756), - [aux_sym_string_literal_token1] = ACTIONS(1756), - [sym_char_literal] = ACTIONS(1756), - [anon_sym_true] = ACTIONS(1758), - [anon_sym_false] = ACTIONS(1758), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1758), - [sym_super] = ACTIONS(1758), - [sym_crate] = ACTIONS(1758), - [sym_metavariable] = ACTIONS(1756), - [sym_raw_string_literal] = ACTIONS(1756), - [sym_float_literal] = ACTIONS(1756), - [sym_block_comment] = ACTIONS(3), - }, - [421] = { - [ts_builtin_sym_end] = ACTIONS(1760), - [sym_identifier] = ACTIONS(1762), - [anon_sym_SEMI] = ACTIONS(1760), - [anon_sym_macro_rules_BANG] = ACTIONS(1760), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_RBRACE] = ACTIONS(1760), - [anon_sym_LBRACK] = ACTIONS(1760), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_u8] = ACTIONS(1762), - [anon_sym_i8] = ACTIONS(1762), - [anon_sym_u16] = ACTIONS(1762), - [anon_sym_i16] = ACTIONS(1762), - [anon_sym_u32] = ACTIONS(1762), - [anon_sym_i32] = ACTIONS(1762), - [anon_sym_u64] = ACTIONS(1762), - [anon_sym_i64] = ACTIONS(1762), - [anon_sym_u128] = ACTIONS(1762), - [anon_sym_i128] = ACTIONS(1762), - [anon_sym_isize] = ACTIONS(1762), - [anon_sym_usize] = ACTIONS(1762), - [anon_sym_f32] = ACTIONS(1762), - [anon_sym_f64] = ACTIONS(1762), - [anon_sym_bool] = ACTIONS(1762), - [anon_sym_str] = ACTIONS(1762), - [anon_sym_char] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1762), - [anon_sym_async] = ACTIONS(1762), - [anon_sym_break] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [anon_sym_continue] = ACTIONS(1762), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_enum] = ACTIONS(1762), - [anon_sym_fn] = ACTIONS(1762), - [anon_sym_for] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(1762), - [anon_sym_impl] = ACTIONS(1762), - [anon_sym_let] = ACTIONS(1762), - [anon_sym_loop] = ACTIONS(1762), - [anon_sym_match] = ACTIONS(1762), - [anon_sym_mod] = ACTIONS(1762), - [anon_sym_pub] = ACTIONS(1762), - [anon_sym_return] = ACTIONS(1762), - [anon_sym_static] = ACTIONS(1762), - [anon_sym_struct] = ACTIONS(1762), - [anon_sym_trait] = ACTIONS(1762), - [anon_sym_type] = ACTIONS(1762), - [anon_sym_union] = ACTIONS(1762), - [anon_sym_unsafe] = ACTIONS(1762), - [anon_sym_use] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1762), - [anon_sym_POUND] = ACTIONS(1760), - [anon_sym_BANG] = ACTIONS(1760), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym_LT] = ACTIONS(1760), - [anon_sym_COLON_COLON] = ACTIONS(1760), - [anon_sym_AMP] = ACTIONS(1760), - [anon_sym_DOT_DOT] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1760), - [anon_sym_PIPE] = ACTIONS(1760), - [anon_sym_move] = ACTIONS(1762), - [sym_integer_literal] = ACTIONS(1760), - [aux_sym_string_literal_token1] = ACTIONS(1760), - [sym_char_literal] = ACTIONS(1760), - [anon_sym_true] = ACTIONS(1762), - [anon_sym_false] = ACTIONS(1762), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1762), - [sym_super] = ACTIONS(1762), - [sym_crate] = ACTIONS(1762), - [sym_metavariable] = ACTIONS(1760), - [sym_raw_string_literal] = ACTIONS(1760), - [sym_float_literal] = ACTIONS(1760), - [sym_block_comment] = ACTIONS(3), - }, - [422] = { - [ts_builtin_sym_end] = ACTIONS(1764), - [sym_identifier] = ACTIONS(1766), - [anon_sym_SEMI] = ACTIONS(1764), - [anon_sym_macro_rules_BANG] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1764), - [anon_sym_RBRACE] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_u8] = ACTIONS(1766), - [anon_sym_i8] = ACTIONS(1766), - [anon_sym_u16] = ACTIONS(1766), - [anon_sym_i16] = ACTIONS(1766), - [anon_sym_u32] = ACTIONS(1766), - [anon_sym_i32] = ACTIONS(1766), - [anon_sym_u64] = ACTIONS(1766), - [anon_sym_i64] = ACTIONS(1766), - [anon_sym_u128] = ACTIONS(1766), - [anon_sym_i128] = ACTIONS(1766), - [anon_sym_isize] = ACTIONS(1766), - [anon_sym_usize] = ACTIONS(1766), - [anon_sym_f32] = ACTIONS(1766), - [anon_sym_f64] = ACTIONS(1766), - [anon_sym_bool] = ACTIONS(1766), - [anon_sym_str] = ACTIONS(1766), - [anon_sym_char] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1766), - [anon_sym_async] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1766), - [anon_sym_const] = ACTIONS(1766), - [anon_sym_continue] = ACTIONS(1766), - [anon_sym_default] = ACTIONS(1766), - [anon_sym_enum] = ACTIONS(1766), - [anon_sym_fn] = ACTIONS(1766), - [anon_sym_for] = ACTIONS(1766), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_impl] = ACTIONS(1766), - [anon_sym_let] = ACTIONS(1766), - [anon_sym_loop] = ACTIONS(1766), - [anon_sym_match] = ACTIONS(1766), - [anon_sym_mod] = ACTIONS(1766), - [anon_sym_pub] = ACTIONS(1766), - [anon_sym_return] = ACTIONS(1766), - [anon_sym_static] = ACTIONS(1766), - [anon_sym_struct] = ACTIONS(1766), - [anon_sym_trait] = ACTIONS(1766), - [anon_sym_type] = ACTIONS(1766), - [anon_sym_union] = ACTIONS(1766), - [anon_sym_unsafe] = ACTIONS(1766), - [anon_sym_use] = ACTIONS(1766), - [anon_sym_while] = ACTIONS(1766), - [anon_sym_POUND] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_extern] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1764), - [anon_sym_move] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [aux_sym_string_literal_token1] = ACTIONS(1764), - [sym_char_literal] = ACTIONS(1764), - [anon_sym_true] = ACTIONS(1766), - [anon_sym_false] = ACTIONS(1766), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1766), - [sym_super] = ACTIONS(1766), - [sym_crate] = ACTIONS(1766), - [sym_metavariable] = ACTIONS(1764), - [sym_raw_string_literal] = ACTIONS(1764), - [sym_float_literal] = ACTIONS(1764), - [sym_block_comment] = ACTIONS(3), - }, - [423] = { - [ts_builtin_sym_end] = ACTIONS(1768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_macro_rules_BANG] = ACTIONS(1768), - [anon_sym_LPAREN] = ACTIONS(1768), - [anon_sym_LBRACE] = ACTIONS(1768), - [anon_sym_RBRACE] = ACTIONS(1768), - [anon_sym_LBRACK] = ACTIONS(1768), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_u8] = ACTIONS(1770), - [anon_sym_i8] = ACTIONS(1770), - [anon_sym_u16] = ACTIONS(1770), - [anon_sym_i16] = ACTIONS(1770), - [anon_sym_u32] = ACTIONS(1770), - [anon_sym_i32] = ACTIONS(1770), - [anon_sym_u64] = ACTIONS(1770), - [anon_sym_i64] = ACTIONS(1770), - [anon_sym_u128] = ACTIONS(1770), - [anon_sym_i128] = ACTIONS(1770), - [anon_sym_isize] = ACTIONS(1770), - [anon_sym_usize] = ACTIONS(1770), - [anon_sym_f32] = ACTIONS(1770), - [anon_sym_f64] = ACTIONS(1770), - [anon_sym_bool] = ACTIONS(1770), - [anon_sym_str] = ACTIONS(1770), - [anon_sym_char] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1770), - [anon_sym_async] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_default] = ACTIONS(1770), - [anon_sym_enum] = ACTIONS(1770), - [anon_sym_fn] = ACTIONS(1770), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_impl] = ACTIONS(1770), - [anon_sym_let] = ACTIONS(1770), - [anon_sym_loop] = ACTIONS(1770), - [anon_sym_match] = ACTIONS(1770), - [anon_sym_mod] = ACTIONS(1770), - [anon_sym_pub] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_struct] = ACTIONS(1770), - [anon_sym_trait] = ACTIONS(1770), - [anon_sym_type] = ACTIONS(1770), - [anon_sym_union] = ACTIONS(1770), - [anon_sym_unsafe] = ACTIONS(1770), - [anon_sym_use] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1768), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1768), - [anon_sym_COLON_COLON] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(1768), - [anon_sym_DOT_DOT] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_PIPE] = ACTIONS(1768), - [anon_sym_move] = ACTIONS(1770), - [sym_integer_literal] = ACTIONS(1768), - [aux_sym_string_literal_token1] = ACTIONS(1768), - [sym_char_literal] = ACTIONS(1768), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1770), - [sym_super] = ACTIONS(1770), - [sym_crate] = ACTIONS(1770), - [sym_metavariable] = ACTIONS(1768), - [sym_raw_string_literal] = ACTIONS(1768), - [sym_float_literal] = ACTIONS(1768), - [sym_block_comment] = ACTIONS(3), - }, - [424] = { - [ts_builtin_sym_end] = ACTIONS(1772), - [sym_identifier] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_macro_rules_BANG] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_u8] = ACTIONS(1774), - [anon_sym_i8] = ACTIONS(1774), - [anon_sym_u16] = ACTIONS(1774), - [anon_sym_i16] = ACTIONS(1774), - [anon_sym_u32] = ACTIONS(1774), - [anon_sym_i32] = ACTIONS(1774), - [anon_sym_u64] = ACTIONS(1774), - [anon_sym_i64] = ACTIONS(1774), - [anon_sym_u128] = ACTIONS(1774), - [anon_sym_i128] = ACTIONS(1774), - [anon_sym_isize] = ACTIONS(1774), - [anon_sym_usize] = ACTIONS(1774), - [anon_sym_f32] = ACTIONS(1774), - [anon_sym_f64] = ACTIONS(1774), - [anon_sym_bool] = ACTIONS(1774), - [anon_sym_str] = ACTIONS(1774), - [anon_sym_char] = ACTIONS(1774), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_async] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_fn] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_impl] = ACTIONS(1774), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_loop] = ACTIONS(1774), - [anon_sym_match] = ACTIONS(1774), - [anon_sym_mod] = ACTIONS(1774), - [anon_sym_pub] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_trait] = ACTIONS(1774), - [anon_sym_type] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_unsafe] = ACTIONS(1774), - [anon_sym_use] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_POUND] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1772), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_move] = ACTIONS(1774), - [sym_integer_literal] = ACTIONS(1772), - [aux_sym_string_literal_token1] = ACTIONS(1772), - [sym_char_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1774), - [anon_sym_false] = ACTIONS(1774), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_crate] = ACTIONS(1774), - [sym_metavariable] = ACTIONS(1772), - [sym_raw_string_literal] = ACTIONS(1772), - [sym_float_literal] = ACTIONS(1772), - [sym_block_comment] = ACTIONS(3), - }, - [425] = { - [sym__token_pattern] = STATE(216), - [sym_token_tree_pattern] = STATE(216), - [sym_token_binding_pattern] = STATE(216), - [sym_token_repetition_pattern] = STATE(216), - [sym__literal] = STATE(216), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1776), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_await] = 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_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_where] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [sym_mutable_specifier] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [426] = { - [ts_builtin_sym_end] = ACTIONS(1778), - [sym_identifier] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1778), - [anon_sym_macro_rules_BANG] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_u8] = ACTIONS(1780), - [anon_sym_i8] = ACTIONS(1780), - [anon_sym_u16] = ACTIONS(1780), - [anon_sym_i16] = ACTIONS(1780), - [anon_sym_u32] = ACTIONS(1780), - [anon_sym_i32] = ACTIONS(1780), - [anon_sym_u64] = ACTIONS(1780), - [anon_sym_i64] = ACTIONS(1780), - [anon_sym_u128] = ACTIONS(1780), - [anon_sym_i128] = ACTIONS(1780), - [anon_sym_isize] = ACTIONS(1780), - [anon_sym_usize] = ACTIONS(1780), - [anon_sym_f32] = ACTIONS(1780), - [anon_sym_f64] = ACTIONS(1780), - [anon_sym_bool] = ACTIONS(1780), - [anon_sym_str] = ACTIONS(1780), - [anon_sym_char] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1780), - [anon_sym_async] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_const] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_default] = ACTIONS(1780), - [anon_sym_enum] = ACTIONS(1780), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_impl] = ACTIONS(1780), - [anon_sym_let] = ACTIONS(1780), - [anon_sym_loop] = ACTIONS(1780), - [anon_sym_match] = ACTIONS(1780), - [anon_sym_mod] = ACTIONS(1780), - [anon_sym_pub] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_static] = ACTIONS(1780), - [anon_sym_struct] = ACTIONS(1780), - [anon_sym_trait] = ACTIONS(1780), - [anon_sym_type] = ACTIONS(1780), - [anon_sym_union] = ACTIONS(1780), - [anon_sym_unsafe] = ACTIONS(1780), - [anon_sym_use] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_extern] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_move] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [aux_sym_string_literal_token1] = ACTIONS(1778), - [sym_char_literal] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1780), - [sym_super] = ACTIONS(1780), - [sym_crate] = ACTIONS(1780), - [sym_metavariable] = ACTIONS(1778), - [sym_raw_string_literal] = ACTIONS(1778), - [sym_float_literal] = ACTIONS(1778), - [sym_block_comment] = ACTIONS(3), - }, - [427] = { - [ts_builtin_sym_end] = ACTIONS(1782), - [sym_identifier] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_macro_rules_BANG] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1784), - [anon_sym_async] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_const] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_enum] = ACTIONS(1784), - [anon_sym_fn] = ACTIONS(1784), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_impl] = ACTIONS(1784), - [anon_sym_let] = ACTIONS(1784), - [anon_sym_loop] = ACTIONS(1784), - [anon_sym_match] = ACTIONS(1784), - [anon_sym_mod] = ACTIONS(1784), - [anon_sym_pub] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_static] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1784), - [anon_sym_trait] = ACTIONS(1784), - [anon_sym_type] = ACTIONS(1784), - [anon_sym_union] = ACTIONS(1784), - [anon_sym_unsafe] = ACTIONS(1784), - [anon_sym_use] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1782), - [anon_sym_extern] = ACTIONS(1784), - [anon_sym_LT] = ACTIONS(1782), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1782), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_move] = ACTIONS(1784), - [sym_integer_literal] = ACTIONS(1782), - [aux_sym_string_literal_token1] = ACTIONS(1782), - [sym_char_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1784), - [sym_super] = ACTIONS(1784), - [sym_crate] = ACTIONS(1784), - [sym_metavariable] = ACTIONS(1782), - [sym_raw_string_literal] = ACTIONS(1782), - [sym_float_literal] = ACTIONS(1782), - [sym_block_comment] = ACTIONS(3), - }, - [428] = { - [ts_builtin_sym_end] = ACTIONS(1786), - [sym_identifier] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_macro_rules_BANG] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_u8] = ACTIONS(1788), - [anon_sym_i8] = ACTIONS(1788), - [anon_sym_u16] = ACTIONS(1788), - [anon_sym_i16] = ACTIONS(1788), - [anon_sym_u32] = ACTIONS(1788), - [anon_sym_i32] = ACTIONS(1788), - [anon_sym_u64] = ACTIONS(1788), - [anon_sym_i64] = ACTIONS(1788), - [anon_sym_u128] = ACTIONS(1788), - [anon_sym_i128] = ACTIONS(1788), - [anon_sym_isize] = ACTIONS(1788), - [anon_sym_usize] = ACTIONS(1788), - [anon_sym_f32] = ACTIONS(1788), - [anon_sym_f64] = ACTIONS(1788), - [anon_sym_bool] = ACTIONS(1788), - [anon_sym_str] = ACTIONS(1788), - [anon_sym_char] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_async] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_default] = ACTIONS(1788), - [anon_sym_enum] = ACTIONS(1788), - [anon_sym_fn] = ACTIONS(1788), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_impl] = ACTIONS(1788), - [anon_sym_let] = ACTIONS(1788), - [anon_sym_loop] = ACTIONS(1788), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_mod] = ACTIONS(1788), - [anon_sym_pub] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_struct] = ACTIONS(1788), - [anon_sym_trait] = ACTIONS(1788), - [anon_sym_type] = ACTIONS(1788), - [anon_sym_union] = ACTIONS(1788), - [anon_sym_unsafe] = ACTIONS(1788), - [anon_sym_use] = ACTIONS(1788), - [anon_sym_while] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_LT] = ACTIONS(1786), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_move] = ACTIONS(1788), - [sym_integer_literal] = ACTIONS(1786), - [aux_sym_string_literal_token1] = ACTIONS(1786), - [sym_char_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1788), - [anon_sym_false] = ACTIONS(1788), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1788), - [sym_super] = ACTIONS(1788), - [sym_crate] = ACTIONS(1788), - [sym_metavariable] = ACTIONS(1786), - [sym_raw_string_literal] = ACTIONS(1786), - [sym_float_literal] = ACTIONS(1786), - [sym_block_comment] = ACTIONS(3), - }, - [429] = { - [ts_builtin_sym_end] = ACTIONS(1790), - [sym_identifier] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_macro_rules_BANG] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_u8] = ACTIONS(1792), - [anon_sym_i8] = ACTIONS(1792), - [anon_sym_u16] = ACTIONS(1792), - [anon_sym_i16] = ACTIONS(1792), - [anon_sym_u32] = ACTIONS(1792), - [anon_sym_i32] = ACTIONS(1792), - [anon_sym_u64] = ACTIONS(1792), - [anon_sym_i64] = ACTIONS(1792), - [anon_sym_u128] = ACTIONS(1792), - [anon_sym_i128] = ACTIONS(1792), - [anon_sym_isize] = ACTIONS(1792), - [anon_sym_usize] = ACTIONS(1792), - [anon_sym_f32] = ACTIONS(1792), - [anon_sym_f64] = ACTIONS(1792), - [anon_sym_bool] = ACTIONS(1792), - [anon_sym_str] = ACTIONS(1792), - [anon_sym_char] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_async] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1792), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_continue] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1792), - [anon_sym_enum] = ACTIONS(1792), - [anon_sym_fn] = ACTIONS(1792), - [anon_sym_for] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(1792), - [anon_sym_impl] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1792), - [anon_sym_loop] = ACTIONS(1792), - [anon_sym_match] = ACTIONS(1792), - [anon_sym_mod] = ACTIONS(1792), - [anon_sym_pub] = ACTIONS(1792), - [anon_sym_return] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1792), - [anon_sym_struct] = ACTIONS(1792), - [anon_sym_trait] = ACTIONS(1792), - [anon_sym_type] = ACTIONS(1792), - [anon_sym_union] = ACTIONS(1792), - [anon_sym_unsafe] = ACTIONS(1792), - [anon_sym_use] = ACTIONS(1792), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_AMP] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_move] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [aux_sym_string_literal_token1] = ACTIONS(1790), - [sym_char_literal] = ACTIONS(1790), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1792), - [sym_super] = ACTIONS(1792), - [sym_crate] = ACTIONS(1792), - [sym_metavariable] = ACTIONS(1790), - [sym_raw_string_literal] = ACTIONS(1790), - [sym_float_literal] = ACTIONS(1790), - [sym_block_comment] = ACTIONS(3), - }, - [430] = { - [ts_builtin_sym_end] = ACTIONS(1794), - [sym_identifier] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_macro_rules_BANG] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_async] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_const] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_default] = ACTIONS(1796), - [anon_sym_enum] = ACTIONS(1796), - [anon_sym_fn] = ACTIONS(1796), - [anon_sym_for] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_impl] = ACTIONS(1796), - [anon_sym_let] = ACTIONS(1796), - [anon_sym_loop] = ACTIONS(1796), - [anon_sym_match] = ACTIONS(1796), - [anon_sym_mod] = ACTIONS(1796), - [anon_sym_pub] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1796), - [anon_sym_struct] = ACTIONS(1796), - [anon_sym_trait] = ACTIONS(1796), - [anon_sym_type] = ACTIONS(1796), - [anon_sym_union] = ACTIONS(1796), - [anon_sym_unsafe] = ACTIONS(1796), - [anon_sym_use] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_POUND] = ACTIONS(1794), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1796), - [anon_sym_LT] = ACTIONS(1794), - [anon_sym_COLON_COLON] = ACTIONS(1794), - [anon_sym_AMP] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_move] = ACTIONS(1796), - [sym_integer_literal] = ACTIONS(1794), - [aux_sym_string_literal_token1] = ACTIONS(1794), - [sym_char_literal] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1794), - [sym_raw_string_literal] = ACTIONS(1794), - [sym_float_literal] = ACTIONS(1794), - [sym_block_comment] = ACTIONS(3), - }, - [431] = { - [ts_builtin_sym_end] = ACTIONS(1798), - [sym_identifier] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_macro_rules_BANG] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_u8] = ACTIONS(1800), - [anon_sym_i8] = ACTIONS(1800), - [anon_sym_u16] = ACTIONS(1800), - [anon_sym_i16] = ACTIONS(1800), - [anon_sym_u32] = ACTIONS(1800), - [anon_sym_i32] = ACTIONS(1800), - [anon_sym_u64] = ACTIONS(1800), - [anon_sym_i64] = ACTIONS(1800), - [anon_sym_u128] = ACTIONS(1800), - [anon_sym_i128] = ACTIONS(1800), - [anon_sym_isize] = ACTIONS(1800), - [anon_sym_usize] = ACTIONS(1800), - [anon_sym_f32] = ACTIONS(1800), - [anon_sym_f64] = ACTIONS(1800), - [anon_sym_bool] = ACTIONS(1800), - [anon_sym_str] = ACTIONS(1800), - [anon_sym_char] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_async] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_default] = ACTIONS(1800), - [anon_sym_enum] = ACTIONS(1800), - [anon_sym_fn] = ACTIONS(1800), - [anon_sym_for] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_impl] = ACTIONS(1800), - [anon_sym_let] = ACTIONS(1800), - [anon_sym_loop] = ACTIONS(1800), - [anon_sym_match] = ACTIONS(1800), - [anon_sym_mod] = ACTIONS(1800), - [anon_sym_pub] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1800), - [anon_sym_struct] = ACTIONS(1800), - [anon_sym_trait] = ACTIONS(1800), - [anon_sym_type] = ACTIONS(1800), - [anon_sym_union] = ACTIONS(1800), - [anon_sym_unsafe] = ACTIONS(1800), - [anon_sym_use] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_POUND] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1800), - [anon_sym_LT] = ACTIONS(1798), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_move] = ACTIONS(1800), - [sym_integer_literal] = ACTIONS(1798), - [aux_sym_string_literal_token1] = ACTIONS(1798), - [sym_char_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1800), - [sym_super] = ACTIONS(1800), - [sym_crate] = ACTIONS(1800), - [sym_metavariable] = ACTIONS(1798), - [sym_raw_string_literal] = ACTIONS(1798), - [sym_float_literal] = ACTIONS(1798), - [sym_block_comment] = ACTIONS(3), - }, - [432] = { - [ts_builtin_sym_end] = ACTIONS(1802), - [sym_identifier] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_macro_rules_BANG] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_u8] = ACTIONS(1804), - [anon_sym_i8] = ACTIONS(1804), - [anon_sym_u16] = ACTIONS(1804), - [anon_sym_i16] = ACTIONS(1804), - [anon_sym_u32] = ACTIONS(1804), - [anon_sym_i32] = ACTIONS(1804), - [anon_sym_u64] = ACTIONS(1804), - [anon_sym_i64] = ACTIONS(1804), - [anon_sym_u128] = ACTIONS(1804), - [anon_sym_i128] = ACTIONS(1804), - [anon_sym_isize] = ACTIONS(1804), - [anon_sym_usize] = ACTIONS(1804), - [anon_sym_f32] = ACTIONS(1804), - [anon_sym_f64] = ACTIONS(1804), - [anon_sym_bool] = ACTIONS(1804), - [anon_sym_str] = ACTIONS(1804), - [anon_sym_char] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_async] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_enum] = ACTIONS(1804), - [anon_sym_fn] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_impl] = ACTIONS(1804), - [anon_sym_let] = ACTIONS(1804), - [anon_sym_loop] = ACTIONS(1804), - [anon_sym_match] = ACTIONS(1804), - [anon_sym_mod] = ACTIONS(1804), - [anon_sym_pub] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1804), - [anon_sym_struct] = ACTIONS(1804), - [anon_sym_trait] = ACTIONS(1804), - [anon_sym_type] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_unsafe] = ACTIONS(1804), - [anon_sym_use] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1804), - [anon_sym_LT] = ACTIONS(1802), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_move] = ACTIONS(1804), - [sym_integer_literal] = ACTIONS(1802), - [aux_sym_string_literal_token1] = ACTIONS(1802), - [sym_char_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1804), - [sym_super] = ACTIONS(1804), - [sym_crate] = ACTIONS(1804), - [sym_metavariable] = ACTIONS(1802), - [sym_raw_string_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1802), - [sym_block_comment] = ACTIONS(3), - }, - [433] = { - [ts_builtin_sym_end] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_macro_rules_BANG] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_u8] = ACTIONS(1808), - [anon_sym_i8] = ACTIONS(1808), - [anon_sym_u16] = ACTIONS(1808), - [anon_sym_i16] = ACTIONS(1808), - [anon_sym_u32] = ACTIONS(1808), - [anon_sym_i32] = ACTIONS(1808), - [anon_sym_u64] = ACTIONS(1808), - [anon_sym_i64] = ACTIONS(1808), - [anon_sym_u128] = ACTIONS(1808), - [anon_sym_i128] = ACTIONS(1808), - [anon_sym_isize] = ACTIONS(1808), - [anon_sym_usize] = ACTIONS(1808), - [anon_sym_f32] = ACTIONS(1808), - [anon_sym_f64] = ACTIONS(1808), - [anon_sym_bool] = ACTIONS(1808), - [anon_sym_str] = ACTIONS(1808), - [anon_sym_char] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [anon_sym_async] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_const] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_default] = ACTIONS(1808), - [anon_sym_enum] = ACTIONS(1808), - [anon_sym_fn] = ACTIONS(1808), - [anon_sym_for] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_impl] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1808), - [anon_sym_loop] = ACTIONS(1808), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_mod] = ACTIONS(1808), - [anon_sym_pub] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1808), - [anon_sym_struct] = ACTIONS(1808), - [anon_sym_trait] = ACTIONS(1808), - [anon_sym_type] = ACTIONS(1808), - [anon_sym_union] = ACTIONS(1808), - [anon_sym_unsafe] = ACTIONS(1808), - [anon_sym_use] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1806), - [anon_sym_extern] = ACTIONS(1808), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1806), - [anon_sym_DOT_DOT] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_move] = ACTIONS(1808), - [sym_integer_literal] = ACTIONS(1806), - [aux_sym_string_literal_token1] = ACTIONS(1806), - [sym_char_literal] = ACTIONS(1806), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1806), - [sym_raw_string_literal] = ACTIONS(1806), - [sym_float_literal] = ACTIONS(1806), - [sym_block_comment] = ACTIONS(3), - }, - [434] = { - [ts_builtin_sym_end] = ACTIONS(1810), - [sym_identifier] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_macro_rules_BANG] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_u8] = ACTIONS(1812), - [anon_sym_i8] = ACTIONS(1812), - [anon_sym_u16] = ACTIONS(1812), - [anon_sym_i16] = ACTIONS(1812), - [anon_sym_u32] = ACTIONS(1812), - [anon_sym_i32] = ACTIONS(1812), - [anon_sym_u64] = ACTIONS(1812), - [anon_sym_i64] = ACTIONS(1812), - [anon_sym_u128] = ACTIONS(1812), - [anon_sym_i128] = ACTIONS(1812), - [anon_sym_isize] = ACTIONS(1812), - [anon_sym_usize] = ACTIONS(1812), - [anon_sym_f32] = ACTIONS(1812), - [anon_sym_f64] = ACTIONS(1812), - [anon_sym_bool] = ACTIONS(1812), - [anon_sym_str] = ACTIONS(1812), - [anon_sym_char] = ACTIONS(1812), - [anon_sym_SQUOTE] = ACTIONS(1812), - [anon_sym_async] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_default] = ACTIONS(1812), - [anon_sym_enum] = ACTIONS(1812), - [anon_sym_fn] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_if] = ACTIONS(1812), - [anon_sym_impl] = ACTIONS(1812), - [anon_sym_let] = ACTIONS(1812), - [anon_sym_loop] = ACTIONS(1812), - [anon_sym_match] = ACTIONS(1812), - [anon_sym_mod] = ACTIONS(1812), - [anon_sym_pub] = ACTIONS(1812), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_static] = ACTIONS(1812), - [anon_sym_struct] = ACTIONS(1812), - [anon_sym_trait] = ACTIONS(1812), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_union] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(1812), - [anon_sym_use] = ACTIONS(1812), - [anon_sym_while] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_extern] = ACTIONS(1812), - [anon_sym_LT] = ACTIONS(1810), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_DASH] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_move] = ACTIONS(1812), - [sym_integer_literal] = ACTIONS(1810), - [aux_sym_string_literal_token1] = ACTIONS(1810), - [sym_char_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1812), - [anon_sym_false] = ACTIONS(1812), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1812), - [sym_super] = ACTIONS(1812), - [sym_crate] = ACTIONS(1812), - [sym_metavariable] = ACTIONS(1810), - [sym_raw_string_literal] = ACTIONS(1810), - [sym_float_literal] = ACTIONS(1810), - [sym_block_comment] = ACTIONS(3), - }, - [435] = { - [ts_builtin_sym_end] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_macro_rules_BANG] = ACTIONS(1814), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_RBRACE] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_u8] = ACTIONS(1816), - [anon_sym_i8] = ACTIONS(1816), - [anon_sym_u16] = ACTIONS(1816), - [anon_sym_i16] = ACTIONS(1816), - [anon_sym_u32] = ACTIONS(1816), - [anon_sym_i32] = ACTIONS(1816), - [anon_sym_u64] = ACTIONS(1816), - [anon_sym_i64] = ACTIONS(1816), - [anon_sym_u128] = ACTIONS(1816), - [anon_sym_i128] = ACTIONS(1816), - [anon_sym_isize] = ACTIONS(1816), - [anon_sym_usize] = ACTIONS(1816), - [anon_sym_f32] = ACTIONS(1816), - [anon_sym_f64] = ACTIONS(1816), - [anon_sym_bool] = ACTIONS(1816), - [anon_sym_str] = ACTIONS(1816), - [anon_sym_char] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_async] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_default] = ACTIONS(1816), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_fn] = ACTIONS(1816), - [anon_sym_for] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_impl] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1816), - [anon_sym_loop] = ACTIONS(1816), - [anon_sym_match] = ACTIONS(1816), - [anon_sym_mod] = ACTIONS(1816), - [anon_sym_pub] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1816), - [anon_sym_struct] = ACTIONS(1816), - [anon_sym_trait] = ACTIONS(1816), - [anon_sym_type] = ACTIONS(1816), - [anon_sym_union] = ACTIONS(1816), - [anon_sym_unsafe] = ACTIONS(1816), - [anon_sym_use] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1814), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1814), - [anon_sym_COLON_COLON] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_DOT_DOT] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1816), - [sym_integer_literal] = ACTIONS(1814), - [aux_sym_string_literal_token1] = ACTIONS(1814), - [sym_char_literal] = ACTIONS(1814), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1816), - [sym_super] = ACTIONS(1816), - [sym_crate] = ACTIONS(1816), - [sym_metavariable] = ACTIONS(1814), - [sym_raw_string_literal] = ACTIONS(1814), - [sym_float_literal] = ACTIONS(1814), - [sym_block_comment] = ACTIONS(3), - }, - [436] = { - [sym__token_pattern] = STATE(216), - [sym_token_tree_pattern] = STATE(216), - [sym_token_binding_pattern] = STATE(216), - [sym_token_repetition_pattern] = STATE(216), - [sym__literal] = STATE(216), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_RBRACK] = ACTIONS(1055), - [anon_sym_DOLLAR] = ACTIONS(1059), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_await] = 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_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_where] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [sym_mutable_specifier] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [437] = { - [ts_builtin_sym_end] = ACTIONS(1818), - [sym_identifier] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_macro_rules_BANG] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_u8] = ACTIONS(1820), - [anon_sym_i8] = ACTIONS(1820), - [anon_sym_u16] = ACTIONS(1820), - [anon_sym_i16] = ACTIONS(1820), - [anon_sym_u32] = ACTIONS(1820), - [anon_sym_i32] = ACTIONS(1820), - [anon_sym_u64] = ACTIONS(1820), - [anon_sym_i64] = ACTIONS(1820), - [anon_sym_u128] = ACTIONS(1820), - [anon_sym_i128] = ACTIONS(1820), - [anon_sym_isize] = ACTIONS(1820), - [anon_sym_usize] = ACTIONS(1820), - [anon_sym_f32] = ACTIONS(1820), - [anon_sym_f64] = ACTIONS(1820), - [anon_sym_bool] = ACTIONS(1820), - [anon_sym_str] = ACTIONS(1820), - [anon_sym_char] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_async] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_default] = ACTIONS(1820), - [anon_sym_enum] = ACTIONS(1820), - [anon_sym_fn] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_impl] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_mod] = ACTIONS(1820), - [anon_sym_pub] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1820), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_trait] = ACTIONS(1820), - [anon_sym_type] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1820), - [anon_sym_unsafe] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1818), - [anon_sym_move] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [aux_sym_string_literal_token1] = ACTIONS(1818), - [sym_char_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1820), - [sym_super] = ACTIONS(1820), - [sym_crate] = ACTIONS(1820), - [sym_metavariable] = ACTIONS(1818), - [sym_raw_string_literal] = ACTIONS(1818), - [sym_float_literal] = ACTIONS(1818), - [sym_block_comment] = ACTIONS(3), - }, - [438] = { - [ts_builtin_sym_end] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_macro_rules_BANG] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_u8] = ACTIONS(1824), - [anon_sym_i8] = ACTIONS(1824), - [anon_sym_u16] = ACTIONS(1824), - [anon_sym_i16] = ACTIONS(1824), - [anon_sym_u32] = ACTIONS(1824), - [anon_sym_i32] = ACTIONS(1824), - [anon_sym_u64] = ACTIONS(1824), - [anon_sym_i64] = ACTIONS(1824), - [anon_sym_u128] = ACTIONS(1824), - [anon_sym_i128] = ACTIONS(1824), - [anon_sym_isize] = ACTIONS(1824), - [anon_sym_usize] = ACTIONS(1824), - [anon_sym_f32] = ACTIONS(1824), - [anon_sym_f64] = ACTIONS(1824), - [anon_sym_bool] = ACTIONS(1824), - [anon_sym_str] = ACTIONS(1824), - [anon_sym_char] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_async] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_default] = ACTIONS(1824), - [anon_sym_enum] = ACTIONS(1824), - [anon_sym_fn] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_impl] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_mod] = ACTIONS(1824), - [anon_sym_pub] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1824), - [anon_sym_struct] = ACTIONS(1824), - [anon_sym_trait] = ACTIONS(1824), - [anon_sym_type] = ACTIONS(1824), - [anon_sym_union] = ACTIONS(1824), - [anon_sym_unsafe] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_move] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [aux_sym_string_literal_token1] = ACTIONS(1822), - [sym_char_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1824), - [anon_sym_false] = ACTIONS(1824), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1824), - [sym_super] = ACTIONS(1824), - [sym_crate] = ACTIONS(1824), - [sym_metavariable] = ACTIONS(1822), - [sym_raw_string_literal] = ACTIONS(1822), - [sym_float_literal] = ACTIONS(1822), - [sym_block_comment] = ACTIONS(3), - }, - [439] = { - [ts_builtin_sym_end] = ACTIONS(1826), - [sym_identifier] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_macro_rules_BANG] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_u8] = ACTIONS(1828), - [anon_sym_i8] = ACTIONS(1828), - [anon_sym_u16] = ACTIONS(1828), - [anon_sym_i16] = ACTIONS(1828), - [anon_sym_u32] = ACTIONS(1828), - [anon_sym_i32] = ACTIONS(1828), - [anon_sym_u64] = ACTIONS(1828), - [anon_sym_i64] = ACTIONS(1828), - [anon_sym_u128] = ACTIONS(1828), - [anon_sym_i128] = ACTIONS(1828), - [anon_sym_isize] = ACTIONS(1828), - [anon_sym_usize] = ACTIONS(1828), - [anon_sym_f32] = ACTIONS(1828), - [anon_sym_f64] = ACTIONS(1828), - [anon_sym_bool] = ACTIONS(1828), - [anon_sym_str] = ACTIONS(1828), - [anon_sym_char] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_async] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_default] = ACTIONS(1828), - [anon_sym_enum] = ACTIONS(1828), - [anon_sym_fn] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_impl] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_mod] = ACTIONS(1828), - [anon_sym_pub] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1828), - [anon_sym_struct] = ACTIONS(1828), - [anon_sym_trait] = ACTIONS(1828), - [anon_sym_type] = ACTIONS(1828), - [anon_sym_union] = ACTIONS(1828), - [anon_sym_unsafe] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(1826), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_move] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [aux_sym_string_literal_token1] = ACTIONS(1826), - [sym_char_literal] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1828), - [sym_super] = ACTIONS(1828), - [sym_crate] = ACTIONS(1828), - [sym_metavariable] = ACTIONS(1826), - [sym_raw_string_literal] = ACTIONS(1826), - [sym_float_literal] = ACTIONS(1826), - [sym_block_comment] = ACTIONS(3), - }, - [440] = { - [ts_builtin_sym_end] = ACTIONS(1830), - [sym_identifier] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_macro_rules_BANG] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_u8] = ACTIONS(1832), - [anon_sym_i8] = ACTIONS(1832), - [anon_sym_u16] = ACTIONS(1832), - [anon_sym_i16] = ACTIONS(1832), - [anon_sym_u32] = ACTIONS(1832), - [anon_sym_i32] = ACTIONS(1832), - [anon_sym_u64] = ACTIONS(1832), - [anon_sym_i64] = ACTIONS(1832), - [anon_sym_u128] = ACTIONS(1832), - [anon_sym_i128] = ACTIONS(1832), - [anon_sym_isize] = ACTIONS(1832), - [anon_sym_usize] = ACTIONS(1832), - [anon_sym_f32] = ACTIONS(1832), - [anon_sym_f64] = ACTIONS(1832), - [anon_sym_bool] = ACTIONS(1832), - [anon_sym_str] = ACTIONS(1832), - [anon_sym_char] = ACTIONS(1832), - [anon_sym_SQUOTE] = ACTIONS(1832), - [anon_sym_async] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_default] = ACTIONS(1832), - [anon_sym_enum] = ACTIONS(1832), - [anon_sym_fn] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_impl] = ACTIONS(1832), - [anon_sym_let] = ACTIONS(1832), - [anon_sym_loop] = ACTIONS(1832), - [anon_sym_match] = ACTIONS(1832), - [anon_sym_mod] = ACTIONS(1832), - [anon_sym_pub] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_static] = ACTIONS(1832), - [anon_sym_struct] = ACTIONS(1832), - [anon_sym_trait] = ACTIONS(1832), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_union] = ACTIONS(1832), - [anon_sym_unsafe] = ACTIONS(1832), - [anon_sym_use] = ACTIONS(1832), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_POUND] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_COLON_COLON] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_move] = ACTIONS(1832), - [sym_integer_literal] = ACTIONS(1830), - [aux_sym_string_literal_token1] = ACTIONS(1830), - [sym_char_literal] = ACTIONS(1830), - [anon_sym_true] = ACTIONS(1832), - [anon_sym_false] = ACTIONS(1832), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1832), - [sym_super] = ACTIONS(1832), - [sym_crate] = ACTIONS(1832), - [sym_metavariable] = ACTIONS(1830), - [sym_raw_string_literal] = ACTIONS(1830), - [sym_float_literal] = ACTIONS(1830), - [sym_block_comment] = ACTIONS(3), - }, - [441] = { - [ts_builtin_sym_end] = ACTIONS(1834), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_macro_rules_BANG] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_u8] = ACTIONS(1836), - [anon_sym_i8] = ACTIONS(1836), - [anon_sym_u16] = ACTIONS(1836), - [anon_sym_i16] = ACTIONS(1836), - [anon_sym_u32] = ACTIONS(1836), - [anon_sym_i32] = ACTIONS(1836), - [anon_sym_u64] = ACTIONS(1836), - [anon_sym_i64] = ACTIONS(1836), - [anon_sym_u128] = ACTIONS(1836), - [anon_sym_i128] = ACTIONS(1836), - [anon_sym_isize] = ACTIONS(1836), - [anon_sym_usize] = ACTIONS(1836), - [anon_sym_f32] = ACTIONS(1836), - [anon_sym_f64] = ACTIONS(1836), - [anon_sym_bool] = ACTIONS(1836), - [anon_sym_str] = ACTIONS(1836), - [anon_sym_char] = ACTIONS(1836), - [anon_sym_SQUOTE] = ACTIONS(1836), - [anon_sym_async] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_const] = ACTIONS(1836), - [anon_sym_continue] = ACTIONS(1836), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_fn] = ACTIONS(1836), - [anon_sym_for] = ACTIONS(1836), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_impl] = ACTIONS(1836), - [anon_sym_let] = ACTIONS(1836), - [anon_sym_loop] = ACTIONS(1836), - [anon_sym_match] = ACTIONS(1836), - [anon_sym_mod] = ACTIONS(1836), - [anon_sym_pub] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_static] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_trait] = ACTIONS(1836), - [anon_sym_type] = ACTIONS(1836), - [anon_sym_union] = ACTIONS(1836), - [anon_sym_unsafe] = ACTIONS(1836), - [anon_sym_use] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_extern] = ACTIONS(1836), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_COLON_COLON] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_DOT_DOT] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_move] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [aux_sym_string_literal_token1] = ACTIONS(1834), - [sym_char_literal] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1836), - [sym_super] = ACTIONS(1836), - [sym_crate] = ACTIONS(1836), - [sym_metavariable] = ACTIONS(1834), - [sym_raw_string_literal] = ACTIONS(1834), - [sym_float_literal] = ACTIONS(1834), - [sym_block_comment] = ACTIONS(3), - }, - [442] = { - [ts_builtin_sym_end] = ACTIONS(1838), - [sym_identifier] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_macro_rules_BANG] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_u8] = ACTIONS(1840), - [anon_sym_i8] = ACTIONS(1840), - [anon_sym_u16] = ACTIONS(1840), - [anon_sym_i16] = ACTIONS(1840), - [anon_sym_u32] = ACTIONS(1840), - [anon_sym_i32] = ACTIONS(1840), - [anon_sym_u64] = ACTIONS(1840), - [anon_sym_i64] = ACTIONS(1840), - [anon_sym_u128] = ACTIONS(1840), - [anon_sym_i128] = ACTIONS(1840), - [anon_sym_isize] = ACTIONS(1840), - [anon_sym_usize] = ACTIONS(1840), - [anon_sym_f32] = ACTIONS(1840), - [anon_sym_f64] = ACTIONS(1840), - [anon_sym_bool] = ACTIONS(1840), - [anon_sym_str] = ACTIONS(1840), - [anon_sym_char] = ACTIONS(1840), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_async] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_enum] = ACTIONS(1840), - [anon_sym_fn] = ACTIONS(1840), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_impl] = ACTIONS(1840), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_loop] = ACTIONS(1840), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_mod] = ACTIONS(1840), - [anon_sym_pub] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_struct] = ACTIONS(1840), - [anon_sym_trait] = ACTIONS(1840), - [anon_sym_type] = ACTIONS(1840), - [anon_sym_union] = ACTIONS(1840), - [anon_sym_unsafe] = ACTIONS(1840), - [anon_sym_use] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1840), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_COLON_COLON] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_DOT_DOT] = ACTIONS(1838), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_move] = ACTIONS(1840), - [sym_integer_literal] = ACTIONS(1838), - [aux_sym_string_literal_token1] = ACTIONS(1838), - [sym_char_literal] = ACTIONS(1838), - [anon_sym_true] = ACTIONS(1840), - [anon_sym_false] = ACTIONS(1840), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1840), - [sym_super] = ACTIONS(1840), - [sym_crate] = ACTIONS(1840), - [sym_metavariable] = ACTIONS(1838), - [sym_raw_string_literal] = ACTIONS(1838), - [sym_float_literal] = ACTIONS(1838), - [sym_block_comment] = ACTIONS(3), - }, - [443] = { - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_identifier] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_macro_rules_BANG] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_u8] = ACTIONS(1844), - [anon_sym_i8] = ACTIONS(1844), - [anon_sym_u16] = ACTIONS(1844), - [anon_sym_i16] = ACTIONS(1844), - [anon_sym_u32] = ACTIONS(1844), - [anon_sym_i32] = ACTIONS(1844), - [anon_sym_u64] = ACTIONS(1844), - [anon_sym_i64] = ACTIONS(1844), - [anon_sym_u128] = ACTIONS(1844), - [anon_sym_i128] = ACTIONS(1844), - [anon_sym_isize] = ACTIONS(1844), - [anon_sym_usize] = ACTIONS(1844), - [anon_sym_f32] = ACTIONS(1844), - [anon_sym_f64] = ACTIONS(1844), - [anon_sym_bool] = ACTIONS(1844), - [anon_sym_str] = ACTIONS(1844), - [anon_sym_char] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_async] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_default] = ACTIONS(1844), - [anon_sym_enum] = ACTIONS(1844), - [anon_sym_fn] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_impl] = ACTIONS(1844), - [anon_sym_let] = ACTIONS(1844), - [anon_sym_loop] = ACTIONS(1844), - [anon_sym_match] = ACTIONS(1844), - [anon_sym_mod] = ACTIONS(1844), - [anon_sym_pub] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_struct] = ACTIONS(1844), - [anon_sym_trait] = ACTIONS(1844), - [anon_sym_type] = ACTIONS(1844), - [anon_sym_union] = ACTIONS(1844), - [anon_sym_unsafe] = ACTIONS(1844), - [anon_sym_use] = ACTIONS(1844), - [anon_sym_while] = ACTIONS(1844), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_extern] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_COLON_COLON] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1842), - [anon_sym_DOT_DOT] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_move] = ACTIONS(1844), - [sym_integer_literal] = ACTIONS(1842), - [aux_sym_string_literal_token1] = ACTIONS(1842), - [sym_char_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1844), - [anon_sym_false] = ACTIONS(1844), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1844), - [sym_super] = ACTIONS(1844), - [sym_crate] = ACTIONS(1844), - [sym_metavariable] = ACTIONS(1842), - [sym_raw_string_literal] = ACTIONS(1842), - [sym_float_literal] = ACTIONS(1842), - [sym_block_comment] = ACTIONS(3), - }, - [444] = { - [sym__token_pattern] = STATE(216), - [sym_token_tree_pattern] = STATE(216), - [sym_token_binding_pattern] = STATE(216), - [sym_token_repetition_pattern] = STATE(216), - [sym__literal] = STATE(216), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_pattern_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_await] = 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_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_where] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [sym_mutable_specifier] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym_metavariable] = ACTIONS(1067), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [445] = { - [ts_builtin_sym_end] = ACTIONS(1846), - [sym_identifier] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_macro_rules_BANG] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_u8] = ACTIONS(1848), - [anon_sym_i8] = ACTIONS(1848), - [anon_sym_u16] = ACTIONS(1848), - [anon_sym_i16] = ACTIONS(1848), - [anon_sym_u32] = ACTIONS(1848), - [anon_sym_i32] = ACTIONS(1848), - [anon_sym_u64] = ACTIONS(1848), - [anon_sym_i64] = ACTIONS(1848), - [anon_sym_u128] = ACTIONS(1848), - [anon_sym_i128] = ACTIONS(1848), - [anon_sym_isize] = ACTIONS(1848), - [anon_sym_usize] = ACTIONS(1848), - [anon_sym_f32] = ACTIONS(1848), - [anon_sym_f64] = ACTIONS(1848), - [anon_sym_bool] = ACTIONS(1848), - [anon_sym_str] = ACTIONS(1848), - [anon_sym_char] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_async] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_const] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_default] = ACTIONS(1848), - [anon_sym_enum] = ACTIONS(1848), - [anon_sym_fn] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1848), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_impl] = ACTIONS(1848), - [anon_sym_let] = ACTIONS(1848), - [anon_sym_loop] = ACTIONS(1848), - [anon_sym_match] = ACTIONS(1848), - [anon_sym_mod] = ACTIONS(1848), - [anon_sym_pub] = ACTIONS(1848), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1848), - [anon_sym_struct] = ACTIONS(1848), - [anon_sym_trait] = ACTIONS(1848), - [anon_sym_type] = ACTIONS(1848), - [anon_sym_union] = ACTIONS(1848), - [anon_sym_unsafe] = ACTIONS(1848), - [anon_sym_use] = ACTIONS(1848), - [anon_sym_while] = ACTIONS(1848), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_COLON_COLON] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_DOT_DOT] = ACTIONS(1846), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_move] = ACTIONS(1848), - [sym_integer_literal] = ACTIONS(1846), - [aux_sym_string_literal_token1] = ACTIONS(1846), - [sym_char_literal] = ACTIONS(1846), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1848), - [sym_super] = ACTIONS(1848), - [sym_crate] = ACTIONS(1848), - [sym_metavariable] = ACTIONS(1846), - [sym_raw_string_literal] = ACTIONS(1846), - [sym_float_literal] = ACTIONS(1846), - [sym_block_comment] = ACTIONS(3), - }, - [446] = { - [ts_builtin_sym_end] = ACTIONS(1850), - [sym_identifier] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_macro_rules_BANG] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_u8] = ACTIONS(1852), - [anon_sym_i8] = ACTIONS(1852), - [anon_sym_u16] = ACTIONS(1852), - [anon_sym_i16] = ACTIONS(1852), - [anon_sym_u32] = ACTIONS(1852), - [anon_sym_i32] = ACTIONS(1852), - [anon_sym_u64] = ACTIONS(1852), - [anon_sym_i64] = ACTIONS(1852), - [anon_sym_u128] = ACTIONS(1852), - [anon_sym_i128] = ACTIONS(1852), - [anon_sym_isize] = ACTIONS(1852), - [anon_sym_usize] = ACTIONS(1852), - [anon_sym_f32] = ACTIONS(1852), - [anon_sym_f64] = ACTIONS(1852), - [anon_sym_bool] = ACTIONS(1852), - [anon_sym_str] = ACTIONS(1852), - [anon_sym_char] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_async] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_default] = ACTIONS(1852), - [anon_sym_enum] = ACTIONS(1852), - [anon_sym_fn] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1852), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_impl] = ACTIONS(1852), - [anon_sym_let] = ACTIONS(1852), - [anon_sym_loop] = ACTIONS(1852), - [anon_sym_match] = ACTIONS(1852), - [anon_sym_mod] = ACTIONS(1852), - [anon_sym_pub] = ACTIONS(1852), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_struct] = ACTIONS(1852), - [anon_sym_trait] = ACTIONS(1852), - [anon_sym_type] = ACTIONS(1852), - [anon_sym_union] = ACTIONS(1852), - [anon_sym_unsafe] = ACTIONS(1852), - [anon_sym_use] = ACTIONS(1852), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_LT] = ACTIONS(1850), - [anon_sym_COLON_COLON] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1850), - [anon_sym_DOT_DOT] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_move] = ACTIONS(1852), - [sym_integer_literal] = ACTIONS(1850), - [aux_sym_string_literal_token1] = ACTIONS(1850), - [sym_char_literal] = ACTIONS(1850), - [anon_sym_true] = ACTIONS(1852), - [anon_sym_false] = ACTIONS(1852), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1852), - [sym_super] = ACTIONS(1852), - [sym_crate] = ACTIONS(1852), - [sym_metavariable] = ACTIONS(1850), - [sym_raw_string_literal] = ACTIONS(1850), - [sym_float_literal] = ACTIONS(1850), - [sym_block_comment] = ACTIONS(3), - }, - [447] = { - [ts_builtin_sym_end] = ACTIONS(1854), - [sym_identifier] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_macro_rules_BANG] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_u8] = ACTIONS(1856), - [anon_sym_i8] = ACTIONS(1856), - [anon_sym_u16] = ACTIONS(1856), - [anon_sym_i16] = ACTIONS(1856), - [anon_sym_u32] = ACTIONS(1856), - [anon_sym_i32] = ACTIONS(1856), - [anon_sym_u64] = ACTIONS(1856), - [anon_sym_i64] = ACTIONS(1856), - [anon_sym_u128] = ACTIONS(1856), - [anon_sym_i128] = ACTIONS(1856), - [anon_sym_isize] = ACTIONS(1856), - [anon_sym_usize] = ACTIONS(1856), - [anon_sym_f32] = ACTIONS(1856), - [anon_sym_f64] = ACTIONS(1856), - [anon_sym_bool] = ACTIONS(1856), - [anon_sym_str] = ACTIONS(1856), - [anon_sym_char] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_async] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_default] = ACTIONS(1856), - [anon_sym_enum] = ACTIONS(1856), - [anon_sym_fn] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_impl] = ACTIONS(1856), - [anon_sym_let] = ACTIONS(1856), - [anon_sym_loop] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [anon_sym_mod] = ACTIONS(1856), - [anon_sym_pub] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1856), - [anon_sym_struct] = ACTIONS(1856), - [anon_sym_trait] = ACTIONS(1856), - [anon_sym_type] = ACTIONS(1856), - [anon_sym_union] = ACTIONS(1856), - [anon_sym_unsafe] = ACTIONS(1856), - [anon_sym_use] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [anon_sym_POUND] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym_LT] = ACTIONS(1854), - [anon_sym_COLON_COLON] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym_DOT_DOT] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_move] = ACTIONS(1856), - [sym_integer_literal] = ACTIONS(1854), - [aux_sym_string_literal_token1] = ACTIONS(1854), - [sym_char_literal] = ACTIONS(1854), - [anon_sym_true] = ACTIONS(1856), - [anon_sym_false] = ACTIONS(1856), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1856), - [sym_super] = ACTIONS(1856), - [sym_crate] = ACTIONS(1856), - [sym_metavariable] = ACTIONS(1854), - [sym_raw_string_literal] = ACTIONS(1854), - [sym_float_literal] = ACTIONS(1854), - [sym_block_comment] = ACTIONS(3), - }, - [448] = { - [ts_builtin_sym_end] = ACTIONS(1858), - [sym_identifier] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_macro_rules_BANG] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_u8] = ACTIONS(1860), - [anon_sym_i8] = ACTIONS(1860), - [anon_sym_u16] = ACTIONS(1860), - [anon_sym_i16] = ACTIONS(1860), - [anon_sym_u32] = ACTIONS(1860), - [anon_sym_i32] = ACTIONS(1860), - [anon_sym_u64] = ACTIONS(1860), - [anon_sym_i64] = ACTIONS(1860), - [anon_sym_u128] = ACTIONS(1860), - [anon_sym_i128] = ACTIONS(1860), - [anon_sym_isize] = ACTIONS(1860), - [anon_sym_usize] = ACTIONS(1860), - [anon_sym_f32] = ACTIONS(1860), - [anon_sym_f64] = ACTIONS(1860), - [anon_sym_bool] = ACTIONS(1860), - [anon_sym_str] = ACTIONS(1860), - [anon_sym_char] = ACTIONS(1860), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_async] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1860), - [anon_sym_const] = ACTIONS(1860), - [anon_sym_continue] = ACTIONS(1860), - [anon_sym_default] = ACTIONS(1860), - [anon_sym_enum] = ACTIONS(1860), - [anon_sym_fn] = ACTIONS(1860), - [anon_sym_for] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_impl] = ACTIONS(1860), - [anon_sym_let] = ACTIONS(1860), - [anon_sym_loop] = ACTIONS(1860), - [anon_sym_match] = ACTIONS(1860), - [anon_sym_mod] = ACTIONS(1860), - [anon_sym_pub] = ACTIONS(1860), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_static] = ACTIONS(1860), - [anon_sym_struct] = ACTIONS(1860), - [anon_sym_trait] = ACTIONS(1860), - [anon_sym_type] = ACTIONS(1860), - [anon_sym_union] = ACTIONS(1860), - [anon_sym_unsafe] = ACTIONS(1860), - [anon_sym_use] = ACTIONS(1860), - [anon_sym_while] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1858), - [anon_sym_extern] = ACTIONS(1860), - [anon_sym_LT] = ACTIONS(1858), - [anon_sym_COLON_COLON] = ACTIONS(1858), - [anon_sym_AMP] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_move] = ACTIONS(1860), - [sym_integer_literal] = ACTIONS(1858), - [aux_sym_string_literal_token1] = ACTIONS(1858), - [sym_char_literal] = ACTIONS(1858), - [anon_sym_true] = ACTIONS(1860), - [anon_sym_false] = ACTIONS(1860), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1860), - [sym_super] = ACTIONS(1860), - [sym_crate] = ACTIONS(1860), - [sym_metavariable] = ACTIONS(1858), - [sym_raw_string_literal] = ACTIONS(1858), - [sym_float_literal] = ACTIONS(1858), - [sym_block_comment] = ACTIONS(3), - }, - [449] = { - [ts_builtin_sym_end] = ACTIONS(1862), - [sym_identifier] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_macro_rules_BANG] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1862), - [anon_sym_u8] = ACTIONS(1864), - [anon_sym_i8] = ACTIONS(1864), - [anon_sym_u16] = ACTIONS(1864), - [anon_sym_i16] = ACTIONS(1864), - [anon_sym_u32] = ACTIONS(1864), - [anon_sym_i32] = ACTIONS(1864), - [anon_sym_u64] = ACTIONS(1864), - [anon_sym_i64] = ACTIONS(1864), - [anon_sym_u128] = ACTIONS(1864), - [anon_sym_i128] = ACTIONS(1864), - [anon_sym_isize] = ACTIONS(1864), - [anon_sym_usize] = ACTIONS(1864), - [anon_sym_f32] = ACTIONS(1864), - [anon_sym_f64] = ACTIONS(1864), - [anon_sym_bool] = ACTIONS(1864), - [anon_sym_str] = ACTIONS(1864), - [anon_sym_char] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_async] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_default] = ACTIONS(1864), - [anon_sym_enum] = ACTIONS(1864), - [anon_sym_fn] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_impl] = ACTIONS(1864), - [anon_sym_let] = ACTIONS(1864), - [anon_sym_loop] = ACTIONS(1864), - [anon_sym_match] = ACTIONS(1864), - [anon_sym_mod] = ACTIONS(1864), - [anon_sym_pub] = ACTIONS(1864), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1864), - [anon_sym_struct] = ACTIONS(1864), - [anon_sym_trait] = ACTIONS(1864), - [anon_sym_type] = ACTIONS(1864), - [anon_sym_union] = ACTIONS(1864), - [anon_sym_unsafe] = ACTIONS(1864), - [anon_sym_use] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_POUND] = ACTIONS(1862), - [anon_sym_BANG] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1864), - [anon_sym_LT] = ACTIONS(1862), - [anon_sym_COLON_COLON] = ACTIONS(1862), - [anon_sym_AMP] = ACTIONS(1862), - [anon_sym_DOT_DOT] = ACTIONS(1862), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_move] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(1862), - [aux_sym_string_literal_token1] = ACTIONS(1862), - [sym_char_literal] = ACTIONS(1862), - [anon_sym_true] = ACTIONS(1864), - [anon_sym_false] = ACTIONS(1864), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1864), - [sym_super] = ACTIONS(1864), - [sym_crate] = ACTIONS(1864), - [sym_metavariable] = ACTIONS(1862), - [sym_raw_string_literal] = ACTIONS(1862), - [sym_float_literal] = ACTIONS(1862), - [sym_block_comment] = ACTIONS(3), - }, - [450] = { - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_identifier] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_macro_rules_BANG] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_u8] = ACTIONS(1868), - [anon_sym_i8] = ACTIONS(1868), - [anon_sym_u16] = ACTIONS(1868), - [anon_sym_i16] = ACTIONS(1868), - [anon_sym_u32] = ACTIONS(1868), - [anon_sym_i32] = ACTIONS(1868), - [anon_sym_u64] = ACTIONS(1868), - [anon_sym_i64] = ACTIONS(1868), - [anon_sym_u128] = ACTIONS(1868), - [anon_sym_i128] = ACTIONS(1868), - [anon_sym_isize] = ACTIONS(1868), - [anon_sym_usize] = ACTIONS(1868), - [anon_sym_f32] = ACTIONS(1868), - [anon_sym_f64] = ACTIONS(1868), - [anon_sym_bool] = ACTIONS(1868), - [anon_sym_str] = ACTIONS(1868), - [anon_sym_char] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_async] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_default] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_impl] = ACTIONS(1868), - [anon_sym_let] = ACTIONS(1868), - [anon_sym_loop] = ACTIONS(1868), - [anon_sym_match] = ACTIONS(1868), - [anon_sym_mod] = ACTIONS(1868), - [anon_sym_pub] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_struct] = ACTIONS(1868), - [anon_sym_trait] = ACTIONS(1868), - [anon_sym_type] = ACTIONS(1868), - [anon_sym_union] = ACTIONS(1868), - [anon_sym_unsafe] = ACTIONS(1868), - [anon_sym_use] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(1866), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1866), - [anon_sym_COLON_COLON] = ACTIONS(1866), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_DOT_DOT] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_move] = ACTIONS(1868), - [sym_integer_literal] = ACTIONS(1866), - [aux_sym_string_literal_token1] = ACTIONS(1866), - [sym_char_literal] = ACTIONS(1866), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1868), - [sym_super] = ACTIONS(1868), - [sym_crate] = ACTIONS(1868), - [sym_metavariable] = ACTIONS(1866), - [sym_raw_string_literal] = ACTIONS(1866), - [sym_float_literal] = ACTIONS(1866), - [sym_block_comment] = ACTIONS(3), - }, - [451] = { - [ts_builtin_sym_end] = ACTIONS(1870), - [sym_identifier] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_macro_rules_BANG] = ACTIONS(1870), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1870), - [anon_sym_u8] = ACTIONS(1872), - [anon_sym_i8] = ACTIONS(1872), - [anon_sym_u16] = ACTIONS(1872), - [anon_sym_i16] = ACTIONS(1872), - [anon_sym_u32] = ACTIONS(1872), - [anon_sym_i32] = ACTIONS(1872), - [anon_sym_u64] = ACTIONS(1872), - [anon_sym_i64] = ACTIONS(1872), - [anon_sym_u128] = ACTIONS(1872), - [anon_sym_i128] = ACTIONS(1872), - [anon_sym_isize] = ACTIONS(1872), - [anon_sym_usize] = ACTIONS(1872), - [anon_sym_f32] = ACTIONS(1872), - [anon_sym_f64] = ACTIONS(1872), - [anon_sym_bool] = ACTIONS(1872), - [anon_sym_str] = ACTIONS(1872), - [anon_sym_char] = ACTIONS(1872), - [anon_sym_SQUOTE] = ACTIONS(1872), - [anon_sym_async] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_default] = ACTIONS(1872), - [anon_sym_enum] = ACTIONS(1872), - [anon_sym_fn] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_impl] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1872), - [anon_sym_loop] = ACTIONS(1872), - [anon_sym_match] = ACTIONS(1872), - [anon_sym_mod] = ACTIONS(1872), - [anon_sym_pub] = ACTIONS(1872), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1872), - [anon_sym_struct] = ACTIONS(1872), - [anon_sym_trait] = ACTIONS(1872), - [anon_sym_type] = ACTIONS(1872), - [anon_sym_union] = ACTIONS(1872), - [anon_sym_unsafe] = ACTIONS(1872), - [anon_sym_use] = ACTIONS(1872), - [anon_sym_while] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(1870), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(1872), - [anon_sym_LT] = ACTIONS(1870), - [anon_sym_COLON_COLON] = ACTIONS(1870), - [anon_sym_AMP] = ACTIONS(1870), - [anon_sym_DOT_DOT] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_move] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(1870), - [aux_sym_string_literal_token1] = ACTIONS(1870), - [sym_char_literal] = ACTIONS(1870), - [anon_sym_true] = ACTIONS(1872), - [anon_sym_false] = ACTIONS(1872), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1872), - [sym_super] = ACTIONS(1872), - [sym_crate] = ACTIONS(1872), - [sym_metavariable] = ACTIONS(1870), - [sym_raw_string_literal] = ACTIONS(1870), - [sym_float_literal] = ACTIONS(1870), - [sym_block_comment] = ACTIONS(3), - }, - [452] = { - [ts_builtin_sym_end] = ACTIONS(1874), - [sym_identifier] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_macro_rules_BANG] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_u8] = ACTIONS(1876), - [anon_sym_i8] = ACTIONS(1876), - [anon_sym_u16] = ACTIONS(1876), - [anon_sym_i16] = ACTIONS(1876), - [anon_sym_u32] = ACTIONS(1876), - [anon_sym_i32] = ACTIONS(1876), - [anon_sym_u64] = ACTIONS(1876), - [anon_sym_i64] = ACTIONS(1876), - [anon_sym_u128] = ACTIONS(1876), - [anon_sym_i128] = ACTIONS(1876), - [anon_sym_isize] = ACTIONS(1876), - [anon_sym_usize] = ACTIONS(1876), - [anon_sym_f32] = ACTIONS(1876), - [anon_sym_f64] = ACTIONS(1876), - [anon_sym_bool] = ACTIONS(1876), - [anon_sym_str] = ACTIONS(1876), - [anon_sym_char] = ACTIONS(1876), - [anon_sym_SQUOTE] = ACTIONS(1876), - [anon_sym_async] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_const] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_default] = ACTIONS(1876), - [anon_sym_enum] = ACTIONS(1876), - [anon_sym_fn] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_impl] = ACTIONS(1876), - [anon_sym_let] = ACTIONS(1876), - [anon_sym_loop] = ACTIONS(1876), - [anon_sym_match] = ACTIONS(1876), - [anon_sym_mod] = ACTIONS(1876), - [anon_sym_pub] = ACTIONS(1876), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_static] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1876), - [anon_sym_trait] = ACTIONS(1876), - [anon_sym_type] = ACTIONS(1876), - [anon_sym_union] = ACTIONS(1876), - [anon_sym_unsafe] = ACTIONS(1876), - [anon_sym_use] = ACTIONS(1876), - [anon_sym_while] = ACTIONS(1876), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_BANG] = ACTIONS(1874), - [anon_sym_extern] = ACTIONS(1876), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_COLON_COLON] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1874), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_move] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [aux_sym_string_literal_token1] = ACTIONS(1874), - [sym_char_literal] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1876), - [anon_sym_false] = ACTIONS(1876), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1876), - [sym_super] = ACTIONS(1876), - [sym_crate] = ACTIONS(1876), - [sym_metavariable] = ACTIONS(1874), - [sym_raw_string_literal] = ACTIONS(1874), - [sym_float_literal] = ACTIONS(1874), - [sym_block_comment] = ACTIONS(3), - }, - [453] = { - [ts_builtin_sym_end] = ACTIONS(1878), - [sym_identifier] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_macro_rules_BANG] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1878), - [anon_sym_u8] = ACTIONS(1880), - [anon_sym_i8] = ACTIONS(1880), - [anon_sym_u16] = ACTIONS(1880), - [anon_sym_i16] = ACTIONS(1880), - [anon_sym_u32] = ACTIONS(1880), - [anon_sym_i32] = ACTIONS(1880), - [anon_sym_u64] = ACTIONS(1880), - [anon_sym_i64] = ACTIONS(1880), - [anon_sym_u128] = ACTIONS(1880), - [anon_sym_i128] = ACTIONS(1880), - [anon_sym_isize] = ACTIONS(1880), - [anon_sym_usize] = ACTIONS(1880), - [anon_sym_f32] = ACTIONS(1880), - [anon_sym_f64] = ACTIONS(1880), - [anon_sym_bool] = ACTIONS(1880), - [anon_sym_str] = ACTIONS(1880), - [anon_sym_char] = ACTIONS(1880), - [anon_sym_SQUOTE] = ACTIONS(1880), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_default] = ACTIONS(1880), - [anon_sym_enum] = ACTIONS(1880), - [anon_sym_fn] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_impl] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_loop] = ACTIONS(1880), - [anon_sym_match] = ACTIONS(1880), - [anon_sym_mod] = ACTIONS(1880), - [anon_sym_pub] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_struct] = ACTIONS(1880), - [anon_sym_trait] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_union] = ACTIONS(1880), - [anon_sym_unsafe] = ACTIONS(1880), - [anon_sym_use] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(1878), - [anon_sym_BANG] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(1880), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_DOT_DOT] = ACTIONS(1878), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_move] = ACTIONS(1880), - [sym_integer_literal] = ACTIONS(1878), - [aux_sym_string_literal_token1] = ACTIONS(1878), - [sym_char_literal] = ACTIONS(1878), - [anon_sym_true] = ACTIONS(1880), - [anon_sym_false] = ACTIONS(1880), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1880), - [sym_super] = ACTIONS(1880), - [sym_crate] = ACTIONS(1880), - [sym_metavariable] = ACTIONS(1878), - [sym_raw_string_literal] = ACTIONS(1878), - [sym_float_literal] = ACTIONS(1878), - [sym_block_comment] = ACTIONS(3), - }, - [454] = { - [ts_builtin_sym_end] = ACTIONS(1882), - [sym_identifier] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_macro_rules_BANG] = ACTIONS(1882), - [anon_sym_LPAREN] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1882), - [anon_sym_u8] = ACTIONS(1884), - [anon_sym_i8] = ACTIONS(1884), - [anon_sym_u16] = ACTIONS(1884), - [anon_sym_i16] = ACTIONS(1884), - [anon_sym_u32] = ACTIONS(1884), - [anon_sym_i32] = ACTIONS(1884), - [anon_sym_u64] = ACTIONS(1884), - [anon_sym_i64] = ACTIONS(1884), - [anon_sym_u128] = ACTIONS(1884), - [anon_sym_i128] = ACTIONS(1884), - [anon_sym_isize] = ACTIONS(1884), - [anon_sym_usize] = ACTIONS(1884), - [anon_sym_f32] = ACTIONS(1884), - [anon_sym_f64] = ACTIONS(1884), - [anon_sym_bool] = ACTIONS(1884), - [anon_sym_str] = ACTIONS(1884), - [anon_sym_char] = ACTIONS(1884), - [anon_sym_SQUOTE] = ACTIONS(1884), - [anon_sym_async] = ACTIONS(1884), - [anon_sym_break] = ACTIONS(1884), - [anon_sym_const] = ACTIONS(1884), - [anon_sym_continue] = ACTIONS(1884), - [anon_sym_default] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_fn] = ACTIONS(1884), - [anon_sym_for] = ACTIONS(1884), - [anon_sym_if] = ACTIONS(1884), - [anon_sym_impl] = ACTIONS(1884), - [anon_sym_let] = ACTIONS(1884), - [anon_sym_loop] = ACTIONS(1884), - [anon_sym_match] = ACTIONS(1884), - [anon_sym_mod] = ACTIONS(1884), - [anon_sym_pub] = ACTIONS(1884), - [anon_sym_return] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1884), - [anon_sym_struct] = ACTIONS(1884), - [anon_sym_trait] = ACTIONS(1884), - [anon_sym_type] = ACTIONS(1884), - [anon_sym_union] = ACTIONS(1884), - [anon_sym_unsafe] = ACTIONS(1884), - [anon_sym_use] = ACTIONS(1884), - [anon_sym_while] = ACTIONS(1884), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_BANG] = ACTIONS(1882), - [anon_sym_extern] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1882), - [anon_sym_COLON_COLON] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1882), - [anon_sym_DOT_DOT] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_move] = ACTIONS(1884), - [sym_integer_literal] = ACTIONS(1882), - [aux_sym_string_literal_token1] = ACTIONS(1882), - [sym_char_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(1884), - [anon_sym_false] = ACTIONS(1884), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1884), - [sym_super] = ACTIONS(1884), - [sym_crate] = ACTIONS(1884), - [sym_metavariable] = ACTIONS(1882), - [sym_raw_string_literal] = ACTIONS(1882), - [sym_float_literal] = ACTIONS(1882), - [sym_block_comment] = ACTIONS(3), - }, - [455] = { - [sym_attribute_item] = STATE(502), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_macro_invocation] = STATE(2320), - [sym_scoped_identifier] = STATE(1444), - [sym_scoped_type_identifier] = STATE(1839), - [sym_match_arm] = STATE(472), - [sym_last_match_arm] = STATE(2314), - [sym_match_pattern] = STATE(2309), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_enum_variant_list_repeat1] = STATE(502), - [aux_sym_match_block_repeat1] = STATE(472), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [456] = { - [sym_attribute_item] = STATE(502), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_macro_invocation] = STATE(2320), - [sym_scoped_identifier] = STATE(1444), - [sym_scoped_type_identifier] = STATE(1839), - [sym_match_arm] = STATE(468), - [sym_last_match_arm] = STATE(2395), - [sym_match_pattern] = STATE(2309), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_enum_variant_list_repeat1] = STATE(502), - [aux_sym_match_block_repeat1] = STATE(468), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [457] = { - [sym_attribute_item] = STATE(502), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_macro_invocation] = STATE(2320), - [sym_scoped_identifier] = STATE(1444), - [sym_scoped_type_identifier] = STATE(1839), - [sym_match_arm] = STATE(465), - [sym_last_match_arm] = STATE(2253), - [sym_match_pattern] = STATE(2309), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_enum_variant_list_repeat1] = STATE(502), - [aux_sym_match_block_repeat1] = STATE(465), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [458] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1918), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [459] = { - [sym_token_tree] = STATE(474), - [sym_token_repetition] = STATE(474), - [sym__literal] = STATE(474), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(474), - [sym_identifier] = ACTIONS(1924), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1924), - [anon_sym_i8] = ACTIONS(1924), - [anon_sym_u16] = ACTIONS(1924), - [anon_sym_i16] = ACTIONS(1924), - [anon_sym_u32] = ACTIONS(1924), - [anon_sym_i32] = ACTIONS(1924), - [anon_sym_u64] = ACTIONS(1924), - [anon_sym_i64] = ACTIONS(1924), - [anon_sym_u128] = ACTIONS(1924), - [anon_sym_i128] = ACTIONS(1924), - [anon_sym_isize] = ACTIONS(1924), - [anon_sym_usize] = ACTIONS(1924), - [anon_sym_f32] = ACTIONS(1924), - [anon_sym_f64] = ACTIONS(1924), - [anon_sym_bool] = ACTIONS(1924), - [anon_sym_str] = ACTIONS(1924), - [anon_sym_char] = ACTIONS(1924), - [aux_sym__non_special_token_token1] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_as] = ACTIONS(1924), - [anon_sym_async] = ACTIONS(1924), - [anon_sym_await] = ACTIONS(1924), - [anon_sym_break] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1924), - [anon_sym_continue] = ACTIONS(1924), - [anon_sym_default] = ACTIONS(1924), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_fn] = ACTIONS(1924), - [anon_sym_for] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(1924), - [anon_sym_impl] = ACTIONS(1924), - [anon_sym_let] = ACTIONS(1924), - [anon_sym_loop] = ACTIONS(1924), - [anon_sym_match] = ACTIONS(1924), - [anon_sym_mod] = ACTIONS(1924), - [anon_sym_pub] = ACTIONS(1924), - [anon_sym_return] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(1924), - [anon_sym_trait] = ACTIONS(1924), - [anon_sym_type] = ACTIONS(1924), - [anon_sym_union] = ACTIONS(1924), - [anon_sym_unsafe] = ACTIONS(1924), - [anon_sym_use] = ACTIONS(1924), - [anon_sym_where] = ACTIONS(1924), - [anon_sym_while] = ACTIONS(1924), - [sym_mutable_specifier] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1924), - [sym_super] = ACTIONS(1924), - [sym_crate] = ACTIONS(1924), - [sym_metavariable] = ACTIONS(1928), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [460] = { - [sym_token_tree] = STATE(458), - [sym_token_repetition] = STATE(458), - [sym__literal] = STATE(458), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(458), - [sym_identifier] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1932), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [aux_sym__non_special_token_token1] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_as] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [sym_mutable_specifier] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [461] = { - [sym_token_tree] = STATE(467), - [sym_token_repetition] = STATE(467), - [sym__literal] = STATE(467), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(467), - [sym_identifier] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1936), - [anon_sym_i8] = ACTIONS(1936), - [anon_sym_u16] = ACTIONS(1936), - [anon_sym_i16] = ACTIONS(1936), - [anon_sym_u32] = ACTIONS(1936), - [anon_sym_i32] = ACTIONS(1936), - [anon_sym_u64] = ACTIONS(1936), - [anon_sym_i64] = ACTIONS(1936), - [anon_sym_u128] = ACTIONS(1936), - [anon_sym_i128] = ACTIONS(1936), - [anon_sym_isize] = ACTIONS(1936), - [anon_sym_usize] = ACTIONS(1936), - [anon_sym_f32] = ACTIONS(1936), - [anon_sym_f64] = ACTIONS(1936), - [anon_sym_bool] = ACTIONS(1936), - [anon_sym_str] = ACTIONS(1936), - [anon_sym_char] = ACTIONS(1936), - [aux_sym__non_special_token_token1] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_as] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_await] = ACTIONS(1936), - [anon_sym_break] = ACTIONS(1936), - [anon_sym_const] = ACTIONS(1936), - [anon_sym_continue] = ACTIONS(1936), - [anon_sym_default] = ACTIONS(1936), - [anon_sym_enum] = ACTIONS(1936), - [anon_sym_fn] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_impl] = ACTIONS(1936), - [anon_sym_let] = ACTIONS(1936), - [anon_sym_loop] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_mod] = ACTIONS(1936), - [anon_sym_pub] = ACTIONS(1936), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_struct] = ACTIONS(1936), - [anon_sym_trait] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_unsafe] = ACTIONS(1936), - [anon_sym_use] = ACTIONS(1936), - [anon_sym_where] = ACTIONS(1936), - [anon_sym_while] = ACTIONS(1936), - [sym_mutable_specifier] = ACTIONS(1936), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1936), - [sym_super] = ACTIONS(1936), - [sym_crate] = ACTIONS(1936), - [sym_metavariable] = ACTIONS(1938), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [462] = { - [sym_token_tree] = STATE(466), - [sym_token_repetition] = STATE(466), - [sym__literal] = STATE(466), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(466), - [sym_identifier] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1932), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1940), - [anon_sym_i8] = ACTIONS(1940), - [anon_sym_u16] = ACTIONS(1940), - [anon_sym_i16] = ACTIONS(1940), - [anon_sym_u32] = ACTIONS(1940), - [anon_sym_i32] = ACTIONS(1940), - [anon_sym_u64] = ACTIONS(1940), - [anon_sym_i64] = ACTIONS(1940), - [anon_sym_u128] = ACTIONS(1940), - [anon_sym_i128] = ACTIONS(1940), - [anon_sym_isize] = ACTIONS(1940), - [anon_sym_usize] = ACTIONS(1940), - [anon_sym_f32] = ACTIONS(1940), - [anon_sym_f64] = ACTIONS(1940), - [anon_sym_bool] = ACTIONS(1940), - [anon_sym_str] = ACTIONS(1940), - [anon_sym_char] = ACTIONS(1940), - [aux_sym__non_special_token_token1] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_as] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_await] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_default] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_fn] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_impl] = ACTIONS(1940), - [anon_sym_let] = ACTIONS(1940), - [anon_sym_loop] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_mod] = ACTIONS(1940), - [anon_sym_pub] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_trait] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [anon_sym_unsafe] = ACTIONS(1940), - [anon_sym_use] = ACTIONS(1940), - [anon_sym_where] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [sym_mutable_specifier] = ACTIONS(1940), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1940), - [sym_super] = ACTIONS(1940), - [sym_crate] = ACTIONS(1940), - [sym_metavariable] = ACTIONS(1942), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [463] = { - [sym_token_tree] = STATE(469), - [sym_token_repetition] = STATE(469), - [sym__literal] = STATE(469), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(469), - [sym_identifier] = ACTIONS(1944), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1946), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1944), - [anon_sym_i8] = ACTIONS(1944), - [anon_sym_u16] = ACTIONS(1944), - [anon_sym_i16] = ACTIONS(1944), - [anon_sym_u32] = ACTIONS(1944), - [anon_sym_i32] = ACTIONS(1944), - [anon_sym_u64] = ACTIONS(1944), - [anon_sym_i64] = ACTIONS(1944), - [anon_sym_u128] = ACTIONS(1944), - [anon_sym_i128] = ACTIONS(1944), - [anon_sym_isize] = ACTIONS(1944), - [anon_sym_usize] = ACTIONS(1944), - [anon_sym_f32] = ACTIONS(1944), - [anon_sym_f64] = ACTIONS(1944), - [anon_sym_bool] = ACTIONS(1944), - [anon_sym_str] = ACTIONS(1944), - [anon_sym_char] = ACTIONS(1944), - [aux_sym__non_special_token_token1] = ACTIONS(1944), - [anon_sym_SQUOTE] = ACTIONS(1944), - [anon_sym_as] = ACTIONS(1944), - [anon_sym_async] = ACTIONS(1944), - [anon_sym_await] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_const] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_default] = ACTIONS(1944), - [anon_sym_enum] = ACTIONS(1944), - [anon_sym_fn] = ACTIONS(1944), - [anon_sym_for] = ACTIONS(1944), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_impl] = ACTIONS(1944), - [anon_sym_let] = ACTIONS(1944), - [anon_sym_loop] = ACTIONS(1944), - [anon_sym_match] = ACTIONS(1944), - [anon_sym_mod] = ACTIONS(1944), - [anon_sym_pub] = ACTIONS(1944), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_static] = ACTIONS(1944), - [anon_sym_struct] = ACTIONS(1944), - [anon_sym_trait] = ACTIONS(1944), - [anon_sym_type] = ACTIONS(1944), - [anon_sym_union] = ACTIONS(1944), - [anon_sym_unsafe] = ACTIONS(1944), - [anon_sym_use] = ACTIONS(1944), - [anon_sym_where] = ACTIONS(1944), - [anon_sym_while] = ACTIONS(1944), - [sym_mutable_specifier] = ACTIONS(1944), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1944), - [sym_super] = ACTIONS(1944), - [sym_crate] = ACTIONS(1944), - [sym_metavariable] = ACTIONS(1948), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [464] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [465] = { - [sym_attribute_item] = STATE(502), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_macro_invocation] = STATE(2320), - [sym_scoped_identifier] = STATE(1444), - [sym_scoped_type_identifier] = STATE(1839), - [sym_match_arm] = STATE(493), - [sym_last_match_arm] = STATE(2190), - [sym_match_pattern] = STATE(2309), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_enum_variant_list_repeat1] = STATE(502), - [aux_sym_match_block_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [466] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [467] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [468] = { - [sym_attribute_item] = STATE(502), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_macro_invocation] = STATE(2320), - [sym_scoped_identifier] = STATE(1444), - [sym_scoped_type_identifier] = STATE(1839), - [sym_match_arm] = STATE(493), - [sym_last_match_arm] = STATE(2369), - [sym_match_pattern] = STATE(2309), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_enum_variant_list_repeat1] = STATE(502), - [aux_sym_match_block_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [469] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1950), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [470] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1952), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [471] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1954), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [472] = { - [sym_attribute_item] = STATE(502), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_macro_invocation] = STATE(2320), - [sym_scoped_identifier] = STATE(1444), - [sym_scoped_type_identifier] = STATE(1839), - [sym_match_arm] = STATE(493), - [sym_last_match_arm] = STATE(2389), - [sym_match_pattern] = STATE(2309), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_enum_variant_list_repeat1] = STATE(502), - [aux_sym_match_block_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [473] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1956), - [anon_sym_i8] = ACTIONS(1956), - [anon_sym_u16] = ACTIONS(1956), - [anon_sym_i16] = ACTIONS(1956), - [anon_sym_u32] = ACTIONS(1956), - [anon_sym_i32] = ACTIONS(1956), - [anon_sym_u64] = ACTIONS(1956), - [anon_sym_i64] = ACTIONS(1956), - [anon_sym_u128] = ACTIONS(1956), - [anon_sym_i128] = ACTIONS(1956), - [anon_sym_isize] = ACTIONS(1956), - [anon_sym_usize] = ACTIONS(1956), - [anon_sym_f32] = ACTIONS(1956), - [anon_sym_f64] = ACTIONS(1956), - [anon_sym_bool] = ACTIONS(1956), - [anon_sym_str] = ACTIONS(1956), - [anon_sym_char] = ACTIONS(1956), - [aux_sym__non_special_token_token1] = ACTIONS(1956), - [anon_sym_SQUOTE] = ACTIONS(1956), - [anon_sym_as] = ACTIONS(1956), - [anon_sym_async] = ACTIONS(1956), - [anon_sym_await] = ACTIONS(1956), - [anon_sym_break] = ACTIONS(1956), - [anon_sym_const] = ACTIONS(1956), - [anon_sym_continue] = ACTIONS(1956), - [anon_sym_default] = ACTIONS(1956), - [anon_sym_enum] = ACTIONS(1956), - [anon_sym_fn] = ACTIONS(1956), - [anon_sym_for] = ACTIONS(1956), - [anon_sym_if] = ACTIONS(1956), - [anon_sym_impl] = ACTIONS(1956), - [anon_sym_let] = ACTIONS(1956), - [anon_sym_loop] = ACTIONS(1956), - [anon_sym_match] = ACTIONS(1956), - [anon_sym_mod] = ACTIONS(1956), - [anon_sym_pub] = ACTIONS(1956), - [anon_sym_return] = ACTIONS(1956), - [anon_sym_static] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1956), - [anon_sym_trait] = ACTIONS(1956), - [anon_sym_type] = ACTIONS(1956), - [anon_sym_union] = ACTIONS(1956), - [anon_sym_unsafe] = ACTIONS(1956), - [anon_sym_use] = ACTIONS(1956), - [anon_sym_where] = ACTIONS(1956), - [anon_sym_while] = ACTIONS(1956), - [sym_mutable_specifier] = ACTIONS(1956), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1956), - [sym_super] = ACTIONS(1956), - [sym_crate] = ACTIONS(1956), - [sym_metavariable] = ACTIONS(1960), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [474] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [475] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [476] = { - [sym_token_tree] = STATE(471), - [sym_token_repetition] = STATE(471), - [sym__literal] = STATE(471), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(471), - [sym_identifier] = ACTIONS(1962), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1926), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1962), - [anon_sym_i8] = ACTIONS(1962), - [anon_sym_u16] = ACTIONS(1962), - [anon_sym_i16] = ACTIONS(1962), - [anon_sym_u32] = ACTIONS(1962), - [anon_sym_i32] = ACTIONS(1962), - [anon_sym_u64] = ACTIONS(1962), - [anon_sym_i64] = ACTIONS(1962), - [anon_sym_u128] = ACTIONS(1962), - [anon_sym_i128] = ACTIONS(1962), - [anon_sym_isize] = ACTIONS(1962), - [anon_sym_usize] = ACTIONS(1962), - [anon_sym_f32] = ACTIONS(1962), - [anon_sym_f64] = ACTIONS(1962), - [anon_sym_bool] = ACTIONS(1962), - [anon_sym_str] = ACTIONS(1962), - [anon_sym_char] = ACTIONS(1962), - [aux_sym__non_special_token_token1] = ACTIONS(1962), - [anon_sym_SQUOTE] = ACTIONS(1962), - [anon_sym_as] = ACTIONS(1962), - [anon_sym_async] = ACTIONS(1962), - [anon_sym_await] = ACTIONS(1962), - [anon_sym_break] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_continue] = ACTIONS(1962), - [anon_sym_default] = ACTIONS(1962), - [anon_sym_enum] = ACTIONS(1962), - [anon_sym_fn] = ACTIONS(1962), - [anon_sym_for] = ACTIONS(1962), - [anon_sym_if] = ACTIONS(1962), - [anon_sym_impl] = ACTIONS(1962), - [anon_sym_let] = ACTIONS(1962), - [anon_sym_loop] = ACTIONS(1962), - [anon_sym_match] = ACTIONS(1962), - [anon_sym_mod] = ACTIONS(1962), - [anon_sym_pub] = ACTIONS(1962), - [anon_sym_return] = ACTIONS(1962), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_struct] = ACTIONS(1962), - [anon_sym_trait] = ACTIONS(1962), - [anon_sym_type] = ACTIONS(1962), - [anon_sym_union] = ACTIONS(1962), - [anon_sym_unsafe] = ACTIONS(1962), - [anon_sym_use] = ACTIONS(1962), - [anon_sym_where] = ACTIONS(1962), - [anon_sym_while] = ACTIONS(1962), - [sym_mutable_specifier] = ACTIONS(1962), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1962), - [sym_super] = ACTIONS(1962), - [sym_crate] = ACTIONS(1962), - [sym_metavariable] = ACTIONS(1964), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [477] = { - [sym_token_tree] = STATE(482), - [sym_token_repetition] = STATE(482), - [sym__literal] = STATE(482), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(482), - [sym_identifier] = ACTIONS(1966), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1968), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1966), - [anon_sym_i8] = ACTIONS(1966), - [anon_sym_u16] = ACTIONS(1966), - [anon_sym_i16] = ACTIONS(1966), - [anon_sym_u32] = ACTIONS(1966), - [anon_sym_i32] = ACTIONS(1966), - [anon_sym_u64] = ACTIONS(1966), - [anon_sym_i64] = ACTIONS(1966), - [anon_sym_u128] = ACTIONS(1966), - [anon_sym_i128] = ACTIONS(1966), - [anon_sym_isize] = ACTIONS(1966), - [anon_sym_usize] = ACTIONS(1966), - [anon_sym_f32] = ACTIONS(1966), - [anon_sym_f64] = ACTIONS(1966), - [anon_sym_bool] = ACTIONS(1966), - [anon_sym_str] = ACTIONS(1966), - [anon_sym_char] = ACTIONS(1966), - [aux_sym__non_special_token_token1] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(1966), - [anon_sym_as] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_await] = ACTIONS(1966), - [anon_sym_break] = ACTIONS(1966), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_continue] = ACTIONS(1966), - [anon_sym_default] = ACTIONS(1966), - [anon_sym_enum] = ACTIONS(1966), - [anon_sym_fn] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_impl] = ACTIONS(1966), - [anon_sym_let] = ACTIONS(1966), - [anon_sym_loop] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_mod] = ACTIONS(1966), - [anon_sym_pub] = ACTIONS(1966), - [anon_sym_return] = ACTIONS(1966), - [anon_sym_static] = ACTIONS(1966), - [anon_sym_struct] = ACTIONS(1966), - [anon_sym_trait] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_union] = ACTIONS(1966), - [anon_sym_unsafe] = ACTIONS(1966), - [anon_sym_use] = ACTIONS(1966), - [anon_sym_where] = ACTIONS(1966), - [anon_sym_while] = ACTIONS(1966), - [sym_mutable_specifier] = ACTIONS(1966), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1966), - [sym_super] = ACTIONS(1966), - [sym_crate] = ACTIONS(1966), - [sym_metavariable] = ACTIONS(1970), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [478] = { - [sym_token_tree] = STATE(475), - [sym_token_repetition] = STATE(475), - [sym__literal] = STATE(475), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(475), - [sym_identifier] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1972), - [anon_sym_i8] = ACTIONS(1972), - [anon_sym_u16] = ACTIONS(1972), - [anon_sym_i16] = ACTIONS(1972), - [anon_sym_u32] = ACTIONS(1972), - [anon_sym_i32] = ACTIONS(1972), - [anon_sym_u64] = ACTIONS(1972), - [anon_sym_i64] = ACTIONS(1972), - [anon_sym_u128] = ACTIONS(1972), - [anon_sym_i128] = ACTIONS(1972), - [anon_sym_isize] = ACTIONS(1972), - [anon_sym_usize] = ACTIONS(1972), - [anon_sym_f32] = ACTIONS(1972), - [anon_sym_f64] = ACTIONS(1972), - [anon_sym_bool] = ACTIONS(1972), - [anon_sym_str] = ACTIONS(1972), - [anon_sym_char] = ACTIONS(1972), - [aux_sym__non_special_token_token1] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_as] = ACTIONS(1972), - [anon_sym_async] = ACTIONS(1972), - [anon_sym_await] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_default] = ACTIONS(1972), - [anon_sym_enum] = ACTIONS(1972), - [anon_sym_fn] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_impl] = ACTIONS(1972), - [anon_sym_let] = ACTIONS(1972), - [anon_sym_loop] = ACTIONS(1972), - [anon_sym_match] = ACTIONS(1972), - [anon_sym_mod] = ACTIONS(1972), - [anon_sym_pub] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_struct] = ACTIONS(1972), - [anon_sym_trait] = ACTIONS(1972), - [anon_sym_type] = ACTIONS(1972), - [anon_sym_union] = ACTIONS(1972), - [anon_sym_unsafe] = ACTIONS(1972), - [anon_sym_use] = ACTIONS(1972), - [anon_sym_where] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [sym_mutable_specifier] = ACTIONS(1972), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1972), - [sym_super] = ACTIONS(1972), - [sym_crate] = ACTIONS(1972), - [sym_metavariable] = ACTIONS(1974), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [479] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [480] = { - [sym_token_tree] = STATE(470), - [sym_token_repetition] = STATE(470), - [sym__literal] = STATE(470), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(1976), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1976), - [anon_sym_i8] = ACTIONS(1976), - [anon_sym_u16] = ACTIONS(1976), - [anon_sym_i16] = ACTIONS(1976), - [anon_sym_u32] = ACTIONS(1976), - [anon_sym_i32] = ACTIONS(1976), - [anon_sym_u64] = ACTIONS(1976), - [anon_sym_i64] = ACTIONS(1976), - [anon_sym_u128] = ACTIONS(1976), - [anon_sym_i128] = ACTIONS(1976), - [anon_sym_isize] = ACTIONS(1976), - [anon_sym_usize] = ACTIONS(1976), - [anon_sym_f32] = ACTIONS(1976), - [anon_sym_f64] = ACTIONS(1976), - [anon_sym_bool] = ACTIONS(1976), - [anon_sym_str] = ACTIONS(1976), - [anon_sym_char] = ACTIONS(1976), - [aux_sym__non_special_token_token1] = ACTIONS(1976), - [anon_sym_SQUOTE] = ACTIONS(1976), - [anon_sym_as] = ACTIONS(1976), - [anon_sym_async] = ACTIONS(1976), - [anon_sym_await] = ACTIONS(1976), - [anon_sym_break] = ACTIONS(1976), - [anon_sym_const] = ACTIONS(1976), - [anon_sym_continue] = ACTIONS(1976), - [anon_sym_default] = ACTIONS(1976), - [anon_sym_enum] = ACTIONS(1976), - [anon_sym_fn] = ACTIONS(1976), - [anon_sym_for] = ACTIONS(1976), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_impl] = ACTIONS(1976), - [anon_sym_let] = ACTIONS(1976), - [anon_sym_loop] = ACTIONS(1976), - [anon_sym_match] = ACTIONS(1976), - [anon_sym_mod] = ACTIONS(1976), - [anon_sym_pub] = ACTIONS(1976), - [anon_sym_return] = ACTIONS(1976), - [anon_sym_static] = ACTIONS(1976), - [anon_sym_struct] = ACTIONS(1976), - [anon_sym_trait] = ACTIONS(1976), - [anon_sym_type] = ACTIONS(1976), - [anon_sym_union] = ACTIONS(1976), - [anon_sym_unsafe] = ACTIONS(1976), - [anon_sym_use] = ACTIONS(1976), - [anon_sym_where] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1976), - [sym_mutable_specifier] = ACTIONS(1976), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1976), - [sym_super] = ACTIONS(1976), - [sym_crate] = ACTIONS(1976), - [sym_metavariable] = ACTIONS(1978), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [481] = { - [sym_token_tree] = STATE(479), - [sym_token_repetition] = STATE(479), - [sym__literal] = STATE(479), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(479), - [sym_identifier] = ACTIONS(1980), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1980), - [anon_sym_i8] = ACTIONS(1980), - [anon_sym_u16] = ACTIONS(1980), - [anon_sym_i16] = ACTIONS(1980), - [anon_sym_u32] = ACTIONS(1980), - [anon_sym_i32] = ACTIONS(1980), - [anon_sym_u64] = ACTIONS(1980), - [anon_sym_i64] = ACTIONS(1980), - [anon_sym_u128] = ACTIONS(1980), - [anon_sym_i128] = ACTIONS(1980), - [anon_sym_isize] = ACTIONS(1980), - [anon_sym_usize] = ACTIONS(1980), - [anon_sym_f32] = ACTIONS(1980), - [anon_sym_f64] = ACTIONS(1980), - [anon_sym_bool] = ACTIONS(1980), - [anon_sym_str] = ACTIONS(1980), - [anon_sym_char] = ACTIONS(1980), - [aux_sym__non_special_token_token1] = ACTIONS(1980), - [anon_sym_SQUOTE] = ACTIONS(1980), - [anon_sym_as] = ACTIONS(1980), - [anon_sym_async] = ACTIONS(1980), - [anon_sym_await] = ACTIONS(1980), - [anon_sym_break] = ACTIONS(1980), - [anon_sym_const] = ACTIONS(1980), - [anon_sym_continue] = ACTIONS(1980), - [anon_sym_default] = ACTIONS(1980), - [anon_sym_enum] = ACTIONS(1980), - [anon_sym_fn] = ACTIONS(1980), - [anon_sym_for] = ACTIONS(1980), - [anon_sym_if] = ACTIONS(1980), - [anon_sym_impl] = ACTIONS(1980), - [anon_sym_let] = ACTIONS(1980), - [anon_sym_loop] = ACTIONS(1980), - [anon_sym_match] = ACTIONS(1980), - [anon_sym_mod] = ACTIONS(1980), - [anon_sym_pub] = ACTIONS(1980), - [anon_sym_return] = ACTIONS(1980), - [anon_sym_static] = ACTIONS(1980), - [anon_sym_struct] = ACTIONS(1980), - [anon_sym_trait] = ACTIONS(1980), - [anon_sym_type] = ACTIONS(1980), - [anon_sym_union] = ACTIONS(1980), - [anon_sym_unsafe] = ACTIONS(1980), - [anon_sym_use] = ACTIONS(1980), - [anon_sym_where] = ACTIONS(1980), - [anon_sym_while] = ACTIONS(1980), - [sym_mutable_specifier] = ACTIONS(1980), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1980), - [sym_super] = ACTIONS(1980), - [sym_crate] = ACTIONS(1980), - [sym_metavariable] = ACTIONS(1982), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [482] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [483] = { - [sym_token_tree] = STATE(464), - [sym_token_repetition] = STATE(464), - [sym__literal] = STATE(464), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(464), - [sym_identifier] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1946), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1984), - [anon_sym_i8] = ACTIONS(1984), - [anon_sym_u16] = ACTIONS(1984), - [anon_sym_i16] = ACTIONS(1984), - [anon_sym_u32] = ACTIONS(1984), - [anon_sym_i32] = ACTIONS(1984), - [anon_sym_u64] = ACTIONS(1984), - [anon_sym_i64] = ACTIONS(1984), - [anon_sym_u128] = ACTIONS(1984), - [anon_sym_i128] = ACTIONS(1984), - [anon_sym_isize] = ACTIONS(1984), - [anon_sym_usize] = ACTIONS(1984), - [anon_sym_f32] = ACTIONS(1984), - [anon_sym_f64] = ACTIONS(1984), - [anon_sym_bool] = ACTIONS(1984), - [anon_sym_str] = ACTIONS(1984), - [anon_sym_char] = ACTIONS(1984), - [aux_sym__non_special_token_token1] = ACTIONS(1984), - [anon_sym_SQUOTE] = ACTIONS(1984), - [anon_sym_as] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_await] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_default] = ACTIONS(1984), - [anon_sym_enum] = ACTIONS(1984), - [anon_sym_fn] = ACTIONS(1984), - [anon_sym_for] = ACTIONS(1984), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_impl] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_loop] = ACTIONS(1984), - [anon_sym_match] = ACTIONS(1984), - [anon_sym_mod] = ACTIONS(1984), - [anon_sym_pub] = ACTIONS(1984), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_struct] = ACTIONS(1984), - [anon_sym_trait] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_union] = ACTIONS(1984), - [anon_sym_unsafe] = ACTIONS(1984), - [anon_sym_use] = ACTIONS(1984), - [anon_sym_where] = ACTIONS(1984), - [anon_sym_while] = ACTIONS(1984), - [sym_mutable_specifier] = ACTIONS(1984), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_crate] = ACTIONS(1984), - [sym_metavariable] = ACTIONS(1986), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [484] = { - [sym_token_tree] = STATE(492), - [sym_token_repetition] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1988), - [anon_sym_i8] = ACTIONS(1988), - [anon_sym_u16] = ACTIONS(1988), - [anon_sym_i16] = ACTIONS(1988), - [anon_sym_u32] = ACTIONS(1988), - [anon_sym_i32] = ACTIONS(1988), - [anon_sym_u64] = ACTIONS(1988), - [anon_sym_i64] = ACTIONS(1988), - [anon_sym_u128] = ACTIONS(1988), - [anon_sym_i128] = ACTIONS(1988), - [anon_sym_isize] = ACTIONS(1988), - [anon_sym_usize] = ACTIONS(1988), - [anon_sym_f32] = ACTIONS(1988), - [anon_sym_f64] = ACTIONS(1988), - [anon_sym_bool] = ACTIONS(1988), - [anon_sym_str] = ACTIONS(1988), - [anon_sym_char] = ACTIONS(1988), - [aux_sym__non_special_token_token1] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1988), - [anon_sym_as] = ACTIONS(1988), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_await] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_fn] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_impl] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_loop] = ACTIONS(1988), - [anon_sym_match] = ACTIONS(1988), - [anon_sym_mod] = ACTIONS(1988), - [anon_sym_pub] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_trait] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_unsafe] = ACTIONS(1988), - [anon_sym_use] = ACTIONS(1988), - [anon_sym_where] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [sym_mutable_specifier] = ACTIONS(1988), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1988), - [sym_super] = ACTIONS(1988), - [sym_crate] = ACTIONS(1988), - [sym_metavariable] = ACTIONS(1990), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [485] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1992), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [486] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [487] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [488] = { - [sym_token_tree] = STATE(485), - [sym_token_repetition] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(1994), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1996), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1994), - [anon_sym_i8] = ACTIONS(1994), - [anon_sym_u16] = ACTIONS(1994), - [anon_sym_i16] = ACTIONS(1994), - [anon_sym_u32] = ACTIONS(1994), - [anon_sym_i32] = ACTIONS(1994), - [anon_sym_u64] = ACTIONS(1994), - [anon_sym_i64] = ACTIONS(1994), - [anon_sym_u128] = ACTIONS(1994), - [anon_sym_i128] = ACTIONS(1994), - [anon_sym_isize] = ACTIONS(1994), - [anon_sym_usize] = ACTIONS(1994), - [anon_sym_f32] = ACTIONS(1994), - [anon_sym_f64] = ACTIONS(1994), - [anon_sym_bool] = ACTIONS(1994), - [anon_sym_str] = ACTIONS(1994), - [anon_sym_char] = ACTIONS(1994), - [aux_sym__non_special_token_token1] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1994), - [anon_sym_as] = ACTIONS(1994), - [anon_sym_async] = ACTIONS(1994), - [anon_sym_await] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_fn] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_impl] = ACTIONS(1994), - [anon_sym_let] = ACTIONS(1994), - [anon_sym_loop] = ACTIONS(1994), - [anon_sym_match] = ACTIONS(1994), - [anon_sym_mod] = ACTIONS(1994), - [anon_sym_pub] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_trait] = ACTIONS(1994), - [anon_sym_type] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_unsafe] = ACTIONS(1994), - [anon_sym_use] = ACTIONS(1994), - [anon_sym_where] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [sym_mutable_specifier] = ACTIONS(1994), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_crate] = ACTIONS(1994), - [sym_metavariable] = ACTIONS(1998), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [489] = { - [sym_token_tree] = STATE(486), - [sym_token_repetition] = STATE(486), - [sym__literal] = STATE(486), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(486), - [sym_identifier] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(2000), - [anon_sym_i8] = ACTIONS(2000), - [anon_sym_u16] = ACTIONS(2000), - [anon_sym_i16] = ACTIONS(2000), - [anon_sym_u32] = ACTIONS(2000), - [anon_sym_i32] = ACTIONS(2000), - [anon_sym_u64] = ACTIONS(2000), - [anon_sym_i64] = ACTIONS(2000), - [anon_sym_u128] = ACTIONS(2000), - [anon_sym_i128] = ACTIONS(2000), - [anon_sym_isize] = ACTIONS(2000), - [anon_sym_usize] = ACTIONS(2000), - [anon_sym_f32] = ACTIONS(2000), - [anon_sym_f64] = ACTIONS(2000), - [anon_sym_bool] = ACTIONS(2000), - [anon_sym_str] = ACTIONS(2000), - [anon_sym_char] = ACTIONS(2000), - [aux_sym__non_special_token_token1] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_as] = ACTIONS(2000), - [anon_sym_async] = ACTIONS(2000), - [anon_sym_await] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_const] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_default] = ACTIONS(2000), - [anon_sym_enum] = ACTIONS(2000), - [anon_sym_fn] = ACTIONS(2000), - [anon_sym_for] = ACTIONS(2000), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_impl] = ACTIONS(2000), - [anon_sym_let] = ACTIONS(2000), - [anon_sym_loop] = ACTIONS(2000), - [anon_sym_match] = ACTIONS(2000), - [anon_sym_mod] = ACTIONS(2000), - [anon_sym_pub] = ACTIONS(2000), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2000), - [anon_sym_trait] = ACTIONS(2000), - [anon_sym_type] = ACTIONS(2000), - [anon_sym_union] = ACTIONS(2000), - [anon_sym_unsafe] = ACTIONS(2000), - [anon_sym_use] = ACTIONS(2000), - [anon_sym_where] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2000), - [sym_mutable_specifier] = ACTIONS(2000), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2000), - [sym_super] = ACTIONS(2000), - [sym_crate] = ACTIONS(2000), - [sym_metavariable] = ACTIONS(2002), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [490] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [491] = { - [sym_token_tree] = STATE(487), - [sym_token_repetition] = STATE(487), - [sym__literal] = STATE(487), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(487), - [sym_identifier] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1996), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(2006), - [anon_sym_i8] = ACTIONS(2006), - [anon_sym_u16] = ACTIONS(2006), - [anon_sym_i16] = ACTIONS(2006), - [anon_sym_u32] = ACTIONS(2006), - [anon_sym_i32] = ACTIONS(2006), - [anon_sym_u64] = ACTIONS(2006), - [anon_sym_i64] = ACTIONS(2006), - [anon_sym_u128] = ACTIONS(2006), - [anon_sym_i128] = ACTIONS(2006), - [anon_sym_isize] = ACTIONS(2006), - [anon_sym_usize] = ACTIONS(2006), - [anon_sym_f32] = ACTIONS(2006), - [anon_sym_f64] = ACTIONS(2006), - [anon_sym_bool] = ACTIONS(2006), - [anon_sym_str] = ACTIONS(2006), - [anon_sym_char] = ACTIONS(2006), - [aux_sym__non_special_token_token1] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_as] = ACTIONS(2006), - [anon_sym_async] = ACTIONS(2006), - [anon_sym_await] = ACTIONS(2006), - [anon_sym_break] = ACTIONS(2006), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_continue] = ACTIONS(2006), - [anon_sym_default] = ACTIONS(2006), - [anon_sym_enum] = ACTIONS(2006), - [anon_sym_fn] = ACTIONS(2006), - [anon_sym_for] = ACTIONS(2006), - [anon_sym_if] = ACTIONS(2006), - [anon_sym_impl] = ACTIONS(2006), - [anon_sym_let] = ACTIONS(2006), - [anon_sym_loop] = ACTIONS(2006), - [anon_sym_match] = ACTIONS(2006), - [anon_sym_mod] = ACTIONS(2006), - [anon_sym_pub] = ACTIONS(2006), - [anon_sym_return] = ACTIONS(2006), - [anon_sym_static] = ACTIONS(2006), - [anon_sym_struct] = ACTIONS(2006), - [anon_sym_trait] = ACTIONS(2006), - [anon_sym_type] = ACTIONS(2006), - [anon_sym_union] = ACTIONS(2006), - [anon_sym_unsafe] = ACTIONS(2006), - [anon_sym_use] = ACTIONS(2006), - [anon_sym_where] = ACTIONS(2006), - [anon_sym_while] = ACTIONS(2006), - [sym_mutable_specifier] = ACTIONS(2006), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2006), - [sym_super] = ACTIONS(2006), - [sym_crate] = ACTIONS(2006), - [sym_metavariable] = ACTIONS(2008), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [492] = { - [sym_token_tree] = STATE(274), - [sym_token_repetition] = STATE(274), - [sym__literal] = STATE(274), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [aux_sym_token_tree_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [aux_sym__non_special_token_token1] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_as] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_where] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1061), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1061), - [sym_float_literal] = ACTIONS(1061), - [sym_block_comment] = ACTIONS(3), - }, - [493] = { - [sym_attribute_item] = STATE(497), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_macro_invocation] = STATE(2320), - [sym_scoped_identifier] = STATE(1444), - [sym_scoped_type_identifier] = STATE(1839), - [sym_match_arm] = STATE(493), - [sym_match_pattern] = STATE(2320), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_enum_variant_list_repeat1] = STATE(497), - [aux_sym_match_block_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(2010), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2016), - [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_const] = ACTIONS(2022), - [anon_sym_POUND] = ACTIONS(2025), - [anon_sym_ref] = ACTIONS(2028), - [anon_sym_LT] = ACTIONS(2031), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym__] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2040), - [sym_mutable_specifier] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2049), - [sym_integer_literal] = ACTIONS(2052), - [aux_sym_string_literal_token1] = ACTIONS(2055), - [sym_char_literal] = ACTIONS(2052), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2061), - [sym_super] = ACTIONS(2061), - [sym_crate] = ACTIONS(2061), - [sym_metavariable] = ACTIONS(2064), - [sym_raw_string_literal] = ACTIONS(2052), - [sym_float_literal] = ACTIONS(2052), - [sym_block_comment] = ACTIONS(3), - }, - [494] = { - [sym_attribute_item] = STATE(505), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(660), - [sym__type] = STATE(1710), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(505), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [495] = { - [sym_attribute_item] = STATE(514), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(600), - [sym__type] = STATE(1867), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(514), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [496] = { - [sym_attribute_item] = STATE(514), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(600), - [sym__type] = STATE(1867), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(514), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2083), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [497] = { - [sym_attribute_item] = STATE(538), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_macro_invocation] = STATE(2383), - [sym_scoped_identifier] = STATE(1444), - [sym_scoped_type_identifier] = STATE(1839), - [sym_match_pattern] = STATE(2383), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [498] = { - [sym_attribute_item] = STATE(514), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(600), - [sym__type] = STATE(1867), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(514), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [499] = { - [sym_attribute_item] = STATE(514), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(600), - [sym__type] = STATE(1867), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(514), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2087), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [500] = { - [sym_attribute_item] = STATE(514), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(600), - [sym__type] = STATE(1867), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(514), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [501] = { - [sym_identifier] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_RPAREN] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_RBRACK] = ACTIONS(2093), - [anon_sym_COLON] = ACTIONS(2095), - [anon_sym_DOLLAR] = ACTIONS(2091), - [anon_sym_u8] = ACTIONS(2091), - [anon_sym_i8] = ACTIONS(2091), - [anon_sym_u16] = ACTIONS(2091), - [anon_sym_i16] = ACTIONS(2091), - [anon_sym_u32] = ACTIONS(2091), - [anon_sym_i32] = ACTIONS(2091), - [anon_sym_u64] = ACTIONS(2091), - [anon_sym_i64] = ACTIONS(2091), - [anon_sym_u128] = ACTIONS(2091), - [anon_sym_i128] = ACTIONS(2091), - [anon_sym_isize] = ACTIONS(2091), - [anon_sym_usize] = ACTIONS(2091), - [anon_sym_f32] = ACTIONS(2091), - [anon_sym_f64] = ACTIONS(2091), - [anon_sym_bool] = ACTIONS(2091), - [anon_sym_str] = ACTIONS(2091), - [anon_sym_char] = ACTIONS(2091), - [aux_sym__non_special_token_token1] = ACTIONS(2091), - [anon_sym_SQUOTE] = ACTIONS(2091), - [anon_sym_as] = ACTIONS(2091), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_await] = ACTIONS(2091), - [anon_sym_break] = ACTIONS(2091), - [anon_sym_const] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2091), - [anon_sym_default] = ACTIONS(2091), - [anon_sym_enum] = ACTIONS(2091), - [anon_sym_fn] = ACTIONS(2091), - [anon_sym_for] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_impl] = ACTIONS(2091), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_loop] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2091), - [anon_sym_mod] = ACTIONS(2091), - [anon_sym_pub] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2091), - [anon_sym_static] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2091), - [anon_sym_trait] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2091), - [anon_sym_union] = ACTIONS(2091), - [anon_sym_unsafe] = ACTIONS(2091), - [anon_sym_use] = ACTIONS(2091), - [anon_sym_where] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2091), - [sym_mutable_specifier] = ACTIONS(2091), - [sym_integer_literal] = ACTIONS(2093), - [aux_sym_string_literal_token1] = ACTIONS(2093), - [sym_char_literal] = ACTIONS(2093), - [anon_sym_true] = ACTIONS(2091), - [anon_sym_false] = ACTIONS(2091), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2091), - [sym_super] = ACTIONS(2091), - [sym_crate] = ACTIONS(2091), - [sym_metavariable] = ACTIONS(2093), - [sym_raw_string_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_block_comment] = ACTIONS(3), - }, - [502] = { - [sym_attribute_item] = STATE(538), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_macro_invocation] = STATE(2383), - [sym_scoped_identifier] = STATE(1444), - [sym_scoped_type_identifier] = STATE(1839), - [sym_match_pattern] = STATE(2384), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [503] = { - [sym_attribute_item] = STATE(514), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(600), - [sym__type] = STATE(1867), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(514), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [504] = { - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_RPAREN] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_RBRACE] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2101), - [anon_sym_RBRACK] = ACTIONS(2101), - [anon_sym_DOLLAR] = ACTIONS(2099), - [anon_sym_u8] = ACTIONS(2099), - [anon_sym_i8] = ACTIONS(2099), - [anon_sym_u16] = ACTIONS(2099), - [anon_sym_i16] = ACTIONS(2099), - [anon_sym_u32] = ACTIONS(2099), - [anon_sym_i32] = ACTIONS(2099), - [anon_sym_u64] = ACTIONS(2099), - [anon_sym_i64] = ACTIONS(2099), - [anon_sym_u128] = ACTIONS(2099), - [anon_sym_i128] = ACTIONS(2099), - [anon_sym_isize] = ACTIONS(2099), - [anon_sym_usize] = ACTIONS(2099), - [anon_sym_f32] = ACTIONS(2099), - [anon_sym_f64] = ACTIONS(2099), - [anon_sym_bool] = ACTIONS(2099), - [anon_sym_str] = ACTIONS(2099), - [anon_sym_char] = ACTIONS(2099), - [aux_sym__non_special_token_token1] = ACTIONS(2099), - [anon_sym_SQUOTE] = ACTIONS(2099), - [anon_sym_as] = ACTIONS(2099), - [anon_sym_async] = ACTIONS(2099), - [anon_sym_await] = ACTIONS(2099), - [anon_sym_break] = ACTIONS(2099), - [anon_sym_const] = ACTIONS(2099), - [anon_sym_continue] = ACTIONS(2099), - [anon_sym_default] = ACTIONS(2099), - [anon_sym_enum] = ACTIONS(2099), - [anon_sym_fn] = ACTIONS(2099), - [anon_sym_for] = ACTIONS(2099), - [anon_sym_if] = ACTIONS(2099), - [anon_sym_impl] = ACTIONS(2099), - [anon_sym_let] = ACTIONS(2099), - [anon_sym_loop] = ACTIONS(2099), - [anon_sym_match] = ACTIONS(2099), - [anon_sym_mod] = ACTIONS(2099), - [anon_sym_pub] = ACTIONS(2099), - [anon_sym_return] = ACTIONS(2099), - [anon_sym_static] = ACTIONS(2099), - [anon_sym_struct] = ACTIONS(2099), - [anon_sym_trait] = ACTIONS(2099), - [anon_sym_type] = ACTIONS(2099), - [anon_sym_union] = ACTIONS(2099), - [anon_sym_unsafe] = ACTIONS(2099), - [anon_sym_use] = ACTIONS(2099), - [anon_sym_where] = ACTIONS(2099), - [anon_sym_while] = ACTIONS(2099), - [sym_mutable_specifier] = ACTIONS(2099), - [sym_integer_literal] = ACTIONS(2101), - [aux_sym_string_literal_token1] = ACTIONS(2101), - [sym_char_literal] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(2099), - [anon_sym_false] = ACTIONS(2099), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2099), - [sym_super] = ACTIONS(2099), - [sym_crate] = ACTIONS(2099), - [sym_metavariable] = ACTIONS(2101), - [sym_raw_string_literal] = ACTIONS(2101), - [sym_float_literal] = ACTIONS(2101), - [sym_block_comment] = ACTIONS(3), - }, - [505] = { - [sym_attribute_item] = STATE(1069), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(615), - [sym__type] = STATE(1658), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(1069), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [506] = { - [sym_identifier] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RPAREN] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_RBRACK] = ACTIONS(578), - [anon_sym_DOLLAR] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u128] = ACTIONS(580), - [anon_sym_i128] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_str] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [aux_sym__non_special_token_token1] = ACTIONS(580), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_async] = ACTIONS(580), - [anon_sym_await] = ACTIONS(580), - [anon_sym_break] = ACTIONS(580), - [anon_sym_const] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_enum] = ACTIONS(580), - [anon_sym_fn] = ACTIONS(580), - [anon_sym_for] = ACTIONS(580), - [anon_sym_if] = ACTIONS(580), - [anon_sym_impl] = ACTIONS(580), - [anon_sym_let] = ACTIONS(580), - [anon_sym_loop] = ACTIONS(580), - [anon_sym_match] = ACTIONS(580), - [anon_sym_mod] = ACTIONS(580), - [anon_sym_pub] = ACTIONS(580), - [anon_sym_return] = ACTIONS(580), - [anon_sym_static] = ACTIONS(580), - [anon_sym_struct] = ACTIONS(580), - [anon_sym_trait] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_union] = ACTIONS(580), - [anon_sym_unsafe] = ACTIONS(580), - [anon_sym_use] = ACTIONS(580), - [anon_sym_where] = ACTIONS(580), - [anon_sym_while] = ACTIONS(580), - [sym_mutable_specifier] = ACTIONS(580), - [sym_integer_literal] = ACTIONS(578), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(580), - [sym_super] = ACTIONS(580), - [sym_crate] = ACTIONS(580), - [sym_metavariable] = ACTIONS(578), - [sym_raw_string_literal] = ACTIONS(578), - [sym_float_literal] = ACTIONS(578), - [sym_block_comment] = ACTIONS(3), - }, - [507] = { - [sym_identifier] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_RPAREN] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_RBRACK] = ACTIONS(2105), - [anon_sym_DOLLAR] = ACTIONS(2103), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_as] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(2103), - [anon_sym_await] = 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_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_where] = ACTIONS(2103), - [anon_sym_while] = ACTIONS(2103), - [sym_mutable_specifier] = ACTIONS(2103), - [sym_integer_literal] = ACTIONS(2105), - [aux_sym_string_literal_token1] = ACTIONS(2105), - [sym_char_literal] = ACTIONS(2105), - [anon_sym_true] = ACTIONS(2103), - [anon_sym_false] = ACTIONS(2103), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2103), - [sym_super] = ACTIONS(2103), - [sym_crate] = ACTIONS(2103), - [sym_metavariable] = ACTIONS(2105), - [sym_raw_string_literal] = ACTIONS(2105), - [sym_float_literal] = ACTIONS(2105), - [sym_block_comment] = ACTIONS(3), - }, - [508] = { - [sym_identifier] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_RBRACK] = ACTIONS(2109), - [anon_sym_DOLLAR] = ACTIONS(2107), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2107), - [anon_sym_SQUOTE] = ACTIONS(2107), - [anon_sym_as] = ACTIONS(2107), - [anon_sym_async] = ACTIONS(2107), - [anon_sym_await] = 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_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_where] = ACTIONS(2107), - [anon_sym_while] = ACTIONS(2107), - [sym_mutable_specifier] = ACTIONS(2107), - [sym_integer_literal] = ACTIONS(2109), - [aux_sym_string_literal_token1] = ACTIONS(2109), - [sym_char_literal] = ACTIONS(2109), - [anon_sym_true] = ACTIONS(2107), - [anon_sym_false] = ACTIONS(2107), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2107), - [sym_super] = ACTIONS(2107), - [sym_crate] = ACTIONS(2107), - [sym_metavariable] = ACTIONS(2109), - [sym_raw_string_literal] = ACTIONS(2109), - [sym_float_literal] = ACTIONS(2109), - [sym_block_comment] = ACTIONS(3), - }, - [509] = { - [sym_identifier] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_RPAREN] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(2113), - [anon_sym_RBRACE] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2111), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_as] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_await] = 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_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_where] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [sym_mutable_specifier] = ACTIONS(2111), - [sym_integer_literal] = ACTIONS(2113), - [aux_sym_string_literal_token1] = ACTIONS(2113), - [sym_char_literal] = ACTIONS(2113), - [anon_sym_true] = ACTIONS(2111), - [anon_sym_false] = ACTIONS(2111), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_crate] = ACTIONS(2111), - [sym_metavariable] = ACTIONS(2113), - [sym_raw_string_literal] = ACTIONS(2113), - [sym_float_literal] = ACTIONS(2113), - [sym_block_comment] = ACTIONS(3), - }, - [510] = { - [sym_identifier] = ACTIONS(2115), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_RPAREN] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_RBRACK] = ACTIONS(2117), - [anon_sym_DOLLAR] = ACTIONS(2115), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2115), - [anon_sym_SQUOTE] = ACTIONS(2115), - [anon_sym_as] = ACTIONS(2115), - [anon_sym_async] = ACTIONS(2115), - [anon_sym_await] = 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_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_where] = ACTIONS(2115), - [anon_sym_while] = ACTIONS(2115), - [sym_mutable_specifier] = ACTIONS(2115), - [sym_integer_literal] = ACTIONS(2117), - [aux_sym_string_literal_token1] = ACTIONS(2117), - [sym_char_literal] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2115), - [anon_sym_false] = ACTIONS(2115), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2115), - [sym_super] = ACTIONS(2115), - [sym_crate] = ACTIONS(2115), - [sym_metavariable] = ACTIONS(2117), - [sym_raw_string_literal] = ACTIONS(2117), - [sym_float_literal] = ACTIONS(2117), - [sym_block_comment] = ACTIONS(3), - }, - [511] = { - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(2121), - [anon_sym_RPAREN] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2121), - [anon_sym_RBRACE] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2121), - [anon_sym_RBRACK] = ACTIONS(2121), - [anon_sym_DOLLAR] = ACTIONS(2119), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), - [anon_sym_as] = ACTIONS(2119), - [anon_sym_async] = ACTIONS(2119), - [anon_sym_await] = 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_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_where] = ACTIONS(2119), - [anon_sym_while] = ACTIONS(2119), - [sym_mutable_specifier] = ACTIONS(2119), - [sym_integer_literal] = ACTIONS(2121), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2121), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2119), - [sym_super] = ACTIONS(2119), - [sym_crate] = ACTIONS(2119), - [sym_metavariable] = ACTIONS(2121), - [sym_raw_string_literal] = ACTIONS(2121), - [sym_float_literal] = ACTIONS(2121), - [sym_block_comment] = ACTIONS(3), - }, - [512] = { - [sym_identifier] = ACTIONS(2123), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_RPAREN] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_RBRACK] = ACTIONS(2125), - [anon_sym_DOLLAR] = ACTIONS(2123), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2123), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_as] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(2123), - [anon_sym_await] = 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_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_where] = ACTIONS(2123), - [anon_sym_while] = ACTIONS(2123), - [sym_mutable_specifier] = ACTIONS(2123), - [sym_integer_literal] = ACTIONS(2125), - [aux_sym_string_literal_token1] = ACTIONS(2125), - [sym_char_literal] = ACTIONS(2125), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2123), - [sym_super] = ACTIONS(2123), - [sym_crate] = ACTIONS(2123), - [sym_metavariable] = ACTIONS(2125), - [sym_raw_string_literal] = ACTIONS(2125), - [sym_float_literal] = ACTIONS(2125), - [sym_block_comment] = ACTIONS(3), - }, - [513] = { - [sym_identifier] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_RPAREN] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_RBRACE] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(2129), - [anon_sym_RBRACK] = ACTIONS(2129), - [anon_sym_DOLLAR] = ACTIONS(2127), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2127), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_as] = ACTIONS(2127), - [anon_sym_async] = ACTIONS(2127), - [anon_sym_await] = 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_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_where] = ACTIONS(2127), - [anon_sym_while] = ACTIONS(2127), - [sym_mutable_specifier] = ACTIONS(2127), - [sym_integer_literal] = ACTIONS(2129), - [aux_sym_string_literal_token1] = ACTIONS(2129), - [sym_char_literal] = ACTIONS(2129), - [anon_sym_true] = ACTIONS(2127), - [anon_sym_false] = ACTIONS(2127), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2127), - [sym_super] = ACTIONS(2127), - [sym_crate] = ACTIONS(2127), - [sym_metavariable] = ACTIONS(2129), - [sym_raw_string_literal] = ACTIONS(2129), - [sym_float_literal] = ACTIONS(2129), - [sym_block_comment] = ACTIONS(3), - }, - [514] = { - [sym_attribute_item] = STATE(1069), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(604), - [sym__type] = STATE(1959), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(1069), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [515] = { - [sym_identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_RPAREN] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2133), - [anon_sym_RBRACE] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(2133), - [anon_sym_RBRACK] = ACTIONS(2133), - [anon_sym_DOLLAR] = ACTIONS(2131), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2131), - [anon_sym_SQUOTE] = ACTIONS(2131), - [anon_sym_as] = ACTIONS(2131), - [anon_sym_async] = ACTIONS(2131), - [anon_sym_await] = 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_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_where] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2131), - [sym_mutable_specifier] = ACTIONS(2131), - [sym_integer_literal] = ACTIONS(2133), - [aux_sym_string_literal_token1] = ACTIONS(2133), - [sym_char_literal] = ACTIONS(2133), - [anon_sym_true] = ACTIONS(2131), - [anon_sym_false] = ACTIONS(2131), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2131), - [sym_super] = ACTIONS(2131), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(2133), - [sym_raw_string_literal] = ACTIONS(2133), - [sym_float_literal] = ACTIONS(2133), - [sym_block_comment] = ACTIONS(3), - }, - [516] = { - [sym_identifier] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_RPAREN] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_RBRACK] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_u8] = ACTIONS(409), - [anon_sym_i8] = ACTIONS(409), - [anon_sym_u16] = ACTIONS(409), - [anon_sym_i16] = ACTIONS(409), - [anon_sym_u32] = ACTIONS(409), - [anon_sym_i32] = ACTIONS(409), - [anon_sym_u64] = ACTIONS(409), - [anon_sym_i64] = ACTIONS(409), - [anon_sym_u128] = ACTIONS(409), - [anon_sym_i128] = ACTIONS(409), - [anon_sym_isize] = ACTIONS(409), - [anon_sym_usize] = ACTIONS(409), - [anon_sym_f32] = ACTIONS(409), - [anon_sym_f64] = ACTIONS(409), - [anon_sym_bool] = ACTIONS(409), - [anon_sym_str] = ACTIONS(409), - [anon_sym_char] = ACTIONS(409), - [aux_sym__non_special_token_token1] = ACTIONS(409), - [anon_sym_SQUOTE] = ACTIONS(409), - [anon_sym_as] = ACTIONS(409), - [anon_sym_async] = ACTIONS(409), - [anon_sym_await] = ACTIONS(409), - [anon_sym_break] = ACTIONS(409), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(409), - [anon_sym_default] = ACTIONS(409), - [anon_sym_enum] = ACTIONS(409), - [anon_sym_fn] = ACTIONS(409), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(409), - [anon_sym_impl] = ACTIONS(409), - [anon_sym_let] = ACTIONS(409), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_match] = ACTIONS(409), - [anon_sym_mod] = ACTIONS(409), - [anon_sym_pub] = ACTIONS(409), - [anon_sym_return] = ACTIONS(409), - [anon_sym_static] = ACTIONS(409), - [anon_sym_struct] = ACTIONS(409), - [anon_sym_trait] = ACTIONS(409), - [anon_sym_type] = ACTIONS(409), - [anon_sym_union] = ACTIONS(409), - [anon_sym_unsafe] = ACTIONS(409), - [anon_sym_use] = ACTIONS(409), - [anon_sym_where] = ACTIONS(409), - [anon_sym_while] = ACTIONS(409), - [sym_mutable_specifier] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(407), - [aux_sym_string_literal_token1] = ACTIONS(407), - [sym_char_literal] = ACTIONS(407), - [anon_sym_true] = ACTIONS(409), - [anon_sym_false] = ACTIONS(409), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(409), - [sym_super] = ACTIONS(409), - [sym_crate] = ACTIONS(409), - [sym_metavariable] = ACTIONS(407), - [sym_raw_string_literal] = ACTIONS(407), - [sym_float_literal] = ACTIONS(407), - [sym_block_comment] = ACTIONS(3), - }, - [517] = { - [sym_identifier] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_RPAREN] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_RBRACK] = ACTIONS(2137), - [anon_sym_DOLLAR] = ACTIONS(2135), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_as] = ACTIONS(2135), - [anon_sym_async] = ACTIONS(2135), - [anon_sym_await] = 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_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_where] = ACTIONS(2135), - [anon_sym_while] = ACTIONS(2135), - [sym_mutable_specifier] = ACTIONS(2135), - [sym_integer_literal] = ACTIONS(2137), - [aux_sym_string_literal_token1] = ACTIONS(2137), - [sym_char_literal] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(2135), - [anon_sym_false] = ACTIONS(2135), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2135), - [sym_super] = ACTIONS(2135), - [sym_crate] = ACTIONS(2135), - [sym_metavariable] = ACTIONS(2137), - [sym_raw_string_literal] = ACTIONS(2137), - [sym_float_literal] = ACTIONS(2137), - [sym_block_comment] = ACTIONS(3), - }, - [518] = { - [sym_parameter] = STATE(1901), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1698), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(682), - [anon_sym_union] = ACTIONS(682), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(2141), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [anon_sym_PIPE] = ACTIONS(2143), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2145), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [519] = { - [sym_identifier] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2147), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_await] = 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_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_where] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [sym_mutable_specifier] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2149), - [aux_sym_string_literal_token1] = ACTIONS(2149), - [sym_char_literal] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(2147), - [anon_sym_false] = ACTIONS(2147), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2147), - [sym_super] = ACTIONS(2147), - [sym_crate] = ACTIONS(2147), - [sym_metavariable] = ACTIONS(2149), - [sym_raw_string_literal] = ACTIONS(2149), - [sym_float_literal] = ACTIONS(2149), - [sym_block_comment] = ACTIONS(3), - }, - [520] = { - [sym_identifier] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_RPAREN] = ACTIONS(2153), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2153), - [anon_sym_RBRACK] = ACTIONS(2153), - [anon_sym_DOLLAR] = ACTIONS(2151), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2151), - [anon_sym_async] = ACTIONS(2151), - [anon_sym_await] = 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_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_where] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [sym_mutable_specifier] = ACTIONS(2151), - [sym_integer_literal] = ACTIONS(2153), - [aux_sym_string_literal_token1] = ACTIONS(2153), - [sym_char_literal] = ACTIONS(2153), - [anon_sym_true] = ACTIONS(2151), - [anon_sym_false] = ACTIONS(2151), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2151), - [sym_super] = ACTIONS(2151), - [sym_crate] = ACTIONS(2151), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2153), - [sym_float_literal] = ACTIONS(2153), - [sym_block_comment] = ACTIONS(3), - }, - [521] = { - [sym_attribute_item] = STATE(514), - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym_visibility_modifier] = STATE(600), - [sym__type] = STATE(1867), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_enum_variant_list_repeat1] = STATE(514), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [522] = { - [sym_identifier] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2157), - [anon_sym_RPAREN] = ACTIONS(2157), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_RBRACE] = ACTIONS(2157), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_RBRACK] = ACTIONS(2157), - [anon_sym_DOLLAR] = ACTIONS(2155), - [anon_sym_u8] = ACTIONS(2155), - [anon_sym_i8] = ACTIONS(2155), - [anon_sym_u16] = ACTIONS(2155), - [anon_sym_i16] = ACTIONS(2155), - [anon_sym_u32] = ACTIONS(2155), - [anon_sym_i32] = ACTIONS(2155), - [anon_sym_u64] = ACTIONS(2155), - [anon_sym_i64] = ACTIONS(2155), - [anon_sym_u128] = ACTIONS(2155), - [anon_sym_i128] = ACTIONS(2155), - [anon_sym_isize] = ACTIONS(2155), - [anon_sym_usize] = ACTIONS(2155), - [anon_sym_f32] = ACTIONS(2155), - [anon_sym_f64] = ACTIONS(2155), - [anon_sym_bool] = ACTIONS(2155), - [anon_sym_str] = ACTIONS(2155), - [anon_sym_char] = ACTIONS(2155), - [aux_sym__non_special_token_token1] = ACTIONS(2155), - [anon_sym_SQUOTE] = ACTIONS(2155), - [anon_sym_as] = ACTIONS(2155), - [anon_sym_async] = ACTIONS(2155), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_default] = ACTIONS(2155), - [anon_sym_enum] = ACTIONS(2155), - [anon_sym_fn] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_impl] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2155), - [anon_sym_loop] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_mod] = ACTIONS(2155), - [anon_sym_pub] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_static] = ACTIONS(2155), - [anon_sym_struct] = ACTIONS(2155), - [anon_sym_trait] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_union] = ACTIONS(2155), - [anon_sym_unsafe] = ACTIONS(2155), - [anon_sym_use] = ACTIONS(2155), - [anon_sym_where] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [sym_mutable_specifier] = ACTIONS(2155), - [sym_integer_literal] = ACTIONS(2157), - [aux_sym_string_literal_token1] = ACTIONS(2157), - [sym_char_literal] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2155), - [sym_super] = ACTIONS(2155), - [sym_crate] = ACTIONS(2155), - [sym_metavariable] = ACTIONS(2157), - [sym_raw_string_literal] = ACTIONS(2157), - [sym_float_literal] = ACTIONS(2157), - [sym_block_comment] = ACTIONS(3), - }, - [523] = { - [sym_identifier] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2161), - [anon_sym_RPAREN] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(2161), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_RBRACK] = ACTIONS(2161), - [anon_sym_DOLLAR] = ACTIONS(2159), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_await] = 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_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_where] = ACTIONS(2159), - [anon_sym_while] = ACTIONS(2159), - [sym_mutable_specifier] = ACTIONS(2159), - [sym_integer_literal] = ACTIONS(2161), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2161), - [anon_sym_true] = ACTIONS(2159), - [anon_sym_false] = ACTIONS(2159), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_crate] = ACTIONS(2159), - [sym_metavariable] = ACTIONS(2161), - [sym_raw_string_literal] = ACTIONS(2161), - [sym_float_literal] = ACTIONS(2161), - [sym_block_comment] = ACTIONS(3), - }, - [524] = { - [sym_function_modifiers] = STATE(2206), - [sym_const_parameter] = STATE(1804), - [sym_constrained_type_parameter] = STATE(1737), - [sym_optional_type_parameter] = STATE(1804), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1937), - [sym_bracketed_type] = STATE(2241), - [sym_qualified_type] = STATE(2327), - [sym_lifetime] = STATE(1546), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(2167), - [sym_block_comment] = ACTIONS(3), - }, - [525] = { - [sym_parameter] = STATE(2055), - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1784), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(682), - [anon_sym_union] = ACTIONS(682), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(2141), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2145), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [526] = { - [sym_function_modifiers] = STATE(2206), - [sym_higher_ranked_trait_bound] = STATE(1464), - [sym_removed_trait_bound] = STATE(1464), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1468), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1469), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(2169), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [527] = { - [sym_function_modifiers] = STATE(2206), - [sym_higher_ranked_trait_bound] = STATE(1502), - [sym_removed_trait_bound] = STATE(1502), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1492), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1490), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(2169), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [528] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1664), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(780), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [529] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1678), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(2175), - [anon_sym_union] = ACTIONS(2175), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [530] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1685), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(796), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [531] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1731), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(2181), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [532] = { - [sym_function_modifiers] = STATE(2206), - [sym_higher_ranked_trait_bound] = STATE(1502), - [sym_removed_trait_bound] = STATE(1502), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1501), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1497), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(2169), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [533] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1678), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(2175), - [anon_sym_union] = ACTIONS(2175), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2183), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [534] = { - [sym_function_modifiers] = STATE(2206), - [sym_higher_ranked_trait_bound] = STATE(1502), - [sym_removed_trait_bound] = STATE(1502), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1492), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(1497), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(2169), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [535] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(2042), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(2187), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [536] = { - [sym_function_modifiers] = STATE(2243), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(965), - [sym_bracketed_type] = STATE(2331), - [sym_lifetime] = STATE(2200), - [sym_array_type] = STATE(977), - [sym_for_lifetimes] = STATE(1220), - [sym_function_type] = STATE(977), - [sym_tuple_type] = STATE(977), - [sym_unit_type] = STATE(977), - [sym_generic_type] = STATE(894), - [sym_generic_type_with_turbofish] = STATE(2332), - [sym_bounded_type] = STATE(977), - [sym_reference_type] = STATE(977), - [sym_pointer_type] = STATE(977), - [sym_empty_type] = STATE(977), - [sym_abstract_type] = STATE(977), - [sym_dynamic_type] = STATE(977), - [sym_macro_invocation] = STATE(977), - [sym_scoped_identifier] = STATE(2174), - [sym_scoped_type_identifier] = STATE(712), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_LBRACK] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2195), - [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_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(2203), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_dyn] = ACTIONS(2211), - [sym_mutable_specifier] = ACTIONS(2213), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2215), - [sym_super] = ACTIONS(2215), - [sym_crate] = ACTIONS(2215), - [sym_metavariable] = ACTIONS(2217), - [sym_block_comment] = ACTIONS(3), - }, - [537] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1705), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(2219), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [538] = { - [sym_attribute_item] = STATE(538), - [aux_sym_enum_variant_list_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_RBRACK] = ACTIONS(2223), - [anon_sym_STAR] = ACTIONS(2223), - [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_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_for] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_loop] = ACTIONS(2221), - [anon_sym_match] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_union] = ACTIONS(2221), - [anon_sym_unsafe] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_POUND] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2223), - [anon_sym_ref] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2223), - [anon_sym_COLON_COLON] = ACTIONS(2223), - [anon_sym__] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2221), - [anon_sym_DOT_DOT] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2223), - [anon_sym_move] = ACTIONS(2221), - [sym_integer_literal] = ACTIONS(2223), - [aux_sym_string_literal_token1] = ACTIONS(2223), - [sym_char_literal] = ACTIONS(2223), - [anon_sym_true] = ACTIONS(2221), - [anon_sym_false] = ACTIONS(2221), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_crate] = ACTIONS(2221), - [sym_metavariable] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2223), - [sym_float_literal] = ACTIONS(2223), - [sym_block_comment] = ACTIONS(3), - }, - [539] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1705), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [540] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1331), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(2230), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2232), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [541] = { - [sym_function_modifiers] = STATE(2206), - [sym_extern_modifier] = STATE(1482), - [sym__type] = STATE(1331), - [sym_bracketed_type] = STATE(2241), - [sym_lifetime] = STATE(2204), - [sym_array_type] = STATE(1332), - [sym_for_lifetimes] = STATE(1222), - [sym_function_type] = STATE(1332), - [sym_tuple_type] = STATE(1332), - [sym_unit_type] = STATE(1332), - [sym_generic_type] = STATE(1288), - [sym_generic_type_with_turbofish] = STATE(2242), - [sym_bounded_type] = STATE(1332), - [sym_reference_type] = STATE(1332), - [sym_pointer_type] = STATE(1332), - [sym_empty_type] = STATE(1332), - [sym_abstract_type] = STATE(1332), - [sym_dynamic_type] = STATE(1332), - [sym_macro_invocation] = STATE(1332), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1259), - [aux_sym_function_modifiers_repeat1] = STATE(1482), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(676), - [anon_sym_for] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(680), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(2234), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [542] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1705), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(2236), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [543] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1705), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(2238), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [544] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1705), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, - [545] = { - [sym_bracketed_type] = STATE(2234), - [sym_generic_type] = STATE(2233), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_scoped_identifier] = STATE(1271), - [sym_scoped_type_identifier] = STATE(1839), - [sym_const_block] = STATE(1370), - [sym__pattern] = STATE(1705), - [sym_tuple_pattern] = STATE(1370), - [sym_slice_pattern] = STATE(1370), - [sym_tuple_struct_pattern] = STATE(1370), - [sym_struct_pattern] = STATE(1370), - [sym_remaining_field_pattern] = STATE(1370), - [sym_mut_pattern] = STATE(1370), - [sym_range_pattern] = STATE(1370), - [sym_ref_pattern] = STATE(1370), - [sym_captured_pattern] = STATE(1370), - [sym_reference_pattern] = STATE(1370), - [sym_or_pattern] = STATE(1370), - [sym__literal_pattern] = STATE(1327), - [sym_negative_literal] = STATE(1309), - [sym_string_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_ref] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(786), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(710), - [aux_sym_string_literal_token1] = ACTIONS(712), - [sym_char_literal] = ACTIONS(710), - [anon_sym_true] = ACTIONS(714), - [anon_sym_false] = ACTIONS(714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(710), - [sym_float_literal] = ACTIONS(710), - [sym_block_comment] = ACTIONS(3), - }, -}; - -static uint16_t ts_small_parse_table[] = { - [0] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2054), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [121] = 31, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2244), 1, - sym_identifier, - ACTIONS(2246), 1, - anon_sym_LT, - STATE(673), 1, - sym_type_parameters, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1486), 1, - sym_scoped_type_identifier, - STATE(1600), 1, - sym_generic_type, - STATE(1601), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [248] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2017), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [369] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, - anon_sym_LPAREN, - ACTIONS(2193), 1, - anon_sym_LBRACK, - ACTIONS(2197), 1, - anon_sym_STAR, - ACTIONS(2201), 1, - anon_sym_fn, - ACTIONS(2203), 1, - anon_sym_impl, - ACTIONS(2205), 1, - anon_sym_BANG, - ACTIONS(2207), 1, - anon_sym_COLON_COLON, - ACTIONS(2209), 1, - anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, - sym_metavariable, - ACTIONS(2248), 1, - anon_sym_SQUOTE, - ACTIONS(2250), 1, - sym_mutable_specifier, - STATE(536), 1, - sym_lifetime, - STATE(712), 1, - sym_scoped_type_identifier, - STATE(894), 1, - sym_generic_type, - STATE(1013), 1, - sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, - sym_scoped_identifier, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, - sym_bracketed_type, - STATE(2332), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(977), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2199), 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, - [496] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1705), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [617] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(1981), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [738] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1754), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [859] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1689), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [980] = 31, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2246), 1, - anon_sym_LT, - ACTIONS(2252), 1, - sym_identifier, - STATE(663), 1, - sym_type_parameters, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1447), 1, - sym_scoped_type_identifier, - STATE(1603), 1, - sym__type, - STATE(1648), 1, - sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [1107] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2050), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [1228] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1374), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [1349] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2254), 1, - anon_sym_RPAREN, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1744), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [1476] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - ACTIONS(2256), 1, - sym_mutable_specifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1369), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [1597] = 31, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2246), 1, - anon_sym_LT, - ACTIONS(2258), 1, - sym_identifier, - STATE(681), 1, - sym_type_parameters, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1446), 1, - sym_scoped_type_identifier, - STATE(1602), 1, - sym__type, - STATE(1651), 1, - sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [1724] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2260), 1, - anon_sym_RPAREN, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1886), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [1851] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2248), 1, - anon_sym_SQUOTE, - ACTIONS(2262), 1, - sym_mutable_specifier, - STATE(541), 1, - sym_lifetime, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1311), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [1978] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2012), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [2099] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1364), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [2220] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1732), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [2341] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1387), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [2462] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2264), 1, - anon_sym_RPAREN, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1886), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [2589] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - ACTIONS(2266), 1, - sym_mutable_specifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1712), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [2710] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2003), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [2831] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2268), 1, - anon_sym_RPAREN, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1886), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [2958] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1382), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [3079] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2060), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [3200] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1937), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - STATE(2327), 1, - sym_qualified_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [3327] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2248), 1, - anon_sym_SQUOTE, - ACTIONS(2270), 1, - sym_mutable_specifier, - STATE(535), 1, - sym_lifetime, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(2030), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [3454] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2272), 1, - anon_sym_RPAREN, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1699), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [3581] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - ACTIONS(2274), 1, - sym_mutable_specifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1694), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [3702] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2276), 1, - anon_sym_RPAREN, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1886), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [3829] = 31, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2246), 1, - anon_sym_LT, - ACTIONS(2278), 1, - sym_identifier, - STATE(606), 1, - sym_type_parameters, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1448), 1, - sym_scoped_type_identifier, - STATE(1592), 1, - sym__type, - STATE(1593), 1, - sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [3956] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2161), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [4077] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1366), 1, - sym__pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [4198] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2038), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [4319] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(1877), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [4440] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2033), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [4561] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2029), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [4682] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2028), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [4803] = 28, +static inline bool sym_identifier_character_set_3(int32_t c) { + return (c < 43020 + ? (c < 4096 + ? (c < 2693 + ? (c < 1969 + ? (c < 910 + ? (c < 736 + ? (c < 186 + ? (c < 170 + ? (c < 'a' + ? (c >= 'A' && c <= 'Z') + : c <= 'z') + : (c <= 170 || c == 181)) + : (c <= 186 || (c < 248 + ? (c < 216 + ? (c >= 192 && c <= 214) + : c <= 246) + : (c <= 705 || (c >= 710 && c <= 721))))) + : (c <= 740 || (c < 891 + ? (c < 880 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c >= 886 && c <= 887))) + : (c <= 893 || (c < 904 + ? (c < 902 + ? c == 895 + : c <= 902) + : (c <= 906 || c == 908)))))) + : (c <= 929 || (c < 1646 + ? (c < 1369 + ? (c < 1162 + ? (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153) + : (c <= 1327 || (c >= 1329 && c <= 1366))) + : (c <= 1369 || (c < 1519 + ? (c < 1488 + ? (c >= 1376 && c <= 1416) + : c <= 1514) + : (c <= 1522 || (c >= 1568 && c <= 1610))))) + : (c <= 1647 || (c < 1786 + ? (c < 1765 + ? (c < 1749 + ? (c >= 1649 && c <= 1747) + : c <= 1749) + : (c <= 1766 || (c >= 1774 && c <= 1775))) + : (c <= 1788 || (c < 1810 + ? (c < 1808 + ? c == 1791 + : c <= 1808) + : (c <= 1839 || (c >= 1869 && c <= 1957))))))))) + : (c <= 1969 || (c < 2474 + ? (c < 2208 + ? (c < 2074 + ? (c < 2042 + ? (c < 2036 + ? (c >= 1994 && c <= 2026) + : c <= 2037) + : (c <= 2042 || (c >= 2048 && c <= 2069))) + : (c <= 2074 || (c < 2112 + ? (c < 2088 + ? c == 2084 + : c <= 2088) + : (c <= 2136 || (c >= 2144 && c <= 2154))))) + : (c <= 2228 || (c < 2392 + ? (c < 2365 + ? (c < 2308 + ? (c >= 2230 && c <= 2247) + : c <= 2361) + : (c <= 2365 || c == 2384)) + : (c <= 2401 || (c < 2447 + ? (c < 2437 + ? (c >= 2417 && c <= 2432) + : c <= 2444) + : (c <= 2448 || (c >= 2451 && c <= 2472))))))) + : (c <= 2480 || (c < 2575 + ? (c < 2524 + ? (c < 2493 + ? (c < 2486 + ? c == 2482 + : c <= 2489) + : (c <= 2493 || c == 2510)) + : (c <= 2525 || (c < 2556 + ? (c < 2544 + ? (c >= 2527 && c <= 2529) + : c <= 2545) + : (c <= 2556 || (c >= 2565 && c <= 2570))))) + : (c <= 2576 || (c < 2616 + ? (c < 2610 + ? (c < 2602 + ? (c >= 2579 && c <= 2600) + : c <= 2608) + : (c <= 2611 || (c >= 2613 && c <= 2614))) + : (c <= 2617 || (c < 2654 + ? (c >= 2649 && c <= 2652) + : (c <= 2654 || (c >= 2674 && c <= 2676))))))))))) + : (c <= 2701 || (c < 3214 + ? (c < 2947 + ? (c < 2821 + ? (c < 2741 + ? (c < 2730 + ? (c < 2707 + ? (c >= 2703 && c <= 2705) + : c <= 2728) + : (c <= 2736 || (c >= 2738 && c <= 2739))) + : (c <= 2745 || (c < 2784 + ? (c < 2768 + ? c == 2749 + : c <= 2768) + : (c <= 2785 || c == 2809)))) + : (c <= 2828 || (c < 2869 + ? (c < 2858 + ? (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856) + : (c <= 2864 || (c >= 2866 && c <= 2867))) + : (c <= 2873 || (c < 2911 + ? (c < 2908 + ? c == 2877 + : c <= 2909) + : (c <= 2913 || c == 2929)))))) + : (c <= 2947 || (c < 3024 + ? (c < 2972 + ? (c < 2962 + ? (c < 2958 + ? (c >= 2949 && c <= 2954) + : c <= 2960) + : (c <= 2965 || (c >= 2969 && c <= 2970))) + : (c <= 2972 || (c < 2984 + ? (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980) + : (c <= 2986 || (c >= 2990 && c <= 3001))))) + : (c <= 3024 || (c < 3133 + ? (c < 3090 + ? (c < 3086 + ? (c >= 3077 && c <= 3084) + : c <= 3088) + : (c <= 3112 || (c >= 3114 && c <= 3129))) + : (c <= 3133 || (c < 3200 + ? (c < 3168 + ? (c >= 3160 && c <= 3162) + : c <= 3169) + : (c <= 3200 || (c >= 3205 && c <= 3212))))))))) + : (c <= 3216 || (c < 3520 + ? (c < 3346 + ? (c < 3294 + ? (c < 3253 + ? (c < 3242 + ? (c >= 3218 && c <= 3240) + : c <= 3251) + : (c <= 3257 || c == 3261)) + : (c <= 3294 || (c < 3332 + ? (c < 3313 + ? (c >= 3296 && c <= 3297) + : c <= 3314) + : (c <= 3340 || (c >= 3342 && c <= 3344))))) + : (c <= 3386 || (c < 3450 + ? (c < 3412 + ? (c < 3406 + ? c == 3389 + : c <= 3406) + : (c <= 3414 || (c >= 3423 && c <= 3425))) + : (c <= 3455 || (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || c == 3517)))))) + : (c <= 3526 || (c < 3762 + ? (c < 3716 + ? (c < 3648 + ? (c < 3634 + ? (c >= 3585 && c <= 3632) + : c <= 3634) + : (c <= 3654 || (c >= 3713 && c <= 3714))) + : (c <= 3716 || (c < 3749 + ? (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747) + : (c <= 3749 || (c >= 3751 && c <= 3760))))) + : (c <= 3762 || (c < 3840 + ? (c < 3782 + ? (c < 3776 + ? c == 3773 + : c <= 3780) + : (c <= 3782 || (c >= 3804 && c <= 3807))) + : (c <= 3840 || (c < 3913 + ? (c >= 3904 && c <= 3911) + : (c <= 3948 || (c >= 3976 && c <= 3980))))))))))))) + : (c <= 4138 || (c < 8025 + ? (c < 5952 + ? (c < 4752 + ? (c < 4295 + ? (c < 4197 + ? (c < 4186 + ? (c < 4176 + ? c == 4159 + : c <= 4181) + : (c <= 4189 || c == 4193)) + : (c <= 4198 || (c < 4238 + ? (c < 4213 + ? (c >= 4206 && c <= 4208) + : c <= 4225) + : (c <= 4238 || (c >= 4256 && c <= 4293))))) + : (c <= 4295 || (c < 4688 + ? (c < 4348 + ? (c < 4304 + ? c == 4301 + : c <= 4346) + : (c <= 4680 || (c >= 4682 && c <= 4685))) + : (c <= 4694 || (c < 4704 + ? (c < 4698 + ? c == 4696 + : c <= 4701) + : (c <= 4744 || (c >= 4746 && c <= 4749))))))) + : (c <= 4784 || (c < 5024 + ? (c < 4808 + ? (c < 4800 + ? (c < 4792 + ? (c >= 4786 && c <= 4789) + : c <= 4798) + : (c <= 4800 || (c >= 4802 && c <= 4805))) + : (c <= 4822 || (c < 4888 + ? (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885) + : (c <= 4954 || (c >= 4992 && c <= 5007))))) + : (c <= 5109 || (c < 5792 + ? (c < 5743 + ? (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740) + : (c <= 5759 || (c >= 5761 && c <= 5786))) + : (c <= 5866 || (c < 5902 + ? (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5900) + : (c <= 5905 || (c >= 5920 && c <= 5937))))))))) + : (c <= 5969 || (c < 7043 + ? (c < 6400 + ? (c < 6108 + ? (c < 6016 + ? (c < 5998 + ? (c >= 5984 && c <= 5996) + : c <= 6000) + : (c <= 6067 || c == 6103)) + : (c <= 6108 || (c < 6314 + ? (c < 6272 + ? (c >= 6176 && c <= 6264) + : c <= 6312) + : (c <= 6314 || (c >= 6320 && c <= 6389))))) + : (c <= 6430 || (c < 6656 + ? (c < 6528 + ? (c < 6512 + ? (c >= 6480 && c <= 6509) + : c <= 6516) + : (c <= 6571 || (c >= 6576 && c <= 6601))) + : (c <= 6678 || (c < 6917 + ? (c < 6823 + ? (c >= 6688 && c <= 6740) + : c <= 6823) + : (c <= 6963 || (c >= 6981 && c <= 6987))))))) + : (c <= 7072 || (c < 7406 + ? (c < 7258 + ? (c < 7168 + ? (c < 7098 + ? (c >= 7086 && c <= 7087) + : c <= 7141) + : (c <= 7203 || (c >= 7245 && c <= 7247))) + : (c <= 7293 || (c < 7357 + ? (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354) + : (c <= 7359 || (c >= 7401 && c <= 7404))))) + : (c <= 7411 || (c < 7960 + ? (c < 7424 + ? (c < 7418 + ? (c >= 7413 && c <= 7414) + : c <= 7418) + : (c <= 7615 || (c >= 7680 && c <= 7957))) + : (c <= 7965 || (c < 8008 + ? (c >= 7968 && c <= 8005) + : (c <= 8013 || (c >= 8016 && c <= 8023))))))))))) + : (c <= 8025 || (c < 11631 + ? (c < 8469 + ? (c < 8150 + ? (c < 8118 + ? (c < 8031 + ? (c < 8029 + ? c == 8027 + : c <= 8029) + : (c <= 8061 || (c >= 8064 && c <= 8116))) + : (c <= 8124 || (c < 8134 + ? (c < 8130 + ? c == 8126 + : c <= 8132) + : (c <= 8140 || (c >= 8144 && c <= 8147))))) + : (c <= 8155 || (c < 8319 + ? (c < 8182 + ? (c < 8178 + ? (c >= 8160 && c <= 8172) + : c <= 8180) + : (c <= 8188 || c == 8305)) + : (c <= 8319 || (c < 8455 + ? (c < 8450 + ? (c >= 8336 && c <= 8348) + : c <= 8450) + : (c <= 8455 || (c >= 8458 && c <= 8467))))))) + : (c <= 8469 || (c < 11264 + ? (c < 8490 + ? (c < 8486 + ? (c < 8484 + ? (c >= 8472 && c <= 8477) + : c <= 8484) + : (c <= 8486 || c == 8488)) + : (c <= 8505 || (c < 8526 + ? (c < 8517 + ? (c >= 8508 && c <= 8511) + : c <= 8521) + : (c <= 8526 || (c >= 8544 && c <= 8584))))) + : (c <= 11310 || (c < 11520 + ? (c < 11499 + ? (c < 11360 + ? (c >= 11312 && c <= 11358) + : c <= 11492) + : (c <= 11502 || (c >= 11506 && c <= 11507))) + : (c <= 11557 || (c < 11565 + ? c == 11559 + : (c <= 11565 || (c >= 11568 && c <= 11623))))))))) + : (c <= 11631 || (c < 12704 + ? (c < 12293 + ? (c < 11704 + ? (c < 11688 + ? (c < 11680 + ? (c >= 11648 && c <= 11670) + : c <= 11686) + : (c <= 11694 || (c >= 11696 && c <= 11702))) + : (c <= 11710 || (c < 11728 + ? (c < 11720 + ? (c >= 11712 && c <= 11718) + : c <= 11726) + : (c <= 11734 || (c >= 11736 && c <= 11742))))) + : (c <= 12295 || (c < 12445 + ? (c < 12344 + ? (c < 12337 + ? (c >= 12321 && c <= 12329) + : c <= 12341) + : (c <= 12348 || (c >= 12353 && c <= 12438))) + : (c <= 12447 || (c < 12549 + ? (c < 12540 + ? (c >= 12449 && c <= 12538) + : c <= 12543) + : (c <= 12591 || (c >= 12593 && c <= 12686))))))) + : (c <= 12735 || (c < 42623 + ? (c < 42192 + ? (c < 19968 + ? (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903) + : (c <= 40956 || (c >= 40960 && c <= 42124))) + : (c <= 42237 || (c < 42538 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42527) + : (c <= 42539 || (c >= 42560 && c <= 42606))))) + : (c <= 42653 || (c < 42946 + ? (c < 42786 + ? (c < 42775 + ? (c >= 42656 && c <= 42735) + : c <= 42783) + : (c <= 42888 || (c >= 42891 && c <= 42943))) + : (c <= 42954 || (c < 43011 + ? (c >= 42997 && c <= 43009) + : (c <= 43013 || (c >= 43015 && c <= 43018))))))))))))))) + : (c <= 43042 || (c < 70453 + ? (c < 66176 + ? (c < 64112 + ? (c < 43697 + ? (c < 43471 + ? (c < 43261 + ? (c < 43250 + ? (c < 43138 + ? (c >= 43072 && c <= 43123) + : c <= 43187) + : (c <= 43255 || c == 43259)) + : (c <= 43262 || (c < 43360 + ? (c < 43312 + ? (c >= 43274 && c <= 43301) + : c <= 43334) + : (c <= 43388 || (c >= 43396 && c <= 43442))))) + : (c <= 43471 || (c < 43584 + ? (c < 43514 + ? (c < 43494 + ? (c >= 43488 && c <= 43492) + : c <= 43503) + : (c <= 43518 || (c >= 43520 && c <= 43560))) + : (c <= 43586 || (c < 43642 + ? (c < 43616 + ? (c >= 43588 && c <= 43595) + : c <= 43638) + : (c <= 43642 || (c >= 43646 && c <= 43695))))))) + : (c <= 43697 || (c < 43793 + ? (c < 43739 + ? (c < 43712 + ? (c < 43705 + ? (c >= 43701 && c <= 43702) + : c <= 43709) + : (c <= 43712 || c == 43714)) + : (c <= 43741 || (c < 43777 + ? (c < 43762 + ? (c >= 43744 && c <= 43754) + : c <= 43764) + : (c <= 43782 || (c >= 43785 && c <= 43790))))) + : (c <= 43798 || (c < 43888 + ? (c < 43824 + ? (c < 43816 + ? (c >= 43808 && c <= 43814) + : c <= 43822) + : (c <= 43866 || (c >= 43868 && c <= 43881))) + : (c <= 44002 || (c < 55243 + ? (c < 55216 + ? (c >= 44032 && c <= 55203) + : c <= 55238) + : (c <= 55291 || (c >= 63744 && c <= 64109))))))))) + : (c <= 64217 || (c < 65147 + ? (c < 64326 + ? (c < 64298 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64285 || (c >= 64287 && c <= 64296))) + : (c <= 64310 || (c < 64320 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318) + : (c <= 64321 || (c >= 64323 && c <= 64324))))) + : (c <= 64433 || (c < 65008 + ? (c < 64848 + ? (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))) + : (c <= 65017 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || c == 65145)))))) + : (c <= 65147 || (c < 65498 + ? (c < 65382 + ? (c < 65313 + ? (c < 65151 + ? c == 65149 + : c <= 65276) + : (c <= 65338 || (c >= 65345 && c <= 65370))) + : (c <= 65437 || (c < 65482 + ? (c < 65474 + ? (c >= 65440 && c <= 65470) + : c <= 65479) + : (c <= 65487 || (c >= 65490 && c <= 65495))))) + : (c <= 65500 || (c < 65599 + ? (c < 65576 + ? (c < 65549 + ? (c >= 65536 && c <= 65547) + : c <= 65574) + : (c <= 65594 || (c >= 65596 && c <= 65597))) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : (c <= 65786 || (c >= 65856 && c <= 65908))))))))))) + : (c <= 66204 || (c < 68416 + ? (c < 67639 + ? (c < 66736 + ? (c < 66432 + ? (c < 66349 + ? (c < 66304 + ? (c >= 66208 && c <= 66256) + : c <= 66335) + : (c <= 66378 || (c >= 66384 && c <= 66421))) + : (c <= 66461 || (c < 66513 + ? (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511) + : (c <= 66517 || (c >= 66560 && c <= 66717))))) + : (c <= 66771 || (c < 67392 + ? (c < 66864 + ? (c < 66816 + ? (c >= 66776 && c <= 66811) + : c <= 66855) + : (c <= 66915 || (c >= 67072 && c <= 67382))) + : (c <= 67413 || (c < 67592 + ? (c < 67584 + ? (c >= 67424 && c <= 67431) + : c <= 67589) + : (c <= 67592 || (c >= 67594 && c <= 67637))))))) + : (c <= 67640 || (c < 68030 + ? (c < 67808 + ? (c < 67680 + ? (c < 67647 + ? c == 67644 + : c <= 67669) + : (c <= 67702 || (c >= 67712 && c <= 67742))) + : (c <= 67826 || (c < 67872 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : c <= 67861) + : (c <= 67897 || (c >= 67968 && c <= 68023))))) + : (c <= 68031 || (c < 68192 + ? (c < 68117 + ? (c < 68112 + ? c == 68096 + : c <= 68115) + : (c <= 68119 || (c >= 68121 && c <= 68149))) + : (c <= 68220 || (c < 68297 + ? (c < 68288 + ? (c >= 68224 && c <= 68252) + : c <= 68295) + : (c <= 68324 || (c >= 68352 && c <= 68405))))))))) + : (c <= 68437 || (c < 69968 + ? (c < 69415 + ? (c < 68800 + ? (c < 68608 + ? (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497) + : (c <= 68680 || (c >= 68736 && c <= 68786))) + : (c <= 68850 || (c < 69296 + ? (c < 69248 + ? (c >= 68864 && c <= 68899) + : c <= 69289) + : (c <= 69297 || (c >= 69376 && c <= 69404))))) + : (c <= 69415 || (c < 69763 + ? (c < 69600 + ? (c < 69552 + ? (c >= 69424 && c <= 69445) + : c <= 69572) + : (c <= 69622 || (c >= 69635 && c <= 69687))) + : (c <= 69807 || (c < 69956 + ? (c < 69891 + ? (c >= 69840 && c <= 69864) + : c <= 69926) + : (c <= 69956 || c == 69959)))))) + : (c <= 70002 || (c < 70282 + ? (c < 70108 + ? (c < 70081 + ? (c < 70019 + ? c == 70006 + : c <= 70066) + : (c <= 70084 || c == 70106)) + : (c <= 70108 || (c < 70272 + ? (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70187) + : (c <= 70278 || c == 70280)))) + : (c <= 70285 || (c < 70415 + ? (c < 70320 + ? (c < 70303 + ? (c >= 70287 && c <= 70301) + : c <= 70312) + : (c <= 70366 || (c >= 70405 && c <= 70412))) + : (c <= 70416 || (c < 70442 + ? (c >= 70419 && c <= 70440) + : (c <= 70448 || (c >= 70450 && c <= 70451))))))))))))) + : (c <= 70457 || (c < 113808 + ? (c < 72818 + ? (c < 71945 + ? (c < 71040 + ? (c < 70727 + ? (c < 70493 + ? (c < 70480 + ? c == 70461 + : c <= 70480) + : (c <= 70497 || (c >= 70656 && c <= 70708))) + : (c <= 70730 || (c < 70852 + ? (c < 70784 + ? (c >= 70751 && c <= 70753) + : c <= 70831) + : (c <= 70853 || c == 70855)))) + : (c <= 71086 || (c < 71352 + ? (c < 71236 + ? (c < 71168 + ? (c >= 71128 && c <= 71131) + : c <= 71215) + : (c <= 71236 || (c >= 71296 && c <= 71338))) + : (c <= 71352 || (c < 71840 + ? (c < 71680 + ? (c >= 71424 && c <= 71450) + : c <= 71723) + : (c <= 71903 || (c >= 71935 && c <= 71942))))))) + : (c <= 71945 || (c < 72192 + ? (c < 72001 + ? (c < 71960 + ? (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958) + : (c <= 71983 || c == 71999)) + : (c <= 72001 || (c < 72161 + ? (c < 72106 + ? (c >= 72096 && c <= 72103) + : c <= 72144) + : (c <= 72161 || c == 72163)))) + : (c <= 72192 || (c < 72349 + ? (c < 72272 + ? (c < 72250 + ? (c >= 72203 && c <= 72242) + : c <= 72250) + : (c <= 72272 || (c >= 72284 && c <= 72329))) + : (c <= 72349 || (c < 72714 + ? (c < 72704 + ? (c >= 72384 && c <= 72440) + : c <= 72712) + : (c <= 72750 || c == 72768)))))))) + : (c <= 72847 || (c < 92992 + ? (c < 73648 + ? (c < 73056 + ? (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73008 || c == 73030)) + : (c <= 73061 || (c < 73112 + ? (c < 73066 + ? (c >= 73063 && c <= 73064) + : c <= 73097) + : (c <= 73112 || (c >= 73440 && c <= 73458))))) + : (c <= 73648 || (c < 82944 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c >= 77824 && c <= 78894))) + : (c <= 83526 || (c < 92880 + ? (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766) + : (c <= 92909 || (c >= 92928 && c <= 92975))))))) + : (c <= 92995 || (c < 100352 + ? (c < 94032 + ? (c < 93760 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : c <= 93071) + : (c <= 93823 || (c >= 93952 && c <= 94026))) + : (c <= 94032 || (c < 94179 + ? (c < 94176 + ? (c >= 94099 && c <= 94111) + : c <= 94177) + : (c <= 94179 || (c >= 94208 && c <= 100343))))) + : (c <= 101589 || (c < 110960 + ? (c < 110928 + ? (c < 110592 + ? (c >= 101632 && c <= 101640) + : c <= 110878) + : (c <= 110930 || (c >= 110948 && c <= 110951))) + : (c <= 111355 || (c < 113776 + ? (c >= 113664 && c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))))))))))) + : (c <= 113817 || (c < 126469 + ? (c < 120488 + ? (c < 120005 + ? (c < 119973 + ? (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)) + : (c <= 119974 || (c < 119995 + ? (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993) + : (c <= 119995 || (c >= 119997 && c <= 120003))))) + : (c <= 120069 || (c < 120123 + ? (c < 120086 + ? (c < 120077 + ? (c >= 120071 && c <= 120074) + : c <= 120084) + : (c <= 120092 || (c >= 120094 && c <= 120121))) + : (c <= 120126 || (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c >= 120146 && c <= 120485))))))) + : (c <= 120512 || (c < 120772 + ? (c < 120630 + ? (c < 120572 + ? (c < 120540 + ? (c >= 120514 && c <= 120538) + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))) + : (c <= 120654 || (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c >= 120746 && c <= 120770))))) + : (c <= 120779 || (c < 124928 + ? (c < 123214 + ? (c < 123191 + ? (c >= 123136 && c <= 123180) + : c <= 123197) + : (c <= 123214 || (c >= 123584 && c <= 123627))) + : (c <= 125124 || (c < 125259 + ? (c >= 125184 && c <= 125251) + : (c <= 125259 || (c >= 126464 && c <= 126467))))))))) + : (c <= 126495 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c >= 126505 && c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173789) + : (c <= 177972 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 194560 + ? (c >= 183984 && c <= 191456) + : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); +} + +static inline bool sym_identifier_character_set_4(int32_t c) { + return (c < 43072 + ? (c < 3724 + ? (c < 2738 + ? (c < 2045 + ? (c < 1155 + ? (c < 748 + ? (c < 186 + ? (c < 170 + ? (c < 'a' + ? (c >= '0' && c <= 'Z') + : c <= 'z') + : (c <= 170 || (c < 183 + ? c == 181 + : c <= 183))) + : (c <= 186 || (c < 248 + ? (c < 216 + ? (c >= 192 && c <= 214) + : c <= 246) + : (c <= 705 || (c < 736 + ? (c >= 710 && c <= 721) + : c <= 740))))) + : (c <= 748 || (c < 902 + ? (c < 886 + ? (c < 768 + ? c == 750 + : c <= 884) + : (c <= 887 || (c < 895 + ? (c >= 891 && c <= 893) + : c <= 895))) + : (c <= 906 || (c < 931 + ? (c < 910 + ? c == 908 + : c <= 929) + : (c <= 1013 || (c >= 1015 && c <= 1153))))))) + : (c <= 1159 || (c < 1552 + ? (c < 1471 + ? (c < 1369 + ? (c < 1329 + ? (c >= 1162 && c <= 1327) + : c <= 1366) + : (c <= 1369 || (c < 1425 + ? (c >= 1376 && c <= 1416) + : c <= 1469))) + : (c <= 1471 || (c < 1479 + ? (c < 1476 + ? (c >= 1473 && c <= 1474) + : c <= 1477) + : (c <= 1479 || (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522))))) + : (c <= 1562 || (c < 1791 + ? (c < 1749 + ? (c < 1646 + ? (c >= 1568 && c <= 1641) + : c <= 1747) + : (c <= 1756 || (c < 1770 + ? (c >= 1759 && c <= 1768) + : c <= 1788))) + : (c <= 1791 || (c < 1984 + ? (c < 1869 + ? (c >= 1808 && c <= 1866) + : c <= 1969) + : (c <= 2037 || c == 2042)))))))) + : (c <= 2045 || (c < 2556 + ? (c < 2451 + ? (c < 2259 + ? (c < 2144 + ? (c < 2112 + ? (c >= 2048 && c <= 2093) + : c <= 2139) + : (c <= 2154 || (c < 2230 + ? (c >= 2208 && c <= 2228) + : c <= 2247))) + : (c <= 2273 || (c < 2417 + ? (c < 2406 + ? (c >= 2275 && c <= 2403) + : c <= 2415) + : (c <= 2435 || (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448))))) + : (c <= 2472 || (c < 2507 + ? (c < 2486 + ? (c < 2482 + ? (c >= 2474 && c <= 2480) + : c <= 2482) + : (c <= 2489 || (c < 2503 + ? (c >= 2492 && c <= 2500) + : c <= 2504))) + : (c <= 2510 || (c < 2527 + ? (c < 2524 + ? c == 2519 + : c <= 2525) + : (c <= 2531 || (c >= 2534 && c <= 2545))))))) + : (c <= 2556 || (c < 2631 + ? (c < 2602 + ? (c < 2565 + ? (c < 2561 + ? c == 2558 + : c <= 2563) + : (c <= 2570 || (c < 2579 + ? (c >= 2575 && c <= 2576) + : c <= 2600))) + : (c <= 2608 || (c < 2616 + ? (c < 2613 + ? (c >= 2610 && c <= 2611) + : c <= 2614) + : (c <= 2617 || (c < 2622 + ? c == 2620 + : c <= 2626))))) + : (c <= 2632 || (c < 2689 + ? (c < 2649 + ? (c < 2641 + ? (c >= 2635 && c <= 2637) + : c <= 2641) + : (c <= 2652 || (c < 2662 + ? c == 2654 + : c <= 2677))) + : (c <= 2691 || (c < 2707 + ? (c < 2703 + ? (c >= 2693 && c <= 2701) + : c <= 2705) + : (c <= 2728 || (c >= 2730 && c <= 2736))))))))))) + : (c <= 2739 || (c < 3146 + ? (c < 2929 + ? (c < 2835 + ? (c < 2784 + ? (c < 2759 + ? (c < 2748 + ? (c >= 2741 && c <= 2745) + : c <= 2757) + : (c <= 2761 || (c < 2768 + ? (c >= 2763 && c <= 2765) + : c <= 2768))) + : (c <= 2787 || (c < 2817 + ? (c < 2809 + ? (c >= 2790 && c <= 2799) + : c <= 2815) + : (c <= 2819 || (c < 2831 + ? (c >= 2821 && c <= 2828) + : c <= 2832))))) + : (c <= 2856 || (c < 2891 + ? (c < 2869 + ? (c < 2866 + ? (c >= 2858 && c <= 2864) + : c <= 2867) + : (c <= 2873 || (c < 2887 + ? (c >= 2876 && c <= 2884) + : c <= 2888))) + : (c <= 2893 || (c < 2911 + ? (c < 2908 + ? (c >= 2901 && c <= 2903) + : c <= 2909) + : (c <= 2915 || (c >= 2918 && c <= 2927))))))) + : (c <= 2929 || (c < 3014 + ? (c < 2972 + ? (c < 2958 + ? (c < 2949 + ? (c >= 2946 && c <= 2947) + : c <= 2954) + : (c <= 2960 || (c < 2969 + ? (c >= 2962 && c <= 2965) + : c <= 2970))) + : (c <= 2972 || (c < 2984 + ? (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980) + : (c <= 2986 || (c < 3006 + ? (c >= 2990 && c <= 3001) + : c <= 3010))))) + : (c <= 3016 || (c < 3086 + ? (c < 3031 + ? (c < 3024 + ? (c >= 3018 && c <= 3021) + : c <= 3024) + : (c <= 3031 || (c < 3072 + ? (c >= 3046 && c <= 3055) + : c <= 3084))) + : (c <= 3088 || (c < 3133 + ? (c < 3114 + ? (c >= 3090 && c <= 3112) + : c <= 3129) + : (c <= 3140 || (c >= 3142 && c <= 3144))))))))) + : (c <= 3149 || (c < 3402 + ? (c < 3270 + ? (c < 3205 + ? (c < 3168 + ? (c < 3160 + ? (c >= 3157 && c <= 3158) + : c <= 3162) + : (c <= 3171 || (c < 3200 + ? (c >= 3174 && c <= 3183) + : c <= 3203))) + : (c <= 3212 || (c < 3242 + ? (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240) + : (c <= 3251 || (c < 3260 + ? (c >= 3253 && c <= 3257) + : c <= 3268))))) + : (c <= 3272 || (c < 3313 + ? (c < 3294 + ? (c < 3285 + ? (c >= 3274 && c <= 3277) + : c <= 3286) + : (c <= 3294 || (c < 3302 + ? (c >= 3296 && c <= 3299) + : c <= 3311))) + : (c <= 3314 || (c < 3346 + ? (c < 3342 + ? (c >= 3328 && c <= 3340) + : c <= 3344) + : (c <= 3396 || (c >= 3398 && c <= 3400))))))) + : (c <= 3406 || (c < 3535 + ? (c < 3461 + ? (c < 3430 + ? (c < 3423 + ? (c >= 3412 && c <= 3415) + : c <= 3427) + : (c <= 3439 || (c < 3457 + ? (c >= 3450 && c <= 3455) + : c <= 3459))) + : (c <= 3478 || (c < 3517 + ? (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515) + : (c <= 3517 || (c < 3530 + ? (c >= 3520 && c <= 3526) + : c <= 3530))))) + : (c <= 3540 || (c < 3648 + ? (c < 3558 + ? (c < 3544 + ? c == 3542 + : c <= 3551) + : (c <= 3567 || (c < 3585 + ? (c >= 3570 && c <= 3571) + : c <= 3642))) + : (c <= 3662 || (c < 3716 + ? (c < 3713 + ? (c >= 3664 && c <= 3673) + : c <= 3714) + : (c <= 3716 || (c >= 3718 && c <= 3722))))))))))))) + : (c <= 3747 || (c < 7312 + ? (c < 5112 + ? (c < 4295 + ? (c < 3895 + ? (c < 3792 + ? (c < 3776 + ? (c < 3751 + ? c == 3749 + : c <= 3773) + : (c <= 3780 || (c < 3784 + ? c == 3782 + : c <= 3789))) + : (c <= 3801 || (c < 3864 + ? (c < 3840 + ? (c >= 3804 && c <= 3807) + : c <= 3840) + : (c <= 3865 || (c < 3893 + ? (c >= 3872 && c <= 3881) + : c <= 3893))))) + : (c <= 3895 || (c < 3993 + ? (c < 3913 + ? (c < 3902 + ? c == 3897 + : c <= 3911) + : (c <= 3948 || (c < 3974 + ? (c >= 3953 && c <= 3972) + : c <= 3991))) + : (c <= 4028 || (c < 4176 + ? (c < 4096 + ? c == 4038 + : c <= 4169) + : (c <= 4253 || (c >= 4256 && c <= 4293))))))) + : (c <= 4295 || (c < 4792 + ? (c < 4696 + ? (c < 4348 + ? (c < 4304 + ? c == 4301 + : c <= 4346) + : (c <= 4680 || (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694))) + : (c <= 4696 || (c < 4746 + ? (c < 4704 + ? (c >= 4698 && c <= 4701) + : c <= 4744) + : (c <= 4749 || (c < 4786 + ? (c >= 4752 && c <= 4784) + : c <= 4789))))) + : (c <= 4798 || (c < 4888 + ? (c < 4808 + ? (c < 4802 + ? c == 4800 + : c <= 4805) + : (c <= 4822 || (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885))) + : (c <= 4954 || (c < 4992 + ? (c < 4969 + ? (c >= 4957 && c <= 4959) + : c <= 4977) + : (c <= 5007 || (c >= 5024 && c <= 5109))))))))) + : (c <= 5117 || (c < 6432 + ? (c < 6002 + ? (c < 5888 + ? (c < 5761 + ? (c < 5743 + ? (c >= 5121 && c <= 5740) + : c <= 5759) + : (c <= 5786 || (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880))) + : (c <= 5900 || (c < 5952 + ? (c < 5920 + ? (c >= 5902 && c <= 5908) + : c <= 5940) + : (c <= 5971 || (c < 5998 + ? (c >= 5984 && c <= 5996) + : c <= 6000))))) + : (c <= 6003 || (c < 6160 + ? (c < 6108 + ? (c < 6103 + ? (c >= 6016 && c <= 6099) + : c <= 6103) + : (c <= 6109 || (c < 6155 + ? (c >= 6112 && c <= 6121) + : c <= 6157))) + : (c <= 6169 || (c < 6320 + ? (c < 6272 + ? (c >= 6176 && c <= 6264) + : c <= 6314) + : (c <= 6389 || (c >= 6400 && c <= 6430))))))) + : (c <= 6443 || (c < 6823 + ? (c < 6608 + ? (c < 6512 + ? (c < 6470 + ? (c >= 6448 && c <= 6459) + : c <= 6509) + : (c <= 6516 || (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601))) + : (c <= 6618 || (c < 6752 + ? (c < 6688 + ? (c >= 6656 && c <= 6683) + : c <= 6750) + : (c <= 6780 || (c < 6800 + ? (c >= 6783 && c <= 6793) + : c <= 6809))))) + : (c <= 6823 || (c < 7040 + ? (c < 6912 + ? (c < 6847 + ? (c >= 6832 && c <= 6845) + : c <= 6848) + : (c <= 6987 || (c < 7019 + ? (c >= 6992 && c <= 7001) + : c <= 7027))) + : (c <= 7155 || (c < 7245 + ? (c < 7232 + ? (c >= 7168 && c <= 7223) + : c <= 7241) + : (c <= 7293 || (c >= 7296 && c <= 7304))))))))))) + : (c <= 7354 || (c < 11312 + ? (c < 8182 + ? (c < 8029 + ? (c < 7960 + ? (c < 7380 + ? (c < 7376 + ? (c >= 7357 && c <= 7359) + : c <= 7378) + : (c <= 7418 || (c < 7675 + ? (c >= 7424 && c <= 7673) + : c <= 7957))) + : (c <= 7965 || (c < 8016 + ? (c < 8008 + ? (c >= 7968 && c <= 8005) + : c <= 8013) + : (c <= 8023 || (c < 8027 + ? c == 8025 + : c <= 8027))))) + : (c <= 8029 || (c < 8134 + ? (c < 8118 + ? (c < 8064 + ? (c >= 8031 && c <= 8061) + : c <= 8116) + : (c <= 8124 || (c < 8130 + ? c == 8126 + : c <= 8132))) + : (c <= 8140 || (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c >= 8178 && c <= 8180))))))) + : (c <= 8188 || (c < 8469 + ? (c < 8400 + ? (c < 8305 + ? (c < 8276 + ? (c >= 8255 && c <= 8256) + : c <= 8276) + : (c <= 8305 || (c < 8336 + ? c == 8319 + : c <= 8348))) + : (c <= 8412 || (c < 8450 + ? (c < 8421 + ? c == 8417 + : c <= 8432) + : (c <= 8450 || (c < 8458 + ? c == 8455 + : c <= 8467))))) + : (c <= 8469 || (c < 8508 + ? (c < 8486 + ? (c < 8484 + ? (c >= 8472 && c <= 8477) + : c <= 8484) + : (c <= 8486 || (c < 8490 + ? c == 8488 + : c <= 8505))) + : (c <= 8511 || (c < 8544 + ? (c < 8526 + ? (c >= 8517 && c <= 8521) + : c <= 8526) + : (c <= 8584 || (c >= 11264 && c <= 11310))))))))) + : (c <= 11358 || (c < 12441 + ? (c < 11704 + ? (c < 11568 + ? (c < 11520 + ? (c < 11499 + ? (c >= 11360 && c <= 11492) + : c <= 11507) + : (c <= 11557 || (c < 11565 + ? c == 11559 + : c <= 11565))) + : (c <= 11623 || (c < 11680 + ? (c < 11647 + ? c == 11631 + : c <= 11670) + : (c <= 11686 || (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702))))) + : (c <= 11710 || (c < 12293 + ? (c < 11728 + ? (c < 11720 + ? (c >= 11712 && c <= 11718) + : c <= 11726) + : (c <= 11734 || (c < 11744 + ? (c >= 11736 && c <= 11742) + : c <= 11775))) + : (c <= 12295 || (c < 12344 + ? (c < 12337 + ? (c >= 12321 && c <= 12335) + : c <= 12341) + : (c <= 12348 || (c >= 12353 && c <= 12438))))))) + : (c <= 12442 || (c < 42240 + ? (c < 12704 + ? (c < 12540 + ? (c < 12449 + ? (c >= 12445 && c <= 12447) + : c <= 12538) + : (c <= 12543 || (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686))) + : (c <= 12735 || (c < 19968 + ? (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903) + : (c <= 40956 || (c < 42192 + ? (c >= 40960 && c <= 42124) + : c <= 42237))))) + : (c <= 42508 || (c < 42786 + ? (c < 42612 + ? (c < 42560 + ? (c >= 42512 && c <= 42539) + : c <= 42607) + : (c <= 42621 || (c < 42775 + ? (c >= 42623 && c <= 42737) + : c <= 42783))) + : (c <= 42888 || (c < 42997 + ? (c < 42946 + ? (c >= 42891 && c <= 42943) + : c <= 42954) + : (c <= 43047 || c == 43052)))))))))))))) + : (c <= 43123 || (c < 71096 + ? (c < 66864 + ? (c < 64914 + ? (c < 43816 + ? (c < 43584 + ? (c < 43312 + ? (c < 43232 + ? (c < 43216 + ? (c >= 43136 && c <= 43205) + : c <= 43225) + : (c <= 43255 || (c < 43261 + ? c == 43259 + : c <= 43309))) + : (c <= 43347 || (c < 43471 + ? (c < 43392 + ? (c >= 43360 && c <= 43388) + : c <= 43456) + : (c <= 43481 || (c < 43520 + ? (c >= 43488 && c <= 43518) + : c <= 43574))))) + : (c <= 43597 || (c < 43762 + ? (c < 43642 + ? (c < 43616 + ? (c >= 43600 && c <= 43609) + : c <= 43638) + : (c <= 43714 || (c < 43744 + ? (c >= 43739 && c <= 43741) + : c <= 43759))) + : (c <= 43766 || (c < 43793 + ? (c < 43785 + ? (c >= 43777 && c <= 43782) + : c <= 43790) + : (c <= 43798 || (c >= 43808 && c <= 43814))))))) + : (c <= 43822 || (c < 64275 + ? (c < 44032 + ? (c < 43888 + ? (c < 43868 + ? (c >= 43824 && c <= 43866) + : c <= 43881) + : (c <= 44010 || (c < 44016 + ? (c >= 44012 && c <= 44013) + : c <= 44025))) + : (c <= 55203 || (c < 63744 + ? (c < 55243 + ? (c >= 55216 && c <= 55238) + : c <= 55291) + : (c <= 64109 || (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262))))) + : (c <= 64279 || (c < 64323 + ? (c < 64312 + ? (c < 64298 + ? (c >= 64285 && c <= 64296) + : c <= 64310) + : (c <= 64316 || (c < 64320 + ? c == 64318 + : c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65549 + ? (c < 65151 + ? (c < 65137 + ? (c < 65056 + ? (c < 65024 + ? (c >= 65008 && c <= 65017) + : c <= 65039) + : (c <= 65071 || (c < 65101 + ? (c >= 65075 && c <= 65076) + : c <= 65103))) + : (c <= 65137 || (c < 65145 + ? (c < 65143 + ? c == 65139 + : c <= 65143) + : (c <= 65145 || (c < 65149 + ? c == 65147 + : c <= 65149))))) + : (c <= 65276 || (c < 65474 + ? (c < 65343 + ? (c < 65313 + ? (c >= 65296 && c <= 65305) + : c <= 65338) + : (c <= 65343 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65470))) + : (c <= 65479 || (c < 65498 + ? (c < 65490 + ? (c >= 65482 && c <= 65487) + : c <= 65495) + : (c <= 65500 || (c >= 65536 && c <= 65547))))))) + : (c <= 65574 || (c < 66349 + ? (c < 65856 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786))) + : (c <= 65908 || (c < 66208 + ? (c < 66176 + ? c == 66045 + : c <= 66204) + : (c <= 66256 || (c < 66304 + ? c == 66272 + : c <= 66335))))) + : (c <= 66378 || (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66426) + : c <= 66461) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))) + : (c <= 66717 || (c < 66776 + ? (c < 66736 + ? (c >= 66720 && c <= 66729) + : c <= 66771) + : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) + : (c <= 66915 || (c < 69632 + ? (c < 68152 + ? (c < 67808 + ? (c < 67594 + ? (c < 67424 + ? (c < 67392 + ? (c >= 67072 && c <= 67382) + : c <= 67413) + : (c <= 67431 || (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592))) + : (c <= 67637 || (c < 67647 + ? (c < 67644 + ? (c >= 67639 && c <= 67640) + : c <= 67644) + : (c <= 67669 || (c < 67712 + ? (c >= 67680 && c <= 67702) + : c <= 67742))))) + : (c <= 67826 || (c < 68096 + ? (c < 67872 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : c <= 67861) + : (c <= 67897 || (c < 68030 + ? (c >= 67968 && c <= 68023) + : c <= 68031))) + : (c <= 68099 || (c < 68117 + ? (c < 68108 + ? (c >= 68101 && c <= 68102) + : c <= 68115) + : (c <= 68119 || (c >= 68121 && c <= 68149))))))) + : (c <= 68154 || (c < 68800 + ? (c < 68352 + ? (c < 68224 + ? (c < 68192 + ? c == 68159 + : c <= 68220) + : (c <= 68252 || (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68326))) + : (c <= 68405 || (c < 68480 + ? (c < 68448 + ? (c >= 68416 && c <= 68437) + : c <= 68466) + : (c <= 68497 || (c < 68736 + ? (c >= 68608 && c <= 68680) + : c <= 68786))))) + : (c <= 68850 || (c < 69376 + ? (c < 69248 + ? (c < 68912 + ? (c >= 68864 && c <= 68903) + : c <= 68921) + : (c <= 69289 || (c < 69296 + ? (c >= 69291 && c <= 69292) + : c <= 69297))) + : (c <= 69404 || (c < 69552 + ? (c < 69424 + ? c == 69415 + : c <= 69456) + : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) + : (c <= 69702 || (c < 70384 + ? (c < 70094 + ? (c < 69942 + ? (c < 69840 + ? (c < 69759 + ? (c >= 69734 && c <= 69743) + : c <= 69818) + : (c <= 69864 || (c < 69888 + ? (c >= 69872 && c <= 69881) + : c <= 69940))) + : (c <= 69951 || (c < 70006 + ? (c < 69968 + ? (c >= 69956 && c <= 69959) + : c <= 70003) + : (c <= 70006 || (c < 70089 + ? (c >= 70016 && c <= 70084) + : c <= 70092))))) + : (c <= 70106 || (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70199 || (c < 70272 + ? c == 70206 + : c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70378))))))) + : (c <= 70393 || (c < 70487 + ? (c < 70450 + ? (c < 70415 + ? (c < 70405 + ? (c >= 70400 && c <= 70403) + : c <= 70412) + : (c <= 70416 || (c < 70442 + ? (c >= 70419 && c <= 70440) + : c <= 70448))) + : (c <= 70451 || (c < 70471 + ? (c < 70459 + ? (c >= 70453 && c <= 70457) + : c <= 70468) + : (c <= 70472 || (c < 70480 + ? (c >= 70475 && c <= 70477) + : c <= 70480))))) + : (c <= 70487 || (c < 70750 + ? (c < 70512 + ? (c < 70502 + ? (c >= 70493 && c <= 70499) + : c <= 70508) + : (c <= 70516 || (c < 70736 + ? (c >= 70656 && c <= 70730) + : c <= 70745))) + : (c <= 70753 || (c < 70864 + ? (c < 70855 + ? (c >= 70784 && c <= 70853) + : c <= 70855) + : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) + : (c <= 71104 || (c < 119894 + ? (c < 73104 + ? (c < 72163 + ? (c < 71935 + ? (c < 71360 + ? (c < 71236 + ? (c < 71168 + ? (c >= 71128 && c <= 71133) + : c <= 71232) + : (c <= 71236 || (c < 71296 + ? (c >= 71248 && c <= 71257) + : c <= 71352))) + : (c <= 71369 || (c < 71472 + ? (c < 71453 + ? (c >= 71424 && c <= 71450) + : c <= 71467) + : (c <= 71481 || (c < 71840 + ? (c >= 71680 && c <= 71738) + : c <= 71913))))) + : (c <= 71942 || (c < 71995 + ? (c < 71957 + ? (c < 71948 + ? c == 71945 + : c <= 71955) + : (c <= 71958 || (c < 71991 + ? (c >= 71960 && c <= 71989) + : c <= 71992))) + : (c <= 72003 || (c < 72106 + ? (c < 72096 + ? (c >= 72016 && c <= 72025) + : c <= 72103) + : (c <= 72151 || (c >= 72154 && c <= 72161))))))) + : (c <= 72164 || (c < 72873 + ? (c < 72704 + ? (c < 72272 + ? (c < 72263 + ? (c >= 72192 && c <= 72254) + : c <= 72263) + : (c <= 72345 || (c < 72384 + ? c == 72349 + : c <= 72440))) + : (c <= 72712 || (c < 72784 + ? (c < 72760 + ? (c >= 72714 && c <= 72758) + : c <= 72768) + : (c <= 72793 || (c < 72850 + ? (c >= 72818 && c <= 72847) + : c <= 72871))))) + : (c <= 72886 || (c < 73023 + ? (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73014 || (c < 73020 + ? c == 73018 + : c <= 73021))) + : (c <= 73031 || (c < 73063 + ? (c < 73056 + ? (c >= 73040 && c <= 73049) + : c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) + : (c <= 73105 || (c < 94095 + ? (c < 92768 + ? (c < 74752 + ? (c < 73440 + ? (c < 73120 + ? (c >= 73107 && c <= 73112) + : c <= 73129) + : (c <= 73462 || (c < 73728 + ? c == 73648 + : c <= 74649))) + : (c <= 74862 || (c < 82944 + ? (c < 77824 + ? (c >= 74880 && c <= 75075) + : c <= 78894) + : (c <= 83526 || (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766))))) + : (c <= 92777 || (c < 93027 + ? (c < 92928 + ? (c < 92912 + ? (c >= 92880 && c <= 92909) + : c <= 92916) + : (c <= 92982 || (c < 93008 + ? (c >= 92992 && c <= 92995) + : c <= 93017))) + : (c <= 93047 || (c < 93952 + ? (c < 93760 + ? (c >= 93053 && c <= 93071) + : c <= 93823) + : (c <= 94026 || (c >= 94031 && c <= 94087))))))) + : (c <= 94111 || (c < 113776 + ? (c < 101632 + ? (c < 94192 + ? (c < 94179 + ? (c >= 94176 && c <= 94177) + : c <= 94180) + : (c <= 94193 || (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589))) + : (c <= 101640 || (c < 110948 + ? (c < 110928 + ? (c >= 110592 && c <= 110878) + : c <= 110930) + : (c <= 110951 || (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770))))) + : (c <= 113788 || (c < 119163 + ? (c < 113821 + ? (c < 113808 + ? (c >= 113792 && c <= 113800) + : c <= 113817) + : (c <= 113822 || (c < 119149 + ? (c >= 119141 && c <= 119145) + : c <= 119154))) + : (c <= 119170 || (c < 119362 + ? (c < 119210 + ? (c >= 119173 && c <= 119179) + : c <= 119213) + : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 124928 + ? (c < 120630 + ? (c < 120094 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069) + : (c <= 120074 || (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092))))) + : (c <= 120121 || (c < 120488 + ? (c < 120134 + ? (c < 120128 + ? (c >= 120123 && c <= 120126) + : c <= 120132) + : (c <= 120134 || (c < 120146 + ? (c >= 120138 && c <= 120144) + : c <= 120485))) + : (c <= 120512 || (c < 120572 + ? (c < 120540 + ? (c >= 120514 && c <= 120538) + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))))))) + : (c <= 120654 || (c < 121505 + ? (c < 120782 + ? (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779))) + : (c <= 120831 || (c < 121461 + ? (c < 121403 + ? (c >= 121344 && c <= 121398) + : c <= 121452) + : (c <= 121461 || (c < 121499 + ? c == 121476 + : c <= 121503))))) + : (c <= 121519 || (c < 123136 + ? (c < 122907 + ? (c < 122888 + ? (c >= 122880 && c <= 122886) + : c <= 122904) + : (c <= 122913 || (c < 122918 + ? (c >= 122915 && c <= 122916) + : c <= 122922))) + : (c <= 123180 || (c < 123214 + ? (c < 123200 + ? (c >= 123184 && c <= 123197) + : c <= 123209) + : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) + : (c <= 125124 || (c < 126557 + ? (c < 126523 + ? (c < 126497 + ? (c < 125264 + ? (c < 125184 + ? (c >= 125136 && c <= 125142) + : c <= 125259) + : (c <= 125273 || (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495))) + : (c <= 126498 || (c < 126505 + ? (c < 126503 + ? c == 126500 + : c <= 126503) + : (c <= 126514 || (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521))))) + : (c <= 126523 || (c < 126545 + ? (c < 126537 + ? (c < 126535 + ? c == 126530 + : c <= 126535) + : (c <= 126537 || (c < 126541 + ? c == 126539 + : c <= 126543))) + : (c <= 126546 || (c < 126553 + ? (c < 126551 + ? c == 126548 + : c <= 126551) + : (c <= 126553 || c == 126555)))))) + : (c <= 126557 || (c < 126629 + ? (c < 126580 + ? (c < 126564 + ? (c < 126561 + ? c == 126559 + : c <= 126562) + : (c <= 126564 || (c < 126572 + ? (c >= 126567 && c <= 126570) + : c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c < 126625 + ? (c >= 126603 && c <= 126619) + : c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 131072 + ? (c < 130032 + ? (c >= 126635 && c <= 126651) + : c <= 130041) + : (c <= 173789 || (c < 177984 + ? (c >= 173824 && c <= 177972) + : c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); +} + +static inline bool sym_identifier_character_set_5(int32_t c) { + return (c < 43052 + ? (c < 3718 + ? (c < 2730 + ? (c < 2042 + ? (c < 1015 + ? (c < 710 + ? (c < 181 + ? (c < '_' + ? (c < 'A' + ? (c >= '0' && c <= '9') + : c <= 'Z') + : (c <= '_' || (c < 170 + ? (c >= 'a' && c <= 'z') + : c <= 170))) + : (c <= 181 || (c < 192 + ? (c < 186 + ? c == 183 + : c <= 186) + : (c <= 214 || (c < 248 + ? (c >= 216 && c <= 246) + : c <= 705))))) + : (c <= 721 || (c < 891 + ? (c < 750 + ? (c < 748 + ? (c >= 736 && c <= 740) + : c <= 748) + : (c <= 750 || (c < 886 + ? (c >= 768 && c <= 884) + : c <= 887))) + : (c <= 893 || (c < 908 + ? (c < 902 + ? c == 895 + : c <= 906) + : (c <= 908 || (c < 931 + ? (c >= 910 && c <= 929) + : c <= 1013))))))) + : (c <= 1153 || (c < 1519 + ? (c < 1425 + ? (c < 1329 + ? (c < 1162 + ? (c >= 1155 && c <= 1159) + : c <= 1327) + : (c <= 1366 || (c < 1376 + ? c == 1369 + : c <= 1416))) + : (c <= 1469 || (c < 1476 + ? (c < 1473 + ? c == 1471 + : c <= 1474) + : (c <= 1477 || (c < 1488 + ? c == 1479 + : c <= 1514))))) + : (c <= 1522 || (c < 1770 + ? (c < 1646 + ? (c < 1568 + ? (c >= 1552 && c <= 1562) + : c <= 1641) + : (c <= 1747 || (c < 1759 + ? (c >= 1749 && c <= 1756) + : c <= 1768))) + : (c <= 1788 || (c < 1869 + ? (c < 1808 + ? c == 1791 + : c <= 1866) + : (c <= 1969 || (c >= 1984 && c <= 2037))))))))) + : (c <= 2042 || (c < 2534 + ? (c < 2447 + ? (c < 2230 + ? (c < 2112 + ? (c < 2048 + ? c == 2045 + : c <= 2093) + : (c <= 2139 || (c < 2208 + ? (c >= 2144 && c <= 2154) + : c <= 2228))) + : (c <= 2247 || (c < 2406 + ? (c < 2275 + ? (c >= 2259 && c <= 2273) + : c <= 2403) + : (c <= 2415 || (c < 2437 + ? (c >= 2417 && c <= 2435) + : c <= 2444))))) + : (c <= 2448 || (c < 2503 + ? (c < 2482 + ? (c < 2474 + ? (c >= 2451 && c <= 2472) + : c <= 2480) + : (c <= 2482 || (c < 2492 + ? (c >= 2486 && c <= 2489) + : c <= 2500))) + : (c <= 2504 || (c < 2524 + ? (c < 2519 + ? (c >= 2507 && c <= 2510) + : c <= 2519) + : (c <= 2525 || (c >= 2527 && c <= 2531))))))) + : (c <= 2545 || (c < 2622 + ? (c < 2579 + ? (c < 2561 + ? (c < 2558 + ? c == 2556 + : c <= 2558) + : (c <= 2563 || (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576))) + : (c <= 2600 || (c < 2613 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611) + : (c <= 2614 || (c < 2620 + ? (c >= 2616 && c <= 2617) + : c <= 2620))))) + : (c <= 2626 || (c < 2662 + ? (c < 2641 + ? (c < 2635 + ? (c >= 2631 && c <= 2632) + : c <= 2637) + : (c <= 2641 || (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654))) + : (c <= 2677 || (c < 2703 + ? (c < 2693 + ? (c >= 2689 && c <= 2691) + : c <= 2701) + : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) + : (c <= 2736 || (c < 3142 + ? (c < 2918 + ? (c < 2831 + ? (c < 2768 + ? (c < 2748 + ? (c < 2741 + ? (c >= 2738 && c <= 2739) + : c <= 2745) + : (c <= 2757 || (c < 2763 + ? (c >= 2759 && c <= 2761) + : c <= 2765))) + : (c <= 2768 || (c < 2809 + ? (c < 2790 + ? (c >= 2784 && c <= 2787) + : c <= 2799) + : (c <= 2815 || (c < 2821 + ? (c >= 2817 && c <= 2819) + : c <= 2828))))) + : (c <= 2832 || (c < 2887 + ? (c < 2866 + ? (c < 2858 + ? (c >= 2835 && c <= 2856) + : c <= 2864) + : (c <= 2867 || (c < 2876 + ? (c >= 2869 && c <= 2873) + : c <= 2884))) + : (c <= 2888 || (c < 2908 + ? (c < 2901 + ? (c >= 2891 && c <= 2893) + : c <= 2903) + : (c <= 2909 || (c >= 2911 && c <= 2915))))))) + : (c <= 2927 || (c < 3006 + ? (c < 2969 + ? (c < 2949 + ? (c < 2946 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c < 2962 + ? (c >= 2958 && c <= 2960) + : c <= 2965))) + : (c <= 2970 || (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))))) + : (c <= 3010 || (c < 3072 + ? (c < 3024 + ? (c < 3018 + ? (c >= 3014 && c <= 3016) + : c <= 3021) + : (c <= 3024 || (c < 3046 + ? c == 3031 + : c <= 3055))) + : (c <= 3084 || (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || (c >= 3133 && c <= 3140))))))))) + : (c <= 3144 || (c < 3398 + ? (c < 3260 + ? (c < 3200 + ? (c < 3160 + ? (c < 3157 + ? (c >= 3146 && c <= 3149) + : c <= 3158) + : (c <= 3162 || (c < 3174 + ? (c >= 3168 && c <= 3171) + : c <= 3183))) + : (c <= 3203 || (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c < 3253 + ? (c >= 3242 && c <= 3251) + : c <= 3257))))) + : (c <= 3268 || (c < 3302 + ? (c < 3285 + ? (c < 3274 + ? (c >= 3270 && c <= 3272) + : c <= 3277) + : (c <= 3286 || (c < 3296 + ? c == 3294 + : c <= 3299))) + : (c <= 3311 || (c < 3342 + ? (c < 3328 + ? (c >= 3313 && c <= 3314) + : c <= 3340) + : (c <= 3344 || (c >= 3346 && c <= 3396))))))) + : (c <= 3400 || (c < 3530 + ? (c < 3457 + ? (c < 3423 + ? (c < 3412 + ? (c >= 3402 && c <= 3406) + : c <= 3415) + : (c <= 3427 || (c < 3450 + ? (c >= 3430 && c <= 3439) + : c <= 3455))) + : (c <= 3459 || (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || (c < 3520 + ? c == 3517 + : c <= 3526))))) + : (c <= 3530 || (c < 3585 + ? (c < 3544 + ? (c < 3542 + ? (c >= 3535 && c <= 3540) + : c <= 3542) + : (c <= 3551 || (c < 3570 + ? (c >= 3558 && c <= 3567) + : c <= 3571))) + : (c <= 3642 || (c < 3713 + ? (c < 3664 + ? (c >= 3648 && c <= 3662) + : c <= 3673) + : (c <= 3714 || c == 3716)))))))))))) + : (c <= 3722 || (c < 7296 + ? (c < 5024 + ? (c < 4256 + ? (c < 3893 + ? (c < 3784 + ? (c < 3751 + ? (c < 3749 + ? (c >= 3724 && c <= 3747) + : c <= 3749) + : (c <= 3773 || (c < 3782 + ? (c >= 3776 && c <= 3780) + : c <= 3782))) + : (c <= 3789 || (c < 3840 + ? (c < 3804 + ? (c >= 3792 && c <= 3801) + : c <= 3807) + : (c <= 3840 || (c < 3872 + ? (c >= 3864 && c <= 3865) + : c <= 3881))))) + : (c <= 3893 || (c < 3974 + ? (c < 3902 + ? (c < 3897 + ? c == 3895 + : c <= 3897) + : (c <= 3911 || (c < 3953 + ? (c >= 3913 && c <= 3948) + : c <= 3972))) + : (c <= 3991 || (c < 4096 + ? (c < 4038 + ? (c >= 3993 && c <= 4028) + : c <= 4038) + : (c <= 4169 || (c >= 4176 && c <= 4253))))))) + : (c <= 4293 || (c < 4786 + ? (c < 4688 + ? (c < 4304 + ? (c < 4301 + ? c == 4295 + : c <= 4301) + : (c <= 4346 || (c < 4682 + ? (c >= 4348 && c <= 4680) + : c <= 4685))) + : (c <= 4694 || (c < 4704 + ? (c < 4698 + ? c == 4696 + : c <= 4701) + : (c <= 4744 || (c < 4752 + ? (c >= 4746 && c <= 4749) + : c <= 4784))))) + : (c <= 4789 || (c < 4882 + ? (c < 4802 + ? (c < 4800 + ? (c >= 4792 && c <= 4798) + : c <= 4800) + : (c <= 4805 || (c < 4824 + ? (c >= 4808 && c <= 4822) + : c <= 4880))) + : (c <= 4885 || (c < 4969 + ? (c < 4957 + ? (c >= 4888 && c <= 4954) + : c <= 4959) + : (c <= 4977 || (c >= 4992 && c <= 5007))))))))) + : (c <= 5109 || (c < 6400 + ? (c < 5998 + ? (c < 5870 + ? (c < 5743 + ? (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740) + : (c <= 5759 || (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866))) + : (c <= 5880 || (c < 5920 + ? (c < 5902 + ? (c >= 5888 && c <= 5900) + : c <= 5908) + : (c <= 5940 || (c < 5984 + ? (c >= 5952 && c <= 5971) + : c <= 5996))))) + : (c <= 6000 || (c < 6155 + ? (c < 6103 + ? (c < 6016 + ? (c >= 6002 && c <= 6003) + : c <= 6099) + : (c <= 6103 || (c < 6112 + ? (c >= 6108 && c <= 6109) + : c <= 6121))) + : (c <= 6157 || (c < 6272 + ? (c < 6176 + ? (c >= 6160 && c <= 6169) + : c <= 6264) + : (c <= 6314 || (c >= 6320 && c <= 6389))))))) + : (c <= 6430 || (c < 6800 + ? (c < 6576 + ? (c < 6470 + ? (c < 6448 + ? (c >= 6432 && c <= 6443) + : c <= 6459) + : (c <= 6509 || (c < 6528 + ? (c >= 6512 && c <= 6516) + : c <= 6571))) + : (c <= 6601 || (c < 6688 + ? (c < 6656 + ? (c >= 6608 && c <= 6618) + : c <= 6683) + : (c <= 6750 || (c < 6783 + ? (c >= 6752 && c <= 6780) + : c <= 6793))))) + : (c <= 6809 || (c < 7019 + ? (c < 6847 + ? (c < 6832 + ? c == 6823 + : c <= 6845) + : (c <= 6848 || (c < 6992 + ? (c >= 6912 && c <= 6987) + : c <= 7001))) + : (c <= 7027 || (c < 7232 + ? (c < 7168 + ? (c >= 7040 && c <= 7155) + : c <= 7223) + : (c <= 7241 || (c >= 7245 && c <= 7293))))))))))) + : (c <= 7304 || (c < 11264 + ? (c < 8178 + ? (c < 8027 + ? (c < 7675 + ? (c < 7376 + ? (c < 7357 + ? (c >= 7312 && c <= 7354) + : c <= 7359) + : (c <= 7378 || (c < 7424 + ? (c >= 7380 && c <= 7418) + : c <= 7673))) + : (c <= 7957 || (c < 8008 + ? (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005) + : (c <= 8013 || (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025))))) + : (c <= 8027 || (c < 8130 + ? (c < 8064 + ? (c < 8031 + ? c == 8029 + : c <= 8061) + : (c <= 8116 || (c < 8126 + ? (c >= 8118 && c <= 8124) + : c <= 8126))) + : (c <= 8132 || (c < 8150 + ? (c < 8144 + ? (c >= 8134 && c <= 8140) + : c <= 8147) + : (c <= 8155 || (c >= 8160 && c <= 8172))))))) + : (c <= 8180 || (c < 8458 + ? (c < 8336 + ? (c < 8276 + ? (c < 8255 + ? (c >= 8182 && c <= 8188) + : c <= 8256) + : (c <= 8276 || (c < 8319 + ? c == 8305 + : c <= 8319))) + : (c <= 8348 || (c < 8421 + ? (c < 8417 + ? (c >= 8400 && c <= 8412) + : c <= 8417) + : (c <= 8432 || (c < 8455 + ? c == 8450 + : c <= 8455))))) + : (c <= 8467 || (c < 8490 + ? (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || (c < 8488 + ? c == 8486 + : c <= 8488))) + : (c <= 8505 || (c < 8526 + ? (c < 8517 + ? (c >= 8508 && c <= 8511) + : c <= 8521) + : (c <= 8526 || (c >= 8544 && c <= 8584))))))))) + : (c <= 11310 || (c < 12353 + ? (c < 11696 + ? (c < 11565 + ? (c < 11499 + ? (c < 11360 + ? (c >= 11312 && c <= 11358) + : c <= 11492) + : (c <= 11507 || (c < 11559 + ? (c >= 11520 && c <= 11557) + : c <= 11559))) + : (c <= 11565 || (c < 11647 + ? (c < 11631 + ? (c >= 11568 && c <= 11623) + : c <= 11631) + : (c <= 11670 || (c < 11688 + ? (c >= 11680 && c <= 11686) + : c <= 11694))))) + : (c <= 11702 || (c < 11744 + ? (c < 11720 + ? (c < 11712 + ? (c >= 11704 && c <= 11710) + : c <= 11718) + : (c <= 11726 || (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742))) + : (c <= 11775 || (c < 12337 + ? (c < 12321 + ? (c >= 12293 && c <= 12295) + : c <= 12335) + : (c <= 12341 || (c >= 12344 && c <= 12348))))))) + : (c <= 12438 || (c < 42192 + ? (c < 12593 + ? (c < 12449 + ? (c < 12445 + ? (c >= 12441 && c <= 12442) + : c <= 12447) + : (c <= 12538 || (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591))) + : (c <= 12686 || (c < 13312 + ? (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799) + : (c <= 19903 || (c < 40960 + ? (c >= 19968 && c <= 40956) + : c <= 42124))))) + : (c <= 42237 || (c < 42775 + ? (c < 42560 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42539) + : (c <= 42607 || (c < 42623 + ? (c >= 42612 && c <= 42621) + : c <= 42737))) + : (c <= 42783 || (c < 42946 + ? (c < 42891 + ? (c >= 42786 && c <= 42888) + : c <= 42943) + : (c <= 42954 || (c >= 42997 && c <= 43047))))))))))))))) + : (c <= 43052 || (c < 71096 + ? (c < 66864 + ? (c < 64914 + ? (c < 43816 + ? (c < 43520 + ? (c < 43261 + ? (c < 43216 + ? (c < 43136 + ? (c >= 43072 && c <= 43123) + : c <= 43205) + : (c <= 43225 || (c < 43259 + ? (c >= 43232 && c <= 43255) + : c <= 43259))) + : (c <= 43309 || (c < 43392 + ? (c < 43360 + ? (c >= 43312 && c <= 43347) + : c <= 43388) + : (c <= 43456 || (c < 43488 + ? (c >= 43471 && c <= 43481) + : c <= 43518))))) + : (c <= 43574 || (c < 43744 + ? (c < 43616 + ? (c < 43600 + ? (c >= 43584 && c <= 43597) + : c <= 43609) + : (c <= 43638 || (c < 43739 + ? (c >= 43642 && c <= 43714) + : c <= 43741))) + : (c <= 43759 || (c < 43785 + ? (c < 43777 + ? (c >= 43762 && c <= 43766) + : c <= 43782) + : (c <= 43790 || (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814))))))) + : (c <= 43822 || (c < 64275 + ? (c < 44032 + ? (c < 43888 + ? (c < 43868 + ? (c >= 43824 && c <= 43866) + : c <= 43881) + : (c <= 44010 || (c < 44016 + ? (c >= 44012 && c <= 44013) + : c <= 44025))) + : (c <= 55203 || (c < 63744 + ? (c < 55243 + ? (c >= 55216 && c <= 55238) + : c <= 55291) + : (c <= 64109 || (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262))))) + : (c <= 64279 || (c < 64323 + ? (c < 64312 + ? (c < 64298 + ? (c >= 64285 && c <= 64296) + : c <= 64310) + : (c <= 64316 || (c < 64320 + ? c == 64318 + : c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65549 + ? (c < 65151 + ? (c < 65137 + ? (c < 65056 + ? (c < 65024 + ? (c >= 65008 && c <= 65017) + : c <= 65039) + : (c <= 65071 || (c < 65101 + ? (c >= 65075 && c <= 65076) + : c <= 65103))) + : (c <= 65137 || (c < 65145 + ? (c < 65143 + ? c == 65139 + : c <= 65143) + : (c <= 65145 || (c < 65149 + ? c == 65147 + : c <= 65149))))) + : (c <= 65276 || (c < 65474 + ? (c < 65343 + ? (c < 65313 + ? (c >= 65296 && c <= 65305) + : c <= 65338) + : (c <= 65343 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65470))) + : (c <= 65479 || (c < 65498 + ? (c < 65490 + ? (c >= 65482 && c <= 65487) + : c <= 65495) + : (c <= 65500 || (c >= 65536 && c <= 65547))))))) + : (c <= 65574 || (c < 66349 + ? (c < 65856 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786))) + : (c <= 65908 || (c < 66208 + ? (c < 66176 + ? c == 66045 + : c <= 66204) + : (c <= 66256 || (c < 66304 + ? c == 66272 + : c <= 66335))))) + : (c <= 66378 || (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66426) + : c <= 66461) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))) + : (c <= 66717 || (c < 66776 + ? (c < 66736 + ? (c >= 66720 && c <= 66729) + : c <= 66771) + : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) + : (c <= 66915 || (c < 69632 + ? (c < 68152 + ? (c < 67808 + ? (c < 67594 + ? (c < 67424 + ? (c < 67392 + ? (c >= 67072 && c <= 67382) + : c <= 67413) + : (c <= 67431 || (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592))) + : (c <= 67637 || (c < 67647 + ? (c < 67644 + ? (c >= 67639 && c <= 67640) + : c <= 67644) + : (c <= 67669 || (c < 67712 + ? (c >= 67680 && c <= 67702) + : c <= 67742))))) + : (c <= 67826 || (c < 68096 + ? (c < 67872 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : c <= 67861) + : (c <= 67897 || (c < 68030 + ? (c >= 67968 && c <= 68023) + : c <= 68031))) + : (c <= 68099 || (c < 68117 + ? (c < 68108 + ? (c >= 68101 && c <= 68102) + : c <= 68115) + : (c <= 68119 || (c >= 68121 && c <= 68149))))))) + : (c <= 68154 || (c < 68800 + ? (c < 68352 + ? (c < 68224 + ? (c < 68192 + ? c == 68159 + : c <= 68220) + : (c <= 68252 || (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68326))) + : (c <= 68405 || (c < 68480 + ? (c < 68448 + ? (c >= 68416 && c <= 68437) + : c <= 68466) + : (c <= 68497 || (c < 68736 + ? (c >= 68608 && c <= 68680) + : c <= 68786))))) + : (c <= 68850 || (c < 69376 + ? (c < 69248 + ? (c < 68912 + ? (c >= 68864 && c <= 68903) + : c <= 68921) + : (c <= 69289 || (c < 69296 + ? (c >= 69291 && c <= 69292) + : c <= 69297))) + : (c <= 69404 || (c < 69552 + ? (c < 69424 + ? c == 69415 + : c <= 69456) + : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) + : (c <= 69702 || (c < 70384 + ? (c < 70094 + ? (c < 69942 + ? (c < 69840 + ? (c < 69759 + ? (c >= 69734 && c <= 69743) + : c <= 69818) + : (c <= 69864 || (c < 69888 + ? (c >= 69872 && c <= 69881) + : c <= 69940))) + : (c <= 69951 || (c < 70006 + ? (c < 69968 + ? (c >= 69956 && c <= 69959) + : c <= 70003) + : (c <= 70006 || (c < 70089 + ? (c >= 70016 && c <= 70084) + : c <= 70092))))) + : (c <= 70106 || (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70199 || (c < 70272 + ? c == 70206 + : c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70378))))))) + : (c <= 70393 || (c < 70487 + ? (c < 70450 + ? (c < 70415 + ? (c < 70405 + ? (c >= 70400 && c <= 70403) + : c <= 70412) + : (c <= 70416 || (c < 70442 + ? (c >= 70419 && c <= 70440) + : c <= 70448))) + : (c <= 70451 || (c < 70471 + ? (c < 70459 + ? (c >= 70453 && c <= 70457) + : c <= 70468) + : (c <= 70472 || (c < 70480 + ? (c >= 70475 && c <= 70477) + : c <= 70480))))) + : (c <= 70487 || (c < 70750 + ? (c < 70512 + ? (c < 70502 + ? (c >= 70493 && c <= 70499) + : c <= 70508) + : (c <= 70516 || (c < 70736 + ? (c >= 70656 && c <= 70730) + : c <= 70745))) + : (c <= 70753 || (c < 70864 + ? (c < 70855 + ? (c >= 70784 && c <= 70853) + : c <= 70855) + : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) + : (c <= 71104 || (c < 119894 + ? (c < 73104 + ? (c < 72163 + ? (c < 71935 + ? (c < 71360 + ? (c < 71236 + ? (c < 71168 + ? (c >= 71128 && c <= 71133) + : c <= 71232) + : (c <= 71236 || (c < 71296 + ? (c >= 71248 && c <= 71257) + : c <= 71352))) + : (c <= 71369 || (c < 71472 + ? (c < 71453 + ? (c >= 71424 && c <= 71450) + : c <= 71467) + : (c <= 71481 || (c < 71840 + ? (c >= 71680 && c <= 71738) + : c <= 71913))))) + : (c <= 71942 || (c < 71995 + ? (c < 71957 + ? (c < 71948 + ? c == 71945 + : c <= 71955) + : (c <= 71958 || (c < 71991 + ? (c >= 71960 && c <= 71989) + : c <= 71992))) + : (c <= 72003 || (c < 72106 + ? (c < 72096 + ? (c >= 72016 && c <= 72025) + : c <= 72103) + : (c <= 72151 || (c >= 72154 && c <= 72161))))))) + : (c <= 72164 || (c < 72873 + ? (c < 72704 + ? (c < 72272 + ? (c < 72263 + ? (c >= 72192 && c <= 72254) + : c <= 72263) + : (c <= 72345 || (c < 72384 + ? c == 72349 + : c <= 72440))) + : (c <= 72712 || (c < 72784 + ? (c < 72760 + ? (c >= 72714 && c <= 72758) + : c <= 72768) + : (c <= 72793 || (c < 72850 + ? (c >= 72818 && c <= 72847) + : c <= 72871))))) + : (c <= 72886 || (c < 73023 + ? (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73014 || (c < 73020 + ? c == 73018 + : c <= 73021))) + : (c <= 73031 || (c < 73063 + ? (c < 73056 + ? (c >= 73040 && c <= 73049) + : c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) + : (c <= 73105 || (c < 94095 + ? (c < 92768 + ? (c < 74752 + ? (c < 73440 + ? (c < 73120 + ? (c >= 73107 && c <= 73112) + : c <= 73129) + : (c <= 73462 || (c < 73728 + ? c == 73648 + : c <= 74649))) + : (c <= 74862 || (c < 82944 + ? (c < 77824 + ? (c >= 74880 && c <= 75075) + : c <= 78894) + : (c <= 83526 || (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766))))) + : (c <= 92777 || (c < 93027 + ? (c < 92928 + ? (c < 92912 + ? (c >= 92880 && c <= 92909) + : c <= 92916) + : (c <= 92982 || (c < 93008 + ? (c >= 92992 && c <= 92995) + : c <= 93017))) + : (c <= 93047 || (c < 93952 + ? (c < 93760 + ? (c >= 93053 && c <= 93071) + : c <= 93823) + : (c <= 94026 || (c >= 94031 && c <= 94087))))))) + : (c <= 94111 || (c < 113776 + ? (c < 101632 + ? (c < 94192 + ? (c < 94179 + ? (c >= 94176 && c <= 94177) + : c <= 94180) + : (c <= 94193 || (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589))) + : (c <= 101640 || (c < 110948 + ? (c < 110928 + ? (c >= 110592 && c <= 110878) + : c <= 110930) + : (c <= 110951 || (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770))))) + : (c <= 113788 || (c < 119163 + ? (c < 113821 + ? (c < 113808 + ? (c >= 113792 && c <= 113800) + : c <= 113817) + : (c <= 113822 || (c < 119149 + ? (c >= 119141 && c <= 119145) + : c <= 119154))) + : (c <= 119170 || (c < 119362 + ? (c < 119210 + ? (c >= 119173 && c <= 119179) + : c <= 119213) + : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 124928 + ? (c < 120630 + ? (c < 120094 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069) + : (c <= 120074 || (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092))))) + : (c <= 120121 || (c < 120488 + ? (c < 120134 + ? (c < 120128 + ? (c >= 120123 && c <= 120126) + : c <= 120132) + : (c <= 120134 || (c < 120146 + ? (c >= 120138 && c <= 120144) + : c <= 120485))) + : (c <= 120512 || (c < 120572 + ? (c < 120540 + ? (c >= 120514 && c <= 120538) + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))))))) + : (c <= 120654 || (c < 121505 + ? (c < 120782 + ? (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779))) + : (c <= 120831 || (c < 121461 + ? (c < 121403 + ? (c >= 121344 && c <= 121398) + : c <= 121452) + : (c <= 121461 || (c < 121499 + ? c == 121476 + : c <= 121503))))) + : (c <= 121519 || (c < 123136 + ? (c < 122907 + ? (c < 122888 + ? (c >= 122880 && c <= 122886) + : c <= 122904) + : (c <= 122913 || (c < 122918 + ? (c >= 122915 && c <= 122916) + : c <= 122922))) + : (c <= 123180 || (c < 123214 + ? (c < 123200 + ? (c >= 123184 && c <= 123197) + : c <= 123209) + : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) + : (c <= 125124 || (c < 126557 + ? (c < 126523 + ? (c < 126497 + ? (c < 125264 + ? (c < 125184 + ? (c >= 125136 && c <= 125142) + : c <= 125259) + : (c <= 125273 || (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495))) + : (c <= 126498 || (c < 126505 + ? (c < 126503 + ? c == 126500 + : c <= 126503) + : (c <= 126514 || (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521))))) + : (c <= 126523 || (c < 126545 + ? (c < 126537 + ? (c < 126535 + ? c == 126530 + : c <= 126535) + : (c <= 126537 || (c < 126541 + ? c == 126539 + : c <= 126543))) + : (c <= 126546 || (c < 126553 + ? (c < 126551 + ? c == 126548 + : c <= 126551) + : (c <= 126553 || c == 126555)))))) + : (c <= 126557 || (c < 126629 + ? (c < 126580 + ? (c < 126564 + ? (c < 126561 + ? c == 126559 + : c <= 126562) + : (c <= 126564 || (c < 126572 + ? (c >= 126567 && c <= 126570) + : c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c < 126625 + ? (c >= 126603 && c <= 126619) + : c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 131072 + ? (c < 130032 + ? (c >= 126635 && c <= 126651) + : c <= 130041) + : (c <= 173789 || (c < 177984 + ? (c >= 173824 && c <= 177972) + : c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); +} + +static inline bool sym_identifier_character_set_6(int32_t c) { + return (c < 43072 + ? (c < 3724 + ? (c < 2738 + ? (c < 2045 + ? (c < 1155 + ? (c < 736 + ? (c < 183 + ? (c < 'a' + ? (c < 'A' + ? (c >= '0' && c <= '9') + : c <= 'Z') + : (c <= 'z' || (c < 181 + ? c == 170 + : c <= 181))) + : (c <= 183 || (c < 216 + ? (c < 192 + ? c == 186 + : c <= 214) + : (c <= 246 || (c < 710 + ? (c >= 248 && c <= 705) + : c <= 721))))) + : (c <= 740 || (c < 895 + ? (c < 768 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c < 891 + ? (c >= 886 && c <= 887) + : c <= 893))) + : (c <= 895 || (c < 910 + ? (c < 908 + ? (c >= 902 && c <= 906) + : c <= 908) + : (c <= 929 || (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153))))))) + : (c <= 1159 || (c < 1552 + ? (c < 1471 + ? (c < 1369 + ? (c < 1329 + ? (c >= 1162 && c <= 1327) + : c <= 1366) + : (c <= 1369 || (c < 1425 + ? (c >= 1376 && c <= 1416) + : c <= 1469))) + : (c <= 1471 || (c < 1479 + ? (c < 1476 + ? (c >= 1473 && c <= 1474) + : c <= 1477) + : (c <= 1479 || (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522))))) + : (c <= 1562 || (c < 1791 + ? (c < 1749 + ? (c < 1646 + ? (c >= 1568 && c <= 1641) + : c <= 1747) + : (c <= 1756 || (c < 1770 + ? (c >= 1759 && c <= 1768) + : c <= 1788))) + : (c <= 1791 || (c < 1984 + ? (c < 1869 + ? (c >= 1808 && c <= 1866) + : c <= 1969) + : (c <= 2037 || c == 2042)))))))) + : (c <= 2045 || (c < 2556 + ? (c < 2451 + ? (c < 2259 + ? (c < 2144 + ? (c < 2112 + ? (c >= 2048 && c <= 2093) + : c <= 2139) + : (c <= 2154 || (c < 2230 + ? (c >= 2208 && c <= 2228) + : c <= 2247))) + : (c <= 2273 || (c < 2417 + ? (c < 2406 + ? (c >= 2275 && c <= 2403) + : c <= 2415) + : (c <= 2435 || (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448))))) + : (c <= 2472 || (c < 2507 + ? (c < 2486 + ? (c < 2482 + ? (c >= 2474 && c <= 2480) + : c <= 2482) + : (c <= 2489 || (c < 2503 + ? (c >= 2492 && c <= 2500) + : c <= 2504))) + : (c <= 2510 || (c < 2527 + ? (c < 2524 + ? c == 2519 + : c <= 2525) + : (c <= 2531 || (c >= 2534 && c <= 2545))))))) + : (c <= 2556 || (c < 2631 + ? (c < 2602 + ? (c < 2565 + ? (c < 2561 + ? c == 2558 + : c <= 2563) + : (c <= 2570 || (c < 2579 + ? (c >= 2575 && c <= 2576) + : c <= 2600))) + : (c <= 2608 || (c < 2616 + ? (c < 2613 + ? (c >= 2610 && c <= 2611) + : c <= 2614) + : (c <= 2617 || (c < 2622 + ? c == 2620 + : c <= 2626))))) + : (c <= 2632 || (c < 2689 + ? (c < 2649 + ? (c < 2641 + ? (c >= 2635 && c <= 2637) + : c <= 2641) + : (c <= 2652 || (c < 2662 + ? c == 2654 + : c <= 2677))) + : (c <= 2691 || (c < 2707 + ? (c < 2703 + ? (c >= 2693 && c <= 2701) + : c <= 2705) + : (c <= 2728 || (c >= 2730 && c <= 2736))))))))))) + : (c <= 2739 || (c < 3146 + ? (c < 2929 + ? (c < 2835 + ? (c < 2784 + ? (c < 2759 + ? (c < 2748 + ? (c >= 2741 && c <= 2745) + : c <= 2757) + : (c <= 2761 || (c < 2768 + ? (c >= 2763 && c <= 2765) + : c <= 2768))) + : (c <= 2787 || (c < 2817 + ? (c < 2809 + ? (c >= 2790 && c <= 2799) + : c <= 2815) + : (c <= 2819 || (c < 2831 + ? (c >= 2821 && c <= 2828) + : c <= 2832))))) + : (c <= 2856 || (c < 2891 + ? (c < 2869 + ? (c < 2866 + ? (c >= 2858 && c <= 2864) + : c <= 2867) + : (c <= 2873 || (c < 2887 + ? (c >= 2876 && c <= 2884) + : c <= 2888))) + : (c <= 2893 || (c < 2911 + ? (c < 2908 + ? (c >= 2901 && c <= 2903) + : c <= 2909) + : (c <= 2915 || (c >= 2918 && c <= 2927))))))) + : (c <= 2929 || (c < 3014 + ? (c < 2972 + ? (c < 2958 + ? (c < 2949 + ? (c >= 2946 && c <= 2947) + : c <= 2954) + : (c <= 2960 || (c < 2969 + ? (c >= 2962 && c <= 2965) + : c <= 2970))) + : (c <= 2972 || (c < 2984 + ? (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980) + : (c <= 2986 || (c < 3006 + ? (c >= 2990 && c <= 3001) + : c <= 3010))))) + : (c <= 3016 || (c < 3086 + ? (c < 3031 + ? (c < 3024 + ? (c >= 3018 && c <= 3021) + : c <= 3024) + : (c <= 3031 || (c < 3072 + ? (c >= 3046 && c <= 3055) + : c <= 3084))) + : (c <= 3088 || (c < 3133 + ? (c < 3114 + ? (c >= 3090 && c <= 3112) + : c <= 3129) + : (c <= 3140 || (c >= 3142 && c <= 3144))))))))) + : (c <= 3149 || (c < 3402 + ? (c < 3270 + ? (c < 3205 + ? (c < 3168 + ? (c < 3160 + ? (c >= 3157 && c <= 3158) + : c <= 3162) + : (c <= 3171 || (c < 3200 + ? (c >= 3174 && c <= 3183) + : c <= 3203))) + : (c <= 3212 || (c < 3242 + ? (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240) + : (c <= 3251 || (c < 3260 + ? (c >= 3253 && c <= 3257) + : c <= 3268))))) + : (c <= 3272 || (c < 3313 + ? (c < 3294 + ? (c < 3285 + ? (c >= 3274 && c <= 3277) + : c <= 3286) + : (c <= 3294 || (c < 3302 + ? (c >= 3296 && c <= 3299) + : c <= 3311))) + : (c <= 3314 || (c < 3346 + ? (c < 3342 + ? (c >= 3328 && c <= 3340) + : c <= 3344) + : (c <= 3396 || (c >= 3398 && c <= 3400))))))) + : (c <= 3406 || (c < 3535 + ? (c < 3461 + ? (c < 3430 + ? (c < 3423 + ? (c >= 3412 && c <= 3415) + : c <= 3427) + : (c <= 3439 || (c < 3457 + ? (c >= 3450 && c <= 3455) + : c <= 3459))) + : (c <= 3478 || (c < 3517 + ? (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515) + : (c <= 3517 || (c < 3530 + ? (c >= 3520 && c <= 3526) + : c <= 3530))))) + : (c <= 3540 || (c < 3648 + ? (c < 3558 + ? (c < 3544 + ? c == 3542 + : c <= 3551) + : (c <= 3567 || (c < 3585 + ? (c >= 3570 && c <= 3571) + : c <= 3642))) + : (c <= 3662 || (c < 3716 + ? (c < 3713 + ? (c >= 3664 && c <= 3673) + : c <= 3714) + : (c <= 3716 || (c >= 3718 && c <= 3722))))))))))))) + : (c <= 3747 || (c < 7312 + ? (c < 5112 + ? (c < 4295 + ? (c < 3895 + ? (c < 3792 + ? (c < 3776 + ? (c < 3751 + ? c == 3749 + : c <= 3773) + : (c <= 3780 || (c < 3784 + ? c == 3782 + : c <= 3789))) + : (c <= 3801 || (c < 3864 + ? (c < 3840 + ? (c >= 3804 && c <= 3807) + : c <= 3840) + : (c <= 3865 || (c < 3893 + ? (c >= 3872 && c <= 3881) + : c <= 3893))))) + : (c <= 3895 || (c < 3993 + ? (c < 3913 + ? (c < 3902 + ? c == 3897 + : c <= 3911) + : (c <= 3948 || (c < 3974 + ? (c >= 3953 && c <= 3972) + : c <= 3991))) + : (c <= 4028 || (c < 4176 + ? (c < 4096 + ? c == 4038 + : c <= 4169) + : (c <= 4253 || (c >= 4256 && c <= 4293))))))) + : (c <= 4295 || (c < 4792 + ? (c < 4696 + ? (c < 4348 + ? (c < 4304 + ? c == 4301 + : c <= 4346) + : (c <= 4680 || (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694))) + : (c <= 4696 || (c < 4746 + ? (c < 4704 + ? (c >= 4698 && c <= 4701) + : c <= 4744) + : (c <= 4749 || (c < 4786 + ? (c >= 4752 && c <= 4784) + : c <= 4789))))) + : (c <= 4798 || (c < 4888 + ? (c < 4808 + ? (c < 4802 + ? c == 4800 + : c <= 4805) + : (c <= 4822 || (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885))) + : (c <= 4954 || (c < 4992 + ? (c < 4969 + ? (c >= 4957 && c <= 4959) + : c <= 4977) + : (c <= 5007 || (c >= 5024 && c <= 5109))))))))) + : (c <= 5117 || (c < 6432 + ? (c < 6002 + ? (c < 5888 + ? (c < 5761 + ? (c < 5743 + ? (c >= 5121 && c <= 5740) + : c <= 5759) + : (c <= 5786 || (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880))) + : (c <= 5900 || (c < 5952 + ? (c < 5920 + ? (c >= 5902 && c <= 5908) + : c <= 5940) + : (c <= 5971 || (c < 5998 + ? (c >= 5984 && c <= 5996) + : c <= 6000))))) + : (c <= 6003 || (c < 6160 + ? (c < 6108 + ? (c < 6103 + ? (c >= 6016 && c <= 6099) + : c <= 6103) + : (c <= 6109 || (c < 6155 + ? (c >= 6112 && c <= 6121) + : c <= 6157))) + : (c <= 6169 || (c < 6320 + ? (c < 6272 + ? (c >= 6176 && c <= 6264) + : c <= 6314) + : (c <= 6389 || (c >= 6400 && c <= 6430))))))) + : (c <= 6443 || (c < 6823 + ? (c < 6608 + ? (c < 6512 + ? (c < 6470 + ? (c >= 6448 && c <= 6459) + : c <= 6509) + : (c <= 6516 || (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601))) + : (c <= 6618 || (c < 6752 + ? (c < 6688 + ? (c >= 6656 && c <= 6683) + : c <= 6750) + : (c <= 6780 || (c < 6800 + ? (c >= 6783 && c <= 6793) + : c <= 6809))))) + : (c <= 6823 || (c < 7040 + ? (c < 6912 + ? (c < 6847 + ? (c >= 6832 && c <= 6845) + : c <= 6848) + : (c <= 6987 || (c < 7019 + ? (c >= 6992 && c <= 7001) + : c <= 7027))) + : (c <= 7155 || (c < 7245 + ? (c < 7232 + ? (c >= 7168 && c <= 7223) + : c <= 7241) + : (c <= 7293 || (c >= 7296 && c <= 7304))))))))))) + : (c <= 7354 || (c < 11312 + ? (c < 8182 + ? (c < 8029 + ? (c < 7960 + ? (c < 7380 + ? (c < 7376 + ? (c >= 7357 && c <= 7359) + : c <= 7378) + : (c <= 7418 || (c < 7675 + ? (c >= 7424 && c <= 7673) + : c <= 7957))) + : (c <= 7965 || (c < 8016 + ? (c < 8008 + ? (c >= 7968 && c <= 8005) + : c <= 8013) + : (c <= 8023 || (c < 8027 + ? c == 8025 + : c <= 8027))))) + : (c <= 8029 || (c < 8134 + ? (c < 8118 + ? (c < 8064 + ? (c >= 8031 && c <= 8061) + : c <= 8116) + : (c <= 8124 || (c < 8130 + ? c == 8126 + : c <= 8132))) + : (c <= 8140 || (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c >= 8178 && c <= 8180))))))) + : (c <= 8188 || (c < 8469 + ? (c < 8400 + ? (c < 8305 + ? (c < 8276 + ? (c >= 8255 && c <= 8256) + : c <= 8276) + : (c <= 8305 || (c < 8336 + ? c == 8319 + : c <= 8348))) + : (c <= 8412 || (c < 8450 + ? (c < 8421 + ? c == 8417 + : c <= 8432) + : (c <= 8450 || (c < 8458 + ? c == 8455 + : c <= 8467))))) + : (c <= 8469 || (c < 8508 + ? (c < 8486 + ? (c < 8484 + ? (c >= 8472 && c <= 8477) + : c <= 8484) + : (c <= 8486 || (c < 8490 + ? c == 8488 + : c <= 8505))) + : (c <= 8511 || (c < 8544 + ? (c < 8526 + ? (c >= 8517 && c <= 8521) + : c <= 8526) + : (c <= 8584 || (c >= 11264 && c <= 11310))))))))) + : (c <= 11358 || (c < 12441 + ? (c < 11704 + ? (c < 11568 + ? (c < 11520 + ? (c < 11499 + ? (c >= 11360 && c <= 11492) + : c <= 11507) + : (c <= 11557 || (c < 11565 + ? c == 11559 + : c <= 11565))) + : (c <= 11623 || (c < 11680 + ? (c < 11647 + ? c == 11631 + : c <= 11670) + : (c <= 11686 || (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702))))) + : (c <= 11710 || (c < 12293 + ? (c < 11728 + ? (c < 11720 + ? (c >= 11712 && c <= 11718) + : c <= 11726) + : (c <= 11734 || (c < 11744 + ? (c >= 11736 && c <= 11742) + : c <= 11775))) + : (c <= 12295 || (c < 12344 + ? (c < 12337 + ? (c >= 12321 && c <= 12335) + : c <= 12341) + : (c <= 12348 || (c >= 12353 && c <= 12438))))))) + : (c <= 12442 || (c < 42240 + ? (c < 12704 + ? (c < 12540 + ? (c < 12449 + ? (c >= 12445 && c <= 12447) + : c <= 12538) + : (c <= 12543 || (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686))) + : (c <= 12735 || (c < 19968 + ? (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903) + : (c <= 40956 || (c < 42192 + ? (c >= 40960 && c <= 42124) + : c <= 42237))))) + : (c <= 42508 || (c < 42786 + ? (c < 42612 + ? (c < 42560 + ? (c >= 42512 && c <= 42539) + : c <= 42607) + : (c <= 42621 || (c < 42775 + ? (c >= 42623 && c <= 42737) + : c <= 42783))) + : (c <= 42888 || (c < 42997 + ? (c < 42946 + ? (c >= 42891 && c <= 42943) + : c <= 42954) + : (c <= 43047 || c == 43052)))))))))))))) + : (c <= 43123 || (c < 71096 + ? (c < 66864 + ? (c < 64914 + ? (c < 43816 + ? (c < 43584 + ? (c < 43312 + ? (c < 43232 + ? (c < 43216 + ? (c >= 43136 && c <= 43205) + : c <= 43225) + : (c <= 43255 || (c < 43261 + ? c == 43259 + : c <= 43309))) + : (c <= 43347 || (c < 43471 + ? (c < 43392 + ? (c >= 43360 && c <= 43388) + : c <= 43456) + : (c <= 43481 || (c < 43520 + ? (c >= 43488 && c <= 43518) + : c <= 43574))))) + : (c <= 43597 || (c < 43762 + ? (c < 43642 + ? (c < 43616 + ? (c >= 43600 && c <= 43609) + : c <= 43638) + : (c <= 43714 || (c < 43744 + ? (c >= 43739 && c <= 43741) + : c <= 43759))) + : (c <= 43766 || (c < 43793 + ? (c < 43785 + ? (c >= 43777 && c <= 43782) + : c <= 43790) + : (c <= 43798 || (c >= 43808 && c <= 43814))))))) + : (c <= 43822 || (c < 64275 + ? (c < 44032 + ? (c < 43888 + ? (c < 43868 + ? (c >= 43824 && c <= 43866) + : c <= 43881) + : (c <= 44010 || (c < 44016 + ? (c >= 44012 && c <= 44013) + : c <= 44025))) + : (c <= 55203 || (c < 63744 + ? (c < 55243 + ? (c >= 55216 && c <= 55238) + : c <= 55291) + : (c <= 64109 || (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262))))) + : (c <= 64279 || (c < 64323 + ? (c < 64312 + ? (c < 64298 + ? (c >= 64285 && c <= 64296) + : c <= 64310) + : (c <= 64316 || (c < 64320 + ? c == 64318 + : c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65549 + ? (c < 65151 + ? (c < 65137 + ? (c < 65056 + ? (c < 65024 + ? (c >= 65008 && c <= 65017) + : c <= 65039) + : (c <= 65071 || (c < 65101 + ? (c >= 65075 && c <= 65076) + : c <= 65103))) + : (c <= 65137 || (c < 65145 + ? (c < 65143 + ? c == 65139 + : c <= 65143) + : (c <= 65145 || (c < 65149 + ? c == 65147 + : c <= 65149))))) + : (c <= 65276 || (c < 65474 + ? (c < 65343 + ? (c < 65313 + ? (c >= 65296 && c <= 65305) + : c <= 65338) + : (c <= 65343 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65470))) + : (c <= 65479 || (c < 65498 + ? (c < 65490 + ? (c >= 65482 && c <= 65487) + : c <= 65495) + : (c <= 65500 || (c >= 65536 && c <= 65547))))))) + : (c <= 65574 || (c < 66349 + ? (c < 65856 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786))) + : (c <= 65908 || (c < 66208 + ? (c < 66176 + ? c == 66045 + : c <= 66204) + : (c <= 66256 || (c < 66304 + ? c == 66272 + : c <= 66335))))) + : (c <= 66378 || (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66426) + : c <= 66461) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))) + : (c <= 66717 || (c < 66776 + ? (c < 66736 + ? (c >= 66720 && c <= 66729) + : c <= 66771) + : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) + : (c <= 66915 || (c < 69632 + ? (c < 68152 + ? (c < 67808 + ? (c < 67594 + ? (c < 67424 + ? (c < 67392 + ? (c >= 67072 && c <= 67382) + : c <= 67413) + : (c <= 67431 || (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592))) + : (c <= 67637 || (c < 67647 + ? (c < 67644 + ? (c >= 67639 && c <= 67640) + : c <= 67644) + : (c <= 67669 || (c < 67712 + ? (c >= 67680 && c <= 67702) + : c <= 67742))))) + : (c <= 67826 || (c < 68096 + ? (c < 67872 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : c <= 67861) + : (c <= 67897 || (c < 68030 + ? (c >= 67968 && c <= 68023) + : c <= 68031))) + : (c <= 68099 || (c < 68117 + ? (c < 68108 + ? (c >= 68101 && c <= 68102) + : c <= 68115) + : (c <= 68119 || (c >= 68121 && c <= 68149))))))) + : (c <= 68154 || (c < 68800 + ? (c < 68352 + ? (c < 68224 + ? (c < 68192 + ? c == 68159 + : c <= 68220) + : (c <= 68252 || (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68326))) + : (c <= 68405 || (c < 68480 + ? (c < 68448 + ? (c >= 68416 && c <= 68437) + : c <= 68466) + : (c <= 68497 || (c < 68736 + ? (c >= 68608 && c <= 68680) + : c <= 68786))))) + : (c <= 68850 || (c < 69376 + ? (c < 69248 + ? (c < 68912 + ? (c >= 68864 && c <= 68903) + : c <= 68921) + : (c <= 69289 || (c < 69296 + ? (c >= 69291 && c <= 69292) + : c <= 69297))) + : (c <= 69404 || (c < 69552 + ? (c < 69424 + ? c == 69415 + : c <= 69456) + : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) + : (c <= 69702 || (c < 70384 + ? (c < 70094 + ? (c < 69942 + ? (c < 69840 + ? (c < 69759 + ? (c >= 69734 && c <= 69743) + : c <= 69818) + : (c <= 69864 || (c < 69888 + ? (c >= 69872 && c <= 69881) + : c <= 69940))) + : (c <= 69951 || (c < 70006 + ? (c < 69968 + ? (c >= 69956 && c <= 69959) + : c <= 70003) + : (c <= 70006 || (c < 70089 + ? (c >= 70016 && c <= 70084) + : c <= 70092))))) + : (c <= 70106 || (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70199 || (c < 70272 + ? c == 70206 + : c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70378))))))) + : (c <= 70393 || (c < 70487 + ? (c < 70450 + ? (c < 70415 + ? (c < 70405 + ? (c >= 70400 && c <= 70403) + : c <= 70412) + : (c <= 70416 || (c < 70442 + ? (c >= 70419 && c <= 70440) + : c <= 70448))) + : (c <= 70451 || (c < 70471 + ? (c < 70459 + ? (c >= 70453 && c <= 70457) + : c <= 70468) + : (c <= 70472 || (c < 70480 + ? (c >= 70475 && c <= 70477) + : c <= 70480))))) + : (c <= 70487 || (c < 70750 + ? (c < 70512 + ? (c < 70502 + ? (c >= 70493 && c <= 70499) + : c <= 70508) + : (c <= 70516 || (c < 70736 + ? (c >= 70656 && c <= 70730) + : c <= 70745))) + : (c <= 70753 || (c < 70864 + ? (c < 70855 + ? (c >= 70784 && c <= 70853) + : c <= 70855) + : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) + : (c <= 71104 || (c < 119894 + ? (c < 73104 + ? (c < 72163 + ? (c < 71935 + ? (c < 71360 + ? (c < 71236 + ? (c < 71168 + ? (c >= 71128 && c <= 71133) + : c <= 71232) + : (c <= 71236 || (c < 71296 + ? (c >= 71248 && c <= 71257) + : c <= 71352))) + : (c <= 71369 || (c < 71472 + ? (c < 71453 + ? (c >= 71424 && c <= 71450) + : c <= 71467) + : (c <= 71481 || (c < 71840 + ? (c >= 71680 && c <= 71738) + : c <= 71913))))) + : (c <= 71942 || (c < 71995 + ? (c < 71957 + ? (c < 71948 + ? c == 71945 + : c <= 71955) + : (c <= 71958 || (c < 71991 + ? (c >= 71960 && c <= 71989) + : c <= 71992))) + : (c <= 72003 || (c < 72106 + ? (c < 72096 + ? (c >= 72016 && c <= 72025) + : c <= 72103) + : (c <= 72151 || (c >= 72154 && c <= 72161))))))) + : (c <= 72164 || (c < 72873 + ? (c < 72704 + ? (c < 72272 + ? (c < 72263 + ? (c >= 72192 && c <= 72254) + : c <= 72263) + : (c <= 72345 || (c < 72384 + ? c == 72349 + : c <= 72440))) + : (c <= 72712 || (c < 72784 + ? (c < 72760 + ? (c >= 72714 && c <= 72758) + : c <= 72768) + : (c <= 72793 || (c < 72850 + ? (c >= 72818 && c <= 72847) + : c <= 72871))))) + : (c <= 72886 || (c < 73023 + ? (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73014 || (c < 73020 + ? c == 73018 + : c <= 73021))) + : (c <= 73031 || (c < 73063 + ? (c < 73056 + ? (c >= 73040 && c <= 73049) + : c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) + : (c <= 73105 || (c < 94095 + ? (c < 92768 + ? (c < 74752 + ? (c < 73440 + ? (c < 73120 + ? (c >= 73107 && c <= 73112) + : c <= 73129) + : (c <= 73462 || (c < 73728 + ? c == 73648 + : c <= 74649))) + : (c <= 74862 || (c < 82944 + ? (c < 77824 + ? (c >= 74880 && c <= 75075) + : c <= 78894) + : (c <= 83526 || (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766))))) + : (c <= 92777 || (c < 93027 + ? (c < 92928 + ? (c < 92912 + ? (c >= 92880 && c <= 92909) + : c <= 92916) + : (c <= 92982 || (c < 93008 + ? (c >= 92992 && c <= 92995) + : c <= 93017))) + : (c <= 93047 || (c < 93952 + ? (c < 93760 + ? (c >= 93053 && c <= 93071) + : c <= 93823) + : (c <= 94026 || (c >= 94031 && c <= 94087))))))) + : (c <= 94111 || (c < 113776 + ? (c < 101632 + ? (c < 94192 + ? (c < 94179 + ? (c >= 94176 && c <= 94177) + : c <= 94180) + : (c <= 94193 || (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589))) + : (c <= 101640 || (c < 110948 + ? (c < 110928 + ? (c >= 110592 && c <= 110878) + : c <= 110930) + : (c <= 110951 || (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770))))) + : (c <= 113788 || (c < 119163 + ? (c < 113821 + ? (c < 113808 + ? (c >= 113792 && c <= 113800) + : c <= 113817) + : (c <= 113822 || (c < 119149 + ? (c >= 119141 && c <= 119145) + : c <= 119154))) + : (c <= 119170 || (c < 119362 + ? (c < 119210 + ? (c >= 119173 && c <= 119179) + : c <= 119213) + : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 124928 + ? (c < 120630 + ? (c < 120094 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069) + : (c <= 120074 || (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092))))) + : (c <= 120121 || (c < 120488 + ? (c < 120134 + ? (c < 120128 + ? (c >= 120123 && c <= 120126) + : c <= 120132) + : (c <= 120134 || (c < 120146 + ? (c >= 120138 && c <= 120144) + : c <= 120485))) + : (c <= 120512 || (c < 120572 + ? (c < 120540 + ? (c >= 120514 && c <= 120538) + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))))))) + : (c <= 120654 || (c < 121505 + ? (c < 120782 + ? (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779))) + : (c <= 120831 || (c < 121461 + ? (c < 121403 + ? (c >= 121344 && c <= 121398) + : c <= 121452) + : (c <= 121461 || (c < 121499 + ? c == 121476 + : c <= 121503))))) + : (c <= 121519 || (c < 123136 + ? (c < 122907 + ? (c < 122888 + ? (c >= 122880 && c <= 122886) + : c <= 122904) + : (c <= 122913 || (c < 122918 + ? (c >= 122915 && c <= 122916) + : c <= 122922))) + : (c <= 123180 || (c < 123214 + ? (c < 123200 + ? (c >= 123184 && c <= 123197) + : c <= 123209) + : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) + : (c <= 125124 || (c < 126557 + ? (c < 126523 + ? (c < 126497 + ? (c < 125264 + ? (c < 125184 + ? (c >= 125136 && c <= 125142) + : c <= 125259) + : (c <= 125273 || (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495))) + : (c <= 126498 || (c < 126505 + ? (c < 126503 + ? c == 126500 + : c <= 126503) + : (c <= 126514 || (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521))))) + : (c <= 126523 || (c < 126545 + ? (c < 126537 + ? (c < 126535 + ? c == 126530 + : c <= 126535) + : (c <= 126537 || (c < 126541 + ? c == 126539 + : c <= 126543))) + : (c <= 126546 || (c < 126553 + ? (c < 126551 + ? c == 126548 + : c <= 126551) + : (c <= 126553 || c == 126555)))))) + : (c <= 126557 || (c < 126629 + ? (c < 126580 + ? (c < 126564 + ? (c < 126561 + ? c == 126559 + : c <= 126562) + : (c <= 126564 || (c < 126572 + ? (c >= 126567 && c <= 126570) + : c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c < 126625 + ? (c >= 126603 && c <= 126619) + : c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 131072 + ? (c < 130032 + ? (c >= 126635 && c <= 126651) + : c <= 130041) + : (c <= 173789 || (c < 177984 + ? (c >= 173824 && c <= 177972) + : c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); +} + +static inline bool sym_identifier_character_set_7(int32_t c) { + return (c < 43052 + ? (c < 3718 + ? (c < 2730 + ? (c < 2042 + ? (c < 1015 + ? (c < 710 + ? (c < 181 + ? (c < '_' + ? (c < 'A' + ? (c >= '0' && c <= '9') + : c <= 'Z') + : (c <= '_' || (c < 170 + ? (c >= 'b' && c <= 'z') + : c <= 170))) + : (c <= 181 || (c < 192 + ? (c < 186 + ? c == 183 + : c <= 186) + : (c <= 214 || (c < 248 + ? (c >= 216 && c <= 246) + : c <= 705))))) + : (c <= 721 || (c < 891 + ? (c < 750 + ? (c < 748 + ? (c >= 736 && c <= 740) + : c <= 748) + : (c <= 750 || (c < 886 + ? (c >= 768 && c <= 884) + : c <= 887))) + : (c <= 893 || (c < 908 + ? (c < 902 + ? c == 895 + : c <= 906) + : (c <= 908 || (c < 931 + ? (c >= 910 && c <= 929) + : c <= 1013))))))) + : (c <= 1153 || (c < 1519 + ? (c < 1425 + ? (c < 1329 + ? (c < 1162 + ? (c >= 1155 && c <= 1159) + : c <= 1327) + : (c <= 1366 || (c < 1376 + ? c == 1369 + : c <= 1416))) + : (c <= 1469 || (c < 1476 + ? (c < 1473 + ? c == 1471 + : c <= 1474) + : (c <= 1477 || (c < 1488 + ? c == 1479 + : c <= 1514))))) + : (c <= 1522 || (c < 1770 + ? (c < 1646 + ? (c < 1568 + ? (c >= 1552 && c <= 1562) + : c <= 1641) + : (c <= 1747 || (c < 1759 + ? (c >= 1749 && c <= 1756) + : c <= 1768))) + : (c <= 1788 || (c < 1869 + ? (c < 1808 + ? c == 1791 + : c <= 1866) + : (c <= 1969 || (c >= 1984 && c <= 2037))))))))) + : (c <= 2042 || (c < 2534 + ? (c < 2447 + ? (c < 2230 + ? (c < 2112 + ? (c < 2048 + ? c == 2045 + : c <= 2093) + : (c <= 2139 || (c < 2208 + ? (c >= 2144 && c <= 2154) + : c <= 2228))) + : (c <= 2247 || (c < 2406 + ? (c < 2275 + ? (c >= 2259 && c <= 2273) + : c <= 2403) + : (c <= 2415 || (c < 2437 + ? (c >= 2417 && c <= 2435) + : c <= 2444))))) + : (c <= 2448 || (c < 2503 + ? (c < 2482 + ? (c < 2474 + ? (c >= 2451 && c <= 2472) + : c <= 2480) + : (c <= 2482 || (c < 2492 + ? (c >= 2486 && c <= 2489) + : c <= 2500))) + : (c <= 2504 || (c < 2524 + ? (c < 2519 + ? (c >= 2507 && c <= 2510) + : c <= 2519) + : (c <= 2525 || (c >= 2527 && c <= 2531))))))) + : (c <= 2545 || (c < 2622 + ? (c < 2579 + ? (c < 2561 + ? (c < 2558 + ? c == 2556 + : c <= 2558) + : (c <= 2563 || (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576))) + : (c <= 2600 || (c < 2613 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611) + : (c <= 2614 || (c < 2620 + ? (c >= 2616 && c <= 2617) + : c <= 2620))))) + : (c <= 2626 || (c < 2662 + ? (c < 2641 + ? (c < 2635 + ? (c >= 2631 && c <= 2632) + : c <= 2637) + : (c <= 2641 || (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654))) + : (c <= 2677 || (c < 2703 + ? (c < 2693 + ? (c >= 2689 && c <= 2691) + : c <= 2701) + : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) + : (c <= 2736 || (c < 3142 + ? (c < 2918 + ? (c < 2831 + ? (c < 2768 + ? (c < 2748 + ? (c < 2741 + ? (c >= 2738 && c <= 2739) + : c <= 2745) + : (c <= 2757 || (c < 2763 + ? (c >= 2759 && c <= 2761) + : c <= 2765))) + : (c <= 2768 || (c < 2809 + ? (c < 2790 + ? (c >= 2784 && c <= 2787) + : c <= 2799) + : (c <= 2815 || (c < 2821 + ? (c >= 2817 && c <= 2819) + : c <= 2828))))) + : (c <= 2832 || (c < 2887 + ? (c < 2866 + ? (c < 2858 + ? (c >= 2835 && c <= 2856) + : c <= 2864) + : (c <= 2867 || (c < 2876 + ? (c >= 2869 && c <= 2873) + : c <= 2884))) + : (c <= 2888 || (c < 2908 + ? (c < 2901 + ? (c >= 2891 && c <= 2893) + : c <= 2903) + : (c <= 2909 || (c >= 2911 && c <= 2915))))))) + : (c <= 2927 || (c < 3006 + ? (c < 2969 + ? (c < 2949 + ? (c < 2946 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c < 2962 + ? (c >= 2958 && c <= 2960) + : c <= 2965))) + : (c <= 2970 || (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))))) + : (c <= 3010 || (c < 3072 + ? (c < 3024 + ? (c < 3018 + ? (c >= 3014 && c <= 3016) + : c <= 3021) + : (c <= 3024 || (c < 3046 + ? c == 3031 + : c <= 3055))) + : (c <= 3084 || (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || (c >= 3133 && c <= 3140))))))))) + : (c <= 3144 || (c < 3398 + ? (c < 3260 + ? (c < 3200 + ? (c < 3160 + ? (c < 3157 + ? (c >= 3146 && c <= 3149) + : c <= 3158) + : (c <= 3162 || (c < 3174 + ? (c >= 3168 && c <= 3171) + : c <= 3183))) + : (c <= 3203 || (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c < 3253 + ? (c >= 3242 && c <= 3251) + : c <= 3257))))) + : (c <= 3268 || (c < 3302 + ? (c < 3285 + ? (c < 3274 + ? (c >= 3270 && c <= 3272) + : c <= 3277) + : (c <= 3286 || (c < 3296 + ? c == 3294 + : c <= 3299))) + : (c <= 3311 || (c < 3342 + ? (c < 3328 + ? (c >= 3313 && c <= 3314) + : c <= 3340) + : (c <= 3344 || (c >= 3346 && c <= 3396))))))) + : (c <= 3400 || (c < 3530 + ? (c < 3457 + ? (c < 3423 + ? (c < 3412 + ? (c >= 3402 && c <= 3406) + : c <= 3415) + : (c <= 3427 || (c < 3450 + ? (c >= 3430 && c <= 3439) + : c <= 3455))) + : (c <= 3459 || (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || (c < 3520 + ? c == 3517 + : c <= 3526))))) + : (c <= 3530 || (c < 3585 + ? (c < 3544 + ? (c < 3542 + ? (c >= 3535 && c <= 3540) + : c <= 3542) + : (c <= 3551 || (c < 3570 + ? (c >= 3558 && c <= 3567) + : c <= 3571))) + : (c <= 3642 || (c < 3713 + ? (c < 3664 + ? (c >= 3648 && c <= 3662) + : c <= 3673) + : (c <= 3714 || c == 3716)))))))))))) + : (c <= 3722 || (c < 7296 + ? (c < 5024 + ? (c < 4256 + ? (c < 3893 + ? (c < 3784 + ? (c < 3751 + ? (c < 3749 + ? (c >= 3724 && c <= 3747) + : c <= 3749) + : (c <= 3773 || (c < 3782 + ? (c >= 3776 && c <= 3780) + : c <= 3782))) + : (c <= 3789 || (c < 3840 + ? (c < 3804 + ? (c >= 3792 && c <= 3801) + : c <= 3807) + : (c <= 3840 || (c < 3872 + ? (c >= 3864 && c <= 3865) + : c <= 3881))))) + : (c <= 3893 || (c < 3974 + ? (c < 3902 + ? (c < 3897 + ? c == 3895 + : c <= 3897) + : (c <= 3911 || (c < 3953 + ? (c >= 3913 && c <= 3948) + : c <= 3972))) + : (c <= 3991 || (c < 4096 + ? (c < 4038 + ? (c >= 3993 && c <= 4028) + : c <= 4038) + : (c <= 4169 || (c >= 4176 && c <= 4253))))))) + : (c <= 4293 || (c < 4786 + ? (c < 4688 + ? (c < 4304 + ? (c < 4301 + ? c == 4295 + : c <= 4301) + : (c <= 4346 || (c < 4682 + ? (c >= 4348 && c <= 4680) + : c <= 4685))) + : (c <= 4694 || (c < 4704 + ? (c < 4698 + ? c == 4696 + : c <= 4701) + : (c <= 4744 || (c < 4752 + ? (c >= 4746 && c <= 4749) + : c <= 4784))))) + : (c <= 4789 || (c < 4882 + ? (c < 4802 + ? (c < 4800 + ? (c >= 4792 && c <= 4798) + : c <= 4800) + : (c <= 4805 || (c < 4824 + ? (c >= 4808 && c <= 4822) + : c <= 4880))) + : (c <= 4885 || (c < 4969 + ? (c < 4957 + ? (c >= 4888 && c <= 4954) + : c <= 4959) + : (c <= 4977 || (c >= 4992 && c <= 5007))))))))) + : (c <= 5109 || (c < 6400 + ? (c < 5998 + ? (c < 5870 + ? (c < 5743 + ? (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740) + : (c <= 5759 || (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866))) + : (c <= 5880 || (c < 5920 + ? (c < 5902 + ? (c >= 5888 && c <= 5900) + : c <= 5908) + : (c <= 5940 || (c < 5984 + ? (c >= 5952 && c <= 5971) + : c <= 5996))))) + : (c <= 6000 || (c < 6155 + ? (c < 6103 + ? (c < 6016 + ? (c >= 6002 && c <= 6003) + : c <= 6099) + : (c <= 6103 || (c < 6112 + ? (c >= 6108 && c <= 6109) + : c <= 6121))) + : (c <= 6157 || (c < 6272 + ? (c < 6176 + ? (c >= 6160 && c <= 6169) + : c <= 6264) + : (c <= 6314 || (c >= 6320 && c <= 6389))))))) + : (c <= 6430 || (c < 6800 + ? (c < 6576 + ? (c < 6470 + ? (c < 6448 + ? (c >= 6432 && c <= 6443) + : c <= 6459) + : (c <= 6509 || (c < 6528 + ? (c >= 6512 && c <= 6516) + : c <= 6571))) + : (c <= 6601 || (c < 6688 + ? (c < 6656 + ? (c >= 6608 && c <= 6618) + : c <= 6683) + : (c <= 6750 || (c < 6783 + ? (c >= 6752 && c <= 6780) + : c <= 6793))))) + : (c <= 6809 || (c < 7019 + ? (c < 6847 + ? (c < 6832 + ? c == 6823 + : c <= 6845) + : (c <= 6848 || (c < 6992 + ? (c >= 6912 && c <= 6987) + : c <= 7001))) + : (c <= 7027 || (c < 7232 + ? (c < 7168 + ? (c >= 7040 && c <= 7155) + : c <= 7223) + : (c <= 7241 || (c >= 7245 && c <= 7293))))))))))) + : (c <= 7304 || (c < 11264 + ? (c < 8178 + ? (c < 8027 + ? (c < 7675 + ? (c < 7376 + ? (c < 7357 + ? (c >= 7312 && c <= 7354) + : c <= 7359) + : (c <= 7378 || (c < 7424 + ? (c >= 7380 && c <= 7418) + : c <= 7673))) + : (c <= 7957 || (c < 8008 + ? (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005) + : (c <= 8013 || (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025))))) + : (c <= 8027 || (c < 8130 + ? (c < 8064 + ? (c < 8031 + ? c == 8029 + : c <= 8061) + : (c <= 8116 || (c < 8126 + ? (c >= 8118 && c <= 8124) + : c <= 8126))) + : (c <= 8132 || (c < 8150 + ? (c < 8144 + ? (c >= 8134 && c <= 8140) + : c <= 8147) + : (c <= 8155 || (c >= 8160 && c <= 8172))))))) + : (c <= 8180 || (c < 8458 + ? (c < 8336 + ? (c < 8276 + ? (c < 8255 + ? (c >= 8182 && c <= 8188) + : c <= 8256) + : (c <= 8276 || (c < 8319 + ? c == 8305 + : c <= 8319))) + : (c <= 8348 || (c < 8421 + ? (c < 8417 + ? (c >= 8400 && c <= 8412) + : c <= 8417) + : (c <= 8432 || (c < 8455 + ? c == 8450 + : c <= 8455))))) + : (c <= 8467 || (c < 8490 + ? (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || (c < 8488 + ? c == 8486 + : c <= 8488))) + : (c <= 8505 || (c < 8526 + ? (c < 8517 + ? (c >= 8508 && c <= 8511) + : c <= 8521) + : (c <= 8526 || (c >= 8544 && c <= 8584))))))))) + : (c <= 11310 || (c < 12353 + ? (c < 11696 + ? (c < 11565 + ? (c < 11499 + ? (c < 11360 + ? (c >= 11312 && c <= 11358) + : c <= 11492) + : (c <= 11507 || (c < 11559 + ? (c >= 11520 && c <= 11557) + : c <= 11559))) + : (c <= 11565 || (c < 11647 + ? (c < 11631 + ? (c >= 11568 && c <= 11623) + : c <= 11631) + : (c <= 11670 || (c < 11688 + ? (c >= 11680 && c <= 11686) + : c <= 11694))))) + : (c <= 11702 || (c < 11744 + ? (c < 11720 + ? (c < 11712 + ? (c >= 11704 && c <= 11710) + : c <= 11718) + : (c <= 11726 || (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742))) + : (c <= 11775 || (c < 12337 + ? (c < 12321 + ? (c >= 12293 && c <= 12295) + : c <= 12335) + : (c <= 12341 || (c >= 12344 && c <= 12348))))))) + : (c <= 12438 || (c < 42192 + ? (c < 12593 + ? (c < 12449 + ? (c < 12445 + ? (c >= 12441 && c <= 12442) + : c <= 12447) + : (c <= 12538 || (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591))) + : (c <= 12686 || (c < 13312 + ? (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799) + : (c <= 19903 || (c < 40960 + ? (c >= 19968 && c <= 40956) + : c <= 42124))))) + : (c <= 42237 || (c < 42775 + ? (c < 42560 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42539) + : (c <= 42607 || (c < 42623 + ? (c >= 42612 && c <= 42621) + : c <= 42737))) + : (c <= 42783 || (c < 42946 + ? (c < 42891 + ? (c >= 42786 && c <= 42888) + : c <= 42943) + : (c <= 42954 || (c >= 42997 && c <= 43047))))))))))))))) + : (c <= 43052 || (c < 71096 + ? (c < 66864 + ? (c < 64914 + ? (c < 43816 + ? (c < 43520 + ? (c < 43261 + ? (c < 43216 + ? (c < 43136 + ? (c >= 43072 && c <= 43123) + : c <= 43205) + : (c <= 43225 || (c < 43259 + ? (c >= 43232 && c <= 43255) + : c <= 43259))) + : (c <= 43309 || (c < 43392 + ? (c < 43360 + ? (c >= 43312 && c <= 43347) + : c <= 43388) + : (c <= 43456 || (c < 43488 + ? (c >= 43471 && c <= 43481) + : c <= 43518))))) + : (c <= 43574 || (c < 43744 + ? (c < 43616 + ? (c < 43600 + ? (c >= 43584 && c <= 43597) + : c <= 43609) + : (c <= 43638 || (c < 43739 + ? (c >= 43642 && c <= 43714) + : c <= 43741))) + : (c <= 43759 || (c < 43785 + ? (c < 43777 + ? (c >= 43762 && c <= 43766) + : c <= 43782) + : (c <= 43790 || (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814))))))) + : (c <= 43822 || (c < 64275 + ? (c < 44032 + ? (c < 43888 + ? (c < 43868 + ? (c >= 43824 && c <= 43866) + : c <= 43881) + : (c <= 44010 || (c < 44016 + ? (c >= 44012 && c <= 44013) + : c <= 44025))) + : (c <= 55203 || (c < 63744 + ? (c < 55243 + ? (c >= 55216 && c <= 55238) + : c <= 55291) + : (c <= 64109 || (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262))))) + : (c <= 64279 || (c < 64323 + ? (c < 64312 + ? (c < 64298 + ? (c >= 64285 && c <= 64296) + : c <= 64310) + : (c <= 64316 || (c < 64320 + ? c == 64318 + : c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65549 + ? (c < 65151 + ? (c < 65137 + ? (c < 65056 + ? (c < 65024 + ? (c >= 65008 && c <= 65017) + : c <= 65039) + : (c <= 65071 || (c < 65101 + ? (c >= 65075 && c <= 65076) + : c <= 65103))) + : (c <= 65137 || (c < 65145 + ? (c < 65143 + ? c == 65139 + : c <= 65143) + : (c <= 65145 || (c < 65149 + ? c == 65147 + : c <= 65149))))) + : (c <= 65276 || (c < 65474 + ? (c < 65343 + ? (c < 65313 + ? (c >= 65296 && c <= 65305) + : c <= 65338) + : (c <= 65343 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65470))) + : (c <= 65479 || (c < 65498 + ? (c < 65490 + ? (c >= 65482 && c <= 65487) + : c <= 65495) + : (c <= 65500 || (c >= 65536 && c <= 65547))))))) + : (c <= 65574 || (c < 66349 + ? (c < 65856 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786))) + : (c <= 65908 || (c < 66208 + ? (c < 66176 + ? c == 66045 + : c <= 66204) + : (c <= 66256 || (c < 66304 + ? c == 66272 + : c <= 66335))))) + : (c <= 66378 || (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66426) + : c <= 66461) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))) + : (c <= 66717 || (c < 66776 + ? (c < 66736 + ? (c >= 66720 && c <= 66729) + : c <= 66771) + : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) + : (c <= 66915 || (c < 69632 + ? (c < 68152 + ? (c < 67808 + ? (c < 67594 + ? (c < 67424 + ? (c < 67392 + ? (c >= 67072 && c <= 67382) + : c <= 67413) + : (c <= 67431 || (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592))) + : (c <= 67637 || (c < 67647 + ? (c < 67644 + ? (c >= 67639 && c <= 67640) + : c <= 67644) + : (c <= 67669 || (c < 67712 + ? (c >= 67680 && c <= 67702) + : c <= 67742))))) + : (c <= 67826 || (c < 68096 + ? (c < 67872 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : c <= 67861) + : (c <= 67897 || (c < 68030 + ? (c >= 67968 && c <= 68023) + : c <= 68031))) + : (c <= 68099 || (c < 68117 + ? (c < 68108 + ? (c >= 68101 && c <= 68102) + : c <= 68115) + : (c <= 68119 || (c >= 68121 && c <= 68149))))))) + : (c <= 68154 || (c < 68800 + ? (c < 68352 + ? (c < 68224 + ? (c < 68192 + ? c == 68159 + : c <= 68220) + : (c <= 68252 || (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68326))) + : (c <= 68405 || (c < 68480 + ? (c < 68448 + ? (c >= 68416 && c <= 68437) + : c <= 68466) + : (c <= 68497 || (c < 68736 + ? (c >= 68608 && c <= 68680) + : c <= 68786))))) + : (c <= 68850 || (c < 69376 + ? (c < 69248 + ? (c < 68912 + ? (c >= 68864 && c <= 68903) + : c <= 68921) + : (c <= 69289 || (c < 69296 + ? (c >= 69291 && c <= 69292) + : c <= 69297))) + : (c <= 69404 || (c < 69552 + ? (c < 69424 + ? c == 69415 + : c <= 69456) + : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) + : (c <= 69702 || (c < 70384 + ? (c < 70094 + ? (c < 69942 + ? (c < 69840 + ? (c < 69759 + ? (c >= 69734 && c <= 69743) + : c <= 69818) + : (c <= 69864 || (c < 69888 + ? (c >= 69872 && c <= 69881) + : c <= 69940))) + : (c <= 69951 || (c < 70006 + ? (c < 69968 + ? (c >= 69956 && c <= 69959) + : c <= 70003) + : (c <= 70006 || (c < 70089 + ? (c >= 70016 && c <= 70084) + : c <= 70092))))) + : (c <= 70106 || (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70199 || (c < 70272 + ? c == 70206 + : c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70378))))))) + : (c <= 70393 || (c < 70487 + ? (c < 70450 + ? (c < 70415 + ? (c < 70405 + ? (c >= 70400 && c <= 70403) + : c <= 70412) + : (c <= 70416 || (c < 70442 + ? (c >= 70419 && c <= 70440) + : c <= 70448))) + : (c <= 70451 || (c < 70471 + ? (c < 70459 + ? (c >= 70453 && c <= 70457) + : c <= 70468) + : (c <= 70472 || (c < 70480 + ? (c >= 70475 && c <= 70477) + : c <= 70480))))) + : (c <= 70487 || (c < 70750 + ? (c < 70512 + ? (c < 70502 + ? (c >= 70493 && c <= 70499) + : c <= 70508) + : (c <= 70516 || (c < 70736 + ? (c >= 70656 && c <= 70730) + : c <= 70745))) + : (c <= 70753 || (c < 70864 + ? (c < 70855 + ? (c >= 70784 && c <= 70853) + : c <= 70855) + : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) + : (c <= 71104 || (c < 119894 + ? (c < 73104 + ? (c < 72163 + ? (c < 71935 + ? (c < 71360 + ? (c < 71236 + ? (c < 71168 + ? (c >= 71128 && c <= 71133) + : c <= 71232) + : (c <= 71236 || (c < 71296 + ? (c >= 71248 && c <= 71257) + : c <= 71352))) + : (c <= 71369 || (c < 71472 + ? (c < 71453 + ? (c >= 71424 && c <= 71450) + : c <= 71467) + : (c <= 71481 || (c < 71840 + ? (c >= 71680 && c <= 71738) + : c <= 71913))))) + : (c <= 71942 || (c < 71995 + ? (c < 71957 + ? (c < 71948 + ? c == 71945 + : c <= 71955) + : (c <= 71958 || (c < 71991 + ? (c >= 71960 && c <= 71989) + : c <= 71992))) + : (c <= 72003 || (c < 72106 + ? (c < 72096 + ? (c >= 72016 && c <= 72025) + : c <= 72103) + : (c <= 72151 || (c >= 72154 && c <= 72161))))))) + : (c <= 72164 || (c < 72873 + ? (c < 72704 + ? (c < 72272 + ? (c < 72263 + ? (c >= 72192 && c <= 72254) + : c <= 72263) + : (c <= 72345 || (c < 72384 + ? c == 72349 + : c <= 72440))) + : (c <= 72712 || (c < 72784 + ? (c < 72760 + ? (c >= 72714 && c <= 72758) + : c <= 72768) + : (c <= 72793 || (c < 72850 + ? (c >= 72818 && c <= 72847) + : c <= 72871))))) + : (c <= 72886 || (c < 73023 + ? (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73014 || (c < 73020 + ? c == 73018 + : c <= 73021))) + : (c <= 73031 || (c < 73063 + ? (c < 73056 + ? (c >= 73040 && c <= 73049) + : c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) + : (c <= 73105 || (c < 94095 + ? (c < 92768 + ? (c < 74752 + ? (c < 73440 + ? (c < 73120 + ? (c >= 73107 && c <= 73112) + : c <= 73129) + : (c <= 73462 || (c < 73728 + ? c == 73648 + : c <= 74649))) + : (c <= 74862 || (c < 82944 + ? (c < 77824 + ? (c >= 74880 && c <= 75075) + : c <= 78894) + : (c <= 83526 || (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766))))) + : (c <= 92777 || (c < 93027 + ? (c < 92928 + ? (c < 92912 + ? (c >= 92880 && c <= 92909) + : c <= 92916) + : (c <= 92982 || (c < 93008 + ? (c >= 92992 && c <= 92995) + : c <= 93017))) + : (c <= 93047 || (c < 93952 + ? (c < 93760 + ? (c >= 93053 && c <= 93071) + : c <= 93823) + : (c <= 94026 || (c >= 94031 && c <= 94087))))))) + : (c <= 94111 || (c < 113776 + ? (c < 101632 + ? (c < 94192 + ? (c < 94179 + ? (c >= 94176 && c <= 94177) + : c <= 94180) + : (c <= 94193 || (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589))) + : (c <= 101640 || (c < 110948 + ? (c < 110928 + ? (c >= 110592 && c <= 110878) + : c <= 110930) + : (c <= 110951 || (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770))))) + : (c <= 113788 || (c < 119163 + ? (c < 113821 + ? (c < 113808 + ? (c >= 113792 && c <= 113800) + : c <= 113817) + : (c <= 113822 || (c < 119149 + ? (c >= 119141 && c <= 119145) + : c <= 119154))) + : (c <= 119170 || (c < 119362 + ? (c < 119210 + ? (c >= 119173 && c <= 119179) + : c <= 119213) + : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 124928 + ? (c < 120630 + ? (c < 120094 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069) + : (c <= 120074 || (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092))))) + : (c <= 120121 || (c < 120488 + ? (c < 120134 + ? (c < 120128 + ? (c >= 120123 && c <= 120126) + : c <= 120132) + : (c <= 120134 || (c < 120146 + ? (c >= 120138 && c <= 120144) + : c <= 120485))) + : (c <= 120512 || (c < 120572 + ? (c < 120540 + ? (c >= 120514 && c <= 120538) + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))))))) + : (c <= 120654 || (c < 121505 + ? (c < 120782 + ? (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779))) + : (c <= 120831 || (c < 121461 + ? (c < 121403 + ? (c >= 121344 && c <= 121398) + : c <= 121452) + : (c <= 121461 || (c < 121499 + ? c == 121476 + : c <= 121503))))) + : (c <= 121519 || (c < 123136 + ? (c < 122907 + ? (c < 122888 + ? (c >= 122880 && c <= 122886) + : c <= 122904) + : (c <= 122913 || (c < 122918 + ? (c >= 122915 && c <= 122916) + : c <= 122922))) + : (c <= 123180 || (c < 123214 + ? (c < 123200 + ? (c >= 123184 && c <= 123197) + : c <= 123209) + : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) + : (c <= 125124 || (c < 126557 + ? (c < 126523 + ? (c < 126497 + ? (c < 125264 + ? (c < 125184 + ? (c >= 125136 && c <= 125142) + : c <= 125259) + : (c <= 125273 || (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495))) + : (c <= 126498 || (c < 126505 + ? (c < 126503 + ? c == 126500 + : c <= 126503) + : (c <= 126514 || (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521))))) + : (c <= 126523 || (c < 126545 + ? (c < 126537 + ? (c < 126535 + ? c == 126530 + : c <= 126535) + : (c <= 126537 || (c < 126541 + ? c == 126539 + : c <= 126543))) + : (c <= 126546 || (c < 126553 + ? (c < 126551 + ? c == 126548 + : c <= 126551) + : (c <= 126553 || c == 126555)))))) + : (c <= 126557 || (c < 126629 + ? (c < 126580 + ? (c < 126564 + ? (c < 126561 + ? c == 126559 + : c <= 126562) + : (c <= 126564 || (c < 126572 + ? (c >= 126567 && c <= 126570) + : c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c < 126625 + ? (c >= 126603 && c <= 126619) + : c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 131072 + ? (c < 130032 + ? (c >= 126635 && c <= 126651) + : c <= 130041) + : (c <= 173789 || (c < 177984 + ? (c >= 173824 && c <= 177972) + : c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); +} + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(58); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '"') ADVANCE(148); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(71); + if (lookahead == '%') ADVANCE(125); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(79); + if (lookahead == '+') ADVANCE(77); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(111); + if (lookahead == '.') ADVANCE(136); + if (lookahead == '/') ADVANCE(124); + if (lookahead == '0') ADVANCE(142); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(104); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(99); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(66); + if (lookahead == '\\') ADVANCE(35); + if (lookahead == ']') ADVANCE(67); + if (lookahead == '^') ADVANCE(117); + if (lookahead == 'b') ADVANCE(153); + if (lookahead == 'm') ADVANCE(157); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(55) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); + END_STATE(); + case 1: + if (lookahead == '!') ADVANCE(89); + if (lookahead == '"') ADVANCE(147); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(53); + if (lookahead == '%') ADVANCE(125); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(79); + if (lookahead == '+') ADVANCE(77); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(110); + if (lookahead == '.') ADVANCE(136); + if (lookahead == '/') ADVANCE(124); + if (lookahead == '0') ADVANCE(142); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(97); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(99); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == '^') ADVANCE(117); + if (lookahead == 'b') ADVANCE(153); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(1) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 2: + if (lookahead == '!') ADVANCE(89); + if (lookahead == '%') ADVANCE(125); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '\'') ADVANCE(85); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(79); + if (lookahead == '+') ADVANCE(77); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(111); + if (lookahead == '.') ADVANCE(136); + if (lookahead == '/') ADVANCE(124); + if (lookahead == ':') ADVANCE(30); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(97); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(99); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == '^') ADVANCE(117); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(2) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 3: + if (lookahead == '!') ADVANCE(89); + if (lookahead == '%') ADVANCE(125); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(79); + if (lookahead == '+') ADVANCE(77); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(110); + if (lookahead == '.') ADVANCE(136); + if (lookahead == '/') ADVANCE(124); + if (lookahead == ':') ADVANCE(30); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(104); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(99); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == '^') ADVANCE(117); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(3) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 4: + if (lookahead == '!') ADVANCE(88); + if (lookahead == '"') ADVANCE(148); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(53); + if (lookahead == '\'') ADVANCE(85); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '+') ADVANCE(76); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '.') ADVANCE(22); + if (lookahead == '/') ADVANCE(23); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(96); + if (lookahead == '=') ADVANCE(90); + if (lookahead == '>') ADVANCE(98); + if (lookahead == '\\') ADVANCE(35); + if (lookahead == ']') ADVANCE(67); + if (lookahead == 'm') ADVANCE(157); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '|') ADVANCE(115); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(8) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 5: + if (lookahead == '!') ADVANCE(88); + if (lookahead == '"') ADVANCE(147); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(53); + if (lookahead == '&') ADVANCE(101); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(78); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(112); + if (lookahead == '.') ADVANCE(20); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '0') ADVANCE(142); + if (lookahead == ':') ADVANCE(30); + if (lookahead == '<') ADVANCE(96); + if (lookahead == '>') ADVANCE(98); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == 'b') ADVANCE(153); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(115); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(5) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 6: + if (lookahead == '!') ADVANCE(88); + if (lookahead == '"') ADVANCE(147); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(53); + if (lookahead == '&') ADVANCE(101); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(78); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(109); + if (lookahead == '.') ADVANCE(21); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '0') ADVANCE(142); + if (lookahead == ':') ADVANCE(30); + if (lookahead == '<') ADVANCE(96); + if (lookahead == '[') ADVANCE(66); + if (lookahead == 'b') ADVANCE(153); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(6) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 7: + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(53); + if (lookahead == '&') ADVANCE(101); + if (lookahead == '\'') ADVANCE(85); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(78); + if (lookahead == '+') ADVANCE(76); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(32); + if (lookahead == '.') ADVANCE(22); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '0') ADVANCE(142); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(96); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(98); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(115); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(7) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 8: + if (lookahead == '!') ADVANCE(88); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(53); + if (lookahead == '\'') ADVANCE(85); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '+') ADVANCE(76); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '.') ADVANCE(22); + if (lookahead == '/') ADVANCE(23); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(96); + if (lookahead == '=') ADVANCE(90); + if (lookahead == '>') ADVANCE(98); + if (lookahead == ']') ADVANCE(67); + if (lookahead == 'm') ADVANCE(157); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '|') ADVANCE(115); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(8) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 9: + if (lookahead == '!') ADVANCE(88); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '+') ADVANCE(76); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '.') ADVANCE(22); + if (lookahead == '/') ADVANCE(23); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(104); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(98); + if (lookahead == '@') ADVANCE(137); + if (lookahead == ']') ADVANCE(67); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(115); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(9) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 10: + if (lookahead == '!') ADVANCE(31); + if (lookahead == '%') ADVANCE(125); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(79); + if (lookahead == '+') ADVANCE(77); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(110); + if (lookahead == '.') ADVANCE(136); + if (lookahead == '/') ADVANCE(124); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(97); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(99); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == '^') ADVANCE(117); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(10) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 11: + if (lookahead == '"') ADVANCE(147); + if (lookahead == '$') ADVANCE(71); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '/') ADVANCE(81); + if (lookahead == '0') ADVANCE(142); + if (lookahead == ':') ADVANCE(70); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == '_') ADVANCE(82); + if (lookahead == 'b') ADVANCE(153); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(11) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (('!' <= lookahead && lookahead <= '@') || + lookahead == '^' || + ('|' <= lookahead && lookahead <= '~')) ADVANCE(83); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); + END_STATE(); + case 12: + if (lookahead == '"') ADVANCE(147); + if (lookahead == '$') ADVANCE(71); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '/') ADVANCE(81); + if (lookahead == '0') ADVANCE(142); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == '_') ADVANCE(82); + if (lookahead == 'b') ADVANCE(153); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(12) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (('!' <= lookahead && lookahead <= '@') || + lookahead == '^' || + ('|' <= lookahead && lookahead <= '~')) ADVANCE(83); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); + END_STATE(); + case 13: + if (lookahead == '"') ADVANCE(147); + if (lookahead == '/') ADVANCE(23); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(96); + if (lookahead == '=') ADVANCE(90); + if (lookahead == 'b') ADVANCE(154); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(13) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 14: + if (lookahead == '#') ADVANCE(87); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '.') ADVANCE(20); + if (lookahead == '/') ADVANCE(23); + if (lookahead == ':') ADVANCE(68); + if (lookahead == '<') ADVANCE(96); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(14) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 15: + if (lookahead == '\'') ADVANCE(149); + END_STATE(); + case 16: + if (lookahead == '\'') ADVANCE(149); + if (lookahead == '\\') ADVANCE(36); + if (lookahead != 0) ADVANCE(15); + END_STATE(); + case 17: + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(78); + if (lookahead == '+') ADVANCE(76); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(32); + if (lookahead == '.') ADVANCE(22); + if (lookahead == '/') ADVANCE(23); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(104); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(98); + if (lookahead == ']') ADVANCE(67); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(115); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(17) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 18: + if (lookahead == '*') ADVANCE(78); + if (lookahead == '+') ADVANCE(76); + if (lookahead == '/') ADVANCE(74); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(73); + if (lookahead != 0) ADVANCE(75); + END_STATE(); + case 19: + if (lookahead == '.') ADVANCE(103); + if (lookahead == '=') ADVANCE(108); + END_STATE(); + case 20: + if (lookahead == '.') ADVANCE(105); + END_STATE(); + case 21: + if (lookahead == '.') ADVANCE(106); + END_STATE(); + case 22: + if (lookahead == '.') ADVANCE(19); + END_STATE(); + case 23: + if (lookahead == '/') ADVANCE(151); + END_STATE(); + case 24: + if (lookahead == '1') ADVANCE(26); + if (lookahead == '3') ADVANCE(25); + if (lookahead == '6') ADVANCE(28); + if (lookahead == '8') ADVANCE(138); + if (lookahead == 's') ADVANCE(34); + END_STATE(); + case 25: + if (lookahead == '2') ADVANCE(138); + END_STATE(); + case 26: + if (lookahead == '2') ADVANCE(29); + if (lookahead == '6') ADVANCE(138); + END_STATE(); + case 27: + if (lookahead == '3') ADVANCE(25); + if (lookahead == '6') ADVANCE(28); + END_STATE(); + case 28: + if (lookahead == '4') ADVANCE(138); + END_STATE(); + case 29: + if (lookahead == '8') ADVANCE(138); + END_STATE(); + case 30: + if (lookahead == ':') ADVANCE(100); + END_STATE(); + case 31: + if (lookahead == '=') ADVANCE(119); + END_STATE(); + case 32: + if (lookahead == '>') ADVANCE(95); + END_STATE(); + case 33: + if (lookahead == 'e') ADVANCE(138); + END_STATE(); + case 34: + if (lookahead == 'i') ADVANCE(37); + END_STATE(); + case 35: + if (lookahead == 'u') ADVANCE(38); + if (lookahead == 'x') ADVANCE(49); + if (lookahead != 0) ADVANCE(150); + END_STATE(); + case 36: + if (lookahead == 'u') ADVANCE(39); + if (lookahead == 'x') ADVANCE(50); + if (lookahead != 0) ADVANCE(15); + END_STATE(); + case 37: + if (lookahead == 'z') ADVANCE(33); + END_STATE(); + case 38: + if (lookahead == '{') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); + END_STATE(); + case 39: + if (lookahead == '{') ADVANCE(48); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); + END_STATE(); + case 40: + if (lookahead == '}') ADVANCE(15); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); + END_STATE(); + case 41: + if (lookahead == '}') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + END_STATE(); + case 42: + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(143); + END_STATE(); + case 43: + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(144); + END_STATE(); + case 44: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(15); + END_STATE(); + case 45: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); + END_STATE(); + case 46: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); + END_STATE(); + case 47: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + END_STATE(); + case 48: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); + END_STATE(); + case 49: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + END_STATE(); + case 50: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); + END_STATE(); + case 51: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); + END_STATE(); + case 52: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(146); + END_STATE(); + case 53: + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + END_STATE(); + case 54: + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 55: + if (eof) ADVANCE(58); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '"') ADVANCE(147); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(71); + if (lookahead == '%') ADVANCE(125); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(79); + if (lookahead == '+') ADVANCE(77); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(111); + if (lookahead == '.') ADVANCE(136); + if (lookahead == '/') ADVANCE(124); + if (lookahead == '0') ADVANCE(142); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(104); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(99); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == '^') ADVANCE(117); + if (lookahead == 'b') ADVANCE(153); + if (lookahead == 'm') ADVANCE(157); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(55) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 56: + if (eof) ADVANCE(58); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '"') ADVANCE(147); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(53); + if (lookahead == '%') ADVANCE(125); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '(') ADVANCE(61); + if (lookahead == '*') ADVANCE(79); + if (lookahead == '+') ADVANCE(77); + if (lookahead == '-') ADVANCE(110); + if (lookahead == '.') ADVANCE(136); + if (lookahead == '/') ADVANCE(124); + if (lookahead == '0') ADVANCE(142); + if (lookahead == ':') ADVANCE(30); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(97); + if (lookahead == '=') ADVANCE(91); + if (lookahead == '>') ADVANCE(99); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '[') ADVANCE(66); + if (lookahead == '^') ADVANCE(117); + if (lookahead == 'b') ADVANCE(153); + if (lookahead == 'm') ADVANCE(157); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(56) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 57: + if (eof) ADVANCE(58); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '"') ADVANCE(147); + if (lookahead == '#') ADVANCE(87); + if (lookahead == '$') ADVANCE(53); + if (lookahead == '&') ADVANCE(101); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '(') ADVANCE(61); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(78); + if (lookahead == '+') ADVANCE(76); + if (lookahead == ',') ADVANCE(94); + if (lookahead == '-') ADVANCE(112); + if (lookahead == '.') ADVANCE(20); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '0') ADVANCE(142); + if (lookahead == ':') ADVANCE(30); + if (lookahead == ';') ADVANCE(59); + if (lookahead == '<') ADVANCE(96); + if (lookahead == '=') ADVANCE(90); + if (lookahead == '>') ADVANCE(98); + if (lookahead == '?') ADVANCE(80); + if (lookahead == '[') ADVANCE(66); + if (lookahead == ']') ADVANCE(67); + if (lookahead == 'b') ADVANCE(153); + if (lookahead == 'm') ADVANCE(157); + if (lookahead == 'r') ADVANCE(155); + if (lookahead == '{') ADVANCE(63); + if (lookahead == '|') ADVANCE(115); + if (lookahead == '}') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(57) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + END_STATE(); + case 58: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 59: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 60: + ACCEPT_TOKEN(anon_sym_macro_rules_BANG); + END_STATE(); + case 61: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 62: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 63: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 64: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 65: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 66: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 67: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 68: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 69: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(100); + END_STATE(); + case 70: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '!' || + lookahead == '#' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '_' || + lookahead == '|' || + lookahead == '~') ADVANCE(83); + END_STATE(); + case 71: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + END_STATE(); + case 72: + ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); + if (lookahead == '\n') ADVANCE(75); + if (lookahead == '*' || + lookahead == '+' || + lookahead == '?') ADVANCE(151); + if (lookahead != 0) ADVANCE(72); + END_STATE(); + case 73: + ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); + if (lookahead == '/') ADVANCE(74); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(73); + if (lookahead != 0 && + lookahead != '*' && + lookahead != '+' && + lookahead != '?') ADVANCE(75); + END_STATE(); + case 74: + ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); + if (lookahead == '/') ADVANCE(72); + if (lookahead != 0 && + lookahead != '*' && + lookahead != '+' && + lookahead != '?') ADVANCE(75); + END_STATE(); + case 75: + ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); + if (lookahead != 0 && + lookahead != '*' && + lookahead != '+' && + lookahead != '?') ADVANCE(75); + END_STATE(); + case 76: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 77: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(126); + END_STATE(); + case 78: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 79: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(128); + END_STATE(); + case 80: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 81: + ACCEPT_TOKEN(aux_sym__non_special_token_token1); + if (lookahead == '/') ADVANCE(84); + if (lookahead == '!' || + lookahead == '#' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '_' || + lookahead == '|' || + lookahead == '~') ADVANCE(83); + END_STATE(); + case 82: + ACCEPT_TOKEN(aux_sym__non_special_token_token1); + if (lookahead == '_') ADVANCE(82); + if (lookahead == '!' || + lookahead == '#' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(83); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(166); + END_STATE(); + case 83: + ACCEPT_TOKEN(aux_sym__non_special_token_token1); + if (lookahead == '!' || + lookahead == '#' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '_' || + lookahead == '|' || + lookahead == '~') ADVANCE(83); + END_STATE(); + case 84: + ACCEPT_TOKEN(aux_sym__non_special_token_token1); + if (lookahead == '!' || + lookahead == '#' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '_' || + lookahead == '|' || + lookahead == '~') ADVANCE(84); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(151); + END_STATE(); + case 85: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 86: + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'') ADVANCE(149); + if (lookahead == '\\') ADVANCE(36); + if (lookahead != 0) ADVANCE(15); + END_STATE(); + case 87: + ACCEPT_TOKEN(anon_sym_POUND); + END_STATE(); + case 88: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 89: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(119); + END_STATE(); + case 90: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 91: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(118); + END_STATE(); + case 92: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(118); + if (lookahead == '>') ADVANCE(65); + END_STATE(); + case 93: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(65); + END_STATE(); + case 94: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 95: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 96: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 97: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(122); + if (lookahead == '=') ADVANCE(120); + END_STATE(); + case 98: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 99: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(121); + if (lookahead == '>') ADVANCE(123); + END_STATE(); + case 100: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + END_STATE(); + case 101: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 102: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '=') ADVANCE(131); + END_STATE(); + case 103: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + END_STATE(); + case 104: + ACCEPT_TOKEN(anon_sym_LT2); + END_STATE(); + case 105: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + END_STATE(); + case 106: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(103); + END_STATE(); + case 107: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(103); + if (lookahead == '=') ADVANCE(108); + END_STATE(); + case 108: + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + END_STATE(); + case 109: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 110: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(127); + END_STATE(); + case 111: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(127); + if (lookahead == '>') ADVANCE(95); + END_STATE(); + case 112: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(95); + END_STATE(); + case 113: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 114: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 115: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 116: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(132); + if (lookahead == '|') ADVANCE(114); + END_STATE(); + case 117: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(133); + END_STATE(); + case 118: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 119: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 120: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 121: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 122: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(134); + END_STATE(); + case 123: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(135); + END_STATE(); + case 124: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(151); + if (lookahead == '=') ADVANCE(129); + END_STATE(); + case 125: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(130); + END_STATE(); + case 126: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 127: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 128: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 129: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 130: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 131: + ACCEPT_TOKEN(anon_sym_AMP_EQ); + END_STATE(); + case 132: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); + END_STATE(); + case 133: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + END_STATE(); + case 134: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + END_STATE(); + case 135: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + END_STATE(); + case 136: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(107); + END_STATE(); + case 137: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 138: + ACCEPT_TOKEN(sym_integer_literal); + END_STATE(); + case 139: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == '2') ADVANCE(146); + if (lookahead == 'f') ADVANCE(140); + if (lookahead == 'i') ADVANCE(24); + if (lookahead == 'u') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + END_STATE(); + case 140: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == '3') ADVANCE(139); + if (lookahead == '6') ADVANCE(141); + if (lookahead == 'f') ADVANCE(140); + if (lookahead == 'i') ADVANCE(24); + if (lookahead == 'u') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + END_STATE(); + case 141: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == '4') ADVANCE(146); + if (lookahead == 'f') ADVANCE(140); + if (lookahead == 'i') ADVANCE(24); + if (lookahead == 'u') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + END_STATE(); + case 142: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == 'b') ADVANCE(42); + if (lookahead == 'f') ADVANCE(27); + if (lookahead == 'i') ADVANCE(24); + if (lookahead == 'o') ADVANCE(43); + if (lookahead == 'u') ADVANCE(24); + if (lookahead == 'x') ADVANCE(52); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(145); + END_STATE(); + case 143: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == 'f') ADVANCE(27); + if (lookahead == 'i') ADVANCE(24); + if (lookahead == 'u') ADVANCE(24); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(143); + END_STATE(); + case 144: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == 'f') ADVANCE(27); + if (lookahead == 'i') ADVANCE(24); + if (lookahead == 'u') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(144); + END_STATE(); + case 145: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == 'f') ADVANCE(27); + if (lookahead == 'i') ADVANCE(24); + if (lookahead == 'u') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(145); + END_STATE(); + case 146: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == 'f') ADVANCE(140); + if (lookahead == 'i') ADVANCE(24); + if (lookahead == 'u') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + END_STATE(); + case 147: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + END_STATE(); + case 148: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 149: + ACCEPT_TOKEN(sym_char_literal); + END_STATE(); + case 150: + ACCEPT_TOKEN(sym_escape_sequence); + END_STATE(); + case 151: + ACCEPT_TOKEN(sym_line_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(151); + END_STATE(); + case 152: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '!') ADVANCE(60); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 153: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(147); + if (lookahead == '\'') ADVANCE(16); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 154: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(147); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 155: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '#') ADVANCE(54); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 156: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(163); + if (sym_identifier_character_set_6(lookahead)) ADVANCE(166); + END_STATE(); + case 157: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(158); + if (sym_identifier_character_set_7(lookahead)) ADVANCE(166); + END_STATE(); + case 158: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(162); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 159: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(164); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 160: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(159); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 161: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(156); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 162: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(161); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 163: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(165); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 164: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(152); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 165: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(160); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 166: + ACCEPT_TOKEN(sym_identifier); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + END_STATE(); + case 167: + ACCEPT_TOKEN(sym_metavariable); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (lookahead == '_') ADVANCE(1); + if (lookahead == 'a') ADVANCE(2); + if (lookahead == 'b') ADVANCE(3); + if (lookahead == 'c') ADVANCE(4); + if (lookahead == 'd') ADVANCE(5); + if (lookahead == 'e') ADVANCE(6); + if (lookahead == 'f') ADVANCE(7); + if (lookahead == 'i') ADVANCE(8); + if (lookahead == 'l') ADVANCE(9); + if (lookahead == 'm') ADVANCE(10); + if (lookahead == 'p') ADVANCE(11); + if (lookahead == 'r') ADVANCE(12); + if (lookahead == 's') ADVANCE(13); + if (lookahead == 't') ADVANCE(14); + if (lookahead == 'u') ADVANCE(15); + if (lookahead == 'v') ADVANCE(16); + if (lookahead == 'w') ADVANCE(17); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(0) + END_STATE(); + case 1: + ACCEPT_TOKEN(anon_sym__); + END_STATE(); + case 2: + if (lookahead == 's') ADVANCE(18); + if (lookahead == 'w') ADVANCE(19); + END_STATE(); + case 3: + if (lookahead == 'l') ADVANCE(20); + if (lookahead == 'o') ADVANCE(21); + if (lookahead == 'r') ADVANCE(22); + END_STATE(); + case 4: + if (lookahead == 'h') ADVANCE(23); + if (lookahead == 'o') ADVANCE(24); + if (lookahead == 'r') ADVANCE(25); + END_STATE(); + case 5: + if (lookahead == 'e') ADVANCE(26); + if (lookahead == 'y') ADVANCE(27); + END_STATE(); + case 6: + if (lookahead == 'l') ADVANCE(28); + if (lookahead == 'n') ADVANCE(29); + if (lookahead == 'x') ADVANCE(30); + END_STATE(); + case 7: + if (lookahead == '3') ADVANCE(31); + if (lookahead == '6') ADVANCE(32); + if (lookahead == 'a') ADVANCE(33); + if (lookahead == 'n') ADVANCE(34); + if (lookahead == 'o') ADVANCE(35); + END_STATE(); + case 8: + if (lookahead == '1') ADVANCE(36); + if (lookahead == '3') ADVANCE(37); + if (lookahead == '6') ADVANCE(38); + if (lookahead == '8') ADVANCE(39); + if (lookahead == 'd') ADVANCE(40); + if (lookahead == 'f') ADVANCE(41); + if (lookahead == 'm') ADVANCE(42); + if (lookahead == 'n') ADVANCE(43); + if (lookahead == 's') ADVANCE(44); + if (lookahead == 't') ADVANCE(45); + END_STATE(); + case 9: + if (lookahead == 'e') ADVANCE(46); + if (lookahead == 'i') ADVANCE(47); + if (lookahead == 'o') ADVANCE(48); + END_STATE(); + case 10: + if (lookahead == 'a') ADVANCE(49); + if (lookahead == 'e') ADVANCE(50); + if (lookahead == 'o') ADVANCE(51); + if (lookahead == 'u') ADVANCE(52); + END_STATE(); + case 11: + if (lookahead == 'a') ADVANCE(53); + if (lookahead == 'u') ADVANCE(54); + END_STATE(); + case 12: + if (lookahead == 'e') ADVANCE(55); + END_STATE(); + case 13: + if (lookahead == 'e') ADVANCE(56); + if (lookahead == 't') ADVANCE(57); + if (lookahead == 'u') ADVANCE(58); + END_STATE(); + case 14: + if (lookahead == 'r') ADVANCE(59); + if (lookahead == 't') ADVANCE(60); + if (lookahead == 'y') ADVANCE(61); + END_STATE(); + case 15: + if (lookahead == '1') ADVANCE(62); + if (lookahead == '3') ADVANCE(63); + if (lookahead == '6') ADVANCE(64); + if (lookahead == '8') ADVANCE(65); + if (lookahead == 'n') ADVANCE(66); + if (lookahead == 's') ADVANCE(67); + END_STATE(); + case 16: + if (lookahead == 'i') ADVANCE(68); + END_STATE(); + case 17: + if (lookahead == 'h') ADVANCE(69); + END_STATE(); + case 18: + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'y') ADVANCE(70); + END_STATE(); + case 19: + if (lookahead == 'a') ADVANCE(71); + END_STATE(); + case 20: + if (lookahead == 'o') ADVANCE(72); + END_STATE(); + case 21: + if (lookahead == 'o') ADVANCE(73); + END_STATE(); + case 22: + if (lookahead == 'e') ADVANCE(74); + END_STATE(); + case 23: + if (lookahead == 'a') ADVANCE(75); + END_STATE(); + case 24: + if (lookahead == 'n') ADVANCE(76); + END_STATE(); + case 25: + if (lookahead == 'a') ADVANCE(77); + END_STATE(); + case 26: + if (lookahead == 'f') ADVANCE(78); + END_STATE(); + case 27: + if (lookahead == 'n') ADVANCE(79); + END_STATE(); + case 28: + if (lookahead == 's') ADVANCE(80); + END_STATE(); + case 29: + if (lookahead == 'u') ADVANCE(81); + END_STATE(); + case 30: + if (lookahead == 'p') ADVANCE(82); + if (lookahead == 't') ADVANCE(83); + END_STATE(); + case 31: + if (lookahead == '2') ADVANCE(84); + END_STATE(); + case 32: + if (lookahead == '4') ADVANCE(85); + END_STATE(); + case 33: + if (lookahead == 'l') ADVANCE(86); + END_STATE(); + case 34: + ACCEPT_TOKEN(anon_sym_fn); + END_STATE(); + case 35: + if (lookahead == 'r') ADVANCE(87); + END_STATE(); + case 36: + if (lookahead == '2') ADVANCE(88); + if (lookahead == '6') ADVANCE(89); + END_STATE(); + case 37: + if (lookahead == '2') ADVANCE(90); + END_STATE(); + case 38: + if (lookahead == '4') ADVANCE(91); + END_STATE(); + case 39: + ACCEPT_TOKEN(anon_sym_i8); + END_STATE(); + case 40: + if (lookahead == 'e') ADVANCE(92); + END_STATE(); + case 41: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 42: + if (lookahead == 'p') ADVANCE(93); + END_STATE(); + case 43: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 44: + if (lookahead == 'i') ADVANCE(94); + END_STATE(); + case 45: + if (lookahead == 'e') ADVANCE(95); + END_STATE(); + case 46: + if (lookahead == 't') ADVANCE(96); + END_STATE(); + case 47: + if (lookahead == 'f') ADVANCE(97); + if (lookahead == 't') ADVANCE(98); + END_STATE(); + case 48: + if (lookahead == 'o') ADVANCE(99); + END_STATE(); + case 49: + if (lookahead == 't') ADVANCE(100); + END_STATE(); + case 50: + if (lookahead == 't') ADVANCE(101); + END_STATE(); + case 51: + if (lookahead == 'd') ADVANCE(102); + if (lookahead == 'v') ADVANCE(103); + END_STATE(); + case 52: + if (lookahead == 't') ADVANCE(104); + END_STATE(); + case 53: + if (lookahead == 't') ADVANCE(105); + END_STATE(); + case 54: + if (lookahead == 'b') ADVANCE(106); + END_STATE(); + case 55: + if (lookahead == 'f') ADVANCE(107); + if (lookahead == 't') ADVANCE(108); + END_STATE(); + case 56: + if (lookahead == 'l') ADVANCE(109); + END_STATE(); + case 57: + if (lookahead == 'a') ADVANCE(110); + if (lookahead == 'm') ADVANCE(111); + if (lookahead == 'r') ADVANCE(112); + END_STATE(); + case 58: + if (lookahead == 'p') ADVANCE(113); + END_STATE(); + case 59: + if (lookahead == 'a') ADVANCE(114); + if (lookahead == 'u') ADVANCE(115); + END_STATE(); + case 60: + ACCEPT_TOKEN(anon_sym_tt); + END_STATE(); + case 61: + ACCEPT_TOKEN(anon_sym_ty); + if (lookahead == 'p') ADVANCE(116); + END_STATE(); + case 62: + if (lookahead == '2') ADVANCE(117); + if (lookahead == '6') ADVANCE(118); + END_STATE(); + case 63: + if (lookahead == '2') ADVANCE(119); + END_STATE(); + case 64: + if (lookahead == '4') ADVANCE(120); + END_STATE(); + case 65: + ACCEPT_TOKEN(anon_sym_u8); + END_STATE(); + case 66: + if (lookahead == 'i') ADVANCE(121); + if (lookahead == 's') ADVANCE(122); + END_STATE(); + case 67: + if (lookahead == 'e') ADVANCE(123); + if (lookahead == 'i') ADVANCE(124); + END_STATE(); + case 68: + if (lookahead == 's') ADVANCE(125); + END_STATE(); + case 69: + if (lookahead == 'e') ADVANCE(126); + if (lookahead == 'i') ADVANCE(127); + END_STATE(); + case 70: + if (lookahead == 'n') ADVANCE(128); + END_STATE(); + case 71: + if (lookahead == 'i') ADVANCE(129); + END_STATE(); + case 72: + if (lookahead == 'c') ADVANCE(130); + END_STATE(); + case 73: + if (lookahead == 'l') ADVANCE(131); + END_STATE(); + case 74: + if (lookahead == 'a') ADVANCE(132); + END_STATE(); + case 75: + if (lookahead == 'r') ADVANCE(133); + END_STATE(); + case 76: + if (lookahead == 's') ADVANCE(134); + if (lookahead == 't') ADVANCE(135); + END_STATE(); + case 77: + if (lookahead == 't') ADVANCE(136); + END_STATE(); + case 78: + if (lookahead == 'a') ADVANCE(137); + END_STATE(); + case 79: + ACCEPT_TOKEN(anon_sym_dyn); + END_STATE(); + case 80: + if (lookahead == 'e') ADVANCE(138); + END_STATE(); + case 81: + if (lookahead == 'm') ADVANCE(139); + END_STATE(); + case 82: + if (lookahead == 'r') ADVANCE(140); + END_STATE(); + case 83: + if (lookahead == 'e') ADVANCE(141); + END_STATE(); + case 84: + ACCEPT_TOKEN(anon_sym_f32); + END_STATE(); + case 85: + ACCEPT_TOKEN(anon_sym_f64); + END_STATE(); + case 86: + if (lookahead == 's') ADVANCE(142); + END_STATE(); + case 87: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 88: + if (lookahead == '8') ADVANCE(143); + END_STATE(); + case 89: + ACCEPT_TOKEN(anon_sym_i16); + END_STATE(); + case 90: + ACCEPT_TOKEN(anon_sym_i32); + END_STATE(); + case 91: + ACCEPT_TOKEN(anon_sym_i64); + END_STATE(); + case 92: + if (lookahead == 'n') ADVANCE(144); + END_STATE(); + case 93: + if (lookahead == 'l') ADVANCE(145); + END_STATE(); + case 94: + if (lookahead == 'z') ADVANCE(146); + END_STATE(); + case 95: + if (lookahead == 'm') ADVANCE(147); + END_STATE(); + case 96: + ACCEPT_TOKEN(anon_sym_let); + END_STATE(); + case 97: + if (lookahead == 'e') ADVANCE(148); + END_STATE(); + case 98: + if (lookahead == 'e') ADVANCE(149); + END_STATE(); + case 99: + if (lookahead == 'p') ADVANCE(150); + END_STATE(); + case 100: + if (lookahead == 'c') ADVANCE(151); + END_STATE(); + case 101: + if (lookahead == 'a') ADVANCE(152); + END_STATE(); + case 102: + ACCEPT_TOKEN(anon_sym_mod); + END_STATE(); + case 103: + if (lookahead == 'e') ADVANCE(153); + END_STATE(); + case 104: + ACCEPT_TOKEN(sym_mutable_specifier); + END_STATE(); + case 105: + ACCEPT_TOKEN(anon_sym_pat); + if (lookahead == 'h') ADVANCE(154); + END_STATE(); + case 106: + ACCEPT_TOKEN(anon_sym_pub); + END_STATE(); + case 107: + ACCEPT_TOKEN(anon_sym_ref); + END_STATE(); + case 108: + if (lookahead == 'u') ADVANCE(155); + END_STATE(); + case 109: + if (lookahead == 'f') ADVANCE(156); + END_STATE(); + case 110: + if (lookahead == 't') ADVANCE(157); + END_STATE(); + case 111: + if (lookahead == 't') ADVANCE(158); + END_STATE(); + case 112: + ACCEPT_TOKEN(anon_sym_str); + if (lookahead == 'u') ADVANCE(159); + END_STATE(); + case 113: + if (lookahead == 'e') ADVANCE(160); + END_STATE(); + case 114: + if (lookahead == 'i') ADVANCE(161); + END_STATE(); + case 115: + if (lookahead == 'e') ADVANCE(162); + END_STATE(); + case 116: + if (lookahead == 'e') ADVANCE(163); + END_STATE(); + case 117: + if (lookahead == '8') ADVANCE(164); + END_STATE(); + case 118: + ACCEPT_TOKEN(anon_sym_u16); + END_STATE(); + case 119: + ACCEPT_TOKEN(anon_sym_u32); + END_STATE(); + case 120: + ACCEPT_TOKEN(anon_sym_u64); + END_STATE(); + case 121: + if (lookahead == 'o') ADVANCE(165); + END_STATE(); + case 122: + if (lookahead == 'a') ADVANCE(166); + END_STATE(); + case 123: + ACCEPT_TOKEN(anon_sym_use); + END_STATE(); + case 124: + if (lookahead == 'z') ADVANCE(167); + END_STATE(); + case 125: + ACCEPT_TOKEN(anon_sym_vis); + END_STATE(); + case 126: + if (lookahead == 'r') ADVANCE(168); + END_STATE(); + case 127: + if (lookahead == 'l') ADVANCE(169); + END_STATE(); + case 128: + if (lookahead == 'c') ADVANCE(170); + END_STATE(); + case 129: + if (lookahead == 't') ADVANCE(171); + END_STATE(); + case 130: + if (lookahead == 'k') ADVANCE(172); + END_STATE(); + case 131: + ACCEPT_TOKEN(anon_sym_bool); + END_STATE(); + case 132: + if (lookahead == 'k') ADVANCE(173); + END_STATE(); + case 133: + ACCEPT_TOKEN(anon_sym_char); + END_STATE(); + case 134: + if (lookahead == 't') ADVANCE(174); + END_STATE(); + case 135: + if (lookahead == 'i') ADVANCE(175); + END_STATE(); + case 136: + if (lookahead == 'e') ADVANCE(176); + END_STATE(); + case 137: + if (lookahead == 'u') ADVANCE(177); + END_STATE(); + case 138: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 139: + ACCEPT_TOKEN(anon_sym_enum); + END_STATE(); + case 140: + ACCEPT_TOKEN(anon_sym_expr); + END_STATE(); + case 141: + if (lookahead == 'r') ADVANCE(178); + END_STATE(); + case 142: + if (lookahead == 'e') ADVANCE(179); + END_STATE(); + case 143: + ACCEPT_TOKEN(anon_sym_i128); + END_STATE(); + case 144: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 145: + ACCEPT_TOKEN(anon_sym_impl); + END_STATE(); + case 146: + if (lookahead == 'e') ADVANCE(181); + END_STATE(); + case 147: + ACCEPT_TOKEN(anon_sym_item); + END_STATE(); + case 148: + if (lookahead == 't') ADVANCE(182); + END_STATE(); + case 149: + if (lookahead == 'r') ADVANCE(183); + END_STATE(); + case 150: + ACCEPT_TOKEN(anon_sym_loop); + END_STATE(); + case 151: + if (lookahead == 'h') ADVANCE(184); + END_STATE(); + case 152: + ACCEPT_TOKEN(anon_sym_meta); + END_STATE(); + case 153: + ACCEPT_TOKEN(anon_sym_move); + END_STATE(); + case 154: + ACCEPT_TOKEN(anon_sym_path); + END_STATE(); + case 155: + if (lookahead == 'r') ADVANCE(185); + END_STATE(); + case 156: + ACCEPT_TOKEN(sym_self); + END_STATE(); + case 157: + if (lookahead == 'i') ADVANCE(186); + END_STATE(); + case 158: + ACCEPT_TOKEN(anon_sym_stmt); + END_STATE(); + case 159: + if (lookahead == 'c') ADVANCE(187); + END_STATE(); + case 160: + if (lookahead == 'r') ADVANCE(188); + END_STATE(); + case 161: + if (lookahead == 't') ADVANCE(189); + END_STATE(); + case 162: + ACCEPT_TOKEN(anon_sym_true); + END_STATE(); + case 163: + ACCEPT_TOKEN(anon_sym_type); + END_STATE(); + case 164: + ACCEPT_TOKEN(anon_sym_u128); + END_STATE(); + case 165: + if (lookahead == 'n') ADVANCE(190); + END_STATE(); + case 166: + if (lookahead == 'f') ADVANCE(191); + END_STATE(); + case 167: + if (lookahead == 'e') ADVANCE(192); + END_STATE(); + case 168: + if (lookahead == 'e') ADVANCE(193); + END_STATE(); + case 169: + if (lookahead == 'e') ADVANCE(194); + END_STATE(); + case 170: + ACCEPT_TOKEN(anon_sym_async); + END_STATE(); + case 171: + ACCEPT_TOKEN(anon_sym_await); + END_STATE(); + case 172: + ACCEPT_TOKEN(anon_sym_block); + END_STATE(); + case 173: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 174: + ACCEPT_TOKEN(anon_sym_const); + END_STATE(); + case 175: + if (lookahead == 'n') ADVANCE(195); + END_STATE(); + case 176: + ACCEPT_TOKEN(sym_crate); + END_STATE(); + case 177: + if (lookahead == 'l') ADVANCE(196); + END_STATE(); + case 178: + if (lookahead == 'n') ADVANCE(197); + END_STATE(); + case 179: + ACCEPT_TOKEN(anon_sym_false); + END_STATE(); + case 180: + ACCEPT_TOKEN(anon_sym_ident); + END_STATE(); + case 181: + ACCEPT_TOKEN(anon_sym_isize); + END_STATE(); + case 182: + if (lookahead == 'i') ADVANCE(198); + END_STATE(); + case 183: + if (lookahead == 'a') ADVANCE(199); + END_STATE(); + case 184: + ACCEPT_TOKEN(anon_sym_match); + END_STATE(); + case 185: + if (lookahead == 'n') ADVANCE(200); + END_STATE(); + case 186: + if (lookahead == 'c') ADVANCE(201); + END_STATE(); + case 187: + if (lookahead == 't') ADVANCE(202); + END_STATE(); + case 188: + ACCEPT_TOKEN(sym_super); + END_STATE(); + case 189: + ACCEPT_TOKEN(anon_sym_trait); + END_STATE(); + case 190: + ACCEPT_TOKEN(anon_sym_union); + END_STATE(); + case 191: + if (lookahead == 'e') ADVANCE(203); + END_STATE(); + case 192: + ACCEPT_TOKEN(anon_sym_usize); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_where); + END_STATE(); + case 194: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 195: + if (lookahead == 'u') ADVANCE(204); + END_STATE(); + case 196: + if (lookahead == 't') ADVANCE(205); + END_STATE(); + case 197: + ACCEPT_TOKEN(anon_sym_extern); + END_STATE(); + case 198: + if (lookahead == 'm') ADVANCE(206); + END_STATE(); + case 199: + if (lookahead == 'l') ADVANCE(207); + END_STATE(); + case 200: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 201: + ACCEPT_TOKEN(anon_sym_static); + END_STATE(); + case 202: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); + case 203: + ACCEPT_TOKEN(anon_sym_unsafe); + END_STATE(); + case 204: + if (lookahead == 'e') ADVANCE(208); + END_STATE(); + case 205: + ACCEPT_TOKEN(anon_sym_default); + END_STATE(); + case 206: + if (lookahead == 'e') ADVANCE(209); + END_STATE(); + case 207: + ACCEPT_TOKEN(anon_sym_literal); + END_STATE(); + case 208: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 209: + ACCEPT_TOKEN(anon_sym_lifetime); + END_STATE(); + default: + return false; + } +} + +static TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 57, .external_lex_state = 2}, + [2] = {.lex_state = 57, .external_lex_state = 2}, + [3] = {.lex_state = 57, .external_lex_state = 2}, + [4] = {.lex_state = 57, .external_lex_state = 2}, + [5] = {.lex_state = 57, .external_lex_state = 2}, + [6] = {.lex_state = 57, .external_lex_state = 2}, + [7] = {.lex_state = 57, .external_lex_state = 2}, + [8] = {.lex_state = 57, .external_lex_state = 2}, + [9] = {.lex_state = 57, .external_lex_state = 2}, + [10] = {.lex_state = 57, .external_lex_state = 2}, + [11] = {.lex_state = 57, .external_lex_state = 2}, + [12] = {.lex_state = 57, .external_lex_state = 2}, + [13] = {.lex_state = 57, .external_lex_state = 2}, + [14] = {.lex_state = 57, .external_lex_state = 2}, + [15] = {.lex_state = 57, .external_lex_state = 2}, + [16] = {.lex_state = 57, .external_lex_state = 2}, + [17] = {.lex_state = 1, .external_lex_state = 2}, + [18] = {.lex_state = 1, .external_lex_state = 2}, + [19] = {.lex_state = 1, .external_lex_state = 2}, + [20] = {.lex_state = 1, .external_lex_state = 2}, + [21] = {.lex_state = 1, .external_lex_state = 2}, + [22] = {.lex_state = 1, .external_lex_state = 2}, + [23] = {.lex_state = 1, .external_lex_state = 2}, + [24] = {.lex_state = 1, .external_lex_state = 2}, + [25] = {.lex_state = 1, .external_lex_state = 2}, + [26] = {.lex_state = 1, .external_lex_state = 2}, + [27] = {.lex_state = 5, .external_lex_state = 2}, + [28] = {.lex_state = 5, .external_lex_state = 2}, + [29] = {.lex_state = 5, .external_lex_state = 2}, + [30] = {.lex_state = 56, .external_lex_state = 2}, + [31] = {.lex_state = 5, .external_lex_state = 2}, + [32] = {.lex_state = 5, .external_lex_state = 2}, + [33] = {.lex_state = 5, .external_lex_state = 2}, + [34] = {.lex_state = 56, .external_lex_state = 2}, + [35] = {.lex_state = 5, .external_lex_state = 2}, + [36] = {.lex_state = 5, .external_lex_state = 2}, + [37] = {.lex_state = 5, .external_lex_state = 2}, + [38] = {.lex_state = 56, .external_lex_state = 2}, + [39] = {.lex_state = 56, .external_lex_state = 2}, + [40] = {.lex_state = 5, .external_lex_state = 2}, + [41] = {.lex_state = 56, .external_lex_state = 2}, + [42] = {.lex_state = 5, .external_lex_state = 2}, + [43] = {.lex_state = 56, .external_lex_state = 2}, + [44] = {.lex_state = 56, .external_lex_state = 2}, + [45] = {.lex_state = 56, .external_lex_state = 2}, + [46] = {.lex_state = 5, .external_lex_state = 2}, + [47] = {.lex_state = 56, .external_lex_state = 2}, + [48] = {.lex_state = 56, .external_lex_state = 2}, + [49] = {.lex_state = 56, .external_lex_state = 2}, + [50] = {.lex_state = 56, .external_lex_state = 2}, + [51] = {.lex_state = 56, .external_lex_state = 2}, + [52] = {.lex_state = 56, .external_lex_state = 2}, + [53] = {.lex_state = 5, .external_lex_state = 2}, + [54] = {.lex_state = 56, .external_lex_state = 2}, + [55] = {.lex_state = 56, .external_lex_state = 2}, + [56] = {.lex_state = 5, .external_lex_state = 2}, + [57] = {.lex_state = 56, .external_lex_state = 2}, + [58] = {.lex_state = 56, .external_lex_state = 2}, + [59] = {.lex_state = 5, .external_lex_state = 2}, + [60] = {.lex_state = 56, .external_lex_state = 2}, + [61] = {.lex_state = 5, .external_lex_state = 2}, + [62] = {.lex_state = 56, .external_lex_state = 2}, + [63] = {.lex_state = 56, .external_lex_state = 2}, + [64] = {.lex_state = 56, .external_lex_state = 2}, + [65] = {.lex_state = 56, .external_lex_state = 2}, + [66] = {.lex_state = 56, .external_lex_state = 2}, + [67] = {.lex_state = 56, .external_lex_state = 2}, + [68] = {.lex_state = 56, .external_lex_state = 2}, + [69] = {.lex_state = 56, .external_lex_state = 2}, + [70] = {.lex_state = 56, .external_lex_state = 2}, + [71] = {.lex_state = 56, .external_lex_state = 2}, + [72] = {.lex_state = 5, .external_lex_state = 2}, + [73] = {.lex_state = 56, .external_lex_state = 2}, + [74] = {.lex_state = 5, .external_lex_state = 2}, + [75] = {.lex_state = 5, .external_lex_state = 2}, + [76] = {.lex_state = 5, .external_lex_state = 2}, + [77] = {.lex_state = 5, .external_lex_state = 2}, + [78] = {.lex_state = 5, .external_lex_state = 2}, + [79] = {.lex_state = 5, .external_lex_state = 2}, + [80] = {.lex_state = 5, .external_lex_state = 2}, + [81] = {.lex_state = 5, .external_lex_state = 2}, + [82] = {.lex_state = 5, .external_lex_state = 2}, + [83] = {.lex_state = 5, .external_lex_state = 2}, + [84] = {.lex_state = 5, .external_lex_state = 2}, + [85] = {.lex_state = 5, .external_lex_state = 2}, + [86] = {.lex_state = 5, .external_lex_state = 2}, + [87] = {.lex_state = 5, .external_lex_state = 2}, + [88] = {.lex_state = 5, .external_lex_state = 2}, + [89] = {.lex_state = 5, .external_lex_state = 2}, + [90] = {.lex_state = 5, .external_lex_state = 2}, + [91] = {.lex_state = 5, .external_lex_state = 2}, + [92] = {.lex_state = 5, .external_lex_state = 2}, + [93] = {.lex_state = 5, .external_lex_state = 2}, + [94] = {.lex_state = 5, .external_lex_state = 2}, + [95] = {.lex_state = 6, .external_lex_state = 2}, + [96] = {.lex_state = 5, .external_lex_state = 2}, + [97] = {.lex_state = 5, .external_lex_state = 2}, + [98] = {.lex_state = 5, .external_lex_state = 2}, + [99] = {.lex_state = 5, .external_lex_state = 2}, + [100] = {.lex_state = 5, .external_lex_state = 2}, + [101] = {.lex_state = 5, .external_lex_state = 2}, + [102] = {.lex_state = 5, .external_lex_state = 2}, + [103] = {.lex_state = 5, .external_lex_state = 2}, + [104] = {.lex_state = 5, .external_lex_state = 2}, + [105] = {.lex_state = 5, .external_lex_state = 2}, + [106] = {.lex_state = 5, .external_lex_state = 2}, + [107] = {.lex_state = 5, .external_lex_state = 2}, + [108] = {.lex_state = 5, .external_lex_state = 2}, + [109] = {.lex_state = 6, .external_lex_state = 2}, + [110] = {.lex_state = 6, .external_lex_state = 2}, + [111] = {.lex_state = 5, .external_lex_state = 2}, + [112] = {.lex_state = 5, .external_lex_state = 2}, + [113] = {.lex_state = 5, .external_lex_state = 2}, + [114] = {.lex_state = 5, .external_lex_state = 2}, + [115] = {.lex_state = 5, .external_lex_state = 2}, + [116] = {.lex_state = 5, .external_lex_state = 2}, + [117] = {.lex_state = 5, .external_lex_state = 2}, + [118] = {.lex_state = 5, .external_lex_state = 2}, + [119] = {.lex_state = 5, .external_lex_state = 2}, + [120] = {.lex_state = 5, .external_lex_state = 2}, + [121] = {.lex_state = 5, .external_lex_state = 2}, + [122] = {.lex_state = 5, .external_lex_state = 2}, + [123] = {.lex_state = 5, .external_lex_state = 2}, + [124] = {.lex_state = 5, .external_lex_state = 2}, + [125] = {.lex_state = 5, .external_lex_state = 2}, + [126] = {.lex_state = 5, .external_lex_state = 2}, + [127] = {.lex_state = 5, .external_lex_state = 2}, + [128] = {.lex_state = 5, .external_lex_state = 2}, + [129] = {.lex_state = 5, .external_lex_state = 2}, + [130] = {.lex_state = 5, .external_lex_state = 2}, + [131] = {.lex_state = 5, .external_lex_state = 2}, + [132] = {.lex_state = 5, .external_lex_state = 2}, + [133] = {.lex_state = 5, .external_lex_state = 2}, + [134] = {.lex_state = 5, .external_lex_state = 2}, + [135] = {.lex_state = 5, .external_lex_state = 2}, + [136] = {.lex_state = 5, .external_lex_state = 2}, + [137] = {.lex_state = 5, .external_lex_state = 2}, + [138] = {.lex_state = 5, .external_lex_state = 2}, + [139] = {.lex_state = 5, .external_lex_state = 2}, + [140] = {.lex_state = 5, .external_lex_state = 2}, + [141] = {.lex_state = 5, .external_lex_state = 2}, + [142] = {.lex_state = 5, .external_lex_state = 2}, + [143] = {.lex_state = 5, .external_lex_state = 2}, + [144] = {.lex_state = 5, .external_lex_state = 2}, + [145] = {.lex_state = 5, .external_lex_state = 2}, + [146] = {.lex_state = 5, .external_lex_state = 2}, + [147] = {.lex_state = 5, .external_lex_state = 2}, + [148] = {.lex_state = 5, .external_lex_state = 2}, + [149] = {.lex_state = 5, .external_lex_state = 2}, + [150] = {.lex_state = 5, .external_lex_state = 2}, + [151] = {.lex_state = 5, .external_lex_state = 2}, + [152] = {.lex_state = 5, .external_lex_state = 2}, + [153] = {.lex_state = 5, .external_lex_state = 2}, + [154] = {.lex_state = 5, .external_lex_state = 2}, + [155] = {.lex_state = 5, .external_lex_state = 2}, + [156] = {.lex_state = 5, .external_lex_state = 2}, + [157] = {.lex_state = 5, .external_lex_state = 2}, + [158] = {.lex_state = 5, .external_lex_state = 2}, + [159] = {.lex_state = 5, .external_lex_state = 2}, + [160] = {.lex_state = 5, .external_lex_state = 2}, + [161] = {.lex_state = 5, .external_lex_state = 2}, + [162] = {.lex_state = 5, .external_lex_state = 2}, + [163] = {.lex_state = 5, .external_lex_state = 2}, + [164] = {.lex_state = 5, .external_lex_state = 2}, + [165] = {.lex_state = 6, .external_lex_state = 2}, + [166] = {.lex_state = 6, .external_lex_state = 2}, + [167] = {.lex_state = 5, .external_lex_state = 2}, + [168] = {.lex_state = 5, .external_lex_state = 2}, + [169] = {.lex_state = 5, .external_lex_state = 2}, + [170] = {.lex_state = 5, .external_lex_state = 2}, + [171] = {.lex_state = 5, .external_lex_state = 2}, + [172] = {.lex_state = 5, .external_lex_state = 2}, + [173] = {.lex_state = 5, .external_lex_state = 2}, + [174] = {.lex_state = 5, .external_lex_state = 2}, + [175] = {.lex_state = 5, .external_lex_state = 2}, + [176] = {.lex_state = 5, .external_lex_state = 2}, + [177] = {.lex_state = 5, .external_lex_state = 2}, + [178] = {.lex_state = 5, .external_lex_state = 2}, + [179] = {.lex_state = 5, .external_lex_state = 2}, + [180] = {.lex_state = 6, .external_lex_state = 2}, + [181] = {.lex_state = 6, .external_lex_state = 2}, + [182] = {.lex_state = 6, .external_lex_state = 2}, + [183] = {.lex_state = 6, .external_lex_state = 2}, + [184] = {.lex_state = 6, .external_lex_state = 2}, + [185] = {.lex_state = 6, .external_lex_state = 2}, + [186] = {.lex_state = 6, .external_lex_state = 2}, + [187] = {.lex_state = 6, .external_lex_state = 2}, + [188] = {.lex_state = 6, .external_lex_state = 2}, + [189] = {.lex_state = 6, .external_lex_state = 2}, + [190] = {.lex_state = 5, .external_lex_state = 2}, + [191] = {.lex_state = 5, .external_lex_state = 2}, + [192] = {.lex_state = 5, .external_lex_state = 2}, + [193] = {.lex_state = 5, .external_lex_state = 2}, + [194] = {.lex_state = 5, .external_lex_state = 2}, + [195] = {.lex_state = 5, .external_lex_state = 2}, + [196] = {.lex_state = 5, .external_lex_state = 2}, + [197] = {.lex_state = 5, .external_lex_state = 2}, + [198] = {.lex_state = 5, .external_lex_state = 2}, + [199] = {.lex_state = 5, .external_lex_state = 2}, + [200] = {.lex_state = 5, .external_lex_state = 2}, + [201] = {.lex_state = 5, .external_lex_state = 2}, + [202] = {.lex_state = 5, .external_lex_state = 2}, + [203] = {.lex_state = 1, .external_lex_state = 2}, + [204] = {.lex_state = 5, .external_lex_state = 2}, + [205] = {.lex_state = 5, .external_lex_state = 2}, + [206] = {.lex_state = 1, .external_lex_state = 2}, + [207] = {.lex_state = 1, .external_lex_state = 2}, + [208] = {.lex_state = 1, .external_lex_state = 2}, + [209] = {.lex_state = 1, .external_lex_state = 2}, + [210] = {.lex_state = 1, .external_lex_state = 2}, + [211] = {.lex_state = 1, .external_lex_state = 2}, + [212] = {.lex_state = 1, .external_lex_state = 2}, + [213] = {.lex_state = 5, .external_lex_state = 2}, + [214] = {.lex_state = 5, .external_lex_state = 2}, + [215] = {.lex_state = 1, .external_lex_state = 2}, + [216] = {.lex_state = 1, .external_lex_state = 2}, + [217] = {.lex_state = 1, .external_lex_state = 2}, + [218] = {.lex_state = 1, .external_lex_state = 2}, + [219] = {.lex_state = 1, .external_lex_state = 2}, + [220] = {.lex_state = 1, .external_lex_state = 2}, + [221] = {.lex_state = 1, .external_lex_state = 2}, + [222] = {.lex_state = 1, .external_lex_state = 2}, + [223] = {.lex_state = 1, .external_lex_state = 2}, + [224] = {.lex_state = 1, .external_lex_state = 2}, + [225] = {.lex_state = 5, .external_lex_state = 2}, + [226] = {.lex_state = 1, .external_lex_state = 2}, + [227] = {.lex_state = 1, .external_lex_state = 2}, + [228] = {.lex_state = 1, .external_lex_state = 2}, + [229] = {.lex_state = 1, .external_lex_state = 2}, + [230] = {.lex_state = 1, .external_lex_state = 2}, + [231] = {.lex_state = 1, .external_lex_state = 2}, + [232] = {.lex_state = 1, .external_lex_state = 2}, + [233] = {.lex_state = 5, .external_lex_state = 2}, + [234] = {.lex_state = 1, .external_lex_state = 2}, + [235] = {.lex_state = 1, .external_lex_state = 2}, + [236] = {.lex_state = 5, .external_lex_state = 2}, + [237] = {.lex_state = 5, .external_lex_state = 2}, + [238] = {.lex_state = 5, .external_lex_state = 2}, + [239] = {.lex_state = 12, .external_lex_state = 2}, + [240] = {.lex_state = 4, .external_lex_state = 3}, + [241] = {.lex_state = 4, .external_lex_state = 3}, + [242] = {.lex_state = 4, .external_lex_state = 3}, + [243] = {.lex_state = 4, .external_lex_state = 3}, + [244] = {.lex_state = 4, .external_lex_state = 3}, + [245] = {.lex_state = 5, .external_lex_state = 2}, + [246] = {.lex_state = 5, .external_lex_state = 2}, + [247] = {.lex_state = 5, .external_lex_state = 2}, + [248] = {.lex_state = 12, .external_lex_state = 2}, + [249] = {.lex_state = 57, .external_lex_state = 2}, + [250] = {.lex_state = 57, .external_lex_state = 2}, + [251] = {.lex_state = 57, .external_lex_state = 2}, + [252] = {.lex_state = 57, .external_lex_state = 2}, + [253] = {.lex_state = 57, .external_lex_state = 2}, + [254] = {.lex_state = 57, .external_lex_state = 2}, + [255] = {.lex_state = 57, .external_lex_state = 2}, + [256] = {.lex_state = 57, .external_lex_state = 2}, + [257] = {.lex_state = 57, .external_lex_state = 2}, + [258] = {.lex_state = 57, .external_lex_state = 2}, + [259] = {.lex_state = 57, .external_lex_state = 2}, + [260] = {.lex_state = 57, .external_lex_state = 2}, + [261] = {.lex_state = 57, .external_lex_state = 2}, + [262] = {.lex_state = 57, .external_lex_state = 2}, + [263] = {.lex_state = 57, .external_lex_state = 2}, + [264] = {.lex_state = 57, .external_lex_state = 2}, + [265] = {.lex_state = 57, .external_lex_state = 2}, + [266] = {.lex_state = 57, .external_lex_state = 2}, + [267] = {.lex_state = 57, .external_lex_state = 2}, + [268] = {.lex_state = 57, .external_lex_state = 2}, + [269] = {.lex_state = 57, .external_lex_state = 2}, + [270] = {.lex_state = 57, .external_lex_state = 2}, + [271] = {.lex_state = 57, .external_lex_state = 2}, + [272] = {.lex_state = 57, .external_lex_state = 2}, + [273] = {.lex_state = 57, .external_lex_state = 2}, + [274] = {.lex_state = 57, .external_lex_state = 2}, + [275] = {.lex_state = 57, .external_lex_state = 2}, + [276] = {.lex_state = 57, .external_lex_state = 2}, + [277] = {.lex_state = 57, .external_lex_state = 2}, + [278] = {.lex_state = 57, .external_lex_state = 2}, + [279] = {.lex_state = 57, .external_lex_state = 2}, + [280] = {.lex_state = 57, .external_lex_state = 2}, + [281] = {.lex_state = 57, .external_lex_state = 2}, + [282] = {.lex_state = 57, .external_lex_state = 2}, + [283] = {.lex_state = 57, .external_lex_state = 2}, + [284] = {.lex_state = 57, .external_lex_state = 2}, + [285] = {.lex_state = 57, .external_lex_state = 2}, + [286] = {.lex_state = 57, .external_lex_state = 2}, + [287] = {.lex_state = 12, .external_lex_state = 2}, + [288] = {.lex_state = 57, .external_lex_state = 2}, + [289] = {.lex_state = 57, .external_lex_state = 2}, + [290] = {.lex_state = 57, .external_lex_state = 2}, + [291] = {.lex_state = 57, .external_lex_state = 2}, + [292] = {.lex_state = 57, .external_lex_state = 2}, + [293] = {.lex_state = 57, .external_lex_state = 2}, + [294] = {.lex_state = 57, .external_lex_state = 2}, + [295] = {.lex_state = 57, .external_lex_state = 2}, + [296] = {.lex_state = 57, .external_lex_state = 2}, + [297] = {.lex_state = 57, .external_lex_state = 2}, + [298] = {.lex_state = 57, .external_lex_state = 2}, + [299] = {.lex_state = 57, .external_lex_state = 2}, + [300] = {.lex_state = 57, .external_lex_state = 2}, + [301] = {.lex_state = 57, .external_lex_state = 2}, + [302] = {.lex_state = 57, .external_lex_state = 2}, + [303] = {.lex_state = 57, .external_lex_state = 2}, + [304] = {.lex_state = 57, .external_lex_state = 2}, + [305] = {.lex_state = 12, .external_lex_state = 2}, + [306] = {.lex_state = 57, .external_lex_state = 2}, + [307] = {.lex_state = 12, .external_lex_state = 2}, + [308] = {.lex_state = 57, .external_lex_state = 2}, + [309] = {.lex_state = 57, .external_lex_state = 2}, + [310] = {.lex_state = 57, .external_lex_state = 2}, + [311] = {.lex_state = 57, .external_lex_state = 2}, + [312] = {.lex_state = 57, .external_lex_state = 2}, + [313] = {.lex_state = 57, .external_lex_state = 2}, + [314] = {.lex_state = 57, .external_lex_state = 2}, + [315] = {.lex_state = 57, .external_lex_state = 2}, + [316] = {.lex_state = 57, .external_lex_state = 2}, + [317] = {.lex_state = 57, .external_lex_state = 2}, + [318] = {.lex_state = 57, .external_lex_state = 2}, + [319] = {.lex_state = 57, .external_lex_state = 2}, + [320] = {.lex_state = 57, .external_lex_state = 2}, + [321] = {.lex_state = 57, .external_lex_state = 2}, + [322] = {.lex_state = 57, .external_lex_state = 2}, + [323] = {.lex_state = 57, .external_lex_state = 2}, + [324] = {.lex_state = 57, .external_lex_state = 2}, + [325] = {.lex_state = 57, .external_lex_state = 2}, + [326] = {.lex_state = 57, .external_lex_state = 2}, + [327] = {.lex_state = 57, .external_lex_state = 2}, + [328] = {.lex_state = 57, .external_lex_state = 2}, + [329] = {.lex_state = 5, .external_lex_state = 2}, + [330] = {.lex_state = 57, .external_lex_state = 2}, + [331] = {.lex_state = 57, .external_lex_state = 2}, + [332] = {.lex_state = 12, .external_lex_state = 2}, + [333] = {.lex_state = 12, .external_lex_state = 2}, + [334] = {.lex_state = 12, .external_lex_state = 2}, + [335] = {.lex_state = 57, .external_lex_state = 2}, + [336] = {.lex_state = 57, .external_lex_state = 2}, + [337] = {.lex_state = 57, .external_lex_state = 2}, + [338] = {.lex_state = 57, .external_lex_state = 2}, + [339] = {.lex_state = 57, .external_lex_state = 2}, + [340] = {.lex_state = 57, .external_lex_state = 2}, + [341] = {.lex_state = 57, .external_lex_state = 2}, + [342] = {.lex_state = 57, .external_lex_state = 2}, + [343] = {.lex_state = 57, .external_lex_state = 2}, + [344] = {.lex_state = 57, .external_lex_state = 2}, + [345] = {.lex_state = 57, .external_lex_state = 2}, + [346] = {.lex_state = 57, .external_lex_state = 2}, + [347] = {.lex_state = 57, .external_lex_state = 2}, + [348] = {.lex_state = 57, .external_lex_state = 2}, + [349] = {.lex_state = 57, .external_lex_state = 2}, + [350] = {.lex_state = 57, .external_lex_state = 2}, + [351] = {.lex_state = 57, .external_lex_state = 2}, + [352] = {.lex_state = 57, .external_lex_state = 2}, + [353] = {.lex_state = 57, .external_lex_state = 2}, + [354] = {.lex_state = 57, .external_lex_state = 2}, + [355] = {.lex_state = 5, .external_lex_state = 2}, + [356] = {.lex_state = 57, .external_lex_state = 2}, + [357] = {.lex_state = 57, .external_lex_state = 2}, + [358] = {.lex_state = 57, .external_lex_state = 2}, + [359] = {.lex_state = 57, .external_lex_state = 2}, + [360] = {.lex_state = 12, .external_lex_state = 2}, + [361] = {.lex_state = 57, .external_lex_state = 2}, + [362] = {.lex_state = 12, .external_lex_state = 2}, + [363] = {.lex_state = 57, .external_lex_state = 2}, + [364] = {.lex_state = 57, .external_lex_state = 2}, + [365] = {.lex_state = 57, .external_lex_state = 2}, + [366] = {.lex_state = 57, .external_lex_state = 2}, + [367] = {.lex_state = 57, .external_lex_state = 2}, + [368] = {.lex_state = 57, .external_lex_state = 2}, + [369] = {.lex_state = 57, .external_lex_state = 2}, + [370] = {.lex_state = 57, .external_lex_state = 2}, + [371] = {.lex_state = 57, .external_lex_state = 2}, + [372] = {.lex_state = 57, .external_lex_state = 2}, + [373] = {.lex_state = 57, .external_lex_state = 2}, + [374] = {.lex_state = 57, .external_lex_state = 2}, + [375] = {.lex_state = 57, .external_lex_state = 2}, + [376] = {.lex_state = 57, .external_lex_state = 2}, + [377] = {.lex_state = 57, .external_lex_state = 2}, + [378] = {.lex_state = 57, .external_lex_state = 2}, + [379] = {.lex_state = 57, .external_lex_state = 2}, + [380] = {.lex_state = 57, .external_lex_state = 2}, + [381] = {.lex_state = 57, .external_lex_state = 2}, + [382] = {.lex_state = 57, .external_lex_state = 2}, + [383] = {.lex_state = 57, .external_lex_state = 2}, + [384] = {.lex_state = 57, .external_lex_state = 2}, + [385] = {.lex_state = 57, .external_lex_state = 2}, + [386] = {.lex_state = 57, .external_lex_state = 2}, + [387] = {.lex_state = 57, .external_lex_state = 2}, + [388] = {.lex_state = 57, .external_lex_state = 2}, + [389] = {.lex_state = 57, .external_lex_state = 2}, + [390] = {.lex_state = 57, .external_lex_state = 2}, + [391] = {.lex_state = 57, .external_lex_state = 2}, + [392] = {.lex_state = 57, .external_lex_state = 2}, + [393] = {.lex_state = 57, .external_lex_state = 2}, + [394] = {.lex_state = 57, .external_lex_state = 2}, + [395] = {.lex_state = 57, .external_lex_state = 2}, + [396] = {.lex_state = 57, .external_lex_state = 2}, + [397] = {.lex_state = 57, .external_lex_state = 2}, + [398] = {.lex_state = 57, .external_lex_state = 2}, + [399] = {.lex_state = 12, .external_lex_state = 2}, + [400] = {.lex_state = 57, .external_lex_state = 2}, + [401] = {.lex_state = 12, .external_lex_state = 2}, + [402] = {.lex_state = 57, .external_lex_state = 2}, + [403] = {.lex_state = 57, .external_lex_state = 2}, + [404] = {.lex_state = 57, .external_lex_state = 2}, + [405] = {.lex_state = 57, .external_lex_state = 2}, + [406] = {.lex_state = 57, .external_lex_state = 2}, + [407] = {.lex_state = 57, .external_lex_state = 2}, + [408] = {.lex_state = 57, .external_lex_state = 2}, + [409] = {.lex_state = 57, .external_lex_state = 2}, + [410] = {.lex_state = 57, .external_lex_state = 2}, + [411] = {.lex_state = 57, .external_lex_state = 2}, + [412] = {.lex_state = 57, .external_lex_state = 2}, + [413] = {.lex_state = 57, .external_lex_state = 2}, + [414] = {.lex_state = 57, .external_lex_state = 2}, + [415] = {.lex_state = 57, .external_lex_state = 2}, + [416] = {.lex_state = 57, .external_lex_state = 2}, + [417] = {.lex_state = 57, .external_lex_state = 2}, + [418] = {.lex_state = 57, .external_lex_state = 2}, + [419] = {.lex_state = 57, .external_lex_state = 2}, + [420] = {.lex_state = 57, .external_lex_state = 2}, + [421] = {.lex_state = 57, .external_lex_state = 2}, + [422] = {.lex_state = 57, .external_lex_state = 2}, + [423] = {.lex_state = 57, .external_lex_state = 2}, + [424] = {.lex_state = 57, .external_lex_state = 2}, + [425] = {.lex_state = 57, .external_lex_state = 2}, + [426] = {.lex_state = 57, .external_lex_state = 2}, + [427] = {.lex_state = 57, .external_lex_state = 2}, + [428] = {.lex_state = 57, .external_lex_state = 2}, + [429] = {.lex_state = 57, .external_lex_state = 2}, + [430] = {.lex_state = 57, .external_lex_state = 2}, + [431] = {.lex_state = 12, .external_lex_state = 2}, + [432] = {.lex_state = 57, .external_lex_state = 2}, + [433] = {.lex_state = 57, .external_lex_state = 2}, + [434] = {.lex_state = 57, .external_lex_state = 2}, + [435] = {.lex_state = 57, .external_lex_state = 2}, + [436] = {.lex_state = 57, .external_lex_state = 2}, + [437] = {.lex_state = 57, .external_lex_state = 2}, + [438] = {.lex_state = 57, .external_lex_state = 2}, + [439] = {.lex_state = 57, .external_lex_state = 2}, + [440] = {.lex_state = 57, .external_lex_state = 2}, + [441] = {.lex_state = 57, .external_lex_state = 2}, + [442] = {.lex_state = 57, .external_lex_state = 2}, + [443] = {.lex_state = 57, .external_lex_state = 2}, + [444] = {.lex_state = 57, .external_lex_state = 2}, + [445] = {.lex_state = 12, .external_lex_state = 2}, + [446] = {.lex_state = 57, .external_lex_state = 2}, + [447] = {.lex_state = 12, .external_lex_state = 2}, + [448] = {.lex_state = 12, .external_lex_state = 2}, + [449] = {.lex_state = 57, .external_lex_state = 2}, + [450] = {.lex_state = 57, .external_lex_state = 2}, + [451] = {.lex_state = 57, .external_lex_state = 2}, + [452] = {.lex_state = 57, .external_lex_state = 2}, + [453] = {.lex_state = 5, .external_lex_state = 2}, + [454] = {.lex_state = 57, .external_lex_state = 2}, + [455] = {.lex_state = 57, .external_lex_state = 2}, + [456] = {.lex_state = 57, .external_lex_state = 2}, + [457] = {.lex_state = 57, .external_lex_state = 2}, + [458] = {.lex_state = 57, .external_lex_state = 2}, + [459] = {.lex_state = 57, .external_lex_state = 2}, + [460] = {.lex_state = 57, .external_lex_state = 2}, + [461] = {.lex_state = 5, .external_lex_state = 2}, + [462] = {.lex_state = 12, .external_lex_state = 2}, + [463] = {.lex_state = 12, .external_lex_state = 2}, + [464] = {.lex_state = 12, .external_lex_state = 2}, + [465] = {.lex_state = 12, .external_lex_state = 2}, + [466] = {.lex_state = 12, .external_lex_state = 2}, + [467] = {.lex_state = 12, .external_lex_state = 2}, + [468] = {.lex_state = 12, .external_lex_state = 2}, + [469] = {.lex_state = 12, .external_lex_state = 2}, + [470] = {.lex_state = 12, .external_lex_state = 2}, + [471] = {.lex_state = 12, .external_lex_state = 2}, + [472] = {.lex_state = 12, .external_lex_state = 2}, + [473] = {.lex_state = 12, .external_lex_state = 2}, + [474] = {.lex_state = 12, .external_lex_state = 2}, + [475] = {.lex_state = 12, .external_lex_state = 2}, + [476] = {.lex_state = 12, .external_lex_state = 2}, + [477] = {.lex_state = 12, .external_lex_state = 2}, + [478] = {.lex_state = 12, .external_lex_state = 2}, + [479] = {.lex_state = 12, .external_lex_state = 2}, + [480] = {.lex_state = 12, .external_lex_state = 2}, + [481] = {.lex_state = 12, .external_lex_state = 2}, + [482] = {.lex_state = 12, .external_lex_state = 2}, + [483] = {.lex_state = 12, .external_lex_state = 2}, + [484] = {.lex_state = 12, .external_lex_state = 2}, + [485] = {.lex_state = 12, .external_lex_state = 2}, + [486] = {.lex_state = 12, .external_lex_state = 2}, + [487] = {.lex_state = 12, .external_lex_state = 2}, + [488] = {.lex_state = 12, .external_lex_state = 2}, + [489] = {.lex_state = 12, .external_lex_state = 2}, + [490] = {.lex_state = 12, .external_lex_state = 2}, + [491] = {.lex_state = 12, .external_lex_state = 2}, + [492] = {.lex_state = 12, .external_lex_state = 2}, + [493] = {.lex_state = 12, .external_lex_state = 2}, + [494] = {.lex_state = 5, .external_lex_state = 2}, + [495] = {.lex_state = 7, .external_lex_state = 3}, + [496] = {.lex_state = 5, .external_lex_state = 2}, + [497] = {.lex_state = 7, .external_lex_state = 3}, + [498] = {.lex_state = 7, .external_lex_state = 3}, + [499] = {.lex_state = 7, .external_lex_state = 3}, + [500] = {.lex_state = 7, .external_lex_state = 3}, + [501] = {.lex_state = 7, .external_lex_state = 3}, + [502] = {.lex_state = 7, .external_lex_state = 3}, + [503] = {.lex_state = 7, .external_lex_state = 3}, + [504] = {.lex_state = 7, .external_lex_state = 3}, + [505] = {.lex_state = 7, .external_lex_state = 3}, + [506] = {.lex_state = 11, .external_lex_state = 2}, + [507] = {.lex_state = 7, .external_lex_state = 3}, + [508] = {.lex_state = 12, .external_lex_state = 2}, + [509] = {.lex_state = 12, .external_lex_state = 2}, + [510] = {.lex_state = 5, .external_lex_state = 2}, + [511] = {.lex_state = 5, .external_lex_state = 2}, + [512] = {.lex_state = 5, .external_lex_state = 2}, + [513] = {.lex_state = 12, .external_lex_state = 2}, + [514] = {.lex_state = 12, .external_lex_state = 2}, + [515] = {.lex_state = 12, .external_lex_state = 2}, + [516] = {.lex_state = 12, .external_lex_state = 2}, + [517] = {.lex_state = 12, .external_lex_state = 2}, + [518] = {.lex_state = 12, .external_lex_state = 2}, + [519] = {.lex_state = 12, .external_lex_state = 2}, + [520] = {.lex_state = 12, .external_lex_state = 2}, + [521] = {.lex_state = 12, .external_lex_state = 2}, + [522] = {.lex_state = 5, .external_lex_state = 2}, + [523] = {.lex_state = 12, .external_lex_state = 2}, + [524] = {.lex_state = 12, .external_lex_state = 2}, + [525] = {.lex_state = 12, .external_lex_state = 2}, + [526] = {.lex_state = 12, .external_lex_state = 2}, + [527] = {.lex_state = 12, .external_lex_state = 2}, + [528] = {.lex_state = 5, .external_lex_state = 2}, + [529] = {.lex_state = 5, .external_lex_state = 2}, + [530] = {.lex_state = 5, .external_lex_state = 2}, + [531] = {.lex_state = 5, .external_lex_state = 2}, + [532] = {.lex_state = 5, .external_lex_state = 2}, + [533] = {.lex_state = 5, .external_lex_state = 2}, + [534] = {.lex_state = 7, .external_lex_state = 3}, + [535] = {.lex_state = 5, .external_lex_state = 2}, + [536] = {.lex_state = 7, .external_lex_state = 3}, + [537] = {.lex_state = 7, .external_lex_state = 3}, + [538] = {.lex_state = 7, .external_lex_state = 3}, + [539] = {.lex_state = 5, .external_lex_state = 2}, + [540] = {.lex_state = 5, .external_lex_state = 2}, + [541] = {.lex_state = 5, .external_lex_state = 2}, + [542] = {.lex_state = 5, .external_lex_state = 2}, + [543] = {.lex_state = 5, .external_lex_state = 2}, + [544] = {.lex_state = 5, .external_lex_state = 2}, + [545] = {.lex_state = 5, .external_lex_state = 2}, + [546] = {.lex_state = 5, .external_lex_state = 2}, + [547] = {.lex_state = 5, .external_lex_state = 2}, + [548] = {.lex_state = 5, .external_lex_state = 2}, + [549] = {.lex_state = 5, .external_lex_state = 2}, + [550] = {.lex_state = 5, .external_lex_state = 2}, + [551] = {.lex_state = 7, .external_lex_state = 3}, + [552] = {.lex_state = 5, .external_lex_state = 2}, + [553] = {.lex_state = 5, .external_lex_state = 2}, + [554] = {.lex_state = 5, .external_lex_state = 2}, + [555] = {.lex_state = 7, .external_lex_state = 3}, + [556] = {.lex_state = 5, .external_lex_state = 2}, + [557] = {.lex_state = 5, .external_lex_state = 2}, + [558] = {.lex_state = 5, .external_lex_state = 2}, + [559] = {.lex_state = 5, .external_lex_state = 2}, + [560] = {.lex_state = 5, .external_lex_state = 2}, + [561] = {.lex_state = 5, .external_lex_state = 2}, + [562] = {.lex_state = 5, .external_lex_state = 2}, + [563] = {.lex_state = 5, .external_lex_state = 2}, + [564] = {.lex_state = 5, .external_lex_state = 2}, + [565] = {.lex_state = 5, .external_lex_state = 2}, + [566] = {.lex_state = 5, .external_lex_state = 2}, + [567] = {.lex_state = 7, .external_lex_state = 3}, + [568] = {.lex_state = 5, .external_lex_state = 2}, + [569] = {.lex_state = 5, .external_lex_state = 2}, + [570] = {.lex_state = 7, .external_lex_state = 3}, + [571] = {.lex_state = 5, .external_lex_state = 2}, + [572] = {.lex_state = 5, .external_lex_state = 2}, + [573] = {.lex_state = 5, .external_lex_state = 2}, + [574] = {.lex_state = 7, .external_lex_state = 3}, + [575] = {.lex_state = 7, .external_lex_state = 3}, + [576] = {.lex_state = 7, .external_lex_state = 3}, + [577] = {.lex_state = 7, .external_lex_state = 3}, + [578] = {.lex_state = 7, .external_lex_state = 3}, + [579] = {.lex_state = 7, .external_lex_state = 3}, + [580] = {.lex_state = 7, .external_lex_state = 3}, + [581] = {.lex_state = 7, .external_lex_state = 3}, + [582] = {.lex_state = 5, .external_lex_state = 2}, + [583] = {.lex_state = 7, .external_lex_state = 3}, + [584] = {.lex_state = 7, .external_lex_state = 3}, + [585] = {.lex_state = 7, .external_lex_state = 3}, + [586] = {.lex_state = 7, .external_lex_state = 3}, + [587] = {.lex_state = 7, .external_lex_state = 3}, + [588] = {.lex_state = 7, .external_lex_state = 3}, + [589] = {.lex_state = 7, .external_lex_state = 3}, + [590] = {.lex_state = 7, .external_lex_state = 3}, + [591] = {.lex_state = 7, .external_lex_state = 3}, + [592] = {.lex_state = 7, .external_lex_state = 3}, + [593] = {.lex_state = 7, .external_lex_state = 3}, + [594] = {.lex_state = 7, .external_lex_state = 3}, + [595] = {.lex_state = 7, .external_lex_state = 3}, + [596] = {.lex_state = 7, .external_lex_state = 3}, + [597] = {.lex_state = 7, .external_lex_state = 3}, + [598] = {.lex_state = 7, .external_lex_state = 3}, + [599] = {.lex_state = 7, .external_lex_state = 3}, + [600] = {.lex_state = 7, .external_lex_state = 3}, + [601] = {.lex_state = 7, .external_lex_state = 3}, + [602] = {.lex_state = 7, .external_lex_state = 3}, + [603] = {.lex_state = 7, .external_lex_state = 3}, + [604] = {.lex_state = 7, .external_lex_state = 3}, + [605] = {.lex_state = 7, .external_lex_state = 3}, + [606] = {.lex_state = 7, .external_lex_state = 3}, + [607] = {.lex_state = 7, .external_lex_state = 3}, + [608] = {.lex_state = 7, .external_lex_state = 3}, + [609] = {.lex_state = 7, .external_lex_state = 3}, + [610] = {.lex_state = 7, .external_lex_state = 3}, + [611] = {.lex_state = 7, .external_lex_state = 3}, + [612] = {.lex_state = 7, .external_lex_state = 3}, + [613] = {.lex_state = 7, .external_lex_state = 3}, + [614] = {.lex_state = 7, .external_lex_state = 3}, + [615] = {.lex_state = 7, .external_lex_state = 3}, + [616] = {.lex_state = 7, .external_lex_state = 3}, + [617] = {.lex_state = 7, .external_lex_state = 3}, + [618] = {.lex_state = 7, .external_lex_state = 3}, + [619] = {.lex_state = 7, .external_lex_state = 3}, + [620] = {.lex_state = 7, .external_lex_state = 3}, + [621] = {.lex_state = 7, .external_lex_state = 3}, + [622] = {.lex_state = 7, .external_lex_state = 3}, + [623] = {.lex_state = 7, .external_lex_state = 3}, + [624] = {.lex_state = 7, .external_lex_state = 3}, + [625] = {.lex_state = 7, .external_lex_state = 3}, + [626] = {.lex_state = 7, .external_lex_state = 3}, + [627] = {.lex_state = 7, .external_lex_state = 3}, + [628] = {.lex_state = 7, .external_lex_state = 3}, + [629] = {.lex_state = 7, .external_lex_state = 3}, + [630] = {.lex_state = 7, .external_lex_state = 3}, + [631] = {.lex_state = 7, .external_lex_state = 3}, + [632] = {.lex_state = 7, .external_lex_state = 3}, + [633] = {.lex_state = 7, .external_lex_state = 3}, + [634] = {.lex_state = 7, .external_lex_state = 3}, + [635] = {.lex_state = 7, .external_lex_state = 3}, + [636] = {.lex_state = 7, .external_lex_state = 3}, + [637] = {.lex_state = 7, .external_lex_state = 3}, + [638] = {.lex_state = 7, .external_lex_state = 3}, + [639] = {.lex_state = 7, .external_lex_state = 3}, + [640] = {.lex_state = 7, .external_lex_state = 3}, + [641] = {.lex_state = 7, .external_lex_state = 3}, + [642] = {.lex_state = 7, .external_lex_state = 3}, + [643] = {.lex_state = 7, .external_lex_state = 3}, + [644] = {.lex_state = 7, .external_lex_state = 3}, + [645] = {.lex_state = 7, .external_lex_state = 3}, + [646] = {.lex_state = 7, .external_lex_state = 3}, + [647] = {.lex_state = 7, .external_lex_state = 3}, + [648] = {.lex_state = 7, .external_lex_state = 3}, + [649] = {.lex_state = 7, .external_lex_state = 3}, + [650] = {.lex_state = 7, .external_lex_state = 3}, + [651] = {.lex_state = 7, .external_lex_state = 3}, + [652] = {.lex_state = 7, .external_lex_state = 3}, + [653] = {.lex_state = 7, .external_lex_state = 3}, + [654] = {.lex_state = 7, .external_lex_state = 3}, + [655] = {.lex_state = 7, .external_lex_state = 3}, + [656] = {.lex_state = 7, .external_lex_state = 3}, + [657] = {.lex_state = 7, .external_lex_state = 3}, + [658] = {.lex_state = 7, .external_lex_state = 3}, + [659] = {.lex_state = 7, .external_lex_state = 3}, + [660] = {.lex_state = 7, .external_lex_state = 3}, + [661] = {.lex_state = 7, .external_lex_state = 3}, + [662] = {.lex_state = 7, .external_lex_state = 3}, + [663] = {.lex_state = 7, .external_lex_state = 3}, + [664] = {.lex_state = 7, .external_lex_state = 3}, + [665] = {.lex_state = 7, .external_lex_state = 3}, + [666] = {.lex_state = 7, .external_lex_state = 3}, + [667] = {.lex_state = 7, .external_lex_state = 3}, + [668] = {.lex_state = 7, .external_lex_state = 3}, + [669] = {.lex_state = 7, .external_lex_state = 3}, + [670] = {.lex_state = 7, .external_lex_state = 3}, + [671] = {.lex_state = 7, .external_lex_state = 3}, + [672] = {.lex_state = 7, .external_lex_state = 3}, + [673] = {.lex_state = 7, .external_lex_state = 3}, + [674] = {.lex_state = 7, .external_lex_state = 3}, + [675] = {.lex_state = 7, .external_lex_state = 3}, + [676] = {.lex_state = 7, .external_lex_state = 3}, + [677] = {.lex_state = 7, .external_lex_state = 3}, + [678] = {.lex_state = 7, .external_lex_state = 3}, + [679] = {.lex_state = 7, .external_lex_state = 3}, + [680] = {.lex_state = 7, .external_lex_state = 3}, + [681] = {.lex_state = 7, .external_lex_state = 3}, + [682] = {.lex_state = 7, .external_lex_state = 3}, + [683] = {.lex_state = 7, .external_lex_state = 3}, + [684] = {.lex_state = 7, .external_lex_state = 3}, + [685] = {.lex_state = 7, .external_lex_state = 3}, + [686] = {.lex_state = 7, .external_lex_state = 3}, + [687] = {.lex_state = 7, .external_lex_state = 3}, + [688] = {.lex_state = 7, .external_lex_state = 3}, + [689] = {.lex_state = 7, .external_lex_state = 3}, + [690] = {.lex_state = 7, .external_lex_state = 3}, + [691] = {.lex_state = 7, .external_lex_state = 3}, + [692] = {.lex_state = 7, .external_lex_state = 3}, + [693] = {.lex_state = 7, .external_lex_state = 3}, + [694] = {.lex_state = 7, .external_lex_state = 3}, + [695] = {.lex_state = 7, .external_lex_state = 3}, + [696] = {.lex_state = 7, .external_lex_state = 3}, + [697] = {.lex_state = 5, .external_lex_state = 2}, + [698] = {.lex_state = 5, .external_lex_state = 2}, + [699] = {.lex_state = 5, .external_lex_state = 2}, + [700] = {.lex_state = 5, .external_lex_state = 2}, + [701] = {.lex_state = 5, .external_lex_state = 2}, + [702] = {.lex_state = 6, .external_lex_state = 2}, + [703] = {.lex_state = 3, .external_lex_state = 3}, + [704] = {.lex_state = 3, .external_lex_state = 3}, + [705] = {.lex_state = 3, .external_lex_state = 3}, + [706] = {.lex_state = 3, .external_lex_state = 3}, + [707] = {.lex_state = 3, .external_lex_state = 3}, + [708] = {.lex_state = 3, .external_lex_state = 3}, + [709] = {.lex_state = 3, .external_lex_state = 3}, + [710] = {.lex_state = 4, .external_lex_state = 3}, + [711] = {.lex_state = 4, .external_lex_state = 3}, + [712] = {.lex_state = 2, .external_lex_state = 3}, + [713] = {.lex_state = 4, .external_lex_state = 3}, + [714] = {.lex_state = 3, .external_lex_state = 3}, + [715] = {.lex_state = 3, .external_lex_state = 3}, + [716] = {.lex_state = 4, .external_lex_state = 3}, + [717] = {.lex_state = 4, .external_lex_state = 3}, + [718] = {.lex_state = 3, .external_lex_state = 3}, + [719] = {.lex_state = 2, .external_lex_state = 3}, + [720] = {.lex_state = 2, .external_lex_state = 3}, + [721] = {.lex_state = 2, .external_lex_state = 3}, + [722] = {.lex_state = 2, .external_lex_state = 3}, + [723] = {.lex_state = 2, .external_lex_state = 3}, + [724] = {.lex_state = 2, .external_lex_state = 3}, + [725] = {.lex_state = 2, .external_lex_state = 3}, + [726] = {.lex_state = 2, .external_lex_state = 3}, + [727] = {.lex_state = 2, .external_lex_state = 3}, + [728] = {.lex_state = 4, .external_lex_state = 3}, + [729] = {.lex_state = 4, .external_lex_state = 3}, + [730] = {.lex_state = 4, .external_lex_state = 3}, + [731] = {.lex_state = 2, .external_lex_state = 3}, + [732] = {.lex_state = 4, .external_lex_state = 3}, + [733] = {.lex_state = 4, .external_lex_state = 3}, + [734] = {.lex_state = 4, .external_lex_state = 3}, + [735] = {.lex_state = 4, .external_lex_state = 3}, + [736] = {.lex_state = 4, .external_lex_state = 3}, + [737] = {.lex_state = 4, .external_lex_state = 3}, + [738] = {.lex_state = 4, .external_lex_state = 3}, + [739] = {.lex_state = 4, .external_lex_state = 3}, + [740] = {.lex_state = 4, .external_lex_state = 3}, + [741] = {.lex_state = 2, .external_lex_state = 3}, + [742] = {.lex_state = 4, .external_lex_state = 3}, + [743] = {.lex_state = 4, .external_lex_state = 3}, + [744] = {.lex_state = 2, .external_lex_state = 3}, + [745] = {.lex_state = 4, .external_lex_state = 3}, + [746] = {.lex_state = 4, .external_lex_state = 3}, + [747] = {.lex_state = 4, .external_lex_state = 3}, + [748] = {.lex_state = 4, .external_lex_state = 3}, + [749] = {.lex_state = 4, .external_lex_state = 3}, + [750] = {.lex_state = 4, .external_lex_state = 3}, + [751] = {.lex_state = 4, .external_lex_state = 3}, + [752] = {.lex_state = 4, .external_lex_state = 3}, + [753] = {.lex_state = 4, .external_lex_state = 3}, + [754] = {.lex_state = 4, .external_lex_state = 3}, + [755] = {.lex_state = 4, .external_lex_state = 3}, + [756] = {.lex_state = 4, .external_lex_state = 3}, + [757] = {.lex_state = 4, .external_lex_state = 3}, + [758] = {.lex_state = 2, .external_lex_state = 3}, + [759] = {.lex_state = 2, .external_lex_state = 3}, + [760] = {.lex_state = 4, .external_lex_state = 3}, + [761] = {.lex_state = 4, .external_lex_state = 3}, + [762] = {.lex_state = 4, .external_lex_state = 3}, + [763] = {.lex_state = 4, .external_lex_state = 3}, + [764] = {.lex_state = 2, .external_lex_state = 3}, + [765] = {.lex_state = 4, .external_lex_state = 3}, + [766] = {.lex_state = 4, .external_lex_state = 3}, + [767] = {.lex_state = 2, .external_lex_state = 3}, + [768] = {.lex_state = 4, .external_lex_state = 3}, + [769] = {.lex_state = 2, .external_lex_state = 3}, + [770] = {.lex_state = 4, .external_lex_state = 3}, + [771] = {.lex_state = 4, .external_lex_state = 3}, + [772] = {.lex_state = 4, .external_lex_state = 3}, + [773] = {.lex_state = 2, .external_lex_state = 3}, + [774] = {.lex_state = 2, .external_lex_state = 3}, + [775] = {.lex_state = 4, .external_lex_state = 3}, + [776] = {.lex_state = 4, .external_lex_state = 3}, + [777] = {.lex_state = 2, .external_lex_state = 3}, + [778] = {.lex_state = 4, .external_lex_state = 3}, + [779] = {.lex_state = 4, .external_lex_state = 3}, + [780] = {.lex_state = 4, .external_lex_state = 3}, + [781] = {.lex_state = 2, .external_lex_state = 3}, + [782] = {.lex_state = 4, .external_lex_state = 3}, + [783] = {.lex_state = 4, .external_lex_state = 3}, + [784] = {.lex_state = 2, .external_lex_state = 3}, + [785] = {.lex_state = 2, .external_lex_state = 3}, + [786] = {.lex_state = 4, .external_lex_state = 3}, + [787] = {.lex_state = 4, .external_lex_state = 3}, + [788] = {.lex_state = 4, .external_lex_state = 3}, + [789] = {.lex_state = 4, .external_lex_state = 3}, + [790] = {.lex_state = 4, .external_lex_state = 3}, + [791] = {.lex_state = 4, .external_lex_state = 3}, + [792] = {.lex_state = 4, .external_lex_state = 3}, + [793] = {.lex_state = 2, .external_lex_state = 3}, + [794] = {.lex_state = 4, .external_lex_state = 3}, + [795] = {.lex_state = 2, .external_lex_state = 3}, + [796] = {.lex_state = 4, .external_lex_state = 3}, + [797] = {.lex_state = 4, .external_lex_state = 3}, + [798] = {.lex_state = 4, .external_lex_state = 3}, + [799] = {.lex_state = 4, .external_lex_state = 3}, + [800] = {.lex_state = 4, .external_lex_state = 3}, + [801] = {.lex_state = 4, .external_lex_state = 3}, + [802] = {.lex_state = 4, .external_lex_state = 3}, + [803] = {.lex_state = 2, .external_lex_state = 3}, + [804] = {.lex_state = 4, .external_lex_state = 3}, + [805] = {.lex_state = 4, .external_lex_state = 3}, + [806] = {.lex_state = 4, .external_lex_state = 3}, + [807] = {.lex_state = 4, .external_lex_state = 3}, + [808] = {.lex_state = 4, .external_lex_state = 3}, + [809] = {.lex_state = 2, .external_lex_state = 3}, + [810] = {.lex_state = 4, .external_lex_state = 3}, + [811] = {.lex_state = 2, .external_lex_state = 3}, + [812] = {.lex_state = 4, .external_lex_state = 3}, + [813] = {.lex_state = 4, .external_lex_state = 3}, + [814] = {.lex_state = 4, .external_lex_state = 3}, + [815] = {.lex_state = 2, .external_lex_state = 3}, + [816] = {.lex_state = 4, .external_lex_state = 3}, + [817] = {.lex_state = 4, .external_lex_state = 3}, + [818] = {.lex_state = 4, .external_lex_state = 3}, + [819] = {.lex_state = 4, .external_lex_state = 3}, + [820] = {.lex_state = 4, .external_lex_state = 3}, + [821] = {.lex_state = 4, .external_lex_state = 3}, + [822] = {.lex_state = 4, .external_lex_state = 3}, + [823] = {.lex_state = 4, .external_lex_state = 3}, + [824] = {.lex_state = 4, .external_lex_state = 3}, + [825] = {.lex_state = 4, .external_lex_state = 3}, + [826] = {.lex_state = 4, .external_lex_state = 3}, + [827] = {.lex_state = 4, .external_lex_state = 3}, + [828] = {.lex_state = 4, .external_lex_state = 3}, + [829] = {.lex_state = 4, .external_lex_state = 3}, + [830] = {.lex_state = 4, .external_lex_state = 3}, + [831] = {.lex_state = 4, .external_lex_state = 3}, + [832] = {.lex_state = 4, .external_lex_state = 3}, + [833] = {.lex_state = 4, .external_lex_state = 3}, + [834] = {.lex_state = 4, .external_lex_state = 3}, + [835] = {.lex_state = 4, .external_lex_state = 3}, + [836] = {.lex_state = 4, .external_lex_state = 3}, + [837] = {.lex_state = 4, .external_lex_state = 3}, + [838] = {.lex_state = 4, .external_lex_state = 3}, + [839] = {.lex_state = 4, .external_lex_state = 3}, + [840] = {.lex_state = 4, .external_lex_state = 3}, + [841] = {.lex_state = 4, .external_lex_state = 3}, + [842] = {.lex_state = 4, .external_lex_state = 3}, + [843] = {.lex_state = 4, .external_lex_state = 3}, + [844] = {.lex_state = 4, .external_lex_state = 3}, + [845] = {.lex_state = 4, .external_lex_state = 3}, + [846] = {.lex_state = 4, .external_lex_state = 3}, + [847] = {.lex_state = 4, .external_lex_state = 3}, + [848] = {.lex_state = 4, .external_lex_state = 3}, + [849] = {.lex_state = 4, .external_lex_state = 3}, + [850] = {.lex_state = 4, .external_lex_state = 3}, + [851] = {.lex_state = 4, .external_lex_state = 3}, + [852] = {.lex_state = 4, .external_lex_state = 3}, + [853] = {.lex_state = 4, .external_lex_state = 3}, + [854] = {.lex_state = 4, .external_lex_state = 3}, + [855] = {.lex_state = 4, .external_lex_state = 3}, + [856] = {.lex_state = 2, .external_lex_state = 3}, + [857] = {.lex_state = 4, .external_lex_state = 3}, + [858] = {.lex_state = 4, .external_lex_state = 3}, + [859] = {.lex_state = 4, .external_lex_state = 3}, + [860] = {.lex_state = 4, .external_lex_state = 3}, + [861] = {.lex_state = 4, .external_lex_state = 3}, + [862] = {.lex_state = 4, .external_lex_state = 3}, + [863] = {.lex_state = 4, .external_lex_state = 3}, + [864] = {.lex_state = 4, .external_lex_state = 3}, + [865] = {.lex_state = 4, .external_lex_state = 3}, + [866] = {.lex_state = 4, .external_lex_state = 3}, + [867] = {.lex_state = 4, .external_lex_state = 3}, + [868] = {.lex_state = 4, .external_lex_state = 3}, + [869] = {.lex_state = 4, .external_lex_state = 3}, + [870] = {.lex_state = 4, .external_lex_state = 3}, + [871] = {.lex_state = 4, .external_lex_state = 3}, + [872] = {.lex_state = 4, .external_lex_state = 3}, + [873] = {.lex_state = 10, .external_lex_state = 3}, + [874] = {.lex_state = 4, .external_lex_state = 3}, + [875] = {.lex_state = 2, .external_lex_state = 3}, + [876] = {.lex_state = 4, .external_lex_state = 3}, + [877] = {.lex_state = 2, .external_lex_state = 3}, + [878] = {.lex_state = 2, .external_lex_state = 3}, + [879] = {.lex_state = 4, .external_lex_state = 3}, + [880] = {.lex_state = 4, .external_lex_state = 3}, + [881] = {.lex_state = 4, .external_lex_state = 3}, + [882] = {.lex_state = 4, .external_lex_state = 3}, + [883] = {.lex_state = 4, .external_lex_state = 3}, + [884] = {.lex_state = 4, .external_lex_state = 3}, + [885] = {.lex_state = 4, .external_lex_state = 3}, + [886] = {.lex_state = 2, .external_lex_state = 3}, + [887] = {.lex_state = 4, .external_lex_state = 3}, + [888] = {.lex_state = 2, .external_lex_state = 3}, + [889] = {.lex_state = 2, .external_lex_state = 3}, + [890] = {.lex_state = 4, .external_lex_state = 3}, + [891] = {.lex_state = 4, .external_lex_state = 3}, + [892] = {.lex_state = 4, .external_lex_state = 3}, + [893] = {.lex_state = 4, .external_lex_state = 3}, + [894] = {.lex_state = 4, .external_lex_state = 3}, + [895] = {.lex_state = 4, .external_lex_state = 3}, + [896] = {.lex_state = 4, .external_lex_state = 3}, + [897] = {.lex_state = 4, .external_lex_state = 3}, + [898] = {.lex_state = 3, .external_lex_state = 3}, + [899] = {.lex_state = 4, .external_lex_state = 3}, + [900] = {.lex_state = 4, .external_lex_state = 3}, + [901] = {.lex_state = 4, .external_lex_state = 3}, + [902] = {.lex_state = 4, .external_lex_state = 3}, + [903] = {.lex_state = 4, .external_lex_state = 3}, + [904] = {.lex_state = 4, .external_lex_state = 3}, + [905] = {.lex_state = 4, .external_lex_state = 3}, + [906] = {.lex_state = 4, .external_lex_state = 3}, + [907] = {.lex_state = 4, .external_lex_state = 3}, + [908] = {.lex_state = 4, .external_lex_state = 3}, + [909] = {.lex_state = 4, .external_lex_state = 3}, + [910] = {.lex_state = 2, .external_lex_state = 3}, + [911] = {.lex_state = 4, .external_lex_state = 3}, + [912] = {.lex_state = 4, .external_lex_state = 3}, + [913] = {.lex_state = 4, .external_lex_state = 3}, + [914] = {.lex_state = 4, .external_lex_state = 3}, + [915] = {.lex_state = 2, .external_lex_state = 3}, + [916] = {.lex_state = 4, .external_lex_state = 3}, + [917] = {.lex_state = 4, .external_lex_state = 3}, + [918] = {.lex_state = 4, .external_lex_state = 3}, + [919] = {.lex_state = 2, .external_lex_state = 3}, + [920] = {.lex_state = 4, .external_lex_state = 3}, + [921] = {.lex_state = 4, .external_lex_state = 3}, + [922] = {.lex_state = 4, .external_lex_state = 3}, + [923] = {.lex_state = 4, .external_lex_state = 3}, + [924] = {.lex_state = 4, .external_lex_state = 3}, + [925] = {.lex_state = 4, .external_lex_state = 3}, + [926] = {.lex_state = 4, .external_lex_state = 3}, + [927] = {.lex_state = 4, .external_lex_state = 3}, + [928] = {.lex_state = 4, .external_lex_state = 3}, + [929] = {.lex_state = 2, .external_lex_state = 3}, + [930] = {.lex_state = 4, .external_lex_state = 3}, + [931] = {.lex_state = 2, .external_lex_state = 3}, + [932] = {.lex_state = 4, .external_lex_state = 3}, + [933] = {.lex_state = 4, .external_lex_state = 3}, + [934] = {.lex_state = 4, .external_lex_state = 3}, + [935] = {.lex_state = 4, .external_lex_state = 3}, + [936] = {.lex_state = 4, .external_lex_state = 3}, + [937] = {.lex_state = 4, .external_lex_state = 3}, + [938] = {.lex_state = 4, .external_lex_state = 3}, + [939] = {.lex_state = 4, .external_lex_state = 3}, + [940] = {.lex_state = 4, .external_lex_state = 3}, + [941] = {.lex_state = 4, .external_lex_state = 3}, + [942] = {.lex_state = 4, .external_lex_state = 3}, + [943] = {.lex_state = 4, .external_lex_state = 3}, + [944] = {.lex_state = 4, .external_lex_state = 3}, + [945] = {.lex_state = 4, .external_lex_state = 3}, + [946] = {.lex_state = 4, .external_lex_state = 3}, + [947] = {.lex_state = 4, .external_lex_state = 3}, + [948] = {.lex_state = 4, .external_lex_state = 3}, + [949] = {.lex_state = 4, .external_lex_state = 3}, + [950] = {.lex_state = 4, .external_lex_state = 3}, + [951] = {.lex_state = 4, .external_lex_state = 3}, + [952] = {.lex_state = 4, .external_lex_state = 3}, + [953] = {.lex_state = 4, .external_lex_state = 3}, + [954] = {.lex_state = 2, .external_lex_state = 3}, + [955] = {.lex_state = 5, .external_lex_state = 2}, + [956] = {.lex_state = 2, .external_lex_state = 3}, + [957] = {.lex_state = 7, .external_lex_state = 3}, + [958] = {.lex_state = 2, .external_lex_state = 3}, + [959] = {.lex_state = 2, .external_lex_state = 3}, + [960] = {.lex_state = 2, .external_lex_state = 3}, + [961] = {.lex_state = 2, .external_lex_state = 3}, + [962] = {.lex_state = 2, .external_lex_state = 3}, + [963] = {.lex_state = 2, .external_lex_state = 3}, + [964] = {.lex_state = 2, .external_lex_state = 3}, + [965] = {.lex_state = 2, .external_lex_state = 3}, + [966] = {.lex_state = 2, .external_lex_state = 3}, + [967] = {.lex_state = 2, .external_lex_state = 3}, + [968] = {.lex_state = 2, .external_lex_state = 3}, + [969] = {.lex_state = 2, .external_lex_state = 3}, + [970] = {.lex_state = 2, .external_lex_state = 3}, + [971] = {.lex_state = 2, .external_lex_state = 3}, + [972] = {.lex_state = 2, .external_lex_state = 3}, + [973] = {.lex_state = 2, .external_lex_state = 3}, + [974] = {.lex_state = 5, .external_lex_state = 2}, + [975] = {.lex_state = 2, .external_lex_state = 3}, + [976] = {.lex_state = 2, .external_lex_state = 3}, + [977] = {.lex_state = 2, .external_lex_state = 3}, + [978] = {.lex_state = 2, .external_lex_state = 3}, + [979] = {.lex_state = 2, .external_lex_state = 3}, + [980] = {.lex_state = 2, .external_lex_state = 3}, + [981] = {.lex_state = 2, .external_lex_state = 3}, + [982] = {.lex_state = 2, .external_lex_state = 3}, + [983] = {.lex_state = 2, .external_lex_state = 3}, + [984] = {.lex_state = 2, .external_lex_state = 3}, + [985] = {.lex_state = 2, .external_lex_state = 3}, + [986] = {.lex_state = 2, .external_lex_state = 3}, + [987] = {.lex_state = 2, .external_lex_state = 3}, + [988] = {.lex_state = 2, .external_lex_state = 3}, + [989] = {.lex_state = 7, .external_lex_state = 3}, + [990] = {.lex_state = 2, .external_lex_state = 3}, + [991] = {.lex_state = 2, .external_lex_state = 3}, + [992] = {.lex_state = 2, .external_lex_state = 3}, + [993] = {.lex_state = 2, .external_lex_state = 3}, + [994] = {.lex_state = 2, .external_lex_state = 3}, + [995] = {.lex_state = 2, .external_lex_state = 3}, + [996] = {.lex_state = 2, .external_lex_state = 3}, + [997] = {.lex_state = 7, .external_lex_state = 3}, + [998] = {.lex_state = 2, .external_lex_state = 3}, + [999] = {.lex_state = 2, .external_lex_state = 3}, + [1000] = {.lex_state = 7, .external_lex_state = 3}, + [1001] = {.lex_state = 7, .external_lex_state = 3}, + [1002] = {.lex_state = 2, .external_lex_state = 3}, + [1003] = {.lex_state = 2, .external_lex_state = 3}, + [1004] = {.lex_state = 2, .external_lex_state = 3}, + [1005] = {.lex_state = 2, .external_lex_state = 3}, + [1006] = {.lex_state = 2, .external_lex_state = 3}, + [1007] = {.lex_state = 2, .external_lex_state = 3}, + [1008] = {.lex_state = 2, .external_lex_state = 3}, + [1009] = {.lex_state = 2, .external_lex_state = 3}, + [1010] = {.lex_state = 2, .external_lex_state = 3}, + [1011] = {.lex_state = 2, .external_lex_state = 3}, + [1012] = {.lex_state = 2, .external_lex_state = 3}, + [1013] = {.lex_state = 2, .external_lex_state = 3}, + [1014] = {.lex_state = 2, .external_lex_state = 3}, + [1015] = {.lex_state = 2, .external_lex_state = 3}, + [1016] = {.lex_state = 2, .external_lex_state = 3}, + [1017] = {.lex_state = 2, .external_lex_state = 3}, + [1018] = {.lex_state = 2, .external_lex_state = 3}, + [1019] = {.lex_state = 7, .external_lex_state = 3}, + [1020] = {.lex_state = 2, .external_lex_state = 3}, + [1021] = {.lex_state = 2, .external_lex_state = 3}, + [1022] = {.lex_state = 2, .external_lex_state = 3}, + [1023] = {.lex_state = 2, .external_lex_state = 3}, + [1024] = {.lex_state = 2, .external_lex_state = 3}, + [1025] = {.lex_state = 2, .external_lex_state = 3}, + [1026] = {.lex_state = 2, .external_lex_state = 3}, + [1027] = {.lex_state = 2, .external_lex_state = 3}, + [1028] = {.lex_state = 2, .external_lex_state = 3}, + [1029] = {.lex_state = 2, .external_lex_state = 3}, + [1030] = {.lex_state = 2, .external_lex_state = 3}, + [1031] = {.lex_state = 2, .external_lex_state = 3}, + [1032] = {.lex_state = 2, .external_lex_state = 3}, + [1033] = {.lex_state = 2, .external_lex_state = 3}, + [1034] = {.lex_state = 2, .external_lex_state = 3}, + [1035] = {.lex_state = 2, .external_lex_state = 3}, + [1036] = {.lex_state = 2, .external_lex_state = 3}, + [1037] = {.lex_state = 2, .external_lex_state = 3}, + [1038] = {.lex_state = 2, .external_lex_state = 3}, + [1039] = {.lex_state = 2, .external_lex_state = 3}, + [1040] = {.lex_state = 2, .external_lex_state = 3}, + [1041] = {.lex_state = 2, .external_lex_state = 3}, + [1042] = {.lex_state = 2, .external_lex_state = 3}, + [1043] = {.lex_state = 2, .external_lex_state = 3}, + [1044] = {.lex_state = 2, .external_lex_state = 3}, + [1045] = {.lex_state = 2, .external_lex_state = 3}, + [1046] = {.lex_state = 2, .external_lex_state = 3}, + [1047] = {.lex_state = 7, .external_lex_state = 3}, + [1048] = {.lex_state = 2, .external_lex_state = 3}, + [1049] = {.lex_state = 2, .external_lex_state = 3}, + [1050] = {.lex_state = 2, .external_lex_state = 3}, + [1051] = {.lex_state = 2, .external_lex_state = 3}, + [1052] = {.lex_state = 2, .external_lex_state = 3}, + [1053] = {.lex_state = 2, .external_lex_state = 3}, + [1054] = {.lex_state = 2, .external_lex_state = 3}, + [1055] = {.lex_state = 7, .external_lex_state = 3}, + [1056] = {.lex_state = 7, .external_lex_state = 3}, + [1057] = {.lex_state = 2, .external_lex_state = 3}, + [1058] = {.lex_state = 2, .external_lex_state = 3}, + [1059] = {.lex_state = 2, .external_lex_state = 3}, + [1060] = {.lex_state = 2, .external_lex_state = 3}, + [1061] = {.lex_state = 2, .external_lex_state = 3}, + [1062] = {.lex_state = 2, .external_lex_state = 3}, + [1063] = {.lex_state = 2, .external_lex_state = 3}, + [1064] = {.lex_state = 2, .external_lex_state = 3}, + [1065] = {.lex_state = 2, .external_lex_state = 3}, + [1066] = {.lex_state = 2, .external_lex_state = 3}, + [1067] = {.lex_state = 2, .external_lex_state = 3}, + [1068] = {.lex_state = 2, .external_lex_state = 3}, + [1069] = {.lex_state = 2, .external_lex_state = 3}, + [1070] = {.lex_state = 2, .external_lex_state = 3}, + [1071] = {.lex_state = 2, .external_lex_state = 3}, + [1072] = {.lex_state = 2, .external_lex_state = 3}, + [1073] = {.lex_state = 2, .external_lex_state = 3}, + [1074] = {.lex_state = 2, .external_lex_state = 3}, + [1075] = {.lex_state = 2, .external_lex_state = 3}, + [1076] = {.lex_state = 5, .external_lex_state = 2}, + [1077] = {.lex_state = 5, .external_lex_state = 2}, + [1078] = {.lex_state = 7, .external_lex_state = 3}, + [1079] = {.lex_state = 7, .external_lex_state = 3}, + [1080] = {.lex_state = 2, .external_lex_state = 3}, + [1081] = {.lex_state = 5, .external_lex_state = 2}, + [1082] = {.lex_state = 7, .external_lex_state = 3}, + [1083] = {.lex_state = 7, .external_lex_state = 3}, + [1084] = {.lex_state = 7, .external_lex_state = 3}, + [1085] = {.lex_state = 7, .external_lex_state = 3}, + [1086] = {.lex_state = 7, .external_lex_state = 3}, + [1087] = {.lex_state = 2, .external_lex_state = 3}, + [1088] = {.lex_state = 7, .external_lex_state = 3}, + [1089] = {.lex_state = 2, .external_lex_state = 3}, + [1090] = {.lex_state = 2, .external_lex_state = 3}, + [1091] = {.lex_state = 2, .external_lex_state = 3}, + [1092] = {.lex_state = 5, .external_lex_state = 2}, + [1093] = {.lex_state = 5, .external_lex_state = 2}, + [1094] = {.lex_state = 5, .external_lex_state = 2}, + [1095] = {.lex_state = 2, .external_lex_state = 3}, + [1096] = {.lex_state = 2, .external_lex_state = 3}, + [1097] = {.lex_state = 5, .external_lex_state = 2}, + [1098] = {.lex_state = 2, .external_lex_state = 3}, + [1099] = {.lex_state = 2, .external_lex_state = 3}, + [1100] = {.lex_state = 2, .external_lex_state = 3}, + [1101] = {.lex_state = 2, .external_lex_state = 3}, + [1102] = {.lex_state = 7, .external_lex_state = 3}, + [1103] = {.lex_state = 2, .external_lex_state = 3}, + [1104] = {.lex_state = 7, .external_lex_state = 3}, + [1105] = {.lex_state = 2, .external_lex_state = 3}, + [1106] = {.lex_state = 2, .external_lex_state = 3}, + [1107] = {.lex_state = 2, .external_lex_state = 3}, + [1108] = {.lex_state = 7, .external_lex_state = 3}, + [1109] = {.lex_state = 2, .external_lex_state = 3}, + [1110] = {.lex_state = 2, .external_lex_state = 3}, + [1111] = {.lex_state = 7, .external_lex_state = 3}, + [1112] = {.lex_state = 2, .external_lex_state = 3}, + [1113] = {.lex_state = 2, .external_lex_state = 3}, + [1114] = {.lex_state = 2, .external_lex_state = 3}, + [1115] = {.lex_state = 2, .external_lex_state = 3}, + [1116] = {.lex_state = 2, .external_lex_state = 3}, + [1117] = {.lex_state = 7, .external_lex_state = 3}, + [1118] = {.lex_state = 2, .external_lex_state = 3}, + [1119] = {.lex_state = 2, .external_lex_state = 3}, + [1120] = {.lex_state = 2, .external_lex_state = 3}, + [1121] = {.lex_state = 2, .external_lex_state = 3}, + [1122] = {.lex_state = 2, .external_lex_state = 3}, + [1123] = {.lex_state = 2, .external_lex_state = 3}, + [1124] = {.lex_state = 2, .external_lex_state = 3}, + [1125] = {.lex_state = 2, .external_lex_state = 3}, + [1126] = {.lex_state = 2, .external_lex_state = 3}, + [1127] = {.lex_state = 2, .external_lex_state = 3}, + [1128] = {.lex_state = 2, .external_lex_state = 3}, + [1129] = {.lex_state = 2, .external_lex_state = 3}, + [1130] = {.lex_state = 2, .external_lex_state = 3}, + [1131] = {.lex_state = 2, .external_lex_state = 3}, + [1132] = {.lex_state = 2, .external_lex_state = 3}, + [1133] = {.lex_state = 2, .external_lex_state = 3}, + [1134] = {.lex_state = 2, .external_lex_state = 3}, + [1135] = {.lex_state = 2, .external_lex_state = 3}, + [1136] = {.lex_state = 2, .external_lex_state = 3}, + [1137] = {.lex_state = 2, .external_lex_state = 3}, + [1138] = {.lex_state = 7, .external_lex_state = 3}, + [1139] = {.lex_state = 2, .external_lex_state = 3}, + [1140] = {.lex_state = 7, .external_lex_state = 3}, + [1141] = {.lex_state = 2, .external_lex_state = 3}, + [1142] = {.lex_state = 2, .external_lex_state = 3}, + [1143] = {.lex_state = 2, .external_lex_state = 3}, + [1144] = {.lex_state = 2, .external_lex_state = 3}, + [1145] = {.lex_state = 2, .external_lex_state = 3}, + [1146] = {.lex_state = 2, .external_lex_state = 3}, + [1147] = {.lex_state = 2, .external_lex_state = 3}, + [1148] = {.lex_state = 2, .external_lex_state = 3}, + [1149] = {.lex_state = 2, .external_lex_state = 3}, + [1150] = {.lex_state = 2, .external_lex_state = 3}, + [1151] = {.lex_state = 2, .external_lex_state = 3}, + [1152] = {.lex_state = 2, .external_lex_state = 3}, + [1153] = {.lex_state = 2, .external_lex_state = 3}, + [1154] = {.lex_state = 2, .external_lex_state = 3}, + [1155] = {.lex_state = 2, .external_lex_state = 3}, + [1156] = {.lex_state = 2, .external_lex_state = 3}, + [1157] = {.lex_state = 2, .external_lex_state = 3}, + [1158] = {.lex_state = 2, .external_lex_state = 3}, + [1159] = {.lex_state = 2, .external_lex_state = 3}, + [1160] = {.lex_state = 2, .external_lex_state = 3}, + [1161] = {.lex_state = 2, .external_lex_state = 3}, + [1162] = {.lex_state = 2, .external_lex_state = 3}, + [1163] = {.lex_state = 2, .external_lex_state = 3}, + [1164] = {.lex_state = 5, .external_lex_state = 2}, + [1165] = {.lex_state = 2, .external_lex_state = 3}, + [1166] = {.lex_state = 2, .external_lex_state = 3}, + [1167] = {.lex_state = 2, .external_lex_state = 3}, + [1168] = {.lex_state = 2, .external_lex_state = 3}, + [1169] = {.lex_state = 2, .external_lex_state = 3}, + [1170] = {.lex_state = 2, .external_lex_state = 3}, + [1171] = {.lex_state = 2, .external_lex_state = 3}, + [1172] = {.lex_state = 2, .external_lex_state = 3}, + [1173] = {.lex_state = 2, .external_lex_state = 3}, + [1174] = {.lex_state = 2, .external_lex_state = 3}, + [1175] = {.lex_state = 2, .external_lex_state = 3}, + [1176] = {.lex_state = 2, .external_lex_state = 3}, + [1177] = {.lex_state = 2, .external_lex_state = 3}, + [1178] = {.lex_state = 2, .external_lex_state = 3}, + [1179] = {.lex_state = 2, .external_lex_state = 3}, + [1180] = {.lex_state = 2, .external_lex_state = 3}, + [1181] = {.lex_state = 2, .external_lex_state = 3}, + [1182] = {.lex_state = 2, .external_lex_state = 3}, + [1183] = {.lex_state = 2, .external_lex_state = 3}, + [1184] = {.lex_state = 2, .external_lex_state = 3}, + [1185] = {.lex_state = 2, .external_lex_state = 3}, + [1186] = {.lex_state = 2, .external_lex_state = 3}, + [1187] = {.lex_state = 2, .external_lex_state = 3}, + [1188] = {.lex_state = 2, .external_lex_state = 3}, + [1189] = {.lex_state = 2, .external_lex_state = 3}, + [1190] = {.lex_state = 2, .external_lex_state = 3}, + [1191] = {.lex_state = 2, .external_lex_state = 3}, + [1192] = {.lex_state = 2, .external_lex_state = 3}, + [1193] = {.lex_state = 2, .external_lex_state = 3}, + [1194] = {.lex_state = 2, .external_lex_state = 3}, + [1195] = {.lex_state = 2, .external_lex_state = 3}, + [1196] = {.lex_state = 2, .external_lex_state = 3}, + [1197] = {.lex_state = 2, .external_lex_state = 3}, + [1198] = {.lex_state = 2, .external_lex_state = 3}, + [1199] = {.lex_state = 2, .external_lex_state = 3}, + [1200] = {.lex_state = 7, .external_lex_state = 3}, + [1201] = {.lex_state = 2, .external_lex_state = 3}, + [1202] = {.lex_state = 2, .external_lex_state = 3}, + [1203] = {.lex_state = 2, .external_lex_state = 3}, + [1204] = {.lex_state = 2, .external_lex_state = 3}, + [1205] = {.lex_state = 2, .external_lex_state = 3}, + [1206] = {.lex_state = 2, .external_lex_state = 3}, + [1207] = {.lex_state = 2, .external_lex_state = 3}, + [1208] = {.lex_state = 2, .external_lex_state = 3}, + [1209] = {.lex_state = 2, .external_lex_state = 3}, + [1210] = {.lex_state = 2, .external_lex_state = 3}, + [1211] = {.lex_state = 2, .external_lex_state = 3}, + [1212] = {.lex_state = 2, .external_lex_state = 3}, + [1213] = {.lex_state = 2, .external_lex_state = 3}, + [1214] = {.lex_state = 2, .external_lex_state = 3}, + [1215] = {.lex_state = 2, .external_lex_state = 3}, + [1216] = {.lex_state = 2, .external_lex_state = 3}, + [1217] = {.lex_state = 2, .external_lex_state = 3}, + [1218] = {.lex_state = 2, .external_lex_state = 3}, + [1219] = {.lex_state = 2, .external_lex_state = 3}, + [1220] = {.lex_state = 7, .external_lex_state = 3}, + [1221] = {.lex_state = 2, .external_lex_state = 3}, + [1222] = {.lex_state = 2, .external_lex_state = 3}, + [1223] = {.lex_state = 2, .external_lex_state = 3}, + [1224] = {.lex_state = 7, .external_lex_state = 3}, + [1225] = {.lex_state = 7, .external_lex_state = 3}, + [1226] = {.lex_state = 7, .external_lex_state = 3}, + [1227] = {.lex_state = 7, .external_lex_state = 3}, + [1228] = {.lex_state = 7, .external_lex_state = 3}, + [1229] = {.lex_state = 7, .external_lex_state = 3}, + [1230] = {.lex_state = 7, .external_lex_state = 3}, + [1231] = {.lex_state = 7, .external_lex_state = 3}, + [1232] = {.lex_state = 7, .external_lex_state = 3}, + [1233] = {.lex_state = 7, .external_lex_state = 3}, + [1234] = {.lex_state = 7, .external_lex_state = 3}, + [1235] = {.lex_state = 7, .external_lex_state = 3}, + [1236] = {.lex_state = 7, .external_lex_state = 3}, + [1237] = {.lex_state = 7, .external_lex_state = 3}, + [1238] = {.lex_state = 7, .external_lex_state = 3}, + [1239] = {.lex_state = 7, .external_lex_state = 3}, + [1240] = {.lex_state = 7, .external_lex_state = 3}, + [1241] = {.lex_state = 7, .external_lex_state = 3}, + [1242] = {.lex_state = 7, .external_lex_state = 3}, + [1243] = {.lex_state = 7, .external_lex_state = 3}, + [1244] = {.lex_state = 17, .external_lex_state = 3}, + [1245] = {.lex_state = 17, .external_lex_state = 3}, + [1246] = {.lex_state = 9, .external_lex_state = 3}, + [1247] = {.lex_state = 9, .external_lex_state = 3}, + [1248] = {.lex_state = 9, .external_lex_state = 3}, + [1249] = {.lex_state = 9, .external_lex_state = 3}, + [1250] = {.lex_state = 9, .external_lex_state = 3}, + [1251] = {.lex_state = 9, .external_lex_state = 3}, + [1252] = {.lex_state = 9, .external_lex_state = 3}, + [1253] = {.lex_state = 9, .external_lex_state = 3}, + [1254] = {.lex_state = 9, .external_lex_state = 3}, + [1255] = {.lex_state = 9, .external_lex_state = 3}, + [1256] = {.lex_state = 9, .external_lex_state = 3}, + [1257] = {.lex_state = 9, .external_lex_state = 3}, + [1258] = {.lex_state = 17, .external_lex_state = 3}, + [1259] = {.lex_state = 7, .external_lex_state = 3}, + [1260] = {.lex_state = 7, .external_lex_state = 3}, + [1261] = {.lex_state = 17, .external_lex_state = 3}, + [1262] = {.lex_state = 17, .external_lex_state = 3}, + [1263] = {.lex_state = 7, .external_lex_state = 3}, + [1264] = {.lex_state = 17, .external_lex_state = 3}, + [1265] = {.lex_state = 7, .external_lex_state = 3}, + [1266] = {.lex_state = 7, .external_lex_state = 3}, + [1267] = {.lex_state = 7, .external_lex_state = 3}, + [1268] = {.lex_state = 7, .external_lex_state = 3}, + [1269] = {.lex_state = 7, .external_lex_state = 3}, + [1270] = {.lex_state = 9, .external_lex_state = 3}, + [1271] = {.lex_state = 7, .external_lex_state = 3}, + [1272] = {.lex_state = 7, .external_lex_state = 3}, + [1273] = {.lex_state = 7, .external_lex_state = 3}, + [1274] = {.lex_state = 7, .external_lex_state = 3}, + [1275] = {.lex_state = 7, .external_lex_state = 3}, + [1276] = {.lex_state = 7, .external_lex_state = 3}, + [1277] = {.lex_state = 7, .external_lex_state = 3}, + [1278] = {.lex_state = 7, .external_lex_state = 3}, + [1279] = {.lex_state = 17, .external_lex_state = 3}, + [1280] = {.lex_state = 9, .external_lex_state = 3}, + [1281] = {.lex_state = 9, .external_lex_state = 3}, + [1282] = {.lex_state = 7, .external_lex_state = 3}, + [1283] = {.lex_state = 17, .external_lex_state = 3}, + [1284] = {.lex_state = 17, .external_lex_state = 3}, + [1285] = {.lex_state = 17, .external_lex_state = 3}, + [1286] = {.lex_state = 7, .external_lex_state = 3}, + [1287] = {.lex_state = 17, .external_lex_state = 3}, + [1288] = {.lex_state = 7, .external_lex_state = 3}, + [1289] = {.lex_state = 7, .external_lex_state = 3}, + [1290] = {.lex_state = 17, .external_lex_state = 3}, + [1291] = {.lex_state = 17, .external_lex_state = 3}, + [1292] = {.lex_state = 7, .external_lex_state = 3}, + [1293] = {.lex_state = 17, .external_lex_state = 3}, + [1294] = {.lex_state = 9, .external_lex_state = 3}, + [1295] = {.lex_state = 7, .external_lex_state = 3}, + [1296] = {.lex_state = 17, .external_lex_state = 3}, + [1297] = {.lex_state = 7, .external_lex_state = 3}, + [1298] = {.lex_state = 17, .external_lex_state = 3}, + [1299] = {.lex_state = 17, .external_lex_state = 3}, + [1300] = {.lex_state = 17, .external_lex_state = 3}, + [1301] = {.lex_state = 7, .external_lex_state = 3}, + [1302] = {.lex_state = 17, .external_lex_state = 3}, + [1303] = {.lex_state = 17, .external_lex_state = 3}, + [1304] = {.lex_state = 17, .external_lex_state = 3}, + [1305] = {.lex_state = 17, .external_lex_state = 3}, + [1306] = {.lex_state = 17, .external_lex_state = 3}, + [1307] = {.lex_state = 17, .external_lex_state = 3}, + [1308] = {.lex_state = 17, .external_lex_state = 3}, + [1309] = {.lex_state = 17, .external_lex_state = 3}, + [1310] = {.lex_state = 17, .external_lex_state = 3}, + [1311] = {.lex_state = 17, .external_lex_state = 3}, + [1312] = {.lex_state = 17, .external_lex_state = 3}, + [1313] = {.lex_state = 17, .external_lex_state = 3}, + [1314] = {.lex_state = 17, .external_lex_state = 3}, + [1315] = {.lex_state = 17, .external_lex_state = 3}, + [1316] = {.lex_state = 17, .external_lex_state = 3}, + [1317] = {.lex_state = 7, .external_lex_state = 3}, + [1318] = {.lex_state = 17, .external_lex_state = 3}, + [1319] = {.lex_state = 17, .external_lex_state = 3}, + [1320] = {.lex_state = 17, .external_lex_state = 3}, + [1321] = {.lex_state = 17, .external_lex_state = 3}, + [1322] = {.lex_state = 17, .external_lex_state = 3}, + [1323] = {.lex_state = 17, .external_lex_state = 3}, + [1324] = {.lex_state = 17, .external_lex_state = 3}, + [1325] = {.lex_state = 17, .external_lex_state = 3}, + [1326] = {.lex_state = 17, .external_lex_state = 3}, + [1327] = {.lex_state = 17, .external_lex_state = 3}, + [1328] = {.lex_state = 17, .external_lex_state = 3}, + [1329] = {.lex_state = 17, .external_lex_state = 3}, + [1330] = {.lex_state = 17, .external_lex_state = 3}, + [1331] = {.lex_state = 17, .external_lex_state = 3}, + [1332] = {.lex_state = 17, .external_lex_state = 3}, + [1333] = {.lex_state = 17, .external_lex_state = 3}, + [1334] = {.lex_state = 9, .external_lex_state = 3}, + [1335] = {.lex_state = 9, .external_lex_state = 3}, + [1336] = {.lex_state = 17, .external_lex_state = 3}, + [1337] = {.lex_state = 17, .external_lex_state = 3}, + [1338] = {.lex_state = 9, .external_lex_state = 3}, + [1339] = {.lex_state = 9, .external_lex_state = 3}, + [1340] = {.lex_state = 17, .external_lex_state = 3}, + [1341] = {.lex_state = 9, .external_lex_state = 3}, + [1342] = {.lex_state = 9, .external_lex_state = 3}, + [1343] = {.lex_state = 9, .external_lex_state = 3}, + [1344] = {.lex_state = 9, .external_lex_state = 3}, + [1345] = {.lex_state = 9, .external_lex_state = 3}, + [1346] = {.lex_state = 7, .external_lex_state = 3}, + [1347] = {.lex_state = 9, .external_lex_state = 3}, + [1348] = {.lex_state = 7, .external_lex_state = 3}, + [1349] = {.lex_state = 9, .external_lex_state = 3}, + [1350] = {.lex_state = 9, .external_lex_state = 3}, + [1351] = {.lex_state = 7, .external_lex_state = 3}, + [1352] = {.lex_state = 7, .external_lex_state = 3}, + [1353] = {.lex_state = 7, .external_lex_state = 3}, + [1354] = {.lex_state = 7, .external_lex_state = 3}, + [1355] = {.lex_state = 7, .external_lex_state = 3}, + [1356] = {.lex_state = 7, .external_lex_state = 3}, + [1357] = {.lex_state = 9, .external_lex_state = 3}, + [1358] = {.lex_state = 17, .external_lex_state = 3}, + [1359] = {.lex_state = 17, .external_lex_state = 3}, + [1360] = {.lex_state = 17, .external_lex_state = 3}, + [1361] = {.lex_state = 13, .external_lex_state = 3}, + [1362] = {.lex_state = 17, .external_lex_state = 3}, + [1363] = {.lex_state = 17, .external_lex_state = 3}, + [1364] = {.lex_state = 13, .external_lex_state = 3}, + [1365] = {.lex_state = 17, .external_lex_state = 3}, + [1366] = {.lex_state = 17, .external_lex_state = 3}, + [1367] = {.lex_state = 13, .external_lex_state = 3}, + [1368] = {.lex_state = 17, .external_lex_state = 3}, + [1369] = {.lex_state = 17, .external_lex_state = 3}, + [1370] = {.lex_state = 17, .external_lex_state = 3}, + [1371] = {.lex_state = 17, .external_lex_state = 3}, + [1372] = {.lex_state = 17, .external_lex_state = 3}, + [1373] = {.lex_state = 17, .external_lex_state = 3}, + [1374] = {.lex_state = 17, .external_lex_state = 3}, + [1375] = {.lex_state = 17, .external_lex_state = 3}, + [1376] = {.lex_state = 17, .external_lex_state = 3}, + [1377] = {.lex_state = 17, .external_lex_state = 3}, + [1378] = {.lex_state = 13, .external_lex_state = 3}, + [1379] = {.lex_state = 17, .external_lex_state = 3}, + [1380] = {.lex_state = 17, .external_lex_state = 3}, + [1381] = {.lex_state = 17, .external_lex_state = 3}, + [1382] = {.lex_state = 17, .external_lex_state = 3}, + [1383] = {.lex_state = 17, .external_lex_state = 3}, + [1384] = {.lex_state = 17, .external_lex_state = 3}, + [1385] = {.lex_state = 17, .external_lex_state = 3}, + [1386] = {.lex_state = 17, .external_lex_state = 3}, + [1387] = {.lex_state = 17, .external_lex_state = 3}, + [1388] = {.lex_state = 17, .external_lex_state = 3}, + [1389] = {.lex_state = 17, .external_lex_state = 3}, + [1390] = {.lex_state = 17, .external_lex_state = 3}, + [1391] = {.lex_state = 17, .external_lex_state = 3}, + [1392] = {.lex_state = 17, .external_lex_state = 3}, + [1393] = {.lex_state = 7, .external_lex_state = 3}, + [1394] = {.lex_state = 9, .external_lex_state = 3}, + [1395] = {.lex_state = 7, .external_lex_state = 3}, + [1396] = {.lex_state = 9, .external_lex_state = 3}, + [1397] = {.lex_state = 9, .external_lex_state = 3}, + [1398] = {.lex_state = 9, .external_lex_state = 3}, + [1399] = {.lex_state = 17, .external_lex_state = 3}, + [1400] = {.lex_state = 9, .external_lex_state = 3}, + [1401] = {.lex_state = 14, .external_lex_state = 3}, + [1402] = {.lex_state = 9, .external_lex_state = 3}, + [1403] = {.lex_state = 7, .external_lex_state = 3}, + [1404] = {.lex_state = 7, .external_lex_state = 3}, + [1405] = {.lex_state = 9, .external_lex_state = 3}, + [1406] = {.lex_state = 7, .external_lex_state = 3}, + [1407] = {.lex_state = 9, .external_lex_state = 3}, + [1408] = {.lex_state = 1, .external_lex_state = 2}, + [1409] = {.lex_state = 1, .external_lex_state = 2}, + [1410] = {.lex_state = 9, .external_lex_state = 3}, + [1411] = {.lex_state = 7, .external_lex_state = 3}, + [1412] = {.lex_state = 7, .external_lex_state = 3}, + [1413] = {.lex_state = 7, .external_lex_state = 3}, + [1414] = {.lex_state = 7, .external_lex_state = 3}, + [1415] = {.lex_state = 7, .external_lex_state = 3}, + [1416] = {.lex_state = 7, .external_lex_state = 3}, + [1417] = {.lex_state = 7, .external_lex_state = 3}, + [1418] = {.lex_state = 7, .external_lex_state = 3}, + [1419] = {.lex_state = 7, .external_lex_state = 3}, + [1420] = {.lex_state = 7, .external_lex_state = 3}, + [1421] = {.lex_state = 14, .external_lex_state = 3}, + [1422] = {.lex_state = 7, .external_lex_state = 3}, + [1423] = {.lex_state = 7, .external_lex_state = 3}, + [1424] = {.lex_state = 14, .external_lex_state = 3}, + [1425] = {.lex_state = 7, .external_lex_state = 3}, + [1426] = {.lex_state = 7, .external_lex_state = 3}, + [1427] = {.lex_state = 7, .external_lex_state = 3}, + [1428] = {.lex_state = 7, .external_lex_state = 3}, + [1429] = {.lex_state = 7, .external_lex_state = 3}, + [1430] = {.lex_state = 7, .external_lex_state = 3}, + [1431] = {.lex_state = 7, .external_lex_state = 3}, + [1432] = {.lex_state = 7, .external_lex_state = 3}, + [1433] = {.lex_state = 7, .external_lex_state = 3}, + [1434] = {.lex_state = 7, .external_lex_state = 3}, + [1435] = {.lex_state = 7, .external_lex_state = 3}, + [1436] = {.lex_state = 7, .external_lex_state = 3}, + [1437] = {.lex_state = 7, .external_lex_state = 3}, + [1438] = {.lex_state = 7, .external_lex_state = 3}, + [1439] = {.lex_state = 7, .external_lex_state = 3}, + [1440] = {.lex_state = 7, .external_lex_state = 3}, + [1441] = {.lex_state = 7, .external_lex_state = 3}, + [1442] = {.lex_state = 7, .external_lex_state = 3}, + [1443] = {.lex_state = 4, .external_lex_state = 3}, + [1444] = {.lex_state = 7, .external_lex_state = 3}, + [1445] = {.lex_state = 7, .external_lex_state = 3}, + [1446] = {.lex_state = 7, .external_lex_state = 3}, + [1447] = {.lex_state = 7, .external_lex_state = 3}, + [1448] = {.lex_state = 7, .external_lex_state = 3}, + [1449] = {.lex_state = 7, .external_lex_state = 3}, + [1450] = {.lex_state = 14, .external_lex_state = 3}, + [1451] = {.lex_state = 7, .external_lex_state = 3}, + [1452] = {.lex_state = 7, .external_lex_state = 3}, + [1453] = {.lex_state = 7, .external_lex_state = 3}, + [1454] = {.lex_state = 7, .external_lex_state = 3}, + [1455] = {.lex_state = 7, .external_lex_state = 3}, + [1456] = {.lex_state = 7, .external_lex_state = 3}, + [1457] = {.lex_state = 4, .external_lex_state = 3}, + [1458] = {.lex_state = 7, .external_lex_state = 3}, + [1459] = {.lex_state = 7, .external_lex_state = 3}, + [1460] = {.lex_state = 7, .external_lex_state = 3}, + [1461] = {.lex_state = 14, .external_lex_state = 3}, + [1462] = {.lex_state = 4, .external_lex_state = 3}, + [1463] = {.lex_state = 17, .external_lex_state = 3}, + [1464] = {.lex_state = 14, .external_lex_state = 3}, + [1465] = {.lex_state = 7, .external_lex_state = 3}, + [1466] = {.lex_state = 7, .external_lex_state = 3}, + [1467] = {.lex_state = 17, .external_lex_state = 3}, + [1468] = {.lex_state = 4, .external_lex_state = 3}, + [1469] = {.lex_state = 17, .external_lex_state = 3}, + [1470] = {.lex_state = 7, .external_lex_state = 3}, + [1471] = {.lex_state = 17, .external_lex_state = 3}, + [1472] = {.lex_state = 14, .external_lex_state = 3}, + [1473] = {.lex_state = 7, .external_lex_state = 3}, + [1474] = {.lex_state = 7, .external_lex_state = 3}, + [1475] = {.lex_state = 17, .external_lex_state = 3}, + [1476] = {.lex_state = 7, .external_lex_state = 3}, + [1477] = {.lex_state = 7, .external_lex_state = 3}, + [1478] = {.lex_state = 7, .external_lex_state = 3}, + [1479] = {.lex_state = 4, .external_lex_state = 3}, + [1480] = {.lex_state = 14, .external_lex_state = 3}, + [1481] = {.lex_state = 7, .external_lex_state = 3}, + [1482] = {.lex_state = 14, .external_lex_state = 3}, + [1483] = {.lex_state = 14, .external_lex_state = 3}, + [1484] = {.lex_state = 13, .external_lex_state = 3}, + [1485] = {.lex_state = 7, .external_lex_state = 3}, + [1486] = {.lex_state = 7, .external_lex_state = 3}, + [1487] = {.lex_state = 14, .external_lex_state = 3}, + [1488] = {.lex_state = 7, .external_lex_state = 3}, + [1489] = {.lex_state = 0, .external_lex_state = 3}, + [1490] = {.lex_state = 17, .external_lex_state = 3}, + [1491] = {.lex_state = 14, .external_lex_state = 3}, + [1492] = {.lex_state = 17, .external_lex_state = 3}, + [1493] = {.lex_state = 7, .external_lex_state = 3}, + [1494] = {.lex_state = 17, .external_lex_state = 3}, + [1495] = {.lex_state = 7, .external_lex_state = 3}, + [1496] = {.lex_state = 0, .external_lex_state = 3}, + [1497] = {.lex_state = 0, .external_lex_state = 3}, + [1498] = {.lex_state = 7, .external_lex_state = 3}, + [1499] = {.lex_state = 7, .external_lex_state = 3}, + [1500] = {.lex_state = 0, .external_lex_state = 3}, + [1501] = {.lex_state = 0, .external_lex_state = 3}, + [1502] = {.lex_state = 7, .external_lex_state = 3}, + [1503] = {.lex_state = 7, .external_lex_state = 3}, + [1504] = {.lex_state = 14, .external_lex_state = 3}, + [1505] = {.lex_state = 7, .external_lex_state = 3}, + [1506] = {.lex_state = 0, .external_lex_state = 3}, + [1507] = {.lex_state = 7, .external_lex_state = 3}, + [1508] = {.lex_state = 0, .external_lex_state = 3}, + [1509] = {.lex_state = 7, .external_lex_state = 3}, + [1510] = {.lex_state = 7, .external_lex_state = 3}, + [1511] = {.lex_state = 7, .external_lex_state = 3}, + [1512] = {.lex_state = 7, .external_lex_state = 3}, + [1513] = {.lex_state = 7, .external_lex_state = 3}, + [1514] = {.lex_state = 7, .external_lex_state = 3}, + [1515] = {.lex_state = 7, .external_lex_state = 3}, + [1516] = {.lex_state = 14, .external_lex_state = 3}, + [1517] = {.lex_state = 0, .external_lex_state = 3}, + [1518] = {.lex_state = 0, .external_lex_state = 3}, + [1519] = {.lex_state = 0, .external_lex_state = 3}, + [1520] = {.lex_state = 0, .external_lex_state = 3}, + [1521] = {.lex_state = 7, .external_lex_state = 3}, + [1522] = {.lex_state = 14, .external_lex_state = 3}, + [1523] = {.lex_state = 7, .external_lex_state = 3}, + [1524] = {.lex_state = 7, .external_lex_state = 3}, + [1525] = {.lex_state = 7, .external_lex_state = 3}, + [1526] = {.lex_state = 7, .external_lex_state = 3}, + [1527] = {.lex_state = 0, .external_lex_state = 3}, + [1528] = {.lex_state = 0, .external_lex_state = 3}, + [1529] = {.lex_state = 7, .external_lex_state = 3}, + [1530] = {.lex_state = 0, .external_lex_state = 3}, + [1531] = {.lex_state = 0, .external_lex_state = 3}, + [1532] = {.lex_state = 4, .external_lex_state = 3}, + [1533] = {.lex_state = 14, .external_lex_state = 3}, + [1534] = {.lex_state = 7, .external_lex_state = 3}, + [1535] = {.lex_state = 13, .external_lex_state = 3}, + [1536] = {.lex_state = 7, .external_lex_state = 3}, + [1537] = {.lex_state = 7, .external_lex_state = 3}, + [1538] = {.lex_state = 17, .external_lex_state = 3}, + [1539] = {.lex_state = 14, .external_lex_state = 3}, + [1540] = {.lex_state = 7, .external_lex_state = 3}, + [1541] = {.lex_state = 7, .external_lex_state = 3}, + [1542] = {.lex_state = 0, .external_lex_state = 3}, + [1543] = {.lex_state = 4, .external_lex_state = 3}, + [1544] = {.lex_state = 17, .external_lex_state = 3}, + [1545] = {.lex_state = 7, .external_lex_state = 3}, + [1546] = {.lex_state = 7, .external_lex_state = 3}, + [1547] = {.lex_state = 7, .external_lex_state = 3}, + [1548] = {.lex_state = 7, .external_lex_state = 3}, + [1549] = {.lex_state = 4, .external_lex_state = 3}, + [1550] = {.lex_state = 7, .external_lex_state = 3}, + [1551] = {.lex_state = 17, .external_lex_state = 3}, + [1552] = {.lex_state = 57, .external_lex_state = 3}, + [1553] = {.lex_state = 7, .external_lex_state = 3}, + [1554] = {.lex_state = 7, .external_lex_state = 3}, + [1555] = {.lex_state = 57, .external_lex_state = 3}, + [1556] = {.lex_state = 7, .external_lex_state = 3}, + [1557] = {.lex_state = 7, .external_lex_state = 3}, + [1558] = {.lex_state = 17, .external_lex_state = 3}, + [1559] = {.lex_state = 4, .external_lex_state = 3}, + [1560] = {.lex_state = 0, .external_lex_state = 3}, + [1561] = {.lex_state = 7, .external_lex_state = 3}, + [1562] = {.lex_state = 17, .external_lex_state = 3}, + [1563] = {.lex_state = 7, .external_lex_state = 3}, + [1564] = {.lex_state = 7, .external_lex_state = 3}, + [1565] = {.lex_state = 7, .external_lex_state = 3}, + [1566] = {.lex_state = 17, .external_lex_state = 3}, + [1567] = {.lex_state = 17, .external_lex_state = 3}, + [1568] = {.lex_state = 0, .external_lex_state = 3}, + [1569] = {.lex_state = 7, .external_lex_state = 3}, + [1570] = {.lex_state = 10, .external_lex_state = 3}, + [1571] = {.lex_state = 17, .external_lex_state = 3}, + [1572] = {.lex_state = 13, .external_lex_state = 3}, + [1573] = {.lex_state = 7, .external_lex_state = 3}, + [1574] = {.lex_state = 7, .external_lex_state = 3}, + [1575] = {.lex_state = 7, .external_lex_state = 3}, + [1576] = {.lex_state = 10, .external_lex_state = 3}, + [1577] = {.lex_state = 10, .external_lex_state = 3}, + [1578] = {.lex_state = 7, .external_lex_state = 3}, + [1579] = {.lex_state = 7, .external_lex_state = 3}, + [1580] = {.lex_state = 7, .external_lex_state = 3}, + [1581] = {.lex_state = 7, .external_lex_state = 3}, + [1582] = {.lex_state = 10, .external_lex_state = 3}, + [1583] = {.lex_state = 7, .external_lex_state = 3}, + [1584] = {.lex_state = 7, .external_lex_state = 3}, + [1585] = {.lex_state = 17, .external_lex_state = 3}, + [1586] = {.lex_state = 7, .external_lex_state = 3}, + [1587] = {.lex_state = 10, .external_lex_state = 3}, + [1588] = {.lex_state = 10, .external_lex_state = 3}, + [1589] = {.lex_state = 7, .external_lex_state = 3}, + [1590] = {.lex_state = 7, .external_lex_state = 3}, + [1591] = {.lex_state = 7, .external_lex_state = 3}, + [1592] = {.lex_state = 7, .external_lex_state = 3}, + [1593] = {.lex_state = 7, .external_lex_state = 3}, + [1594] = {.lex_state = 17, .external_lex_state = 3}, + [1595] = {.lex_state = 7, .external_lex_state = 3}, + [1596] = {.lex_state = 17, .external_lex_state = 3}, + [1597] = {.lex_state = 17, .external_lex_state = 3}, + [1598] = {.lex_state = 7, .external_lex_state = 3}, + [1599] = {.lex_state = 7, .external_lex_state = 3}, + [1600] = {.lex_state = 7, .external_lex_state = 3}, + [1601] = {.lex_state = 0, .external_lex_state = 3}, + [1602] = {.lex_state = 7, .external_lex_state = 3}, + [1603] = {.lex_state = 7, .external_lex_state = 3}, + [1604] = {.lex_state = 0, .external_lex_state = 3}, + [1605] = {.lex_state = 7, .external_lex_state = 3}, + [1606] = {.lex_state = 7, .external_lex_state = 3}, + [1607] = {.lex_state = 17, .external_lex_state = 3}, + [1608] = {.lex_state = 7, .external_lex_state = 3}, + [1609] = {.lex_state = 7, .external_lex_state = 3}, + [1610] = {.lex_state = 7, .external_lex_state = 3}, + [1611] = {.lex_state = 17, .external_lex_state = 3}, + [1612] = {.lex_state = 7, .external_lex_state = 3}, + [1613] = {.lex_state = 7, .external_lex_state = 3}, + [1614] = {.lex_state = 7, .external_lex_state = 3}, + [1615] = {.lex_state = 17, .external_lex_state = 3}, + [1616] = {.lex_state = 7, .external_lex_state = 3}, + [1617] = {.lex_state = 17, .external_lex_state = 3}, + [1618] = {.lex_state = 17, .external_lex_state = 3}, + [1619] = {.lex_state = 7, .external_lex_state = 3}, + [1620] = {.lex_state = 7, .external_lex_state = 3}, + [1621] = {.lex_state = 7, .external_lex_state = 3}, + [1622] = {.lex_state = 7, .external_lex_state = 3}, + [1623] = {.lex_state = 7, .external_lex_state = 3}, + [1624] = {.lex_state = 7, .external_lex_state = 3}, + [1625] = {.lex_state = 7, .external_lex_state = 3}, + [1626] = {.lex_state = 57, .external_lex_state = 3}, + [1627] = {.lex_state = 7, .external_lex_state = 3}, + [1628] = {.lex_state = 7, .external_lex_state = 3}, + [1629] = {.lex_state = 7, .external_lex_state = 3}, + [1630] = {.lex_state = 0, .external_lex_state = 3}, + [1631] = {.lex_state = 7, .external_lex_state = 3}, + [1632] = {.lex_state = 0, .external_lex_state = 3}, + [1633] = {.lex_state = 17, .external_lex_state = 3}, + [1634] = {.lex_state = 7, .external_lex_state = 3}, + [1635] = {.lex_state = 7, .external_lex_state = 3}, + [1636] = {.lex_state = 7, .external_lex_state = 3}, + [1637] = {.lex_state = 0, .external_lex_state = 3}, + [1638] = {.lex_state = 17, .external_lex_state = 3}, + [1639] = {.lex_state = 7, .external_lex_state = 3}, + [1640] = {.lex_state = 7, .external_lex_state = 3}, + [1641] = {.lex_state = 7, .external_lex_state = 3}, + [1642] = {.lex_state = 7, .external_lex_state = 3}, + [1643] = {.lex_state = 7, .external_lex_state = 3}, + [1644] = {.lex_state = 7, .external_lex_state = 3}, + [1645] = {.lex_state = 7, .external_lex_state = 3}, + [1646] = {.lex_state = 7, .external_lex_state = 3}, + [1647] = {.lex_state = 7, .external_lex_state = 3}, + [1648] = {.lex_state = 0, .external_lex_state = 3}, + [1649] = {.lex_state = 7, .external_lex_state = 3}, + [1650] = {.lex_state = 7, .external_lex_state = 3}, + [1651] = {.lex_state = 7, .external_lex_state = 3}, + [1652] = {.lex_state = 7, .external_lex_state = 3}, + [1653] = {.lex_state = 7, .external_lex_state = 3}, + [1654] = {.lex_state = 7, .external_lex_state = 3}, + [1655] = {.lex_state = 7, .external_lex_state = 3}, + [1656] = {.lex_state = 7, .external_lex_state = 3}, + [1657] = {.lex_state = 7, .external_lex_state = 3}, + [1658] = {.lex_state = 7, .external_lex_state = 3}, + [1659] = {.lex_state = 7, .external_lex_state = 3}, + [1660] = {.lex_state = 7, .external_lex_state = 3}, + [1661] = {.lex_state = 7, .external_lex_state = 3}, + [1662] = {.lex_state = 7, .external_lex_state = 3}, + [1663] = {.lex_state = 17, .external_lex_state = 3}, + [1664] = {.lex_state = 7, .external_lex_state = 3}, + [1665] = {.lex_state = 17, .external_lex_state = 3}, + [1666] = {.lex_state = 0, .external_lex_state = 3}, + [1667] = {.lex_state = 0, .external_lex_state = 3}, + [1668] = {.lex_state = 57, .external_lex_state = 3}, + [1669] = {.lex_state = 17, .external_lex_state = 3}, + [1670] = {.lex_state = 57, .external_lex_state = 3}, + [1671] = {.lex_state = 4, .external_lex_state = 4}, + [1672] = {.lex_state = 17, .external_lex_state = 3}, + [1673] = {.lex_state = 57, .external_lex_state = 3}, + [1674] = {.lex_state = 0, .external_lex_state = 3}, + [1675] = {.lex_state = 7, .external_lex_state = 3}, + [1676] = {.lex_state = 0, .external_lex_state = 3}, + [1677] = {.lex_state = 0, .external_lex_state = 3}, + [1678] = {.lex_state = 7, .external_lex_state = 3}, + [1679] = {.lex_state = 0, .external_lex_state = 3}, + [1680] = {.lex_state = 17, .external_lex_state = 3}, + [1681] = {.lex_state = 0, .external_lex_state = 3}, + [1682] = {.lex_state = 7, .external_lex_state = 3}, + [1683] = {.lex_state = 0, .external_lex_state = 3}, + [1684] = {.lex_state = 57, .external_lex_state = 3}, + [1685] = {.lex_state = 0, .external_lex_state = 3}, + [1686] = {.lex_state = 0, .external_lex_state = 3}, + [1687] = {.lex_state = 7, .external_lex_state = 3}, + [1688] = {.lex_state = 0, .external_lex_state = 3}, + [1689] = {.lex_state = 0, .external_lex_state = 3}, + [1690] = {.lex_state = 17, .external_lex_state = 3}, + [1691] = {.lex_state = 7, .external_lex_state = 3}, + [1692] = {.lex_state = 17, .external_lex_state = 3}, + [1693] = {.lex_state = 4, .external_lex_state = 4}, + [1694] = {.lex_state = 7, .external_lex_state = 3}, + [1695] = {.lex_state = 4, .external_lex_state = 4}, + [1696] = {.lex_state = 7, .external_lex_state = 3}, + [1697] = {.lex_state = 57, .external_lex_state = 3}, + [1698] = {.lex_state = 0, .external_lex_state = 3}, + [1699] = {.lex_state = 7, .external_lex_state = 3}, + [1700] = {.lex_state = 7, .external_lex_state = 3}, + [1701] = {.lex_state = 57, .external_lex_state = 3}, + [1702] = {.lex_state = 7, .external_lex_state = 3}, + [1703] = {.lex_state = 57, .external_lex_state = 3}, + [1704] = {.lex_state = 57, .external_lex_state = 3}, + [1705] = {.lex_state = 7, .external_lex_state = 3}, + [1706] = {.lex_state = 7, .external_lex_state = 3}, + [1707] = {.lex_state = 57, .external_lex_state = 3}, + [1708] = {.lex_state = 57, .external_lex_state = 3}, + [1709] = {.lex_state = 57, .external_lex_state = 3}, + [1710] = {.lex_state = 0, .external_lex_state = 3}, + [1711] = {.lex_state = 4, .external_lex_state = 4}, + [1712] = {.lex_state = 18, .external_lex_state = 3}, + [1713] = {.lex_state = 7, .external_lex_state = 3}, + [1714] = {.lex_state = 57, .external_lex_state = 3}, + [1715] = {.lex_state = 4, .external_lex_state = 4}, + [1716] = {.lex_state = 0, .external_lex_state = 3}, + [1717] = {.lex_state = 57, .external_lex_state = 3}, + [1718] = {.lex_state = 4, .external_lex_state = 4}, + [1719] = {.lex_state = 7, .external_lex_state = 3}, + [1720] = {.lex_state = 57, .external_lex_state = 3}, + [1721] = {.lex_state = 57, .external_lex_state = 3}, + [1722] = {.lex_state = 57, .external_lex_state = 3}, + [1723] = {.lex_state = 57, .external_lex_state = 3}, + [1724] = {.lex_state = 7, .external_lex_state = 3}, + [1725] = {.lex_state = 17, .external_lex_state = 3}, + [1726] = {.lex_state = 7, .external_lex_state = 3}, + [1727] = {.lex_state = 0, .external_lex_state = 3}, + [1728] = {.lex_state = 17, .external_lex_state = 3}, + [1729] = {.lex_state = 0, .external_lex_state = 3}, + [1730] = {.lex_state = 57, .external_lex_state = 3}, + [1731] = {.lex_state = 57, .external_lex_state = 3}, + [1732] = {.lex_state = 17, .external_lex_state = 3}, + [1733] = {.lex_state = 57, .external_lex_state = 3}, + [1734] = {.lex_state = 18, .external_lex_state = 3}, + [1735] = {.lex_state = 7, .external_lex_state = 3}, + [1736] = {.lex_state = 57, .external_lex_state = 3}, + [1737] = {.lex_state = 4, .external_lex_state = 4}, + [1738] = {.lex_state = 17, .external_lex_state = 3}, + [1739] = {.lex_state = 18, .external_lex_state = 3}, + [1740] = {.lex_state = 57, .external_lex_state = 3}, + [1741] = {.lex_state = 57, .external_lex_state = 3}, + [1742] = {.lex_state = 7, .external_lex_state = 3}, + [1743] = {.lex_state = 7, .external_lex_state = 3}, + [1744] = {.lex_state = 7, .external_lex_state = 3}, + [1745] = {.lex_state = 7, .external_lex_state = 3}, + [1746] = {.lex_state = 7, .external_lex_state = 3}, + [1747] = {.lex_state = 7, .external_lex_state = 3}, + [1748] = {.lex_state = 7, .external_lex_state = 3}, + [1749] = {.lex_state = 57, .external_lex_state = 3}, + [1750] = {.lex_state = 57, .external_lex_state = 3}, + [1751] = {.lex_state = 7, .external_lex_state = 3}, + [1752] = {.lex_state = 57, .external_lex_state = 3}, + [1753] = {.lex_state = 57, .external_lex_state = 3}, + [1754] = {.lex_state = 0, .external_lex_state = 3}, + [1755] = {.lex_state = 17, .external_lex_state = 3}, + [1756] = {.lex_state = 57, .external_lex_state = 3}, + [1757] = {.lex_state = 18, .external_lex_state = 3}, + [1758] = {.lex_state = 0, .external_lex_state = 3}, + [1759] = {.lex_state = 57, .external_lex_state = 3}, + [1760] = {.lex_state = 17, .external_lex_state = 3}, + [1761] = {.lex_state = 3, .external_lex_state = 3}, + [1762] = {.lex_state = 3, .external_lex_state = 3}, + [1763] = {.lex_state = 7, .external_lex_state = 3}, + [1764] = {.lex_state = 0, .external_lex_state = 3}, + [1765] = {.lex_state = 0, .external_lex_state = 3}, + [1766] = {.lex_state = 7, .external_lex_state = 3}, + [1767] = {.lex_state = 0, .external_lex_state = 3}, + [1768] = {.lex_state = 7, .external_lex_state = 3}, + [1769] = {.lex_state = 0, .external_lex_state = 3}, + [1770] = {.lex_state = 7, .external_lex_state = 3}, + [1771] = {.lex_state = 57, .external_lex_state = 3}, + [1772] = {.lex_state = 0, .external_lex_state = 3}, + [1773] = {.lex_state = 57, .external_lex_state = 3}, + [1774] = {.lex_state = 0, .external_lex_state = 3}, + [1775] = {.lex_state = 57, .external_lex_state = 3}, + [1776] = {.lex_state = 0, .external_lex_state = 3}, + [1777] = {.lex_state = 57, .external_lex_state = 3}, + [1778] = {.lex_state = 0, .external_lex_state = 3}, + [1779] = {.lex_state = 0, .external_lex_state = 3}, + [1780] = {.lex_state = 57, .external_lex_state = 3}, + [1781] = {.lex_state = 57, .external_lex_state = 3}, + [1782] = {.lex_state = 57, .external_lex_state = 3}, + [1783] = {.lex_state = 0, .external_lex_state = 3}, + [1784] = {.lex_state = 57, .external_lex_state = 3}, + [1785] = {.lex_state = 0, .external_lex_state = 3}, + [1786] = {.lex_state = 57, .external_lex_state = 3}, + [1787] = {.lex_state = 57, .external_lex_state = 3}, + [1788] = {.lex_state = 0, .external_lex_state = 3}, + [1789] = {.lex_state = 57, .external_lex_state = 3}, + [1790] = {.lex_state = 0, .external_lex_state = 3}, + [1791] = {.lex_state = 0, .external_lex_state = 3}, + [1792] = {.lex_state = 57, .external_lex_state = 3}, + [1793] = {.lex_state = 0, .external_lex_state = 3}, + [1794] = {.lex_state = 57, .external_lex_state = 3}, + [1795] = {.lex_state = 0, .external_lex_state = 3}, + [1796] = {.lex_state = 0, .external_lex_state = 3}, + [1797] = {.lex_state = 0, .external_lex_state = 3}, + [1798] = {.lex_state = 57, .external_lex_state = 3}, + [1799] = {.lex_state = 7, .external_lex_state = 3}, + [1800] = {.lex_state = 0, .external_lex_state = 3}, + [1801] = {.lex_state = 0, .external_lex_state = 3}, + [1802] = {.lex_state = 0, .external_lex_state = 3}, + [1803] = {.lex_state = 0, .external_lex_state = 3}, + [1804] = {.lex_state = 0, .external_lex_state = 3}, + [1805] = {.lex_state = 7, .external_lex_state = 3}, + [1806] = {.lex_state = 0, .external_lex_state = 3}, + [1807] = {.lex_state = 0, .external_lex_state = 3}, + [1808] = {.lex_state = 57, .external_lex_state = 3}, + [1809] = {.lex_state = 0, .external_lex_state = 3}, + [1810] = {.lex_state = 10, .external_lex_state = 3}, + [1811] = {.lex_state = 0, .external_lex_state = 3}, + [1812] = {.lex_state = 0, .external_lex_state = 3}, + [1813] = {.lex_state = 0, .external_lex_state = 3}, + [1814] = {.lex_state = 57, .external_lex_state = 3}, + [1815] = {.lex_state = 0, .external_lex_state = 3}, + [1816] = {.lex_state = 0, .external_lex_state = 3}, + [1817] = {.lex_state = 0, .external_lex_state = 3}, + [1818] = {.lex_state = 0, .external_lex_state = 3}, + [1819] = {.lex_state = 0, .external_lex_state = 3}, + [1820] = {.lex_state = 10, .external_lex_state = 3}, + [1821] = {.lex_state = 0, .external_lex_state = 3}, + [1822] = {.lex_state = 57, .external_lex_state = 3}, + [1823] = {.lex_state = 57, .external_lex_state = 3}, + [1824] = {.lex_state = 0, .external_lex_state = 3}, + [1825] = {.lex_state = 57, .external_lex_state = 3}, + [1826] = {.lex_state = 0, .external_lex_state = 3}, + [1827] = {.lex_state = 57, .external_lex_state = 3}, + [1828] = {.lex_state = 57, .external_lex_state = 3}, + [1829] = {.lex_state = 57, .external_lex_state = 3}, + [1830] = {.lex_state = 0, .external_lex_state = 3}, + [1831] = {.lex_state = 0, .external_lex_state = 3}, + [1832] = {.lex_state = 0, .external_lex_state = 3}, + [1833] = {.lex_state = 57, .external_lex_state = 3}, + [1834] = {.lex_state = 57, .external_lex_state = 3}, + [1835] = {.lex_state = 57, .external_lex_state = 3}, + [1836] = {.lex_state = 0, .external_lex_state = 3}, + [1837] = {.lex_state = 57, .external_lex_state = 3}, + [1838] = {.lex_state = 0, .external_lex_state = 3}, + [1839] = {.lex_state = 7, .external_lex_state = 3}, + [1840] = {.lex_state = 57, .external_lex_state = 3}, + [1841] = {.lex_state = 0, .external_lex_state = 3}, + [1842] = {.lex_state = 0, .external_lex_state = 3}, + [1843] = {.lex_state = 57, .external_lex_state = 3}, + [1844] = {.lex_state = 4, .external_lex_state = 3}, + [1845] = {.lex_state = 7, .external_lex_state = 3}, + [1846] = {.lex_state = 57, .external_lex_state = 3}, + [1847] = {.lex_state = 7, .external_lex_state = 3}, + [1848] = {.lex_state = 57, .external_lex_state = 3}, + [1849] = {.lex_state = 57, .external_lex_state = 3}, + [1850] = {.lex_state = 57, .external_lex_state = 3}, + [1851] = {.lex_state = 0, .external_lex_state = 3}, + [1852] = {.lex_state = 0, .external_lex_state = 3}, + [1853] = {.lex_state = 7, .external_lex_state = 3}, + [1854] = {.lex_state = 0, .external_lex_state = 3}, + [1855] = {.lex_state = 0, .external_lex_state = 3}, + [1856] = {.lex_state = 57, .external_lex_state = 3}, + [1857] = {.lex_state = 57, .external_lex_state = 3}, + [1858] = {.lex_state = 10, .external_lex_state = 3}, + [1859] = {.lex_state = 0, .external_lex_state = 3}, + [1860] = {.lex_state = 0, .external_lex_state = 3}, + [1861] = {.lex_state = 0, .external_lex_state = 3}, + [1862] = {.lex_state = 7, .external_lex_state = 3}, + [1863] = {.lex_state = 0, .external_lex_state = 3}, + [1864] = {.lex_state = 3, .external_lex_state = 3}, + [1865] = {.lex_state = 3, .external_lex_state = 3}, + [1866] = {.lex_state = 57, .external_lex_state = 3}, + [1867] = {.lex_state = 0, .external_lex_state = 3}, + [1868] = {.lex_state = 0, .external_lex_state = 3}, + [1869] = {.lex_state = 57, .external_lex_state = 3}, + [1870] = {.lex_state = 0, .external_lex_state = 3}, + [1871] = {.lex_state = 0, .external_lex_state = 3}, + [1872] = {.lex_state = 3, .external_lex_state = 3}, + [1873] = {.lex_state = 7, .external_lex_state = 3}, + [1874] = {.lex_state = 3, .external_lex_state = 3}, + [1875] = {.lex_state = 3, .external_lex_state = 3}, + [1876] = {.lex_state = 7, .external_lex_state = 3}, + [1877] = {.lex_state = 0, .external_lex_state = 3}, + [1878] = {.lex_state = 0, .external_lex_state = 3}, + [1879] = {.lex_state = 0, .external_lex_state = 3}, + [1880] = {.lex_state = 10, .external_lex_state = 3}, + [1881] = {.lex_state = 10, .external_lex_state = 3}, + [1882] = {.lex_state = 3, .external_lex_state = 3}, + [1883] = {.lex_state = 0, .external_lex_state = 3}, + [1884] = {.lex_state = 0, .external_lex_state = 3}, + [1885] = {.lex_state = 3, .external_lex_state = 3}, + [1886] = {.lex_state = 3, .external_lex_state = 3}, + [1887] = {.lex_state = 7, .external_lex_state = 3}, + [1888] = {.lex_state = 3, .external_lex_state = 3}, + [1889] = {.lex_state = 3, .external_lex_state = 3}, + [1890] = {.lex_state = 7, .external_lex_state = 3}, + [1891] = {.lex_state = 0, .external_lex_state = 3}, + [1892] = {.lex_state = 0, .external_lex_state = 3}, + [1893] = {.lex_state = 0, .external_lex_state = 3}, + [1894] = {.lex_state = 0, .external_lex_state = 3}, + [1895] = {.lex_state = 0, .external_lex_state = 3}, + [1896] = {.lex_state = 0, .external_lex_state = 3}, + [1897] = {.lex_state = 0, .external_lex_state = 3}, + [1898] = {.lex_state = 3, .external_lex_state = 3}, + [1899] = {.lex_state = 3, .external_lex_state = 3}, + [1900] = {.lex_state = 7, .external_lex_state = 3}, + [1901] = {.lex_state = 57, .external_lex_state = 3}, + [1902] = {.lex_state = 3, .external_lex_state = 3}, + [1903] = {.lex_state = 0, .external_lex_state = 3}, + [1904] = {.lex_state = 57, .external_lex_state = 3}, + [1905] = {.lex_state = 0, .external_lex_state = 3}, + [1906] = {.lex_state = 57, .external_lex_state = 3}, + [1907] = {.lex_state = 0, .external_lex_state = 3}, + [1908] = {.lex_state = 0, .external_lex_state = 3}, + [1909] = {.lex_state = 0, .external_lex_state = 3}, + [1910] = {.lex_state = 0, .external_lex_state = 3}, + [1911] = {.lex_state = 0, .external_lex_state = 3}, + [1912] = {.lex_state = 0, .external_lex_state = 3}, + [1913] = {.lex_state = 0, .external_lex_state = 3}, + [1914] = {.lex_state = 0, .external_lex_state = 3}, + [1915] = {.lex_state = 3, .external_lex_state = 3}, + [1916] = {.lex_state = 0, .external_lex_state = 3}, + [1917] = {.lex_state = 3, .external_lex_state = 3}, + [1918] = {.lex_state = 0, .external_lex_state = 3}, + [1919] = {.lex_state = 7, .external_lex_state = 3}, + [1920] = {.lex_state = 0, .external_lex_state = 3}, + [1921] = {.lex_state = 3, .external_lex_state = 3}, + [1922] = {.lex_state = 0, .external_lex_state = 3}, + [1923] = {.lex_state = 0, .external_lex_state = 3}, + [1924] = {.lex_state = 57, .external_lex_state = 3}, + [1925] = {.lex_state = 0, .external_lex_state = 3}, + [1926] = {.lex_state = 0, .external_lex_state = 3}, + [1927] = {.lex_state = 0, .external_lex_state = 3}, + [1928] = {.lex_state = 0, .external_lex_state = 3}, + [1929] = {.lex_state = 17, .external_lex_state = 3}, + [1930] = {.lex_state = 3, .external_lex_state = 3}, + [1931] = {.lex_state = 0, .external_lex_state = 3}, + [1932] = {.lex_state = 0, .external_lex_state = 3}, + [1933] = {.lex_state = 57, .external_lex_state = 3}, + [1934] = {.lex_state = 57, .external_lex_state = 3}, + [1935] = {.lex_state = 0, .external_lex_state = 3}, + [1936] = {.lex_state = 0, .external_lex_state = 3}, + [1937] = {.lex_state = 0, .external_lex_state = 3}, + [1938] = {.lex_state = 10, .external_lex_state = 3}, + [1939] = {.lex_state = 0, .external_lex_state = 3}, + [1940] = {.lex_state = 0, .external_lex_state = 3}, + [1941] = {.lex_state = 0, .external_lex_state = 3}, + [1942] = {.lex_state = 57, .external_lex_state = 3}, + [1943] = {.lex_state = 0, .external_lex_state = 3}, + [1944] = {.lex_state = 0, .external_lex_state = 3}, + [1945] = {.lex_state = 7, .external_lex_state = 3}, + [1946] = {.lex_state = 57, .external_lex_state = 3}, + [1947] = {.lex_state = 0, .external_lex_state = 3}, + [1948] = {.lex_state = 57, .external_lex_state = 3}, + [1949] = {.lex_state = 0, .external_lex_state = 3}, + [1950] = {.lex_state = 0, .external_lex_state = 3}, + [1951] = {.lex_state = 0, .external_lex_state = 3}, + [1952] = {.lex_state = 7, .external_lex_state = 3}, + [1953] = {.lex_state = 0, .external_lex_state = 3}, + [1954] = {.lex_state = 57, .external_lex_state = 3}, + [1955] = {.lex_state = 7, .external_lex_state = 3}, + [1956] = {.lex_state = 57, .external_lex_state = 3}, + [1957] = {.lex_state = 0, .external_lex_state = 3}, + [1958] = {.lex_state = 0, .external_lex_state = 3}, + [1959] = {.lex_state = 0, .external_lex_state = 3}, + [1960] = {.lex_state = 10, .external_lex_state = 3}, + [1961] = {.lex_state = 0, .external_lex_state = 3}, + [1962] = {.lex_state = 10, .external_lex_state = 3}, + [1963] = {.lex_state = 57, .external_lex_state = 3}, + [1964] = {.lex_state = 57, .external_lex_state = 3}, + [1965] = {.lex_state = 0, .external_lex_state = 3}, + [1966] = {.lex_state = 0, .external_lex_state = 3}, + [1967] = {.lex_state = 4, .external_lex_state = 3}, + [1968] = {.lex_state = 0, .external_lex_state = 3}, + [1969] = {.lex_state = 57, .external_lex_state = 3}, + [1970] = {.lex_state = 57, .external_lex_state = 3}, + [1971] = {.lex_state = 57, .external_lex_state = 3}, + [1972] = {.lex_state = 57, .external_lex_state = 3}, + [1973] = {.lex_state = 57, .external_lex_state = 3}, + [1974] = {.lex_state = 57, .external_lex_state = 3}, + [1975] = {.lex_state = 10, .external_lex_state = 3}, + [1976] = {.lex_state = 10, .external_lex_state = 3}, + [1977] = {.lex_state = 57, .external_lex_state = 3}, + [1978] = {.lex_state = 57, .external_lex_state = 3}, + [1979] = {.lex_state = 0, .external_lex_state = 3}, + [1980] = {.lex_state = 57, .external_lex_state = 3}, + [1981] = {.lex_state = 57, .external_lex_state = 3}, + [1982] = {.lex_state = 57, .external_lex_state = 3}, + [1983] = {.lex_state = 57, .external_lex_state = 3}, + [1984] = {.lex_state = 0, .external_lex_state = 3}, + [1985] = {.lex_state = 57, .external_lex_state = 3}, + [1986] = {.lex_state = 0, .external_lex_state = 3}, + [1987] = {.lex_state = 0, .external_lex_state = 3}, + [1988] = {.lex_state = 0, .external_lex_state = 3}, + [1989] = {.lex_state = 7, .external_lex_state = 3}, + [1990] = {.lex_state = 57, .external_lex_state = 3}, + [1991] = {.lex_state = 0, .external_lex_state = 3}, + [1992] = {.lex_state = 0, .external_lex_state = 3}, + [1993] = {.lex_state = 0, .external_lex_state = 3}, + [1994] = {.lex_state = 57, .external_lex_state = 3}, + [1995] = {.lex_state = 0, .external_lex_state = 3}, + [1996] = {.lex_state = 0, .external_lex_state = 3}, + [1997] = {.lex_state = 0, .external_lex_state = 3}, + [1998] = {.lex_state = 0, .external_lex_state = 3}, + [1999] = {.lex_state = 0, .external_lex_state = 3}, + [2000] = {.lex_state = 0, .external_lex_state = 3}, + [2001] = {.lex_state = 7, .external_lex_state = 3}, + [2002] = {.lex_state = 0, .external_lex_state = 3}, + [2003] = {.lex_state = 3, .external_lex_state = 3}, + [2004] = {.lex_state = 0, .external_lex_state = 3}, + [2005] = {.lex_state = 0, .external_lex_state = 3}, + [2006] = {.lex_state = 10, .external_lex_state = 3}, + [2007] = {.lex_state = 7, .external_lex_state = 3}, + [2008] = {.lex_state = 0, .external_lex_state = 3}, + [2009] = {.lex_state = 0, .external_lex_state = 3}, + [2010] = {.lex_state = 7, .external_lex_state = 3}, + [2011] = {.lex_state = 0, .external_lex_state = 3}, + [2012] = {.lex_state = 0, .external_lex_state = 3}, + [2013] = {.lex_state = 0, .external_lex_state = 3}, + [2014] = {.lex_state = 0, .external_lex_state = 3}, + [2015] = {.lex_state = 0, .external_lex_state = 3}, + [2016] = {.lex_state = 7, .external_lex_state = 3}, + [2017] = {.lex_state = 0, .external_lex_state = 3}, + [2018] = {.lex_state = 0, .external_lex_state = 3}, + [2019] = {.lex_state = 7, .external_lex_state = 3}, + [2020] = {.lex_state = 0, .external_lex_state = 3}, + [2021] = {.lex_state = 0, .external_lex_state = 3}, + [2022] = {.lex_state = 0, .external_lex_state = 3}, + [2023] = {.lex_state = 0, .external_lex_state = 3}, + [2024] = {.lex_state = 0, .external_lex_state = 3}, + [2025] = {.lex_state = 0, .external_lex_state = 3}, + [2026] = {.lex_state = 57, .external_lex_state = 3}, + [2027] = {.lex_state = 0, .external_lex_state = 3}, + [2028] = {.lex_state = 0, .external_lex_state = 3}, + [2029] = {.lex_state = 0, .external_lex_state = 3}, + [2030] = {.lex_state = 10, .external_lex_state = 3}, + [2031] = {.lex_state = 0, .external_lex_state = 3}, + [2032] = {.lex_state = 7, .external_lex_state = 3}, + [2033] = {.lex_state = 0, .external_lex_state = 3}, + [2034] = {.lex_state = 0, .external_lex_state = 3}, + [2035] = {.lex_state = 0, .external_lex_state = 3}, + [2036] = {.lex_state = 57, .external_lex_state = 3}, + [2037] = {.lex_state = 0, .external_lex_state = 3}, + [2038] = {.lex_state = 57, .external_lex_state = 3}, + [2039] = {.lex_state = 0, .external_lex_state = 3}, + [2040] = {.lex_state = 0, .external_lex_state = 3}, + [2041] = {.lex_state = 0, .external_lex_state = 3}, + [2042] = {.lex_state = 0, .external_lex_state = 3}, + [2043] = {.lex_state = 0, .external_lex_state = 3}, + [2044] = {.lex_state = 0, .external_lex_state = 3}, + [2045] = {.lex_state = 57, .external_lex_state = 3}, + [2046] = {.lex_state = 0, .external_lex_state = 3}, + [2047] = {.lex_state = 7, .external_lex_state = 3}, + [2048] = {.lex_state = 57, .external_lex_state = 3}, + [2049] = {.lex_state = 57, .external_lex_state = 3}, + [2050] = {.lex_state = 0, .external_lex_state = 3}, + [2051] = {.lex_state = 7, .external_lex_state = 3}, + [2052] = {.lex_state = 57, .external_lex_state = 3}, + [2053] = {.lex_state = 0, .external_lex_state = 3}, + [2054] = {.lex_state = 57, .external_lex_state = 3}, + [2055] = {.lex_state = 0, .external_lex_state = 3}, + [2056] = {.lex_state = 0, .external_lex_state = 3}, + [2057] = {.lex_state = 7, .external_lex_state = 3}, + [2058] = {.lex_state = 0, .external_lex_state = 3}, + [2059] = {.lex_state = 0, .external_lex_state = 3}, + [2060] = {.lex_state = 0, .external_lex_state = 3}, + [2061] = {.lex_state = 7, .external_lex_state = 3}, + [2062] = {.lex_state = 17, .external_lex_state = 3}, + [2063] = {.lex_state = 57, .external_lex_state = 3}, + [2064] = {.lex_state = 7, .external_lex_state = 3}, + [2065] = {.lex_state = 7, .external_lex_state = 3}, + [2066] = {.lex_state = 0, .external_lex_state = 3}, + [2067] = {.lex_state = 0, .external_lex_state = 3}, + [2068] = {.lex_state = 0, .external_lex_state = 3}, + [2069] = {.lex_state = 0, .external_lex_state = 3}, + [2070] = {.lex_state = 57, .external_lex_state = 3}, + [2071] = {.lex_state = 0, .external_lex_state = 3}, + [2072] = {.lex_state = 0, .external_lex_state = 3}, + [2073] = {.lex_state = 0, .external_lex_state = 3}, + [2074] = {.lex_state = 0, .external_lex_state = 3}, + [2075] = {.lex_state = 0, .external_lex_state = 3}, + [2076] = {.lex_state = 0, .external_lex_state = 3}, + [2077] = {.lex_state = 4, .external_lex_state = 3}, + [2078] = {.lex_state = 57, .external_lex_state = 3}, + [2079] = {.lex_state = 0, .external_lex_state = 3}, + [2080] = {.lex_state = 4, .external_lex_state = 3}, + [2081] = {.lex_state = 0, .external_lex_state = 3}, + [2082] = {.lex_state = 7, .external_lex_state = 3}, + [2083] = {.lex_state = 0, .external_lex_state = 3}, + [2084] = {.lex_state = 7, .external_lex_state = 3}, + [2085] = {.lex_state = 0, .external_lex_state = 3}, + [2086] = {.lex_state = 0, .external_lex_state = 3}, + [2087] = {.lex_state = 0, .external_lex_state = 3}, + [2088] = {.lex_state = 0, .external_lex_state = 3}, + [2089] = {.lex_state = 57, .external_lex_state = 3}, + [2090] = {.lex_state = 7, .external_lex_state = 3}, + [2091] = {.lex_state = 57, .external_lex_state = 3}, + [2092] = {.lex_state = 0, .external_lex_state = 3}, + [2093] = {.lex_state = 0, .external_lex_state = 3}, + [2094] = {.lex_state = 0, .external_lex_state = 3}, + [2095] = {.lex_state = 0, .external_lex_state = 3}, + [2096] = {.lex_state = 0, .external_lex_state = 3}, + [2097] = {.lex_state = 0, .external_lex_state = 3}, + [2098] = {.lex_state = 0, .external_lex_state = 3}, + [2099] = {.lex_state = 0, .external_lex_state = 3}, + [2100] = {.lex_state = 17, .external_lex_state = 3}, + [2101] = {.lex_state = 57, .external_lex_state = 3}, + [2102] = {.lex_state = 57, .external_lex_state = 3}, + [2103] = {.lex_state = 0, .external_lex_state = 3}, + [2104] = {.lex_state = 0, .external_lex_state = 3}, + [2105] = {.lex_state = 0, .external_lex_state = 3}, + [2106] = {.lex_state = 7, .external_lex_state = 3}, + [2107] = {.lex_state = 0, .external_lex_state = 3}, + [2108] = {.lex_state = 0, .external_lex_state = 3}, + [2109] = {.lex_state = 17, .external_lex_state = 3}, + [2110] = {.lex_state = 57, .external_lex_state = 3}, + [2111] = {.lex_state = 17, .external_lex_state = 3}, + [2112] = {.lex_state = 0, .external_lex_state = 3}, + [2113] = {.lex_state = 57, .external_lex_state = 3}, + [2114] = {.lex_state = 17, .external_lex_state = 3}, + [2115] = {.lex_state = 57, .external_lex_state = 3}, + [2116] = {.lex_state = 0, .external_lex_state = 3}, + [2117] = {.lex_state = 0, .external_lex_state = 3}, + [2118] = {.lex_state = 57, .external_lex_state = 3}, + [2119] = {.lex_state = 0, .external_lex_state = 3}, + [2120] = {.lex_state = 7, .external_lex_state = 3}, + [2121] = {.lex_state = 0, .external_lex_state = 3}, + [2122] = {.lex_state = 0, .external_lex_state = 3}, + [2123] = {.lex_state = 0, .external_lex_state = 3}, + [2124] = {.lex_state = 0, .external_lex_state = 3}, + [2125] = {.lex_state = 0, .external_lex_state = 3}, + [2126] = {.lex_state = 57, .external_lex_state = 3}, + [2127] = {.lex_state = 0, .external_lex_state = 3}, + [2128] = {.lex_state = 0, .external_lex_state = 3}, + [2129] = {.lex_state = 57, .external_lex_state = 3}, + [2130] = {.lex_state = 0, .external_lex_state = 3}, + [2131] = {.lex_state = 0, .external_lex_state = 3}, + [2132] = {.lex_state = 0, .external_lex_state = 3}, + [2133] = {.lex_state = 0, .external_lex_state = 3}, + [2134] = {.lex_state = 0, .external_lex_state = 3}, + [2135] = {.lex_state = 0, .external_lex_state = 3}, + [2136] = {.lex_state = 0, .external_lex_state = 3}, + [2137] = {.lex_state = 7, .external_lex_state = 3}, + [2138] = {.lex_state = 0, .external_lex_state = 3}, + [2139] = {.lex_state = 0, .external_lex_state = 3}, + [2140] = {.lex_state = 0, .external_lex_state = 3}, + [2141] = {.lex_state = 0, .external_lex_state = 3}, + [2142] = {.lex_state = 0, .external_lex_state = 3}, + [2143] = {.lex_state = 57, .external_lex_state = 3}, + [2144] = {.lex_state = 7, .external_lex_state = 3}, + [2145] = {.lex_state = 0, .external_lex_state = 3}, + [2146] = {.lex_state = 57, .external_lex_state = 3}, + [2147] = {.lex_state = 0, .external_lex_state = 5}, + [2148] = {.lex_state = 0, .external_lex_state = 3}, + [2149] = {.lex_state = 0, .external_lex_state = 3}, + [2150] = {.lex_state = 0, .external_lex_state = 3}, + [2151] = {.lex_state = 0, .external_lex_state = 3}, + [2152] = {.lex_state = 0, .external_lex_state = 3}, + [2153] = {.lex_state = 7, .external_lex_state = 3}, + [2154] = {.lex_state = 0, .external_lex_state = 3}, + [2155] = {.lex_state = 0, .external_lex_state = 3}, + [2156] = {.lex_state = 0, .external_lex_state = 3}, + [2157] = {.lex_state = 0, .external_lex_state = 3}, + [2158] = {.lex_state = 0, .external_lex_state = 3}, + [2159] = {.lex_state = 0, .external_lex_state = 3}, + [2160] = {.lex_state = 7, .external_lex_state = 3}, + [2161] = {.lex_state = 0, .external_lex_state = 3}, + [2162] = {.lex_state = 0, .external_lex_state = 3}, + [2163] = {.lex_state = 57, .external_lex_state = 3}, + [2164] = {.lex_state = 0, .external_lex_state = 3}, + [2165] = {.lex_state = 0, .external_lex_state = 3}, + [2166] = {.lex_state = 7, .external_lex_state = 3}, + [2167] = {.lex_state = 0, .external_lex_state = 3}, + [2168] = {.lex_state = 0, .external_lex_state = 3}, + [2169] = {.lex_state = 0, .external_lex_state = 3}, + [2170] = {.lex_state = 57, .external_lex_state = 3}, + [2171] = {.lex_state = 0, .external_lex_state = 3}, + [2172] = {.lex_state = 0, .external_lex_state = 3}, + [2173] = {.lex_state = 0, .external_lex_state = 3}, + [2174] = {.lex_state = 0, .external_lex_state = 3}, + [2175] = {.lex_state = 57, .external_lex_state = 3}, + [2176] = {.lex_state = 57, .external_lex_state = 3}, + [2177] = {.lex_state = 0, .external_lex_state = 3}, + [2178] = {.lex_state = 0, .external_lex_state = 3}, + [2179] = {.lex_state = 0, .external_lex_state = 3}, + [2180] = {.lex_state = 7, .external_lex_state = 3}, + [2181] = {.lex_state = 0, .external_lex_state = 3}, + [2182] = {.lex_state = 57, .external_lex_state = 3}, + [2183] = {.lex_state = 0, .external_lex_state = 3}, + [2184] = {.lex_state = 57, .external_lex_state = 3}, + [2185] = {.lex_state = 0, .external_lex_state = 3}, + [2186] = {.lex_state = 0, .external_lex_state = 3}, + [2187] = {.lex_state = 7, .external_lex_state = 3}, + [2188] = {.lex_state = 0, .external_lex_state = 3}, + [2189] = {.lex_state = 0, .external_lex_state = 3}, + [2190] = {.lex_state = 0, .external_lex_state = 3}, + [2191] = {.lex_state = 0, .external_lex_state = 3}, + [2192] = {.lex_state = 0, .external_lex_state = 3}, + [2193] = {.lex_state = 0, .external_lex_state = 3}, + [2194] = {.lex_state = 57, .external_lex_state = 3}, + [2195] = {.lex_state = 57, .external_lex_state = 3}, + [2196] = {.lex_state = 0, .external_lex_state = 3}, + [2197] = {.lex_state = 0, .external_lex_state = 3}, + [2198] = {.lex_state = 0, .external_lex_state = 3}, + [2199] = {.lex_state = 0, .external_lex_state = 3}, + [2200] = {.lex_state = 57, .external_lex_state = 3}, + [2201] = {.lex_state = 7, .external_lex_state = 3}, + [2202] = {.lex_state = 0, .external_lex_state = 3}, + [2203] = {.lex_state = 17, .external_lex_state = 3}, + [2204] = {.lex_state = 7, .external_lex_state = 3}, + [2205] = {.lex_state = 57, .external_lex_state = 3}, + [2206] = {.lex_state = 0, .external_lex_state = 3}, + [2207] = {.lex_state = 0, .external_lex_state = 3}, + [2208] = {.lex_state = 7, .external_lex_state = 3}, + [2209] = {.lex_state = 7, .external_lex_state = 3}, + [2210] = {.lex_state = 7, .external_lex_state = 3}, + [2211] = {.lex_state = 7, .external_lex_state = 3}, + [2212] = {.lex_state = 0, .external_lex_state = 3}, + [2213] = {.lex_state = 7, .external_lex_state = 3}, + [2214] = {.lex_state = 7, .external_lex_state = 3}, + [2215] = {.lex_state = 7, .external_lex_state = 3}, + [2216] = {.lex_state = 0, .external_lex_state = 3}, + [2217] = {.lex_state = 7, .external_lex_state = 3}, + [2218] = {.lex_state = 7, .external_lex_state = 3}, + [2219] = {.lex_state = 0, .external_lex_state = 3}, + [2220] = {.lex_state = 7, .external_lex_state = 3}, + [2221] = {.lex_state = 7, .external_lex_state = 3}, + [2222] = {.lex_state = 0, .external_lex_state = 3}, + [2223] = {.lex_state = 7, .external_lex_state = 3}, + [2224] = {.lex_state = 7, .external_lex_state = 3}, + [2225] = {.lex_state = 7, .external_lex_state = 3}, + [2226] = {.lex_state = 57, .external_lex_state = 3}, + [2227] = {.lex_state = 7, .external_lex_state = 3}, + [2228] = {.lex_state = 10, .external_lex_state = 3}, + [2229] = {.lex_state = 7, .external_lex_state = 3}, + [2230] = {.lex_state = 7, .external_lex_state = 3}, + [2231] = {.lex_state = 0, .external_lex_state = 3}, + [2232] = {.lex_state = 7, .external_lex_state = 3}, + [2233] = {.lex_state = 7, .external_lex_state = 3}, + [2234] = {.lex_state = 0, .external_lex_state = 3}, + [2235] = {.lex_state = 57, .external_lex_state = 3}, + [2236] = {.lex_state = 0, .external_lex_state = 3}, + [2237] = {.lex_state = 7, .external_lex_state = 3}, + [2238] = {.lex_state = 7, .external_lex_state = 3}, + [2239] = {.lex_state = 7, .external_lex_state = 3}, + [2240] = {.lex_state = 7, .external_lex_state = 3}, + [2241] = {.lex_state = 7, .external_lex_state = 3}, + [2242] = {.lex_state = 0, .external_lex_state = 3}, + [2243] = {.lex_state = 0, .external_lex_state = 3}, + [2244] = {.lex_state = 0, .external_lex_state = 3}, + [2245] = {.lex_state = 0, .external_lex_state = 3}, + [2246] = {.lex_state = 0, .external_lex_state = 3}, + [2247] = {.lex_state = 7, .external_lex_state = 3}, + [2248] = {.lex_state = 0, .external_lex_state = 3}, + [2249] = {.lex_state = 7, .external_lex_state = 3}, + [2250] = {.lex_state = 7, .external_lex_state = 3}, + [2251] = {.lex_state = 10, .external_lex_state = 3}, + [2252] = {.lex_state = 0, .external_lex_state = 3}, + [2253] = {.lex_state = 0, .external_lex_state = 3}, + [2254] = {.lex_state = 0, .external_lex_state = 3}, + [2255] = {.lex_state = 7, .external_lex_state = 3}, + [2256] = {.lex_state = 7, .external_lex_state = 3}, + [2257] = {.lex_state = 7, .external_lex_state = 3}, + [2258] = {.lex_state = 7, .external_lex_state = 3}, + [2259] = {.lex_state = 7, .external_lex_state = 3}, + [2260] = {.lex_state = 7, .external_lex_state = 3}, + [2261] = {.lex_state = 7, .external_lex_state = 3}, + [2262] = {.lex_state = 7, .external_lex_state = 3}, + [2263] = {.lex_state = 7, .external_lex_state = 3}, + [2264] = {.lex_state = 7, .external_lex_state = 3}, + [2265] = {.lex_state = 0, .external_lex_state = 3}, + [2266] = {.lex_state = 0, .external_lex_state = 3}, + [2267] = {.lex_state = 7, .external_lex_state = 3}, + [2268] = {.lex_state = 7, .external_lex_state = 3}, + [2269] = {.lex_state = 10, .external_lex_state = 3}, + [2270] = {.lex_state = 7, .external_lex_state = 3}, + [2271] = {.lex_state = 0, .external_lex_state = 3}, + [2272] = {.lex_state = 7, .external_lex_state = 3}, + [2273] = {.lex_state = 7, .external_lex_state = 3}, + [2274] = {.lex_state = 7, .external_lex_state = 3}, + [2275] = {.lex_state = 0, .external_lex_state = 3}, + [2276] = {.lex_state = 7, .external_lex_state = 3}, + [2277] = {.lex_state = 7, .external_lex_state = 3}, + [2278] = {.lex_state = 0, .external_lex_state = 3}, + [2279] = {.lex_state = 7, .external_lex_state = 3}, + [2280] = {.lex_state = 7, .external_lex_state = 3}, + [2281] = {.lex_state = 57, .external_lex_state = 3}, + [2282] = {.lex_state = 0, .external_lex_state = 3}, + [2283] = {.lex_state = 7, .external_lex_state = 3}, + [2284] = {.lex_state = 7, .external_lex_state = 3}, + [2285] = {.lex_state = 0, .external_lex_state = 3}, + [2286] = {.lex_state = 0, .external_lex_state = 3}, + [2287] = {.lex_state = 0, .external_lex_state = 3}, + [2288] = {.lex_state = 0, .external_lex_state = 3}, + [2289] = {.lex_state = 0, .external_lex_state = 3}, + [2290] = {.lex_state = 0, .external_lex_state = 3}, + [2291] = {.lex_state = 7, .external_lex_state = 3}, + [2292] = {.lex_state = 7, .external_lex_state = 3}, + [2293] = {.lex_state = 0, .external_lex_state = 3}, + [2294] = {.lex_state = 0, .external_lex_state = 3}, + [2295] = {.lex_state = 0, .external_lex_state = 3}, + [2296] = {.lex_state = 7, .external_lex_state = 3}, + [2297] = {.lex_state = 0, .external_lex_state = 3}, + [2298] = {.lex_state = 57, .external_lex_state = 3}, + [2299] = {.lex_state = 0, .external_lex_state = 3}, + [2300] = {.lex_state = 7, .external_lex_state = 3}, + [2301] = {.lex_state = 7, .external_lex_state = 3}, + [2302] = {.lex_state = 0, .external_lex_state = 3}, + [2303] = {.lex_state = 7, .external_lex_state = 3}, + [2304] = {.lex_state = 7, .external_lex_state = 3}, + [2305] = {.lex_state = 10, .external_lex_state = 3}, + [2306] = {.lex_state = 0, .external_lex_state = 3}, + [2307] = {.lex_state = 7, .external_lex_state = 3}, + [2308] = {.lex_state = 7, .external_lex_state = 3}, + [2309] = {.lex_state = 7, .external_lex_state = 3}, + [2310] = {.lex_state = 0, .external_lex_state = 3}, + [2311] = {.lex_state = 0, .external_lex_state = 3}, + [2312] = {.lex_state = 7, .external_lex_state = 3}, + [2313] = {.lex_state = 7, .external_lex_state = 3}, + [2314] = {.lex_state = 10, .external_lex_state = 3}, + [2315] = {.lex_state = 0, .external_lex_state = 3}, + [2316] = {.lex_state = 0, .external_lex_state = 3}, + [2317] = {.lex_state = 7, .external_lex_state = 3}, + [2318] = {.lex_state = 0, .external_lex_state = 3}, + [2319] = {.lex_state = 0, .external_lex_state = 3}, + [2320] = {.lex_state = 7, .external_lex_state = 3}, + [2321] = {.lex_state = 7, .external_lex_state = 3}, + [2322] = {.lex_state = 7, .external_lex_state = 3}, + [2323] = {.lex_state = 7, .external_lex_state = 3}, + [2324] = {.lex_state = 7, .external_lex_state = 3}, + [2325] = {.lex_state = 7, .external_lex_state = 3}, + [2326] = {.lex_state = 0, .external_lex_state = 3}, + [2327] = {.lex_state = 10, .external_lex_state = 3}, + [2328] = {.lex_state = 0, .external_lex_state = 3}, + [2329] = {.lex_state = 0, .external_lex_state = 3}, + [2330] = {.lex_state = 7, .external_lex_state = 3}, + [2331] = {.lex_state = 0, .external_lex_state = 3}, + [2332] = {.lex_state = 0, .external_lex_state = 3}, + [2333] = {.lex_state = 7, .external_lex_state = 3}, + [2334] = {.lex_state = 7, .external_lex_state = 3}, + [2335] = {.lex_state = 7, .external_lex_state = 3}, + [2336] = {.lex_state = 7, .external_lex_state = 3}, + [2337] = {.lex_state = 7, .external_lex_state = 3}, + [2338] = {.lex_state = 10, .external_lex_state = 3}, + [2339] = {.lex_state = 0, .external_lex_state = 3}, + [2340] = {.lex_state = 0, .external_lex_state = 3}, + [2341] = {.lex_state = 0, .external_lex_state = 3}, + [2342] = {.lex_state = 0, .external_lex_state = 3}, + [2343] = {.lex_state = 10, .external_lex_state = 3}, + [2344] = {.lex_state = 0, .external_lex_state = 3}, + [2345] = {.lex_state = 0, .external_lex_state = 3}, + [2346] = {.lex_state = 0, .external_lex_state = 3}, + [2347] = {.lex_state = 7, .external_lex_state = 3}, + [2348] = {.lex_state = 7, .external_lex_state = 3}, + [2349] = {.lex_state = 0, .external_lex_state = 3}, + [2350] = {.lex_state = 0, .external_lex_state = 3}, + [2351] = {.lex_state = 0, .external_lex_state = 3}, + [2352] = {.lex_state = 0, .external_lex_state = 3}, + [2353] = {.lex_state = 0, .external_lex_state = 3}, + [2354] = {.lex_state = 7, .external_lex_state = 3}, + [2355] = {.lex_state = 7, .external_lex_state = 3}, + [2356] = {.lex_state = 7, .external_lex_state = 3}, + [2357] = {.lex_state = 7, .external_lex_state = 3}, + [2358] = {.lex_state = 7, .external_lex_state = 3}, + [2359] = {.lex_state = 0, .external_lex_state = 3}, + [2360] = {.lex_state = 0, .external_lex_state = 3}, + [2361] = {.lex_state = 0, .external_lex_state = 3}, + [2362] = {.lex_state = 0, .external_lex_state = 3}, + [2363] = {.lex_state = 0, .external_lex_state = 3}, + [2364] = {.lex_state = 0, .external_lex_state = 3}, + [2365] = {.lex_state = 0, .external_lex_state = 3}, + [2366] = {.lex_state = 0, .external_lex_state = 3}, + [2367] = {.lex_state = 7, .external_lex_state = 3}, + [2368] = {.lex_state = 0, .external_lex_state = 3}, + [2369] = {.lex_state = 0, .external_lex_state = 3}, + [2370] = {.lex_state = 7, .external_lex_state = 3}, + [2371] = {.lex_state = 0, .external_lex_state = 3}, + [2372] = {.lex_state = 0, .external_lex_state = 3}, + [2373] = {.lex_state = 0, .external_lex_state = 3}, + [2374] = {.lex_state = 10, .external_lex_state = 3}, + [2375] = {.lex_state = 0, .external_lex_state = 3}, + [2376] = {.lex_state = 10, .external_lex_state = 3}, + [2377] = {.lex_state = 0, .external_lex_state = 3}, + [2378] = {.lex_state = 7, .external_lex_state = 3}, + [2379] = {.lex_state = 0, .external_lex_state = 3}, + [2380] = {.lex_state = 0, .external_lex_state = 3}, + [2381] = {.lex_state = 10, .external_lex_state = 3}, + [2382] = {.lex_state = 0, .external_lex_state = 3}, + [2383] = {.lex_state = 0, .external_lex_state = 3}, + [2384] = {.lex_state = 0, .external_lex_state = 3}, + [2385] = {.lex_state = 0, .external_lex_state = 3}, + [2386] = {.lex_state = 0, .external_lex_state = 3}, + [2387] = {.lex_state = 7, .external_lex_state = 3}, + [2388] = {.lex_state = 10, .external_lex_state = 3}, + [2389] = {.lex_state = 0, .external_lex_state = 3}, + [2390] = {.lex_state = 10, .external_lex_state = 3}, + [2391] = {.lex_state = 0, .external_lex_state = 3}, + [2392] = {.lex_state = 0, .external_lex_state = 3}, + [2393] = {.lex_state = 0, .external_lex_state = 3}, + [2394] = {.lex_state = 0, .external_lex_state = 3}, + [2395] = {.lex_state = 0, .external_lex_state = 3}, + [2396] = {.lex_state = 10, .external_lex_state = 3}, + [2397] = {.lex_state = 0, .external_lex_state = 3}, + [2398] = {.lex_state = 0, .external_lex_state = 3}, + [2399] = {.lex_state = 10, .external_lex_state = 3}, + [2400] = {.lex_state = 0, .external_lex_state = 3}, + [2401] = {.lex_state = 0, .external_lex_state = 3}, + [2402] = {.lex_state = 7, .external_lex_state = 3}, + [2403] = {.lex_state = 0, .external_lex_state = 3}, + [2404] = {.lex_state = 0, .external_lex_state = 3}, + [2405] = {.lex_state = 10, .external_lex_state = 3}, + [2406] = {.lex_state = 10, .external_lex_state = 3}, + [2407] = {.lex_state = 10, .external_lex_state = 3}, + [2408] = {.lex_state = 0, .external_lex_state = 3}, + [2409] = {.lex_state = 0, .external_lex_state = 3}, + [2410] = {.lex_state = 0, .external_lex_state = 3}, + [2411] = {.lex_state = 0, .external_lex_state = 3}, + [2412] = {.lex_state = 0, .external_lex_state = 3}, + [2413] = {.lex_state = 0, .external_lex_state = 3}, + [2414] = {.lex_state = 7, .external_lex_state = 3}, + [2415] = {.lex_state = 0, .external_lex_state = 3}, + [2416] = {.lex_state = 7, .external_lex_state = 3}, + [2417] = {.lex_state = 7, .external_lex_state = 3}, + [2418] = {.lex_state = 0, .external_lex_state = 3}, + [2419] = {.lex_state = 7, .external_lex_state = 3}, + [2420] = {.lex_state = 0, .external_lex_state = 3}, + [2421] = {.lex_state = 7, .external_lex_state = 3}, + [2422] = {.lex_state = 0, .external_lex_state = 3}, + [2423] = {.lex_state = 7, .external_lex_state = 3}, + [2424] = {.lex_state = 7, .external_lex_state = 3}, + [2425] = {.lex_state = 7, .external_lex_state = 3}, + [2426] = {.lex_state = 7, .external_lex_state = 3}, + [2427] = {.lex_state = 7, .external_lex_state = 3}, + [2428] = {.lex_state = 7, .external_lex_state = 3}, + [2429] = {.lex_state = 0, .external_lex_state = 3}, + [2430] = {.lex_state = 7, .external_lex_state = 3}, + [2431] = {.lex_state = 7, .external_lex_state = 3}, + [2432] = {.lex_state = 7, .external_lex_state = 3}, + [2433] = {.lex_state = 0, .external_lex_state = 3}, + [2434] = {.lex_state = 7, .external_lex_state = 3}, +}; + +enum { + ts_external_token__string_content = 0, + ts_external_token_raw_string_literal = 1, + ts_external_token_float_literal = 2, + ts_external_token_block_comment = 3, +}; + +static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__string_content] = sym__string_content, + [ts_external_token_raw_string_literal] = sym_raw_string_literal, + [ts_external_token_float_literal] = sym_float_literal, + [ts_external_token_block_comment] = sym_block_comment, +}; + +static bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__string_content] = true, + [ts_external_token_raw_string_literal] = true, + [ts_external_token_float_literal] = true, + [ts_external_token_block_comment] = true, + }, + [2] = { + [ts_external_token_raw_string_literal] = true, + [ts_external_token_float_literal] = true, + [ts_external_token_block_comment] = true, + }, + [3] = { + [ts_external_token_block_comment] = true, + }, + [4] = { + [ts_external_token__string_content] = true, + [ts_external_token_block_comment] = true, + }, + [5] = { + [ts_external_token_float_literal] = true, + [ts_external_token_block_comment] = true, + }, +}; + +static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym_identifier] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_macro_rules_BANG] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_EQ_GT] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_DOLLAR] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_block] = ACTIONS(1), + [anon_sym_expr] = ACTIONS(1), + [anon_sym_ident] = ACTIONS(1), + [anon_sym_item] = ACTIONS(1), + [anon_sym_lifetime] = ACTIONS(1), + [anon_sym_literal] = ACTIONS(1), + [anon_sym_meta] = ACTIONS(1), + [anon_sym_pat] = ACTIONS(1), + [anon_sym_path] = ACTIONS(1), + [anon_sym_stmt] = ACTIONS(1), + [anon_sym_tt] = ACTIONS(1), + [anon_sym_ty] = ACTIONS(1), + [anon_sym_vis] = ACTIONS(1), + [anon_sym_u8] = ACTIONS(1), + [anon_sym_i8] = ACTIONS(1), + [anon_sym_u16] = ACTIONS(1), + [anon_sym_i16] = ACTIONS(1), + [anon_sym_u32] = ACTIONS(1), + [anon_sym_i32] = ACTIONS(1), + [anon_sym_u64] = ACTIONS(1), + [anon_sym_i64] = ACTIONS(1), + [anon_sym_u128] = ACTIONS(1), + [anon_sym_i128] = ACTIONS(1), + [anon_sym_isize] = ACTIONS(1), + [anon_sym_usize] = ACTIONS(1), + [anon_sym_f32] = ACTIONS(1), + [anon_sym_f64] = ACTIONS(1), + [anon_sym_bool] = ACTIONS(1), + [anon_sym_str] = ACTIONS(1), + [anon_sym_char] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_as] = ACTIONS(1), + [anon_sym_async] = ACTIONS(1), + [anon_sym_await] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_default] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_fn] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_impl] = ACTIONS(1), + [anon_sym_let] = ACTIONS(1), + [anon_sym_loop] = ACTIONS(1), + [anon_sym_match] = ACTIONS(1), + [anon_sym_mod] = ACTIONS(1), + [anon_sym_pub] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_trait] = ACTIONS(1), + [anon_sym_type] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_unsafe] = ACTIONS(1), + [anon_sym_use] = ACTIONS(1), + [anon_sym_where] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_POUND] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_ref] = ACTIONS(1), + [anon_sym_DASH_GT] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_COLON_COLON] = ACTIONS(1), + [anon_sym__] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), + [anon_sym_LT2] = ACTIONS(1), + [anon_sym_dyn] = ACTIONS(1), + [sym_mutable_specifier] = ACTIONS(1), + [anon_sym_DOT_DOT] = ACTIONS(1), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_AMP_AMP] = ACTIONS(1), + [anon_sym_PIPE_PIPE] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_AMP_EQ] = ACTIONS(1), + [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_GT_GT_EQ] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_move] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [sym_integer_literal] = ACTIONS(1), + [aux_sym_string_literal_token1] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [sym_char_literal] = ACTIONS(1), + [sym_escape_sequence] = ACTIONS(1), + [anon_sym_true] = ACTIONS(1), + [anon_sym_false] = ACTIONS(1), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1), + [sym_super] = ACTIONS(1), + [sym_crate] = ACTIONS(1), + [sym_metavariable] = ACTIONS(1), + [sym__string_content] = ACTIONS(1), + [sym_raw_string_literal] = ACTIONS(1), + [sym_float_literal] = ACTIONS(1), + [sym_block_comment] = ACTIONS(3), + }, + [1] = { + [sym_source_file] = STATE(2350), + [sym__statement] = STATE(2), + [sym_empty_statement] = STATE(2), + [sym__expression_statement] = STATE(2), + [sym_macro_definition] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_mod_item] = STATE(2), + [sym_foreign_mod_item] = STATE(2), + [sym_struct_item] = STATE(2), + [sym_union_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_extern_crate_declaration] = STATE(2), + [sym_const_item] = STATE(2), + [sym_static_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_function_modifiers] = STATE(2347), + [sym_impl_item] = STATE(2), + [sym_trait_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_extern_modifier] = STATE(1427), + [sym_visibility_modifier] = STATE(1260), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1173), + [sym_macro_invocation] = STATE(57), + [sym_scoped_identifier] = STATE(1090), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2338), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [ts_builtin_sym_end] = ACTIONS(5), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [2] = { + [sym__statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym__expression_statement] = STATE(9), + [sym_macro_definition] = STATE(9), + [sym_attribute_item] = STATE(9), + [sym_inner_attribute_item] = STATE(9), + [sym_mod_item] = STATE(9), + [sym_foreign_mod_item] = STATE(9), + [sym_struct_item] = STATE(9), + [sym_union_item] = STATE(9), + [sym_enum_item] = STATE(9), + [sym_extern_crate_declaration] = STATE(9), + [sym_const_item] = STATE(9), + [sym_static_item] = STATE(9), + [sym_type_item] = STATE(9), + [sym_function_item] = STATE(9), + [sym_function_signature_item] = STATE(9), + [sym_function_modifiers] = STATE(2347), + [sym_impl_item] = STATE(9), + [sym_trait_item] = STATE(9), + [sym_associated_type] = STATE(9), + [sym_let_declaration] = STATE(9), + [sym_use_declaration] = STATE(9), + [sym_extern_modifier] = STATE(1427), + [sym_visibility_modifier] = STATE(1260), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1173), + [sym_macro_invocation] = STATE(57), + [sym_scoped_identifier] = STATE(1090), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2338), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [ts_builtin_sym_end] = ACTIONS(103), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [3] = { + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym__expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2347), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_extern_modifier] = STATE(1427), + [sym_visibility_modifier] = STATE(1260), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1139), + [sym_macro_invocation] = STATE(57), + [sym_scoped_identifier] = STATE(1090), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2338), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [4] = { + [sym__statement] = STATE(11), + [sym_empty_statement] = STATE(11), + [sym__expression_statement] = STATE(11), + [sym_macro_definition] = STATE(11), + [sym_attribute_item] = STATE(11), + [sym_inner_attribute_item] = STATE(11), + [sym_mod_item] = STATE(11), + [sym_foreign_mod_item] = STATE(11), + [sym_struct_item] = STATE(11), + [sym_union_item] = STATE(11), + [sym_enum_item] = STATE(11), + [sym_extern_crate_declaration] = STATE(11), + [sym_const_item] = STATE(11), + [sym_static_item] = STATE(11), + [sym_type_item] = STATE(11), + [sym_function_item] = STATE(11), + [sym_function_signature_item] = STATE(11), + [sym_function_modifiers] = STATE(2347), + [sym_impl_item] = STATE(11), + [sym_trait_item] = STATE(11), + [sym_associated_type] = STATE(11), + [sym_let_declaration] = STATE(11), + [sym_use_declaration] = STATE(11), + [sym_extern_modifier] = STATE(1427), + [sym_visibility_modifier] = STATE(1260), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1115), + [sym_macro_invocation] = STATE(57), + [sym_scoped_identifier] = STATE(1090), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2338), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [5] = { + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym__expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2347), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_extern_modifier] = STATE(1427), + [sym_visibility_modifier] = STATE(1260), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1131), + [sym_macro_invocation] = STATE(57), + [sym_scoped_identifier] = STATE(1090), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2338), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [6] = { + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym__expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2347), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_extern_modifier] = STATE(1427), + [sym_visibility_modifier] = STATE(1260), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1146), + [sym_macro_invocation] = STATE(57), + [sym_scoped_identifier] = STATE(1090), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2338), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [7] = { + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym__expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2347), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_extern_modifier] = STATE(1427), + [sym_visibility_modifier] = STATE(1260), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1173), + [sym_macro_invocation] = STATE(73), + [sym_scoped_identifier] = STATE(1090), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2338), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(116), + [anon_sym_macro_rules_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_LBRACK] = ACTIONS(130), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_u8] = ACTIONS(136), + [anon_sym_i8] = ACTIONS(136), + [anon_sym_u16] = ACTIONS(136), + [anon_sym_i16] = ACTIONS(136), + [anon_sym_u32] = ACTIONS(136), + [anon_sym_i32] = ACTIONS(136), + [anon_sym_u64] = ACTIONS(136), + [anon_sym_i64] = ACTIONS(136), + [anon_sym_u128] = ACTIONS(136), + [anon_sym_i128] = ACTIONS(136), + [anon_sym_isize] = ACTIONS(136), + [anon_sym_usize] = ACTIONS(136), + [anon_sym_f32] = ACTIONS(136), + [anon_sym_f64] = ACTIONS(136), + [anon_sym_bool] = ACTIONS(136), + [anon_sym_str] = ACTIONS(136), + [anon_sym_char] = ACTIONS(136), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_async] = ACTIONS(142), + [anon_sym_break] = ACTIONS(145), + [anon_sym_const] = ACTIONS(148), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_default] = ACTIONS(154), + [anon_sym_enum] = ACTIONS(157), + [anon_sym_fn] = ACTIONS(160), + [anon_sym_for] = ACTIONS(163), + [anon_sym_if] = ACTIONS(166), + [anon_sym_impl] = ACTIONS(169), + [anon_sym_let] = ACTIONS(172), + [anon_sym_loop] = ACTIONS(175), + [anon_sym_match] = ACTIONS(178), + [anon_sym_mod] = ACTIONS(181), + [anon_sym_pub] = ACTIONS(184), + [anon_sym_return] = ACTIONS(187), + [anon_sym_static] = ACTIONS(190), + [anon_sym_struct] = ACTIONS(193), + [anon_sym_trait] = ACTIONS(196), + [anon_sym_type] = ACTIONS(199), + [anon_sym_union] = ACTIONS(202), + [anon_sym_unsafe] = ACTIONS(205), + [anon_sym_use] = ACTIONS(208), + [anon_sym_while] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(214), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(220), + [anon_sym_COLON_COLON] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(226), + [anon_sym_DOT_DOT] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(232), + [anon_sym_move] = ACTIONS(235), + [sym_integer_literal] = ACTIONS(238), + [aux_sym_string_literal_token1] = ACTIONS(241), + [sym_char_literal] = ACTIONS(238), + [anon_sym_true] = ACTIONS(244), + [anon_sym_false] = ACTIONS(244), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(247), + [sym_super] = ACTIONS(250), + [sym_crate] = ACTIONS(253), + [sym_metavariable] = ACTIONS(256), + [sym_raw_string_literal] = ACTIONS(238), + [sym_float_literal] = ACTIONS(238), + [sym_block_comment] = ACTIONS(3), + }, + [8] = { + [sym__statement] = STATE(6), + [sym_empty_statement] = STATE(6), + [sym__expression_statement] = STATE(6), + [sym_macro_definition] = STATE(6), + [sym_attribute_item] = STATE(6), + [sym_inner_attribute_item] = STATE(6), + [sym_mod_item] = STATE(6), + [sym_foreign_mod_item] = STATE(6), + [sym_struct_item] = STATE(6), + [sym_union_item] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_extern_crate_declaration] = STATE(6), + [sym_const_item] = STATE(6), + [sym_static_item] = STATE(6), + [sym_type_item] = STATE(6), + [sym_function_item] = STATE(6), + [sym_function_signature_item] = STATE(6), + [sym_function_modifiers] = STATE(2347), + [sym_impl_item] = STATE(6), + [sym_trait_item] = STATE(6), + [sym_associated_type] = STATE(6), + [sym_let_declaration] = STATE(6), + [sym_use_declaration] = STATE(6), + [sym_extern_modifier] = STATE(1427), + [sym_visibility_modifier] = STATE(1260), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1127), + [sym_macro_invocation] = STATE(57), + [sym_scoped_identifier] = STATE(1090), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2338), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [9] = { + [sym__statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym__expression_statement] = STATE(9), + [sym_macro_definition] = STATE(9), + [sym_attribute_item] = STATE(9), + [sym_inner_attribute_item] = STATE(9), + [sym_mod_item] = STATE(9), + [sym_foreign_mod_item] = STATE(9), + [sym_struct_item] = STATE(9), + [sym_union_item] = STATE(9), + [sym_enum_item] = STATE(9), + [sym_extern_crate_declaration] = STATE(9), + [sym_const_item] = STATE(9), + [sym_static_item] = STATE(9), + [sym_type_item] = STATE(9), + [sym_function_item] = STATE(9), + [sym_function_signature_item] = STATE(9), + [sym_function_modifiers] = STATE(2347), + [sym_impl_item] = STATE(9), + [sym_trait_item] = STATE(9), + [sym_associated_type] = STATE(9), + [sym_let_declaration] = STATE(9), + [sym_use_declaration] = STATE(9), + [sym_extern_modifier] = STATE(1427), + [sym_visibility_modifier] = STATE(1260), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1173), + [sym_macro_invocation] = STATE(57), + [sym_scoped_identifier] = STATE(1090), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2338), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [ts_builtin_sym_end] = ACTIONS(128), + [sym_identifier] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(116), + [anon_sym_macro_rules_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(130), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_u8] = ACTIONS(136), + [anon_sym_i8] = ACTIONS(136), + [anon_sym_u16] = ACTIONS(136), + [anon_sym_i16] = ACTIONS(136), + [anon_sym_u32] = ACTIONS(136), + [anon_sym_i32] = ACTIONS(136), + [anon_sym_u64] = ACTIONS(136), + [anon_sym_i64] = ACTIONS(136), + [anon_sym_u128] = ACTIONS(136), + [anon_sym_i128] = ACTIONS(136), + [anon_sym_isize] = ACTIONS(136), + [anon_sym_usize] = ACTIONS(136), + [anon_sym_f32] = ACTIONS(136), + [anon_sym_f64] = ACTIONS(136), + [anon_sym_bool] = ACTIONS(136), + [anon_sym_str] = ACTIONS(136), + [anon_sym_char] = ACTIONS(136), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_async] = ACTIONS(142), + [anon_sym_break] = ACTIONS(145), + [anon_sym_const] = ACTIONS(148), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_default] = ACTIONS(154), + [anon_sym_enum] = ACTIONS(157), + [anon_sym_fn] = ACTIONS(160), + [anon_sym_for] = ACTIONS(163), + [anon_sym_if] = ACTIONS(166), + [anon_sym_impl] = ACTIONS(169), + [anon_sym_let] = ACTIONS(172), + [anon_sym_loop] = ACTIONS(175), + [anon_sym_match] = ACTIONS(178), + [anon_sym_mod] = ACTIONS(181), + [anon_sym_pub] = ACTIONS(184), + [anon_sym_return] = ACTIONS(187), + [anon_sym_static] = ACTIONS(190), + [anon_sym_struct] = ACTIONS(193), + [anon_sym_trait] = ACTIONS(196), + [anon_sym_type] = ACTIONS(199), + [anon_sym_union] = ACTIONS(202), + [anon_sym_unsafe] = ACTIONS(205), + [anon_sym_use] = ACTIONS(208), + [anon_sym_while] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(214), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(220), + [anon_sym_COLON_COLON] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(226), + [anon_sym_DOT_DOT] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(232), + [anon_sym_move] = ACTIONS(235), + [sym_integer_literal] = ACTIONS(238), + [aux_sym_string_literal_token1] = ACTIONS(241), + [sym_char_literal] = ACTIONS(238), + [anon_sym_true] = ACTIONS(244), + [anon_sym_false] = ACTIONS(244), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(247), + [sym_super] = ACTIONS(250), + [sym_crate] = ACTIONS(253), + [sym_metavariable] = ACTIONS(256), + [sym_raw_string_literal] = ACTIONS(238), + [sym_float_literal] = ACTIONS(238), + [sym_block_comment] = ACTIONS(3), + }, + [10] = { + [sym__statement] = STATE(5), + [sym_empty_statement] = STATE(5), + [sym__expression_statement] = STATE(5), + [sym_macro_definition] = STATE(5), + [sym_attribute_item] = STATE(5), + [sym_inner_attribute_item] = STATE(5), + [sym_mod_item] = STATE(5), + [sym_foreign_mod_item] = STATE(5), + [sym_struct_item] = STATE(5), + [sym_union_item] = STATE(5), + [sym_enum_item] = STATE(5), + [sym_extern_crate_declaration] = STATE(5), + [sym_const_item] = STATE(5), + [sym_static_item] = STATE(5), + [sym_type_item] = STATE(5), + [sym_function_item] = STATE(5), + [sym_function_signature_item] = STATE(5), + [sym_function_modifiers] = STATE(2347), + [sym_impl_item] = STATE(5), + [sym_trait_item] = STATE(5), + [sym_associated_type] = STATE(5), + [sym_let_declaration] = STATE(5), + [sym_use_declaration] = STATE(5), + [sym_extern_modifier] = STATE(1427), + [sym_visibility_modifier] = STATE(1260), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1133), + [sym_macro_invocation] = STATE(57), + [sym_scoped_identifier] = STATE(1090), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2338), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(261), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [11] = { + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym__expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2347), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_extern_modifier] = STATE(1427), + [sym_visibility_modifier] = STATE(1260), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1149), + [sym_macro_invocation] = STATE(57), + [sym_scoped_identifier] = STATE(1090), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2338), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [12] = { + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym__expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2347), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_extern_modifier] = STATE(1427), + [sym_visibility_modifier] = STATE(1260), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1136), + [sym_macro_invocation] = STATE(57), + [sym_scoped_identifier] = STATE(1090), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2338), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [13] = { + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym__expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2347), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_extern_modifier] = STATE(1427), + [sym_visibility_modifier] = STATE(1260), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1161), + [sym_macro_invocation] = STATE(57), + [sym_scoped_identifier] = STATE(1090), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2338), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [14] = { + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym__expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function_modifiers] = STATE(2347), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1427), + [sym_visibility_modifier] = STATE(1260), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1150), + [sym_macro_invocation] = STATE(57), + [sym_scoped_identifier] = STATE(1090), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2338), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [15] = { + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym__expression_statement] = STATE(12), + [sym_macro_definition] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_foreign_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_union_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_extern_crate_declaration] = STATE(12), + [sym_const_item] = STATE(12), + [sym_static_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2347), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_extern_modifier] = STATE(1427), + [sym_visibility_modifier] = STATE(1260), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1137), + [sym_macro_invocation] = STATE(57), + [sym_scoped_identifier] = STATE(1090), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2338), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [16] = { + [sym__statement] = STATE(3), + [sym_empty_statement] = STATE(3), + [sym__expression_statement] = STATE(3), + [sym_macro_definition] = STATE(3), + [sym_attribute_item] = STATE(3), + [sym_inner_attribute_item] = STATE(3), + [sym_mod_item] = STATE(3), + [sym_foreign_mod_item] = STATE(3), + [sym_struct_item] = STATE(3), + [sym_union_item] = STATE(3), + [sym_enum_item] = STATE(3), + [sym_extern_crate_declaration] = STATE(3), + [sym_const_item] = STATE(3), + [sym_static_item] = STATE(3), + [sym_type_item] = STATE(3), + [sym_function_item] = STATE(3), + [sym_function_signature_item] = STATE(3), + [sym_function_modifiers] = STATE(2347), + [sym_impl_item] = STATE(3), + [sym_trait_item] = STATE(3), + [sym_associated_type] = STATE(3), + [sym_let_declaration] = STATE(3), + [sym_use_declaration] = STATE(3), + [sym_extern_modifier] = STATE(1427), + [sym_visibility_modifier] = STATE(1260), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1141), + [sym_macro_invocation] = STATE(57), + [sym_scoped_identifier] = STATE(1090), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2338), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(273), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [17] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1026), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_EQ_GT] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(277), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_QMARK] = ACTIONS(277), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(283), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(303), + [anon_sym_EQ] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(283), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(277), + [anon_sym_DOT_DOT] = ACTIONS(283), + [anon_sym_DOT_DOT_EQ] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(277), + [anon_sym_PIPE_PIPE] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_CARET] = ACTIONS(283), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(283), + [anon_sym_GT_GT] = ACTIONS(283), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PERCENT] = ACTIONS(283), + [anon_sym_PLUS_EQ] = ACTIONS(277), + [anon_sym_DASH_EQ] = ACTIONS(277), + [anon_sym_STAR_EQ] = ACTIONS(277), + [anon_sym_SLASH_EQ] = ACTIONS(277), + [anon_sym_PERCENT_EQ] = ACTIONS(277), + [anon_sym_AMP_EQ] = ACTIONS(277), + [anon_sym_PIPE_EQ] = ACTIONS(277), + [anon_sym_CARET_EQ] = ACTIONS(277), + [anon_sym_LT_LT_EQ] = ACTIONS(277), + [anon_sym_GT_GT_EQ] = ACTIONS(277), + [anon_sym_move] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [18] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(980), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(305), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(305), + [anon_sym_EQ_GT] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_RBRACK] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_STAR] = ACTIONS(307), + [anon_sym_QMARK] = ACTIONS(305), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(307), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(303), + [anon_sym_EQ] = ACTIONS(307), + [anon_sym_COMMA] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(305), + [anon_sym_DOT_DOT] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(307), + [anon_sym_AMP_AMP] = ACTIONS(305), + [anon_sym_PIPE_PIPE] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(307), + [anon_sym_CARET] = ACTIONS(307), + [anon_sym_EQ_EQ] = ACTIONS(305), + [anon_sym_BANG_EQ] = ACTIONS(305), + [anon_sym_LT_EQ] = ACTIONS(305), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(307), + [anon_sym_SLASH] = ACTIONS(307), + [anon_sym_PERCENT] = ACTIONS(307), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_PERCENT_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [anon_sym_CARET_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_move] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(307), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [19] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1005), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(17), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_RPAREN] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_EQ_GT] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(309), + [anon_sym_RBRACK] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_STAR] = ACTIONS(311), + [anon_sym_QMARK] = ACTIONS(309), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(313), + [anon_sym_as] = ACTIONS(311), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(303), + [anon_sym_EQ] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(311), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(309), + [anon_sym_DOT_DOT] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(309), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_AMP_AMP] = ACTIONS(309), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ] = ACTIONS(309), + [anon_sym_LT_EQ] = ACTIONS(309), + [anon_sym_GT_EQ] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_SLASH] = ACTIONS(311), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_PLUS_EQ] = ACTIONS(309), + [anon_sym_DASH_EQ] = ACTIONS(309), + [anon_sym_STAR_EQ] = ACTIONS(309), + [anon_sym_SLASH_EQ] = ACTIONS(309), + [anon_sym_PERCENT_EQ] = ACTIONS(309), + [anon_sym_AMP_EQ] = ACTIONS(309), + [anon_sym_PIPE_EQ] = ACTIONS(309), + [anon_sym_CARET_EQ] = ACTIONS(309), + [anon_sym_LT_LT_EQ] = ACTIONS(309), + [anon_sym_GT_GT_EQ] = ACTIONS(309), + [anon_sym_move] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(311), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [20] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(764), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(315), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_QMARK] = ACTIONS(315), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(317), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(303), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(315), + [anon_sym_LT] = ACTIONS(319), + [anon_sym_GT] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(321), + [anon_sym_DOT_DOT_DOT] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(323), + [anon_sym_DOT_DOT_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_AMP_AMP] = ACTIONS(315), + [anon_sym_PIPE_PIPE] = ACTIONS(315), + [anon_sym_PIPE] = ACTIONS(325), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_LT_LT] = ACTIONS(317), + [anon_sym_GT_GT] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(317), + [anon_sym_PERCENT] = ACTIONS(317), + [anon_sym_PLUS_EQ] = ACTIONS(315), + [anon_sym_DASH_EQ] = ACTIONS(315), + [anon_sym_STAR_EQ] = ACTIONS(315), + [anon_sym_SLASH_EQ] = ACTIONS(315), + [anon_sym_PERCENT_EQ] = ACTIONS(315), + [anon_sym_AMP_EQ] = ACTIONS(315), + [anon_sym_PIPE_EQ] = ACTIONS(315), + [anon_sym_CARET_EQ] = ACTIONS(315), + [anon_sym_LT_LT_EQ] = ACTIONS(315), + [anon_sym_GT_GT_EQ] = ACTIONS(315), + [anon_sym_move] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(317), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [21] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(987), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(327), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_EQ_GT] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(327), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(329), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(303), + [anon_sym_EQ] = ACTIONS(329), + [anon_sym_COMMA] = ACTIONS(327), + [anon_sym_LT] = ACTIONS(319), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(321), + [anon_sym_DOT_DOT_DOT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(323), + [anon_sym_DOT_DOT_EQ] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_AMP_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(325), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(327), + [anon_sym_BANG_EQ] = ACTIONS(327), + [anon_sym_LT_EQ] = ACTIONS(327), + [anon_sym_GT_EQ] = ACTIONS(327), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_PLUS_EQ] = ACTIONS(327), + [anon_sym_DASH_EQ] = ACTIONS(327), + [anon_sym_STAR_EQ] = ACTIONS(327), + [anon_sym_SLASH_EQ] = ACTIONS(327), + [anon_sym_PERCENT_EQ] = ACTIONS(327), + [anon_sym_AMP_EQ] = ACTIONS(327), + [anon_sym_PIPE_EQ] = ACTIONS(327), + [anon_sym_CARET_EQ] = ACTIONS(327), + [anon_sym_LT_LT_EQ] = ACTIONS(327), + [anon_sym_GT_GT_EQ] = ACTIONS(327), + [anon_sym_move] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(329), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [22] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1168), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_QMARK] = ACTIONS(277), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(283), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(283), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(283), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(277), + [anon_sym_DOT_DOT] = ACTIONS(283), + [anon_sym_DOT_DOT_EQ] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(277), + [anon_sym_PIPE_PIPE] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_CARET] = ACTIONS(283), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(283), + [anon_sym_GT_GT] = ACTIONS(283), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PERCENT] = ACTIONS(283), + [anon_sym_PLUS_EQ] = ACTIONS(277), + [anon_sym_DASH_EQ] = ACTIONS(277), + [anon_sym_STAR_EQ] = ACTIONS(277), + [anon_sym_SLASH_EQ] = ACTIONS(277), + [anon_sym_PERCENT_EQ] = ACTIONS(277), + [anon_sym_AMP_EQ] = ACTIONS(277), + [anon_sym_PIPE_EQ] = ACTIONS(277), + [anon_sym_CARET_EQ] = ACTIONS(277), + [anon_sym_LT_LT_EQ] = ACTIONS(277), + [anon_sym_GT_GT_EQ] = ACTIONS(277), + [anon_sym_move] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(283), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [23] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(329), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(319), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(341), + [anon_sym_AMP_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(325), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(327), + [anon_sym_BANG_EQ] = ACTIONS(327), + [anon_sym_LT_EQ] = ACTIONS(327), + [anon_sym_GT_EQ] = ACTIONS(327), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_PLUS_EQ] = ACTIONS(327), + [anon_sym_DASH_EQ] = ACTIONS(327), + [anon_sym_STAR_EQ] = ACTIONS(327), + [anon_sym_SLASH_EQ] = ACTIONS(327), + [anon_sym_PERCENT_EQ] = ACTIONS(327), + [anon_sym_AMP_EQ] = ACTIONS(327), + [anon_sym_PIPE_EQ] = ACTIONS(327), + [anon_sym_CARET_EQ] = ACTIONS(327), + [anon_sym_LT_LT_EQ] = ACTIONS(327), + [anon_sym_GT_GT_EQ] = ACTIONS(327), + [anon_sym_move] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(329), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [24] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1203), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_STAR] = ACTIONS(307), + [anon_sym_QMARK] = ACTIONS(305), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(307), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(305), + [anon_sym_DOT_DOT] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(307), + [anon_sym_AMP_AMP] = ACTIONS(305), + [anon_sym_PIPE_PIPE] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(307), + [anon_sym_CARET] = ACTIONS(307), + [anon_sym_EQ_EQ] = ACTIONS(305), + [anon_sym_BANG_EQ] = ACTIONS(305), + [anon_sym_LT_EQ] = ACTIONS(305), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(307), + [anon_sym_SLASH] = ACTIONS(307), + [anon_sym_PERCENT] = ACTIONS(307), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_PERCENT_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [anon_sym_CARET_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_move] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(307), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [25] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(764), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_QMARK] = ACTIONS(315), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(317), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_LT] = ACTIONS(319), + [anon_sym_GT] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(341), + [anon_sym_AMP_AMP] = ACTIONS(315), + [anon_sym_PIPE_PIPE] = ACTIONS(315), + [anon_sym_PIPE] = ACTIONS(325), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_LT_LT] = ACTIONS(317), + [anon_sym_GT_GT] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(317), + [anon_sym_PERCENT] = ACTIONS(317), + [anon_sym_PLUS_EQ] = ACTIONS(315), + [anon_sym_DASH_EQ] = ACTIONS(315), + [anon_sym_STAR_EQ] = ACTIONS(315), + [anon_sym_SLASH_EQ] = ACTIONS(315), + [anon_sym_PERCENT_EQ] = ACTIONS(315), + [anon_sym_AMP_EQ] = ACTIONS(315), + [anon_sym_PIPE_EQ] = ACTIONS(315), + [anon_sym_CARET_EQ] = ACTIONS(315), + [anon_sym_LT_LT_EQ] = ACTIONS(315), + [anon_sym_GT_GT_EQ] = ACTIONS(315), + [anon_sym_move] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(317), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [26] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1213), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(22), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_STAR] = ACTIONS(311), + [anon_sym_QMARK] = ACTIONS(309), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(313), + [anon_sym_as] = ACTIONS(311), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(311), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(309), + [anon_sym_DOT_DOT] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(309), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_AMP_AMP] = ACTIONS(309), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ] = ACTIONS(309), + [anon_sym_LT_EQ] = ACTIONS(309), + [anon_sym_GT_EQ] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_SLASH] = ACTIONS(311), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_PLUS_EQ] = ACTIONS(309), + [anon_sym_DASH_EQ] = ACTIONS(309), + [anon_sym_STAR_EQ] = ACTIONS(309), + [anon_sym_SLASH_EQ] = ACTIONS(309), + [anon_sym_PERCENT_EQ] = ACTIONS(309), + [anon_sym_AMP_EQ] = ACTIONS(309), + [anon_sym_PIPE_EQ] = ACTIONS(309), + [anon_sym_CARET_EQ] = ACTIONS(309), + [anon_sym_LT_LT_EQ] = ACTIONS(309), + [anon_sym_GT_GT_EQ] = ACTIONS(309), + [anon_sym_move] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(311), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [27] = { + [sym_attribute_item] = STATE(40), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1091), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_enum_variant_list_repeat1] = STATE(40), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_COMMA] = ACTIONS(361), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [28] = { + [sym_attribute_item] = STATE(582), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1087), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_enum_variant_list_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_COMMA] = ACTIONS(365), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [29] = { + [sym_attribute_item] = STATE(28), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1080), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_enum_variant_list_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(367), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_COMMA] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [30] = { + [sym_else_clause] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(371), + [sym_identifier] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(371), + [anon_sym_macro_rules_BANG] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_RBRACE] = ACTIONS(371), + [anon_sym_LBRACK] = ACTIONS(371), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_QMARK] = ACTIONS(371), + [anon_sym_u8] = ACTIONS(373), + [anon_sym_i8] = ACTIONS(373), + [anon_sym_u16] = ACTIONS(373), + [anon_sym_i16] = ACTIONS(373), + [anon_sym_u32] = ACTIONS(373), + [anon_sym_i32] = ACTIONS(373), + [anon_sym_u64] = ACTIONS(373), + [anon_sym_i64] = ACTIONS(373), + [anon_sym_u128] = ACTIONS(373), + [anon_sym_i128] = ACTIONS(373), + [anon_sym_isize] = ACTIONS(373), + [anon_sym_usize] = ACTIONS(373), + [anon_sym_f32] = ACTIONS(373), + [anon_sym_f64] = ACTIONS(373), + [anon_sym_bool] = ACTIONS(373), + [anon_sym_str] = ACTIONS(373), + [anon_sym_char] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_as] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(373), + [anon_sym_const] = ACTIONS(373), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_default] = ACTIONS(373), + [anon_sym_enum] = ACTIONS(373), + [anon_sym_fn] = ACTIONS(373), + [anon_sym_for] = ACTIONS(373), + [anon_sym_if] = ACTIONS(373), + [anon_sym_impl] = ACTIONS(373), + [anon_sym_let] = ACTIONS(373), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(373), + [anon_sym_mod] = ACTIONS(373), + [anon_sym_pub] = ACTIONS(373), + [anon_sym_return] = ACTIONS(373), + [anon_sym_static] = ACTIONS(373), + [anon_sym_struct] = ACTIONS(373), + [anon_sym_trait] = ACTIONS(373), + [anon_sym_type] = ACTIONS(373), + [anon_sym_union] = ACTIONS(373), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_use] = ACTIONS(373), + [anon_sym_while] = ACTIONS(373), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_BANG] = ACTIONS(373), + [anon_sym_EQ] = ACTIONS(373), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(371), + [anon_sym_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(371), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_AMP_AMP] = ACTIONS(371), + [anon_sym_PIPE_PIPE] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(373), + [anon_sym_CARET] = ACTIONS(373), + [anon_sym_EQ_EQ] = ACTIONS(371), + [anon_sym_BANG_EQ] = ACTIONS(371), + [anon_sym_LT_EQ] = ACTIONS(371), + [anon_sym_GT_EQ] = ACTIONS(371), + [anon_sym_LT_LT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_SLASH] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(373), + [anon_sym_PLUS_EQ] = ACTIONS(371), + [anon_sym_DASH_EQ] = ACTIONS(371), + [anon_sym_STAR_EQ] = ACTIONS(371), + [anon_sym_SLASH_EQ] = ACTIONS(371), + [anon_sym_PERCENT_EQ] = ACTIONS(371), + [anon_sym_AMP_EQ] = ACTIONS(371), + [anon_sym_PIPE_EQ] = ACTIONS(371), + [anon_sym_CARET_EQ] = ACTIONS(371), + [anon_sym_LT_LT_EQ] = ACTIONS(371), + [anon_sym_GT_GT_EQ] = ACTIONS(371), + [anon_sym_else] = ACTIONS(375), + [anon_sym_move] = ACTIONS(373), + [anon_sym_DOT] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(371), + [aux_sym_string_literal_token1] = ACTIONS(371), + [sym_char_literal] = ACTIONS(371), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(373), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(371), + [sym_raw_string_literal] = ACTIONS(371), + [sym_float_literal] = ACTIONS(371), + [sym_block_comment] = ACTIONS(3), + }, + [31] = { + [sym_attribute_item] = STATE(37), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1112), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_enum_variant_list_repeat1] = STATE(37), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [32] = { + [sym_attribute_item] = STATE(36), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1122), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_enum_variant_list_repeat1] = STATE(36), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [33] = { + [sym_attribute_item] = STATE(36), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1122), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_enum_variant_list_repeat1] = STATE(36), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [34] = { + [sym_else_clause] = STATE(43), + [ts_builtin_sym_end] = ACTIONS(383), + [sym_identifier] = ACTIONS(385), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_macro_rules_BANG] = ACTIONS(383), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_RBRACE] = ACTIONS(383), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_STAR] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(383), + [anon_sym_u8] = ACTIONS(385), + [anon_sym_i8] = ACTIONS(385), + [anon_sym_u16] = ACTIONS(385), + [anon_sym_i16] = ACTIONS(385), + [anon_sym_u32] = ACTIONS(385), + [anon_sym_i32] = ACTIONS(385), + [anon_sym_u64] = ACTIONS(385), + [anon_sym_i64] = ACTIONS(385), + [anon_sym_u128] = ACTIONS(385), + [anon_sym_i128] = ACTIONS(385), + [anon_sym_isize] = ACTIONS(385), + [anon_sym_usize] = ACTIONS(385), + [anon_sym_f32] = ACTIONS(385), + [anon_sym_f64] = ACTIONS(385), + [anon_sym_bool] = ACTIONS(385), + [anon_sym_str] = ACTIONS(385), + [anon_sym_char] = ACTIONS(385), + [anon_sym_SQUOTE] = ACTIONS(385), + [anon_sym_as] = ACTIONS(385), + [anon_sym_async] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_const] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_default] = ACTIONS(385), + [anon_sym_enum] = ACTIONS(385), + [anon_sym_fn] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_impl] = ACTIONS(385), + [anon_sym_let] = ACTIONS(385), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_match] = ACTIONS(385), + [anon_sym_mod] = ACTIONS(385), + [anon_sym_pub] = ACTIONS(385), + [anon_sym_return] = ACTIONS(385), + [anon_sym_static] = ACTIONS(385), + [anon_sym_struct] = ACTIONS(385), + [anon_sym_trait] = ACTIONS(385), + [anon_sym_type] = ACTIONS(385), + [anon_sym_union] = ACTIONS(385), + [anon_sym_unsafe] = ACTIONS(385), + [anon_sym_use] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(383), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(383), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(383), + [anon_sym_PIPE_PIPE] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(383), + [anon_sym_BANG_EQ] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(383), + [anon_sym_DASH_EQ] = ACTIONS(383), + [anon_sym_STAR_EQ] = ACTIONS(383), + [anon_sym_SLASH_EQ] = ACTIONS(383), + [anon_sym_PERCENT_EQ] = ACTIONS(383), + [anon_sym_AMP_EQ] = ACTIONS(383), + [anon_sym_PIPE_EQ] = ACTIONS(383), + [anon_sym_CARET_EQ] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(383), + [anon_sym_GT_GT_EQ] = ACTIONS(383), + [anon_sym_else] = ACTIONS(375), + [anon_sym_move] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(383), + [aux_sym_string_literal_token1] = ACTIONS(383), + [sym_char_literal] = ACTIONS(383), + [anon_sym_true] = ACTIONS(385), + [anon_sym_false] = ACTIONS(385), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(385), + [sym_super] = ACTIONS(385), + [sym_crate] = ACTIONS(385), + [sym_metavariable] = ACTIONS(383), + [sym_raw_string_literal] = ACTIONS(383), + [sym_float_literal] = ACTIONS(383), + [sym_block_comment] = ACTIONS(3), + }, + [35] = { + [sym_attribute_item] = STATE(36), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1122), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_enum_variant_list_repeat1] = STATE(36), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [36] = { + [sym_attribute_item] = STATE(582), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1130), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_enum_variant_list_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [37] = { + [sym_attribute_item] = STATE(582), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1198), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_enum_variant_list_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [38] = { + [ts_builtin_sym_end] = ACTIONS(389), + [sym_identifier] = ACTIONS(391), + [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_macro_rules_BANG] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(391), + [anon_sym_QMARK] = ACTIONS(389), + [anon_sym_u8] = ACTIONS(391), + [anon_sym_i8] = ACTIONS(391), + [anon_sym_u16] = ACTIONS(391), + [anon_sym_i16] = ACTIONS(391), + [anon_sym_u32] = ACTIONS(391), + [anon_sym_i32] = ACTIONS(391), + [anon_sym_u64] = ACTIONS(391), + [anon_sym_i64] = ACTIONS(391), + [anon_sym_u128] = ACTIONS(391), + [anon_sym_i128] = ACTIONS(391), + [anon_sym_isize] = ACTIONS(391), + [anon_sym_usize] = ACTIONS(391), + [anon_sym_f32] = ACTIONS(391), + [anon_sym_f64] = ACTIONS(391), + [anon_sym_bool] = ACTIONS(391), + [anon_sym_str] = ACTIONS(391), + [anon_sym_char] = ACTIONS(391), + [anon_sym_SQUOTE] = ACTIONS(391), + [anon_sym_as] = ACTIONS(391), + [anon_sym_async] = ACTIONS(391), + [anon_sym_break] = ACTIONS(391), + [anon_sym_const] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_default] = ACTIONS(391), + [anon_sym_enum] = ACTIONS(391), + [anon_sym_fn] = ACTIONS(391), + [anon_sym_for] = ACTIONS(391), + [anon_sym_if] = ACTIONS(391), + [anon_sym_impl] = ACTIONS(391), + [anon_sym_let] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(391), + [anon_sym_match] = ACTIONS(391), + [anon_sym_mod] = ACTIONS(391), + [anon_sym_pub] = ACTIONS(391), + [anon_sym_return] = ACTIONS(391), + [anon_sym_static] = ACTIONS(391), + [anon_sym_struct] = ACTIONS(391), + [anon_sym_trait] = ACTIONS(391), + [anon_sym_type] = ACTIONS(391), + [anon_sym_union] = ACTIONS(391), + [anon_sym_unsafe] = ACTIONS(391), + [anon_sym_use] = ACTIONS(391), + [anon_sym_while] = ACTIONS(391), + [anon_sym_POUND] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_extern] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_AMP_AMP] = ACTIONS(389), + [anon_sym_PIPE_PIPE] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), + [anon_sym_CARET] = ACTIONS(391), + [anon_sym_EQ_EQ] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(389), + [anon_sym_LT_EQ] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_SLASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(391), + [anon_sym_PLUS_EQ] = ACTIONS(389), + [anon_sym_DASH_EQ] = ACTIONS(389), + [anon_sym_STAR_EQ] = ACTIONS(389), + [anon_sym_SLASH_EQ] = ACTIONS(389), + [anon_sym_PERCENT_EQ] = ACTIONS(389), + [anon_sym_AMP_EQ] = ACTIONS(389), + [anon_sym_PIPE_EQ] = ACTIONS(389), + [anon_sym_CARET_EQ] = ACTIONS(389), + [anon_sym_LT_LT_EQ] = ACTIONS(389), + [anon_sym_GT_GT_EQ] = ACTIONS(389), + [anon_sym_else] = ACTIONS(391), + [anon_sym_move] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(391), + [sym_integer_literal] = ACTIONS(389), + [aux_sym_string_literal_token1] = ACTIONS(389), + [sym_char_literal] = ACTIONS(389), + [anon_sym_true] = ACTIONS(391), + [anon_sym_false] = ACTIONS(391), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(391), + [sym_super] = ACTIONS(391), + [sym_crate] = ACTIONS(391), + [sym_metavariable] = ACTIONS(389), + [sym_raw_string_literal] = ACTIONS(389), + [sym_float_literal] = ACTIONS(389), + [sym_block_comment] = ACTIONS(3), + }, + [39] = { + [ts_builtin_sym_end] = ACTIONS(393), + [sym_identifier] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(393), + [anon_sym_macro_rules_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_as] = ACTIONS(395), + [anon_sym_async] = ACTIONS(395), + [anon_sym_break] = ACTIONS(395), + [anon_sym_const] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_default] = ACTIONS(395), + [anon_sym_enum] = ACTIONS(395), + [anon_sym_fn] = ACTIONS(395), + [anon_sym_for] = ACTIONS(395), + [anon_sym_if] = ACTIONS(395), + [anon_sym_impl] = ACTIONS(395), + [anon_sym_let] = ACTIONS(395), + [anon_sym_loop] = ACTIONS(395), + [anon_sym_match] = ACTIONS(395), + [anon_sym_mod] = ACTIONS(395), + [anon_sym_pub] = ACTIONS(395), + [anon_sym_return] = ACTIONS(395), + [anon_sym_static] = ACTIONS(395), + [anon_sym_struct] = ACTIONS(395), + [anon_sym_trait] = ACTIONS(395), + [anon_sym_type] = ACTIONS(395), + [anon_sym_union] = ACTIONS(395), + [anon_sym_unsafe] = ACTIONS(395), + [anon_sym_use] = ACTIONS(395), + [anon_sym_while] = ACTIONS(395), + [anon_sym_POUND] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_extern] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_COLON_COLON] = ACTIONS(393), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_else] = ACTIONS(395), + [anon_sym_move] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(395), + [sym_integer_literal] = ACTIONS(393), + [aux_sym_string_literal_token1] = ACTIONS(393), + [sym_char_literal] = ACTIONS(393), + [anon_sym_true] = ACTIONS(395), + [anon_sym_false] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(395), + [sym_super] = ACTIONS(395), + [sym_crate] = ACTIONS(395), + [sym_metavariable] = ACTIONS(393), + [sym_raw_string_literal] = ACTIONS(393), + [sym_float_literal] = ACTIONS(393), + [sym_block_comment] = ACTIONS(3), + }, + [40] = { + [sym_attribute_item] = STATE(582), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_enum_variant_list_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [41] = { + [ts_builtin_sym_end] = ACTIONS(397), + [sym_identifier] = ACTIONS(399), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_macro_rules_BANG] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_isize] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_f32] = ACTIONS(399), + [anon_sym_f64] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_str] = ACTIONS(399), + [anon_sym_char] = ACTIONS(399), + [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_as] = ACTIONS(399), + [anon_sym_async] = ACTIONS(399), + [anon_sym_break] = ACTIONS(399), + [anon_sym_const] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_default] = ACTIONS(399), + [anon_sym_enum] = ACTIONS(399), + [anon_sym_fn] = ACTIONS(399), + [anon_sym_for] = ACTIONS(399), + [anon_sym_if] = ACTIONS(399), + [anon_sym_impl] = ACTIONS(399), + [anon_sym_let] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_match] = ACTIONS(399), + [anon_sym_mod] = ACTIONS(399), + [anon_sym_pub] = ACTIONS(399), + [anon_sym_return] = ACTIONS(399), + [anon_sym_static] = ACTIONS(399), + [anon_sym_struct] = ACTIONS(399), + [anon_sym_trait] = ACTIONS(399), + [anon_sym_type] = ACTIONS(399), + [anon_sym_union] = ACTIONS(399), + [anon_sym_unsafe] = ACTIONS(399), + [anon_sym_use] = ACTIONS(399), + [anon_sym_while] = ACTIONS(399), + [anon_sym_POUND] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_extern] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_else] = ACTIONS(399), + [anon_sym_move] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(399), + [sym_integer_literal] = ACTIONS(397), + [aux_sym_string_literal_token1] = ACTIONS(397), + [sym_char_literal] = ACTIONS(397), + [anon_sym_true] = ACTIONS(399), + [anon_sym_false] = ACTIONS(399), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(399), + [sym_super] = ACTIONS(399), + [sym_crate] = ACTIONS(399), + [sym_metavariable] = ACTIONS(397), + [sym_raw_string_literal] = ACTIONS(397), + [sym_float_literal] = ACTIONS(397), + [sym_block_comment] = ACTIONS(3), + }, + [42] = { + [sym_attribute_item] = STATE(36), + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1122), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_enum_variant_list_repeat1] = STATE(36), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [43] = { + [ts_builtin_sym_end] = ACTIONS(401), + [sym_identifier] = ACTIONS(403), + [anon_sym_SEMI] = ACTIONS(401), + [anon_sym_macro_rules_BANG] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u8] = ACTIONS(403), + [anon_sym_i8] = ACTIONS(403), + [anon_sym_u16] = ACTIONS(403), + [anon_sym_i16] = ACTIONS(403), + [anon_sym_u32] = ACTIONS(403), + [anon_sym_i32] = ACTIONS(403), + [anon_sym_u64] = ACTIONS(403), + [anon_sym_i64] = ACTIONS(403), + [anon_sym_u128] = ACTIONS(403), + [anon_sym_i128] = ACTIONS(403), + [anon_sym_isize] = ACTIONS(403), + [anon_sym_usize] = ACTIONS(403), + [anon_sym_f32] = ACTIONS(403), + [anon_sym_f64] = ACTIONS(403), + [anon_sym_bool] = ACTIONS(403), + [anon_sym_str] = ACTIONS(403), + [anon_sym_char] = ACTIONS(403), + [anon_sym_SQUOTE] = ACTIONS(403), + [anon_sym_as] = ACTIONS(403), + [anon_sym_async] = ACTIONS(403), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(403), + [anon_sym_default] = ACTIONS(403), + [anon_sym_enum] = ACTIONS(403), + [anon_sym_fn] = ACTIONS(403), + [anon_sym_for] = ACTIONS(403), + [anon_sym_if] = ACTIONS(403), + [anon_sym_impl] = ACTIONS(403), + [anon_sym_let] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_match] = ACTIONS(403), + [anon_sym_mod] = ACTIONS(403), + [anon_sym_pub] = ACTIONS(403), + [anon_sym_return] = ACTIONS(403), + [anon_sym_static] = ACTIONS(403), + [anon_sym_struct] = ACTIONS(403), + [anon_sym_trait] = ACTIONS(403), + [anon_sym_type] = ACTIONS(403), + [anon_sym_union] = ACTIONS(403), + [anon_sym_unsafe] = ACTIONS(403), + [anon_sym_use] = ACTIONS(403), + [anon_sym_while] = ACTIONS(403), + [anon_sym_POUND] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_extern] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_move] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(403), + [sym_integer_literal] = ACTIONS(401), + [aux_sym_string_literal_token1] = ACTIONS(401), + [sym_char_literal] = ACTIONS(401), + [anon_sym_true] = ACTIONS(403), + [anon_sym_false] = ACTIONS(403), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(403), + [sym_super] = ACTIONS(403), + [sym_crate] = ACTIONS(403), + [sym_metavariable] = ACTIONS(401), + [sym_raw_string_literal] = ACTIONS(401), + [sym_float_literal] = ACTIONS(401), + [sym_block_comment] = ACTIONS(3), + }, + [44] = { + [ts_builtin_sym_end] = ACTIONS(405), + [sym_identifier] = ACTIONS(407), + [anon_sym_SEMI] = ACTIONS(405), + [anon_sym_macro_rules_BANG] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(405), + [anon_sym_u8] = ACTIONS(407), + [anon_sym_i8] = ACTIONS(407), + [anon_sym_u16] = ACTIONS(407), + [anon_sym_i16] = ACTIONS(407), + [anon_sym_u32] = ACTIONS(407), + [anon_sym_i32] = ACTIONS(407), + [anon_sym_u64] = ACTIONS(407), + [anon_sym_i64] = ACTIONS(407), + [anon_sym_u128] = ACTIONS(407), + [anon_sym_i128] = ACTIONS(407), + [anon_sym_isize] = ACTIONS(407), + [anon_sym_usize] = ACTIONS(407), + [anon_sym_f32] = ACTIONS(407), + [anon_sym_f64] = ACTIONS(407), + [anon_sym_bool] = ACTIONS(407), + [anon_sym_str] = ACTIONS(407), + [anon_sym_char] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(407), + [anon_sym_as] = ACTIONS(407), + [anon_sym_async] = ACTIONS(407), + [anon_sym_break] = ACTIONS(407), + [anon_sym_const] = ACTIONS(407), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(407), + [anon_sym_enum] = ACTIONS(407), + [anon_sym_fn] = ACTIONS(407), + [anon_sym_for] = ACTIONS(407), + [anon_sym_if] = ACTIONS(407), + [anon_sym_impl] = ACTIONS(407), + [anon_sym_let] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(407), + [anon_sym_match] = ACTIONS(407), + [anon_sym_mod] = ACTIONS(407), + [anon_sym_pub] = ACTIONS(407), + [anon_sym_return] = ACTIONS(407), + [anon_sym_static] = ACTIONS(407), + [anon_sym_struct] = ACTIONS(407), + [anon_sym_trait] = ACTIONS(407), + [anon_sym_type] = ACTIONS(407), + [anon_sym_union] = ACTIONS(407), + [anon_sym_unsafe] = ACTIONS(407), + [anon_sym_use] = ACTIONS(407), + [anon_sym_while] = ACTIONS(407), + [anon_sym_POUND] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_extern] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(405), + [anon_sym_AMP] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_AMP_AMP] = ACTIONS(405), + [anon_sym_PIPE_PIPE] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(407), + [anon_sym_CARET] = ACTIONS(407), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(405), + [anon_sym_LT_LT] = ACTIONS(407), + [anon_sym_GT_GT] = ACTIONS(407), + [anon_sym_SLASH] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_PLUS_EQ] = ACTIONS(405), + [anon_sym_DASH_EQ] = ACTIONS(405), + [anon_sym_STAR_EQ] = ACTIONS(405), + [anon_sym_SLASH_EQ] = ACTIONS(405), + [anon_sym_PERCENT_EQ] = ACTIONS(405), + [anon_sym_AMP_EQ] = ACTIONS(405), + [anon_sym_PIPE_EQ] = ACTIONS(405), + [anon_sym_CARET_EQ] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(405), + [anon_sym_GT_GT_EQ] = ACTIONS(405), + [anon_sym_move] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(405), + [aux_sym_string_literal_token1] = ACTIONS(405), + [sym_char_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(407), + [sym_super] = ACTIONS(407), + [sym_crate] = ACTIONS(407), + [sym_metavariable] = ACTIONS(405), + [sym_raw_string_literal] = ACTIONS(405), + [sym_float_literal] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + }, + [45] = { + [ts_builtin_sym_end] = ACTIONS(409), + [sym_identifier] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(409), + [anon_sym_macro_rules_BANG] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_RBRACE] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_PLUS] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(409), + [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_SQUOTE] = ACTIONS(411), + [anon_sym_as] = ACTIONS(411), + [anon_sym_async] = ACTIONS(411), + [anon_sym_break] = ACTIONS(411), + [anon_sym_const] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(411), + [anon_sym_default] = ACTIONS(411), + [anon_sym_enum] = ACTIONS(411), + [anon_sym_fn] = ACTIONS(411), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(411), + [anon_sym_impl] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(411), + [anon_sym_match] = ACTIONS(411), + [anon_sym_mod] = ACTIONS(411), + [anon_sym_pub] = ACTIONS(411), + [anon_sym_return] = ACTIONS(411), + [anon_sym_static] = ACTIONS(411), + [anon_sym_struct] = ACTIONS(411), + [anon_sym_trait] = ACTIONS(411), + [anon_sym_type] = ACTIONS(411), + [anon_sym_union] = ACTIONS(411), + [anon_sym_unsafe] = ACTIONS(411), + [anon_sym_use] = ACTIONS(411), + [anon_sym_while] = ACTIONS(411), + [anon_sym_POUND] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_extern] = ACTIONS(411), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_COLON_COLON] = ACTIONS(409), + [anon_sym_AMP] = ACTIONS(411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT] = ACTIONS(411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(411), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_CARET] = ACTIONS(411), + [anon_sym_EQ_EQ] = ACTIONS(409), + [anon_sym_BANG_EQ] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(411), + [anon_sym_SLASH] = ACTIONS(411), + [anon_sym_PERCENT] = ACTIONS(411), + [anon_sym_PLUS_EQ] = ACTIONS(409), + [anon_sym_DASH_EQ] = ACTIONS(409), + [anon_sym_STAR_EQ] = ACTIONS(409), + [anon_sym_SLASH_EQ] = ACTIONS(409), + [anon_sym_PERCENT_EQ] = ACTIONS(409), + [anon_sym_AMP_EQ] = ACTIONS(409), + [anon_sym_PIPE_EQ] = ACTIONS(409), + [anon_sym_CARET_EQ] = ACTIONS(409), + [anon_sym_LT_LT_EQ] = ACTIONS(409), + [anon_sym_GT_GT_EQ] = ACTIONS(409), + [anon_sym_move] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [sym_integer_literal] = ACTIONS(409), + [aux_sym_string_literal_token1] = ACTIONS(409), + [sym_char_literal] = ACTIONS(409), + [anon_sym_true] = ACTIONS(411), + [anon_sym_false] = ACTIONS(411), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(411), + [sym_super] = ACTIONS(411), + [sym_crate] = ACTIONS(411), + [sym_metavariable] = ACTIONS(409), + [sym_raw_string_literal] = ACTIONS(409), + [sym_float_literal] = ACTIONS(409), + [sym_block_comment] = ACTIONS(3), + }, + [46] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1101), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_tuple_expression_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [47] = { + [ts_builtin_sym_end] = ACTIONS(415), + [sym_identifier] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_macro_rules_BANG] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_u8] = ACTIONS(417), + [anon_sym_i8] = ACTIONS(417), + [anon_sym_u16] = ACTIONS(417), + [anon_sym_i16] = ACTIONS(417), + [anon_sym_u32] = ACTIONS(417), + [anon_sym_i32] = ACTIONS(417), + [anon_sym_u64] = ACTIONS(417), + [anon_sym_i64] = ACTIONS(417), + [anon_sym_u128] = ACTIONS(417), + [anon_sym_i128] = ACTIONS(417), + [anon_sym_isize] = ACTIONS(417), + [anon_sym_usize] = ACTIONS(417), + [anon_sym_f32] = ACTIONS(417), + [anon_sym_f64] = ACTIONS(417), + [anon_sym_bool] = ACTIONS(417), + [anon_sym_str] = ACTIONS(417), + [anon_sym_char] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_as] = ACTIONS(417), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(417), + [anon_sym_continue] = ACTIONS(417), + [anon_sym_default] = ACTIONS(417), + [anon_sym_enum] = ACTIONS(417), + [anon_sym_fn] = ACTIONS(417), + [anon_sym_for] = ACTIONS(417), + [anon_sym_if] = ACTIONS(417), + [anon_sym_impl] = ACTIONS(417), + [anon_sym_let] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(417), + [anon_sym_match] = ACTIONS(417), + [anon_sym_mod] = ACTIONS(417), + [anon_sym_pub] = ACTIONS(417), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(417), + [anon_sym_struct] = ACTIONS(417), + [anon_sym_trait] = ACTIONS(417), + [anon_sym_type] = ACTIONS(417), + [anon_sym_union] = ACTIONS(417), + [anon_sym_unsafe] = ACTIONS(417), + [anon_sym_use] = ACTIONS(417), + [anon_sym_while] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(415), + [anon_sym_BANG] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(417), + [anon_sym_extern] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(417), + [anon_sym_DOT_DOT_EQ] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(417), + [anon_sym_EQ_EQ] = ACTIONS(415), + [anon_sym_BANG_EQ] = ACTIONS(415), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [anon_sym_SLASH] = ACTIONS(417), + [anon_sym_PERCENT] = ACTIONS(417), + [anon_sym_PLUS_EQ] = ACTIONS(415), + [anon_sym_DASH_EQ] = ACTIONS(415), + [anon_sym_STAR_EQ] = ACTIONS(415), + [anon_sym_SLASH_EQ] = ACTIONS(415), + [anon_sym_PERCENT_EQ] = ACTIONS(415), + [anon_sym_AMP_EQ] = ACTIONS(415), + [anon_sym_PIPE_EQ] = ACTIONS(415), + [anon_sym_CARET_EQ] = ACTIONS(415), + [anon_sym_LT_LT_EQ] = ACTIONS(415), + [anon_sym_GT_GT_EQ] = ACTIONS(415), + [anon_sym_move] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(417), + [sym_integer_literal] = ACTIONS(415), + [aux_sym_string_literal_token1] = ACTIONS(415), + [sym_char_literal] = ACTIONS(415), + [anon_sym_true] = ACTIONS(417), + [anon_sym_false] = ACTIONS(417), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(417), + [sym_super] = ACTIONS(417), + [sym_crate] = ACTIONS(417), + [sym_metavariable] = ACTIONS(415), + [sym_raw_string_literal] = ACTIONS(415), + [sym_float_literal] = ACTIONS(415), + [sym_block_comment] = ACTIONS(3), + }, + [48] = { + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_macro_rules_BANG] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(421), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_SQUOTE] = ACTIONS(421), + [anon_sym_as] = ACTIONS(421), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(421), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(421), + [anon_sym_enum] = ACTIONS(421), + [anon_sym_fn] = ACTIONS(421), + [anon_sym_for] = ACTIONS(421), + [anon_sym_if] = ACTIONS(421), + [anon_sym_impl] = ACTIONS(421), + [anon_sym_let] = ACTIONS(421), + [anon_sym_loop] = ACTIONS(421), + [anon_sym_match] = ACTIONS(421), + [anon_sym_mod] = ACTIONS(421), + [anon_sym_pub] = ACTIONS(421), + [anon_sym_return] = ACTIONS(421), + [anon_sym_static] = ACTIONS(421), + [anon_sym_struct] = ACTIONS(421), + [anon_sym_trait] = ACTIONS(421), + [anon_sym_type] = ACTIONS(421), + [anon_sym_union] = ACTIONS(421), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_use] = ACTIONS(421), + [anon_sym_while] = ACTIONS(421), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_BANG] = ACTIONS(421), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_extern] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(421), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_SLASH] = ACTIONS(421), + [anon_sym_PERCENT] = ACTIONS(421), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_STAR_EQ] = ACTIONS(419), + [anon_sym_SLASH_EQ] = ACTIONS(419), + [anon_sym_PERCENT_EQ] = ACTIONS(419), + [anon_sym_AMP_EQ] = ACTIONS(419), + [anon_sym_PIPE_EQ] = ACTIONS(419), + [anon_sym_CARET_EQ] = ACTIONS(419), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_GT_GT_EQ] = ACTIONS(419), + [anon_sym_move] = ACTIONS(421), + [anon_sym_DOT] = ACTIONS(421), + [sym_integer_literal] = ACTIONS(419), + [aux_sym_string_literal_token1] = ACTIONS(419), + [sym_char_literal] = ACTIONS(419), + [anon_sym_true] = ACTIONS(421), + [anon_sym_false] = ACTIONS(421), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(421), + [sym_super] = ACTIONS(421), + [sym_crate] = ACTIONS(421), + [sym_metavariable] = ACTIONS(419), + [sym_raw_string_literal] = ACTIONS(419), + [sym_float_literal] = ACTIONS(419), + [sym_block_comment] = ACTIONS(3), + }, + [49] = { + [ts_builtin_sym_end] = ACTIONS(423), + [sym_identifier] = ACTIONS(425), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_macro_rules_BANG] = ACTIONS(423), + [anon_sym_LPAREN] = ACTIONS(423), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_RBRACE] = ACTIONS(423), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_QMARK] = ACTIONS(423), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u128] = ACTIONS(425), + [anon_sym_i128] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_str] = ACTIONS(425), + [anon_sym_char] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(425), + [anon_sym_as] = ACTIONS(425), + [anon_sym_async] = ACTIONS(425), + [anon_sym_break] = ACTIONS(425), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(425), + [anon_sym_default] = ACTIONS(425), + [anon_sym_enum] = ACTIONS(425), + [anon_sym_fn] = ACTIONS(425), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(425), + [anon_sym_impl] = ACTIONS(425), + [anon_sym_let] = ACTIONS(425), + [anon_sym_loop] = ACTIONS(425), + [anon_sym_match] = ACTIONS(425), + [anon_sym_mod] = ACTIONS(425), + [anon_sym_pub] = ACTIONS(425), + [anon_sym_return] = ACTIONS(425), + [anon_sym_static] = ACTIONS(425), + [anon_sym_struct] = ACTIONS(425), + [anon_sym_trait] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(425), + [anon_sym_use] = ACTIONS(425), + [anon_sym_while] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(423), + [anon_sym_BANG] = ACTIONS(425), + [anon_sym_EQ] = ACTIONS(425), + [anon_sym_extern] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(425), + [anon_sym_COLON_COLON] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(425), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_EQ_EQ] = ACTIONS(423), + [anon_sym_BANG_EQ] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(425), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(425), + [anon_sym_PERCENT] = ACTIONS(425), + [anon_sym_PLUS_EQ] = ACTIONS(423), + [anon_sym_DASH_EQ] = ACTIONS(423), + [anon_sym_STAR_EQ] = ACTIONS(423), + [anon_sym_SLASH_EQ] = ACTIONS(423), + [anon_sym_PERCENT_EQ] = ACTIONS(423), + [anon_sym_AMP_EQ] = ACTIONS(423), + [anon_sym_PIPE_EQ] = ACTIONS(423), + [anon_sym_CARET_EQ] = ACTIONS(423), + [anon_sym_LT_LT_EQ] = ACTIONS(423), + [anon_sym_GT_GT_EQ] = ACTIONS(423), + [anon_sym_move] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [sym_integer_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(423), + [sym_char_literal] = ACTIONS(423), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(425), + [sym_super] = ACTIONS(425), + [sym_crate] = ACTIONS(425), + [sym_metavariable] = ACTIONS(423), + [sym_raw_string_literal] = ACTIONS(423), + [sym_float_literal] = ACTIONS(423), + [sym_block_comment] = ACTIONS(3), + }, + [50] = { + [ts_builtin_sym_end] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_macro_rules_BANG] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_u8] = ACTIONS(429), + [anon_sym_i8] = ACTIONS(429), + [anon_sym_u16] = ACTIONS(429), + [anon_sym_i16] = ACTIONS(429), + [anon_sym_u32] = ACTIONS(429), + [anon_sym_i32] = ACTIONS(429), + [anon_sym_u64] = ACTIONS(429), + [anon_sym_i64] = ACTIONS(429), + [anon_sym_u128] = ACTIONS(429), + [anon_sym_i128] = ACTIONS(429), + [anon_sym_isize] = ACTIONS(429), + [anon_sym_usize] = ACTIONS(429), + [anon_sym_f32] = ACTIONS(429), + [anon_sym_f64] = ACTIONS(429), + [anon_sym_bool] = ACTIONS(429), + [anon_sym_str] = ACTIONS(429), + [anon_sym_char] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(429), + [anon_sym_as] = ACTIONS(429), + [anon_sym_async] = ACTIONS(429), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(429), + [anon_sym_continue] = ACTIONS(429), + [anon_sym_default] = ACTIONS(429), + [anon_sym_enum] = ACTIONS(429), + [anon_sym_fn] = ACTIONS(429), + [anon_sym_for] = ACTIONS(429), + [anon_sym_if] = ACTIONS(429), + [anon_sym_impl] = ACTIONS(429), + [anon_sym_let] = ACTIONS(429), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(429), + [anon_sym_mod] = ACTIONS(429), + [anon_sym_pub] = ACTIONS(429), + [anon_sym_return] = ACTIONS(429), + [anon_sym_static] = ACTIONS(429), + [anon_sym_struct] = ACTIONS(429), + [anon_sym_trait] = ACTIONS(429), + [anon_sym_type] = ACTIONS(429), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(429), + [anon_sym_use] = ACTIONS(429), + [anon_sym_while] = ACTIONS(429), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_EQ] = ACTIONS(429), + [anon_sym_extern] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_COLON_COLON] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(427), + [anon_sym_DOT_DOT] = ACTIONS(429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ] = ACTIONS(427), + [anon_sym_LT_EQ] = ACTIONS(427), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(429), + [anon_sym_PLUS_EQ] = ACTIONS(427), + [anon_sym_DASH_EQ] = ACTIONS(427), + [anon_sym_STAR_EQ] = ACTIONS(427), + [anon_sym_SLASH_EQ] = ACTIONS(427), + [anon_sym_PERCENT_EQ] = ACTIONS(427), + [anon_sym_AMP_EQ] = ACTIONS(427), + [anon_sym_PIPE_EQ] = ACTIONS(427), + [anon_sym_CARET_EQ] = ACTIONS(427), + [anon_sym_LT_LT_EQ] = ACTIONS(427), + [anon_sym_GT_GT_EQ] = ACTIONS(427), + [anon_sym_move] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(427), + [aux_sym_string_literal_token1] = ACTIONS(427), + [sym_char_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(429), + [sym_super] = ACTIONS(429), + [sym_crate] = ACTIONS(429), + [sym_metavariable] = ACTIONS(427), + [sym_raw_string_literal] = ACTIONS(427), + [sym_float_literal] = ACTIONS(427), + [sym_block_comment] = ACTIONS(3), + }, + [51] = { + [ts_builtin_sym_end] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_macro_rules_BANG] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_u8] = ACTIONS(433), + [anon_sym_i8] = ACTIONS(433), + [anon_sym_u16] = ACTIONS(433), + [anon_sym_i16] = ACTIONS(433), + [anon_sym_u32] = ACTIONS(433), + [anon_sym_i32] = ACTIONS(433), + [anon_sym_u64] = ACTIONS(433), + [anon_sym_i64] = ACTIONS(433), + [anon_sym_u128] = ACTIONS(433), + [anon_sym_i128] = ACTIONS(433), + [anon_sym_isize] = ACTIONS(433), + [anon_sym_usize] = ACTIONS(433), + [anon_sym_f32] = ACTIONS(433), + [anon_sym_f64] = ACTIONS(433), + [anon_sym_bool] = ACTIONS(433), + [anon_sym_str] = ACTIONS(433), + [anon_sym_char] = ACTIONS(433), + [anon_sym_SQUOTE] = ACTIONS(433), + [anon_sym_as] = ACTIONS(433), + [anon_sym_async] = ACTIONS(433), + [anon_sym_break] = ACTIONS(433), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(433), + [anon_sym_enum] = ACTIONS(433), + [anon_sym_fn] = ACTIONS(433), + [anon_sym_for] = ACTIONS(433), + [anon_sym_if] = ACTIONS(433), + [anon_sym_impl] = ACTIONS(433), + [anon_sym_let] = ACTIONS(433), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(433), + [anon_sym_mod] = ACTIONS(433), + [anon_sym_pub] = ACTIONS(433), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(433), + [anon_sym_struct] = ACTIONS(433), + [anon_sym_trait] = ACTIONS(433), + [anon_sym_type] = ACTIONS(433), + [anon_sym_union] = ACTIONS(433), + [anon_sym_unsafe] = ACTIONS(433), + [anon_sym_use] = ACTIONS(433), + [anon_sym_while] = ACTIONS(433), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_EQ] = ACTIONS(433), + [anon_sym_extern] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(433), + [anon_sym_COLON_COLON] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [anon_sym_DOT_DOT] = ACTIONS(433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(431), + [anon_sym_PIPE_PIPE] = ACTIONS(431), + [anon_sym_PIPE] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ] = ACTIONS(431), + [anon_sym_LT_EQ] = ACTIONS(431), + [anon_sym_GT_EQ] = ACTIONS(431), + [anon_sym_LT_LT] = ACTIONS(433), + [anon_sym_GT_GT] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(433), + [anon_sym_PERCENT] = ACTIONS(433), + [anon_sym_PLUS_EQ] = ACTIONS(431), + [anon_sym_DASH_EQ] = ACTIONS(431), + [anon_sym_STAR_EQ] = ACTIONS(431), + [anon_sym_SLASH_EQ] = ACTIONS(431), + [anon_sym_PERCENT_EQ] = ACTIONS(431), + [anon_sym_AMP_EQ] = ACTIONS(431), + [anon_sym_PIPE_EQ] = ACTIONS(431), + [anon_sym_CARET_EQ] = ACTIONS(431), + [anon_sym_LT_LT_EQ] = ACTIONS(431), + [anon_sym_GT_GT_EQ] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_DOT] = ACTIONS(433), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(431), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(433), + [anon_sym_false] = ACTIONS(433), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(433), + [sym_super] = ACTIONS(433), + [sym_crate] = ACTIONS(433), + [sym_metavariable] = ACTIONS(431), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), + [sym_block_comment] = ACTIONS(3), + }, + [52] = { + [ts_builtin_sym_end] = ACTIONS(435), + [sym_identifier] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_macro_rules_BANG] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_PLUS] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(437), + [anon_sym_QMARK] = ACTIONS(435), + [anon_sym_u8] = ACTIONS(437), + [anon_sym_i8] = ACTIONS(437), + [anon_sym_u16] = ACTIONS(437), + [anon_sym_i16] = ACTIONS(437), + [anon_sym_u32] = ACTIONS(437), + [anon_sym_i32] = ACTIONS(437), + [anon_sym_u64] = ACTIONS(437), + [anon_sym_i64] = ACTIONS(437), + [anon_sym_u128] = ACTIONS(437), + [anon_sym_i128] = ACTIONS(437), + [anon_sym_isize] = ACTIONS(437), + [anon_sym_usize] = ACTIONS(437), + [anon_sym_f32] = ACTIONS(437), + [anon_sym_f64] = ACTIONS(437), + [anon_sym_bool] = ACTIONS(437), + [anon_sym_str] = ACTIONS(437), + [anon_sym_char] = ACTIONS(437), + [anon_sym_SQUOTE] = ACTIONS(437), + [anon_sym_as] = ACTIONS(437), + [anon_sym_async] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_const] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_default] = ACTIONS(437), + [anon_sym_enum] = ACTIONS(437), + [anon_sym_fn] = ACTIONS(437), + [anon_sym_for] = ACTIONS(437), + [anon_sym_if] = ACTIONS(437), + [anon_sym_impl] = ACTIONS(437), + [anon_sym_let] = ACTIONS(437), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(437), + [anon_sym_mod] = ACTIONS(437), + [anon_sym_pub] = ACTIONS(437), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(437), + [anon_sym_struct] = ACTIONS(437), + [anon_sym_trait] = ACTIONS(437), + [anon_sym_type] = ACTIONS(437), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_use] = ACTIONS(437), + [anon_sym_while] = ACTIONS(437), + [anon_sym_POUND] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(437), + [anon_sym_EQ] = ACTIONS(437), + [anon_sym_extern] = ACTIONS(437), + [anon_sym_LT] = ACTIONS(437), + [anon_sym_GT] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(435), + [anon_sym_DOT_DOT] = ACTIONS(437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(435), + [anon_sym_DASH] = ACTIONS(437), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(437), + [anon_sym_EQ_EQ] = ACTIONS(435), + [anon_sym_BANG_EQ] = ACTIONS(435), + [anon_sym_LT_EQ] = ACTIONS(435), + [anon_sym_GT_EQ] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(437), + [anon_sym_GT_GT] = ACTIONS(437), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(437), + [anon_sym_PLUS_EQ] = ACTIONS(435), + [anon_sym_DASH_EQ] = ACTIONS(435), + [anon_sym_STAR_EQ] = ACTIONS(435), + [anon_sym_SLASH_EQ] = ACTIONS(435), + [anon_sym_PERCENT_EQ] = ACTIONS(435), + [anon_sym_AMP_EQ] = ACTIONS(435), + [anon_sym_PIPE_EQ] = ACTIONS(435), + [anon_sym_CARET_EQ] = ACTIONS(435), + [anon_sym_LT_LT_EQ] = ACTIONS(435), + [anon_sym_GT_GT_EQ] = ACTIONS(435), + [anon_sym_move] = ACTIONS(437), + [anon_sym_DOT] = ACTIONS(437), + [sym_integer_literal] = ACTIONS(435), + [aux_sym_string_literal_token1] = ACTIONS(435), + [sym_char_literal] = ACTIONS(435), + [anon_sym_true] = ACTIONS(437), + [anon_sym_false] = ACTIONS(437), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(437), + [sym_crate] = ACTIONS(437), + [sym_metavariable] = ACTIONS(435), + [sym_raw_string_literal] = ACTIONS(435), + [sym_float_literal] = ACTIONS(435), + [sym_block_comment] = ACTIONS(3), + }, + [53] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1109), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_tuple_expression_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [54] = { + [ts_builtin_sym_end] = ACTIONS(441), + [sym_identifier] = ACTIONS(443), + [anon_sym_SEMI] = ACTIONS(441), + [anon_sym_macro_rules_BANG] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(441), + [anon_sym_RBRACE] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_QMARK] = ACTIONS(441), + [anon_sym_u8] = ACTIONS(443), + [anon_sym_i8] = ACTIONS(443), + [anon_sym_u16] = ACTIONS(443), + [anon_sym_i16] = ACTIONS(443), + [anon_sym_u32] = ACTIONS(443), + [anon_sym_i32] = ACTIONS(443), + [anon_sym_u64] = ACTIONS(443), + [anon_sym_i64] = ACTIONS(443), + [anon_sym_u128] = ACTIONS(443), + [anon_sym_i128] = ACTIONS(443), + [anon_sym_isize] = ACTIONS(443), + [anon_sym_usize] = ACTIONS(443), + [anon_sym_f32] = ACTIONS(443), + [anon_sym_f64] = ACTIONS(443), + [anon_sym_bool] = ACTIONS(443), + [anon_sym_str] = ACTIONS(443), + [anon_sym_char] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(443), + [anon_sym_as] = ACTIONS(443), + [anon_sym_async] = ACTIONS(443), + [anon_sym_break] = ACTIONS(443), + [anon_sym_const] = ACTIONS(443), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_default] = ACTIONS(443), + [anon_sym_enum] = ACTIONS(443), + [anon_sym_fn] = ACTIONS(443), + [anon_sym_for] = ACTIONS(443), + [anon_sym_if] = ACTIONS(443), + [anon_sym_impl] = ACTIONS(443), + [anon_sym_let] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(443), + [anon_sym_mod] = ACTIONS(443), + [anon_sym_pub] = ACTIONS(443), + [anon_sym_return] = ACTIONS(443), + [anon_sym_static] = ACTIONS(443), + [anon_sym_struct] = ACTIONS(443), + [anon_sym_trait] = ACTIONS(443), + [anon_sym_type] = ACTIONS(443), + [anon_sym_union] = ACTIONS(443), + [anon_sym_unsafe] = ACTIONS(443), + [anon_sym_use] = ACTIONS(443), + [anon_sym_while] = ACTIONS(443), + [anon_sym_POUND] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_EQ] = ACTIONS(443), + [anon_sym_extern] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(443), + [anon_sym_GT] = ACTIONS(443), + [anon_sym_COLON_COLON] = ACTIONS(441), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(441), + [anon_sym_DOT_DOT] = ACTIONS(443), + [anon_sym_DOT_DOT_EQ] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_AMP_AMP] = ACTIONS(441), + [anon_sym_PIPE_PIPE] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(443), + [anon_sym_CARET] = ACTIONS(443), + [anon_sym_EQ_EQ] = ACTIONS(441), + [anon_sym_BANG_EQ] = ACTIONS(441), + [anon_sym_LT_EQ] = ACTIONS(441), + [anon_sym_GT_EQ] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(443), + [anon_sym_GT_GT] = ACTIONS(443), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_PERCENT] = ACTIONS(443), + [anon_sym_PLUS_EQ] = ACTIONS(441), + [anon_sym_DASH_EQ] = ACTIONS(441), + [anon_sym_STAR_EQ] = ACTIONS(441), + [anon_sym_SLASH_EQ] = ACTIONS(441), + [anon_sym_PERCENT_EQ] = ACTIONS(441), + [anon_sym_AMP_EQ] = ACTIONS(441), + [anon_sym_PIPE_EQ] = ACTIONS(441), + [anon_sym_CARET_EQ] = ACTIONS(441), + [anon_sym_LT_LT_EQ] = ACTIONS(441), + [anon_sym_GT_GT_EQ] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(443), + [sym_integer_literal] = ACTIONS(441), + [aux_sym_string_literal_token1] = ACTIONS(441), + [sym_char_literal] = ACTIONS(441), + [anon_sym_true] = ACTIONS(443), + [anon_sym_false] = ACTIONS(443), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(443), + [sym_crate] = ACTIONS(443), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(441), + [sym_float_literal] = ACTIONS(441), + [sym_block_comment] = ACTIONS(3), + }, + [55] = { + [ts_builtin_sym_end] = ACTIONS(445), + [sym_identifier] = ACTIONS(447), + [anon_sym_SEMI] = ACTIONS(445), + [anon_sym_macro_rules_BANG] = ACTIONS(445), + [anon_sym_LPAREN] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(445), + [anon_sym_RBRACE] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_QMARK] = ACTIONS(445), + [anon_sym_u8] = ACTIONS(447), + [anon_sym_i8] = ACTIONS(447), + [anon_sym_u16] = ACTIONS(447), + [anon_sym_i16] = ACTIONS(447), + [anon_sym_u32] = ACTIONS(447), + [anon_sym_i32] = ACTIONS(447), + [anon_sym_u64] = ACTIONS(447), + [anon_sym_i64] = ACTIONS(447), + [anon_sym_u128] = ACTIONS(447), + [anon_sym_i128] = ACTIONS(447), + [anon_sym_isize] = ACTIONS(447), + [anon_sym_usize] = ACTIONS(447), + [anon_sym_f32] = ACTIONS(447), + [anon_sym_f64] = ACTIONS(447), + [anon_sym_bool] = ACTIONS(447), + [anon_sym_str] = ACTIONS(447), + [anon_sym_char] = ACTIONS(447), + [anon_sym_SQUOTE] = ACTIONS(447), + [anon_sym_as] = ACTIONS(447), + [anon_sym_async] = ACTIONS(447), + [anon_sym_break] = ACTIONS(447), + [anon_sym_const] = ACTIONS(447), + [anon_sym_continue] = ACTIONS(447), + [anon_sym_default] = ACTIONS(447), + [anon_sym_enum] = ACTIONS(447), + [anon_sym_fn] = ACTIONS(447), + [anon_sym_for] = ACTIONS(447), + [anon_sym_if] = ACTIONS(447), + [anon_sym_impl] = ACTIONS(447), + [anon_sym_let] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(447), + [anon_sym_match] = ACTIONS(447), + [anon_sym_mod] = ACTIONS(447), + [anon_sym_pub] = ACTIONS(447), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(447), + [anon_sym_struct] = ACTIONS(447), + [anon_sym_trait] = ACTIONS(447), + [anon_sym_type] = ACTIONS(447), + [anon_sym_union] = ACTIONS(447), + [anon_sym_unsafe] = ACTIONS(447), + [anon_sym_use] = ACTIONS(447), + [anon_sym_while] = ACTIONS(447), + [anon_sym_POUND] = ACTIONS(445), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_EQ] = ACTIONS(447), + [anon_sym_extern] = ACTIONS(447), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_COLON_COLON] = ACTIONS(445), + [anon_sym_AMP] = ACTIONS(447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(445), + [anon_sym_DOT_DOT] = ACTIONS(447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_AMP_AMP] = ACTIONS(445), + [anon_sym_PIPE_PIPE] = ACTIONS(445), + [anon_sym_PIPE] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_EQ_EQ] = ACTIONS(445), + [anon_sym_BANG_EQ] = ACTIONS(445), + [anon_sym_LT_EQ] = ACTIONS(445), + [anon_sym_GT_EQ] = ACTIONS(445), + [anon_sym_LT_LT] = ACTIONS(447), + [anon_sym_GT_GT] = ACTIONS(447), + [anon_sym_SLASH] = ACTIONS(447), + [anon_sym_PERCENT] = ACTIONS(447), + [anon_sym_PLUS_EQ] = ACTIONS(445), + [anon_sym_DASH_EQ] = ACTIONS(445), + [anon_sym_STAR_EQ] = ACTIONS(445), + [anon_sym_SLASH_EQ] = ACTIONS(445), + [anon_sym_PERCENT_EQ] = ACTIONS(445), + [anon_sym_AMP_EQ] = ACTIONS(445), + [anon_sym_PIPE_EQ] = ACTIONS(445), + [anon_sym_CARET_EQ] = ACTIONS(445), + [anon_sym_LT_LT_EQ] = ACTIONS(445), + [anon_sym_GT_GT_EQ] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_DOT] = ACTIONS(447), + [sym_integer_literal] = ACTIONS(445), + [aux_sym_string_literal_token1] = ACTIONS(445), + [sym_char_literal] = ACTIONS(445), + [anon_sym_true] = ACTIONS(447), + [anon_sym_false] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(447), + [sym_super] = ACTIONS(447), + [sym_crate] = ACTIONS(447), + [sym_metavariable] = ACTIONS(445), + [sym_raw_string_literal] = ACTIONS(445), + [sym_float_literal] = ACTIONS(445), + [sym_block_comment] = ACTIONS(3), + }, + [56] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1109), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_tuple_expression_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [57] = { + [ts_builtin_sym_end] = ACTIONS(449), + [sym_identifier] = ACTIONS(451), + [anon_sym_SEMI] = ACTIONS(453), + [anon_sym_macro_rules_BANG] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(453), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(455), + [anon_sym_QMARK] = ACTIONS(453), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u128] = ACTIONS(451), + [anon_sym_i128] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_str] = ACTIONS(451), + [anon_sym_char] = ACTIONS(451), + [anon_sym_SQUOTE] = ACTIONS(451), + [anon_sym_as] = ACTIONS(455), + [anon_sym_async] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_const] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_default] = ACTIONS(451), + [anon_sym_enum] = ACTIONS(451), + [anon_sym_fn] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_impl] = ACTIONS(451), + [anon_sym_let] = ACTIONS(451), + [anon_sym_loop] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_mod] = ACTIONS(451), + [anon_sym_pub] = ACTIONS(451), + [anon_sym_return] = ACTIONS(451), + [anon_sym_static] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_trait] = ACTIONS(451), + [anon_sym_type] = ACTIONS(451), + [anon_sym_union] = ACTIONS(451), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_use] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_POUND] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(455), + [anon_sym_extern] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(455), + [anon_sym_GT] = ACTIONS(455), + [anon_sym_COLON_COLON] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(453), + [anon_sym_DOT_DOT] = ACTIONS(455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_AMP_AMP] = ACTIONS(453), + [anon_sym_PIPE_PIPE] = ACTIONS(453), + [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_CARET] = ACTIONS(455), + [anon_sym_EQ_EQ] = ACTIONS(453), + [anon_sym_BANG_EQ] = ACTIONS(453), + [anon_sym_LT_EQ] = ACTIONS(453), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_LT_LT] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(455), + [anon_sym_PERCENT] = ACTIONS(455), + [anon_sym_PLUS_EQ] = ACTIONS(453), + [anon_sym_DASH_EQ] = ACTIONS(453), + [anon_sym_STAR_EQ] = ACTIONS(453), + [anon_sym_SLASH_EQ] = ACTIONS(453), + [anon_sym_PERCENT_EQ] = ACTIONS(453), + [anon_sym_AMP_EQ] = ACTIONS(453), + [anon_sym_PIPE_EQ] = ACTIONS(453), + [anon_sym_CARET_EQ] = ACTIONS(453), + [anon_sym_LT_LT_EQ] = ACTIONS(453), + [anon_sym_GT_GT_EQ] = ACTIONS(453), + [anon_sym_move] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(455), + [sym_integer_literal] = ACTIONS(449), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(449), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(451), + [sym_super] = ACTIONS(451), + [sym_crate] = ACTIONS(451), + [sym_metavariable] = ACTIONS(449), + [sym_raw_string_literal] = ACTIONS(449), + [sym_float_literal] = ACTIONS(449), + [sym_block_comment] = ACTIONS(3), + }, + [58] = { + [ts_builtin_sym_end] = ACTIONS(457), + [sym_identifier] = ACTIONS(459), + [anon_sym_SEMI] = ACTIONS(457), + [anon_sym_macro_rules_BANG] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(457), + [anon_sym_RBRACE] = ACTIONS(457), + [anon_sym_LBRACK] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(459), + [anon_sym_QMARK] = ACTIONS(457), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SQUOTE] = ACTIONS(459), + [anon_sym_as] = ACTIONS(459), + [anon_sym_async] = ACTIONS(459), + [anon_sym_break] = ACTIONS(459), + [anon_sym_const] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(459), + [anon_sym_default] = ACTIONS(459), + [anon_sym_enum] = ACTIONS(459), + [anon_sym_fn] = ACTIONS(459), + [anon_sym_for] = ACTIONS(459), + [anon_sym_if] = ACTIONS(459), + [anon_sym_impl] = ACTIONS(459), + [anon_sym_let] = ACTIONS(459), + [anon_sym_loop] = ACTIONS(459), + [anon_sym_match] = ACTIONS(459), + [anon_sym_mod] = ACTIONS(459), + [anon_sym_pub] = ACTIONS(459), + [anon_sym_return] = ACTIONS(459), + [anon_sym_static] = ACTIONS(459), + [anon_sym_struct] = ACTIONS(459), + [anon_sym_trait] = ACTIONS(459), + [anon_sym_type] = ACTIONS(459), + [anon_sym_union] = ACTIONS(459), + [anon_sym_unsafe] = ACTIONS(459), + [anon_sym_use] = ACTIONS(459), + [anon_sym_while] = ACTIONS(459), + [anon_sym_POUND] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_EQ] = ACTIONS(459), + [anon_sym_extern] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_COLON_COLON] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(457), + [anon_sym_DOT_DOT] = ACTIONS(459), + [anon_sym_DOT_DOT_EQ] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_PIPE] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_GT_GT] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(459), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_DOT] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(457), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(457), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(459), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(457), + [sym_raw_string_literal] = ACTIONS(457), + [sym_float_literal] = ACTIONS(457), + [sym_block_comment] = ACTIONS(3), + }, + [59] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1167), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_tuple_expression_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(464), + [anon_sym_RPAREN] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(472), + [anon_sym_STAR] = ACTIONS(475), + [anon_sym_u8] = ACTIONS(478), + [anon_sym_i8] = ACTIONS(478), + [anon_sym_u16] = ACTIONS(478), + [anon_sym_i16] = ACTIONS(478), + [anon_sym_u32] = ACTIONS(478), + [anon_sym_i32] = ACTIONS(478), + [anon_sym_u64] = ACTIONS(478), + [anon_sym_i64] = ACTIONS(478), + [anon_sym_u128] = ACTIONS(478), + [anon_sym_i128] = ACTIONS(478), + [anon_sym_isize] = ACTIONS(478), + [anon_sym_usize] = ACTIONS(478), + [anon_sym_f32] = ACTIONS(478), + [anon_sym_f64] = ACTIONS(478), + [anon_sym_bool] = ACTIONS(478), + [anon_sym_str] = ACTIONS(478), + [anon_sym_char] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(481), + [anon_sym_async] = ACTIONS(484), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(490), + [anon_sym_continue] = ACTIONS(493), + [anon_sym_default] = ACTIONS(496), + [anon_sym_for] = ACTIONS(499), + [anon_sym_if] = ACTIONS(502), + [anon_sym_loop] = ACTIONS(505), + [anon_sym_match] = ACTIONS(508), + [anon_sym_return] = ACTIONS(511), + [anon_sym_union] = ACTIONS(496), + [anon_sym_unsafe] = ACTIONS(514), + [anon_sym_while] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(526), + [anon_sym_DOT_DOT] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_move] = ACTIONS(535), + [sym_integer_literal] = ACTIONS(538), + [aux_sym_string_literal_token1] = ACTIONS(541), + [sym_char_literal] = ACTIONS(538), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(547), + [sym_super] = ACTIONS(550), + [sym_crate] = ACTIONS(550), + [sym_metavariable] = ACTIONS(553), + [sym_raw_string_literal] = ACTIONS(538), + [sym_float_literal] = ACTIONS(538), + [sym_block_comment] = ACTIONS(3), + }, + [60] = { + [ts_builtin_sym_end] = ACTIONS(556), + [sym_identifier] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(556), + [anon_sym_macro_rules_BANG] = ACTIONS(556), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_RBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(556), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_QMARK] = ACTIONS(453), + [anon_sym_u8] = ACTIONS(558), + [anon_sym_i8] = ACTIONS(558), + [anon_sym_u16] = ACTIONS(558), + [anon_sym_i16] = ACTIONS(558), + [anon_sym_u32] = ACTIONS(558), + [anon_sym_i32] = ACTIONS(558), + [anon_sym_u64] = ACTIONS(558), + [anon_sym_i64] = ACTIONS(558), + [anon_sym_u128] = ACTIONS(558), + [anon_sym_i128] = ACTIONS(558), + [anon_sym_isize] = ACTIONS(558), + [anon_sym_usize] = ACTIONS(558), + [anon_sym_f32] = ACTIONS(558), + [anon_sym_f64] = ACTIONS(558), + [anon_sym_bool] = ACTIONS(558), + [anon_sym_str] = ACTIONS(558), + [anon_sym_char] = ACTIONS(558), + [anon_sym_SQUOTE] = ACTIONS(558), + [anon_sym_as] = ACTIONS(455), + [anon_sym_async] = ACTIONS(558), + [anon_sym_break] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_continue] = ACTIONS(558), + [anon_sym_default] = ACTIONS(558), + [anon_sym_enum] = ACTIONS(558), + [anon_sym_fn] = ACTIONS(558), + [anon_sym_for] = ACTIONS(558), + [anon_sym_if] = ACTIONS(558), + [anon_sym_impl] = ACTIONS(558), + [anon_sym_let] = ACTIONS(558), + [anon_sym_loop] = ACTIONS(558), + [anon_sym_match] = ACTIONS(558), + [anon_sym_mod] = ACTIONS(558), + [anon_sym_pub] = ACTIONS(558), + [anon_sym_return] = ACTIONS(558), + [anon_sym_static] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(558), + [anon_sym_trait] = ACTIONS(558), + [anon_sym_type] = ACTIONS(558), + [anon_sym_union] = ACTIONS(558), + [anon_sym_unsafe] = ACTIONS(558), + [anon_sym_use] = ACTIONS(558), + [anon_sym_while] = ACTIONS(558), + [anon_sym_POUND] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(455), + [anon_sym_extern] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(455), + [anon_sym_COLON_COLON] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(453), + [anon_sym_DOT_DOT] = ACTIONS(558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(453), + [anon_sym_PIPE_PIPE] = ACTIONS(453), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_CARET] = ACTIONS(455), + [anon_sym_EQ_EQ] = ACTIONS(453), + [anon_sym_BANG_EQ] = ACTIONS(453), + [anon_sym_LT_EQ] = ACTIONS(453), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_LT_LT] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(455), + [anon_sym_PERCENT] = ACTIONS(455), + [anon_sym_PLUS_EQ] = ACTIONS(453), + [anon_sym_DASH_EQ] = ACTIONS(453), + [anon_sym_STAR_EQ] = ACTIONS(453), + [anon_sym_SLASH_EQ] = ACTIONS(453), + [anon_sym_PERCENT_EQ] = ACTIONS(453), + [anon_sym_AMP_EQ] = ACTIONS(453), + [anon_sym_PIPE_EQ] = ACTIONS(453), + [anon_sym_CARET_EQ] = ACTIONS(453), + [anon_sym_LT_LT_EQ] = ACTIONS(453), + [anon_sym_GT_GT_EQ] = ACTIONS(453), + [anon_sym_move] = ACTIONS(558), + [anon_sym_DOT] = ACTIONS(455), + [sym_integer_literal] = ACTIONS(556), + [aux_sym_string_literal_token1] = ACTIONS(556), + [sym_char_literal] = ACTIONS(556), + [anon_sym_true] = ACTIONS(558), + [anon_sym_false] = ACTIONS(558), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(558), + [sym_super] = ACTIONS(558), + [sym_crate] = ACTIONS(558), + [sym_metavariable] = ACTIONS(556), + [sym_raw_string_literal] = ACTIONS(556), + [sym_float_literal] = ACTIONS(556), + [sym_block_comment] = ACTIONS(3), + }, + [61] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1118), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [aux_sym_tuple_expression_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [62] = { + [ts_builtin_sym_end] = ACTIONS(562), + [sym_identifier] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_macro_rules_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(562), + [anon_sym_u8] = ACTIONS(564), + [anon_sym_i8] = ACTIONS(564), + [anon_sym_u16] = ACTIONS(564), + [anon_sym_i16] = ACTIONS(564), + [anon_sym_u32] = ACTIONS(564), + [anon_sym_i32] = ACTIONS(564), + [anon_sym_u64] = ACTIONS(564), + [anon_sym_i64] = ACTIONS(564), + [anon_sym_u128] = ACTIONS(564), + [anon_sym_i128] = ACTIONS(564), + [anon_sym_isize] = ACTIONS(564), + [anon_sym_usize] = ACTIONS(564), + [anon_sym_f32] = ACTIONS(564), + [anon_sym_f64] = ACTIONS(564), + [anon_sym_bool] = ACTIONS(564), + [anon_sym_str] = ACTIONS(564), + [anon_sym_char] = ACTIONS(564), + [anon_sym_SQUOTE] = ACTIONS(564), + [anon_sym_as] = ACTIONS(564), + [anon_sym_async] = ACTIONS(564), + [anon_sym_break] = ACTIONS(564), + [anon_sym_const] = ACTIONS(564), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_default] = ACTIONS(564), + [anon_sym_enum] = ACTIONS(564), + [anon_sym_fn] = ACTIONS(564), + [anon_sym_for] = ACTIONS(564), + [anon_sym_if] = ACTIONS(564), + [anon_sym_impl] = ACTIONS(564), + [anon_sym_let] = ACTIONS(564), + [anon_sym_loop] = ACTIONS(564), + [anon_sym_match] = ACTIONS(564), + [anon_sym_mod] = ACTIONS(564), + [anon_sym_pub] = ACTIONS(564), + [anon_sym_return] = ACTIONS(564), + [anon_sym_static] = ACTIONS(564), + [anon_sym_struct] = ACTIONS(564), + [anon_sym_trait] = ACTIONS(564), + [anon_sym_type] = ACTIONS(564), + [anon_sym_union] = ACTIONS(564), + [anon_sym_unsafe] = ACTIONS(564), + [anon_sym_use] = ACTIONS(564), + [anon_sym_while] = ACTIONS(564), + [anon_sym_POUND] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_extern] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_COLON_COLON] = ACTIONS(562), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(562), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_EQ] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(562), + [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(562), + [anon_sym_DASH_EQ] = ACTIONS(562), + [anon_sym_STAR_EQ] = ACTIONS(562), + [anon_sym_SLASH_EQ] = ACTIONS(562), + [anon_sym_PERCENT_EQ] = ACTIONS(562), + [anon_sym_AMP_EQ] = ACTIONS(562), + [anon_sym_PIPE_EQ] = ACTIONS(562), + [anon_sym_CARET_EQ] = ACTIONS(562), + [anon_sym_LT_LT_EQ] = ACTIONS(562), + [anon_sym_GT_GT_EQ] = ACTIONS(562), + [anon_sym_move] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [sym_integer_literal] = ACTIONS(562), + [aux_sym_string_literal_token1] = ACTIONS(562), + [sym_char_literal] = ACTIONS(562), + [anon_sym_true] = ACTIONS(564), + [anon_sym_false] = ACTIONS(564), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(564), + [sym_super] = ACTIONS(564), + [sym_crate] = ACTIONS(564), + [sym_metavariable] = ACTIONS(562), + [sym_raw_string_literal] = ACTIONS(562), + [sym_float_literal] = ACTIONS(562), + [sym_block_comment] = ACTIONS(3), + }, + [63] = { + [ts_builtin_sym_end] = ACTIONS(566), + [sym_identifier] = ACTIONS(568), + [anon_sym_SEMI] = ACTIONS(566), + [anon_sym_macro_rules_BANG] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_u8] = ACTIONS(568), + [anon_sym_i8] = ACTIONS(568), + [anon_sym_u16] = ACTIONS(568), + [anon_sym_i16] = ACTIONS(568), + [anon_sym_u32] = ACTIONS(568), + [anon_sym_i32] = ACTIONS(568), + [anon_sym_u64] = ACTIONS(568), + [anon_sym_i64] = ACTIONS(568), + [anon_sym_u128] = ACTIONS(568), + [anon_sym_i128] = ACTIONS(568), + [anon_sym_isize] = ACTIONS(568), + [anon_sym_usize] = ACTIONS(568), + [anon_sym_f32] = ACTIONS(568), + [anon_sym_f64] = ACTIONS(568), + [anon_sym_bool] = ACTIONS(568), + [anon_sym_str] = ACTIONS(568), + [anon_sym_char] = ACTIONS(568), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_as] = ACTIONS(568), + [anon_sym_async] = ACTIONS(568), + [anon_sym_break] = ACTIONS(568), + [anon_sym_const] = ACTIONS(568), + [anon_sym_continue] = ACTIONS(568), + [anon_sym_default] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(568), + [anon_sym_fn] = ACTIONS(568), + [anon_sym_for] = ACTIONS(568), + [anon_sym_if] = ACTIONS(568), + [anon_sym_impl] = ACTIONS(568), + [anon_sym_let] = ACTIONS(568), + [anon_sym_loop] = ACTIONS(568), + [anon_sym_match] = ACTIONS(568), + [anon_sym_mod] = ACTIONS(568), + [anon_sym_pub] = ACTIONS(568), + [anon_sym_return] = ACTIONS(568), + [anon_sym_static] = ACTIONS(568), + [anon_sym_struct] = ACTIONS(568), + [anon_sym_trait] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), + [anon_sym_union] = ACTIONS(568), + [anon_sym_unsafe] = ACTIONS(568), + [anon_sym_use] = ACTIONS(568), + [anon_sym_while] = ACTIONS(568), + [anon_sym_POUND] = ACTIONS(566), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_extern] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_move] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(566), + [aux_sym_string_literal_token1] = ACTIONS(566), + [sym_char_literal] = ACTIONS(566), + [anon_sym_true] = ACTIONS(568), + [anon_sym_false] = ACTIONS(568), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(568), + [sym_super] = ACTIONS(568), + [sym_crate] = ACTIONS(568), + [sym_metavariable] = ACTIONS(566), + [sym_raw_string_literal] = ACTIONS(566), + [sym_float_literal] = ACTIONS(566), + [sym_block_comment] = ACTIONS(3), + }, + [64] = { + [ts_builtin_sym_end] = ACTIONS(570), + [sym_identifier] = ACTIONS(572), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_macro_rules_BANG] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(570), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u128] = ACTIONS(572), + [anon_sym_i128] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_str] = ACTIONS(572), + [anon_sym_char] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_as] = ACTIONS(572), + [anon_sym_async] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_const] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_enum] = ACTIONS(572), + [anon_sym_fn] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_impl] = ACTIONS(572), + [anon_sym_let] = ACTIONS(572), + [anon_sym_loop] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_mod] = ACTIONS(572), + [anon_sym_pub] = ACTIONS(572), + [anon_sym_return] = ACTIONS(572), + [anon_sym_static] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_trait] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_union] = ACTIONS(572), + [anon_sym_unsafe] = ACTIONS(572), + [anon_sym_use] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(570), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_extern] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_move] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(572), + [sym_integer_literal] = ACTIONS(570), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(570), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(572), + [sym_super] = ACTIONS(572), + [sym_crate] = ACTIONS(572), + [sym_metavariable] = ACTIONS(570), + [sym_raw_string_literal] = ACTIONS(570), + [sym_float_literal] = ACTIONS(570), + [sym_block_comment] = ACTIONS(3), + }, + [65] = { + [ts_builtin_sym_end] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym_macro_rules_BANG] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_u8] = ACTIONS(576), + [anon_sym_i8] = ACTIONS(576), + [anon_sym_u16] = ACTIONS(576), + [anon_sym_i16] = ACTIONS(576), + [anon_sym_u32] = ACTIONS(576), + [anon_sym_i32] = ACTIONS(576), + [anon_sym_u64] = ACTIONS(576), + [anon_sym_i64] = ACTIONS(576), + [anon_sym_u128] = ACTIONS(576), + [anon_sym_i128] = ACTIONS(576), + [anon_sym_isize] = ACTIONS(576), + [anon_sym_usize] = ACTIONS(576), + [anon_sym_f32] = ACTIONS(576), + [anon_sym_f64] = ACTIONS(576), + [anon_sym_bool] = ACTIONS(576), + [anon_sym_str] = ACTIONS(576), + [anon_sym_char] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(576), + [anon_sym_as] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_break] = ACTIONS(576), + [anon_sym_const] = ACTIONS(576), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_default] = ACTIONS(576), + [anon_sym_enum] = ACTIONS(576), + [anon_sym_fn] = ACTIONS(576), + [anon_sym_for] = ACTIONS(576), + [anon_sym_if] = ACTIONS(576), + [anon_sym_impl] = ACTIONS(576), + [anon_sym_let] = ACTIONS(576), + [anon_sym_loop] = ACTIONS(576), + [anon_sym_match] = ACTIONS(576), + [anon_sym_mod] = ACTIONS(576), + [anon_sym_pub] = ACTIONS(576), + [anon_sym_return] = ACTIONS(576), + [anon_sym_static] = ACTIONS(576), + [anon_sym_struct] = ACTIONS(576), + [anon_sym_trait] = ACTIONS(576), + [anon_sym_type] = ACTIONS(576), + [anon_sym_union] = ACTIONS(576), + [anon_sym_unsafe] = ACTIONS(576), + [anon_sym_use] = ACTIONS(576), + [anon_sym_while] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(576), + [anon_sym_extern] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_EQ_EQ] = ACTIONS(574), + [anon_sym_BANG_EQ] = ACTIONS(574), + [anon_sym_LT_EQ] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(576), + [anon_sym_PERCENT] = ACTIONS(576), + [anon_sym_PLUS_EQ] = ACTIONS(574), + [anon_sym_DASH_EQ] = ACTIONS(574), + [anon_sym_STAR_EQ] = ACTIONS(574), + [anon_sym_SLASH_EQ] = ACTIONS(574), + [anon_sym_PERCENT_EQ] = ACTIONS(574), + [anon_sym_AMP_EQ] = ACTIONS(574), + [anon_sym_PIPE_EQ] = ACTIONS(574), + [anon_sym_CARET_EQ] = ACTIONS(574), + [anon_sym_LT_LT_EQ] = ACTIONS(574), + [anon_sym_GT_GT_EQ] = ACTIONS(574), + [anon_sym_move] = ACTIONS(576), + [anon_sym_DOT] = ACTIONS(576), + [sym_integer_literal] = ACTIONS(574), + [aux_sym_string_literal_token1] = ACTIONS(574), + [sym_char_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(576), + [sym_super] = ACTIONS(576), + [sym_crate] = ACTIONS(576), + [sym_metavariable] = ACTIONS(574), + [sym_raw_string_literal] = ACTIONS(574), + [sym_float_literal] = ACTIONS(574), + [sym_block_comment] = ACTIONS(3), + }, + [66] = { + [ts_builtin_sym_end] = ACTIONS(578), + [sym_identifier] = ACTIONS(580), + [anon_sym_SEMI] = ACTIONS(578), + [anon_sym_macro_rules_BANG] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(580), + [anon_sym_QMARK] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(580), + [anon_sym_i8] = ACTIONS(580), + [anon_sym_u16] = ACTIONS(580), + [anon_sym_i16] = ACTIONS(580), + [anon_sym_u32] = ACTIONS(580), + [anon_sym_i32] = ACTIONS(580), + [anon_sym_u64] = ACTIONS(580), + [anon_sym_i64] = ACTIONS(580), + [anon_sym_u128] = ACTIONS(580), + [anon_sym_i128] = ACTIONS(580), + [anon_sym_isize] = ACTIONS(580), + [anon_sym_usize] = ACTIONS(580), + [anon_sym_f32] = ACTIONS(580), + [anon_sym_f64] = ACTIONS(580), + [anon_sym_bool] = ACTIONS(580), + [anon_sym_str] = ACTIONS(580), + [anon_sym_char] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(580), + [anon_sym_as] = ACTIONS(580), + [anon_sym_async] = ACTIONS(580), + [anon_sym_break] = ACTIONS(580), + [anon_sym_const] = ACTIONS(580), + [anon_sym_continue] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_enum] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(580), + [anon_sym_for] = ACTIONS(580), + [anon_sym_if] = ACTIONS(580), + [anon_sym_impl] = ACTIONS(580), + [anon_sym_let] = ACTIONS(580), + [anon_sym_loop] = ACTIONS(580), + [anon_sym_match] = ACTIONS(580), + [anon_sym_mod] = ACTIONS(580), + [anon_sym_pub] = ACTIONS(580), + [anon_sym_return] = ACTIONS(580), + [anon_sym_static] = ACTIONS(580), + [anon_sym_struct] = ACTIONS(580), + [anon_sym_trait] = ACTIONS(580), + [anon_sym_type] = ACTIONS(580), + [anon_sym_union] = ACTIONS(580), + [anon_sym_unsafe] = ACTIONS(580), + [anon_sym_use] = ACTIONS(580), + [anon_sym_while] = ACTIONS(580), + [anon_sym_POUND] = ACTIONS(578), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_EQ] = ACTIONS(580), + [anon_sym_extern] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_COLON_COLON] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [anon_sym_DOT_DOT] = ACTIONS(580), + [anon_sym_DOT_DOT_EQ] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_EQ_EQ] = ACTIONS(578), + [anon_sym_BANG_EQ] = ACTIONS(578), + [anon_sym_LT_EQ] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(580), + [anon_sym_GT_GT] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(580), + [anon_sym_PLUS_EQ] = ACTIONS(578), + [anon_sym_DASH_EQ] = ACTIONS(578), + [anon_sym_STAR_EQ] = ACTIONS(578), + [anon_sym_SLASH_EQ] = ACTIONS(578), + [anon_sym_PERCENT_EQ] = ACTIONS(578), + [anon_sym_AMP_EQ] = ACTIONS(578), + [anon_sym_PIPE_EQ] = ACTIONS(578), + [anon_sym_CARET_EQ] = ACTIONS(578), + [anon_sym_LT_LT_EQ] = ACTIONS(578), + [anon_sym_GT_GT_EQ] = ACTIONS(578), + [anon_sym_move] = ACTIONS(580), + [anon_sym_DOT] = ACTIONS(580), + [sym_integer_literal] = ACTIONS(578), + [aux_sym_string_literal_token1] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(580), + [anon_sym_false] = ACTIONS(580), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(580), + [sym_super] = ACTIONS(580), + [sym_crate] = ACTIONS(580), + [sym_metavariable] = ACTIONS(578), + [sym_raw_string_literal] = ACTIONS(578), + [sym_float_literal] = ACTIONS(578), + [sym_block_comment] = ACTIONS(3), + }, + [67] = { + [ts_builtin_sym_end] = ACTIONS(582), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(582), + [anon_sym_macro_rules_BANG] = ACTIONS(582), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_STAR] = ACTIONS(584), + [anon_sym_QMARK] = ACTIONS(582), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [anon_sym_POUND] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(584), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_extern] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(584), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_COLON_COLON] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(584), + [anon_sym_DOT_DOT_EQ] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_AMP_AMP] = ACTIONS(582), + [anon_sym_PIPE_PIPE] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(584), + [anon_sym_CARET] = ACTIONS(584), + [anon_sym_EQ_EQ] = ACTIONS(582), + [anon_sym_BANG_EQ] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(582), + [anon_sym_LT_LT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_PLUS_EQ] = ACTIONS(582), + [anon_sym_DASH_EQ] = ACTIONS(582), + [anon_sym_STAR_EQ] = ACTIONS(582), + [anon_sym_SLASH_EQ] = ACTIONS(582), + [anon_sym_PERCENT_EQ] = ACTIONS(582), + [anon_sym_AMP_EQ] = ACTIONS(582), + [anon_sym_PIPE_EQ] = ACTIONS(582), + [anon_sym_CARET_EQ] = ACTIONS(582), + [anon_sym_LT_LT_EQ] = ACTIONS(582), + [anon_sym_GT_GT_EQ] = ACTIONS(582), + [anon_sym_move] = ACTIONS(584), + [anon_sym_DOT] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(582), + [aux_sym_string_literal_token1] = ACTIONS(582), + [sym_char_literal] = ACTIONS(582), + [anon_sym_true] = ACTIONS(584), + [anon_sym_false] = ACTIONS(584), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_metavariable] = ACTIONS(582), + [sym_raw_string_literal] = ACTIONS(582), + [sym_float_literal] = ACTIONS(582), + [sym_block_comment] = ACTIONS(3), + }, + [68] = { + [ts_builtin_sym_end] = ACTIONS(586), + [sym_identifier] = ACTIONS(588), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_macro_rules_BANG] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(588), + [anon_sym_i8] = ACTIONS(588), + [anon_sym_u16] = ACTIONS(588), + [anon_sym_i16] = ACTIONS(588), + [anon_sym_u32] = ACTIONS(588), + [anon_sym_i32] = ACTIONS(588), + [anon_sym_u64] = ACTIONS(588), + [anon_sym_i64] = ACTIONS(588), + [anon_sym_u128] = ACTIONS(588), + [anon_sym_i128] = ACTIONS(588), + [anon_sym_isize] = ACTIONS(588), + [anon_sym_usize] = ACTIONS(588), + [anon_sym_f32] = ACTIONS(588), + [anon_sym_f64] = ACTIONS(588), + [anon_sym_bool] = ACTIONS(588), + [anon_sym_str] = ACTIONS(588), + [anon_sym_char] = ACTIONS(588), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_as] = ACTIONS(588), + [anon_sym_async] = ACTIONS(588), + [anon_sym_break] = ACTIONS(588), + [anon_sym_const] = ACTIONS(588), + [anon_sym_continue] = ACTIONS(588), + [anon_sym_default] = ACTIONS(588), + [anon_sym_enum] = ACTIONS(588), + [anon_sym_fn] = ACTIONS(588), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(588), + [anon_sym_impl] = ACTIONS(588), + [anon_sym_let] = ACTIONS(588), + [anon_sym_loop] = ACTIONS(588), + [anon_sym_match] = ACTIONS(588), + [anon_sym_mod] = ACTIONS(588), + [anon_sym_pub] = ACTIONS(588), + [anon_sym_return] = ACTIONS(588), + [anon_sym_static] = ACTIONS(588), + [anon_sym_struct] = ACTIONS(588), + [anon_sym_trait] = ACTIONS(588), + [anon_sym_type] = ACTIONS(588), + [anon_sym_union] = ACTIONS(588), + [anon_sym_unsafe] = ACTIONS(588), + [anon_sym_use] = ACTIONS(588), + [anon_sym_while] = ACTIONS(588), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(588), + [anon_sym_extern] = ACTIONS(588), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_GT] = ACTIONS(588), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(588), + [anon_sym_PERCENT] = ACTIONS(588), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_move] = ACTIONS(588), + [anon_sym_DOT] = ACTIONS(588), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(586), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(588), + [anon_sym_false] = ACTIONS(588), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(588), + [sym_super] = ACTIONS(588), + [sym_crate] = ACTIONS(588), + [sym_metavariable] = ACTIONS(586), + [sym_raw_string_literal] = ACTIONS(586), + [sym_float_literal] = ACTIONS(586), + [sym_block_comment] = ACTIONS(3), + }, + [69] = { + [ts_builtin_sym_end] = ACTIONS(590), + [sym_identifier] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(590), + [anon_sym_macro_rules_BANG] = ACTIONS(590), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_QMARK] = ACTIONS(590), + [anon_sym_u8] = ACTIONS(592), + [anon_sym_i8] = ACTIONS(592), + [anon_sym_u16] = ACTIONS(592), + [anon_sym_i16] = ACTIONS(592), + [anon_sym_u32] = ACTIONS(592), + [anon_sym_i32] = ACTIONS(592), + [anon_sym_u64] = ACTIONS(592), + [anon_sym_i64] = ACTIONS(592), + [anon_sym_u128] = ACTIONS(592), + [anon_sym_i128] = ACTIONS(592), + [anon_sym_isize] = ACTIONS(592), + [anon_sym_usize] = ACTIONS(592), + [anon_sym_f32] = ACTIONS(592), + [anon_sym_f64] = ACTIONS(592), + [anon_sym_bool] = ACTIONS(592), + [anon_sym_str] = ACTIONS(592), + [anon_sym_char] = ACTIONS(592), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_as] = ACTIONS(592), + [anon_sym_async] = ACTIONS(592), + [anon_sym_break] = ACTIONS(592), + [anon_sym_const] = ACTIONS(592), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_default] = ACTIONS(592), + [anon_sym_enum] = ACTIONS(592), + [anon_sym_fn] = ACTIONS(592), + [anon_sym_for] = ACTIONS(592), + [anon_sym_if] = ACTIONS(592), + [anon_sym_impl] = ACTIONS(592), + [anon_sym_let] = ACTIONS(592), + [anon_sym_loop] = ACTIONS(592), + [anon_sym_match] = ACTIONS(592), + [anon_sym_mod] = ACTIONS(592), + [anon_sym_pub] = ACTIONS(592), + [anon_sym_return] = ACTIONS(592), + [anon_sym_static] = ACTIONS(592), + [anon_sym_struct] = ACTIONS(592), + [anon_sym_trait] = ACTIONS(592), + [anon_sym_type] = ACTIONS(592), + [anon_sym_union] = ACTIONS(592), + [anon_sym_unsafe] = ACTIONS(592), + [anon_sym_use] = ACTIONS(592), + [anon_sym_while] = ACTIONS(592), + [anon_sym_POUND] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_EQ] = ACTIONS(592), + [anon_sym_extern] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(592), + [anon_sym_GT] = ACTIONS(592), + [anon_sym_COLON_COLON] = ACTIONS(590), + [anon_sym_AMP] = ACTIONS(592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(590), + [anon_sym_DOT_DOT] = ACTIONS(592), + [anon_sym_DOT_DOT_EQ] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_AMP_AMP] = ACTIONS(590), + [anon_sym_PIPE_PIPE] = ACTIONS(590), + [anon_sym_PIPE] = ACTIONS(592), + [anon_sym_CARET] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(590), + [anon_sym_BANG_EQ] = ACTIONS(590), + [anon_sym_LT_EQ] = ACTIONS(590), + [anon_sym_GT_EQ] = ACTIONS(590), + [anon_sym_LT_LT] = ACTIONS(592), + [anon_sym_GT_GT] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(592), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_PLUS_EQ] = ACTIONS(590), + [anon_sym_DASH_EQ] = ACTIONS(590), + [anon_sym_STAR_EQ] = ACTIONS(590), + [anon_sym_SLASH_EQ] = ACTIONS(590), + [anon_sym_PERCENT_EQ] = ACTIONS(590), + [anon_sym_AMP_EQ] = ACTIONS(590), + [anon_sym_PIPE_EQ] = ACTIONS(590), + [anon_sym_CARET_EQ] = ACTIONS(590), + [anon_sym_LT_LT_EQ] = ACTIONS(590), + [anon_sym_GT_GT_EQ] = ACTIONS(590), + [anon_sym_move] = ACTIONS(592), + [anon_sym_DOT] = ACTIONS(592), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(590), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(592), + [anon_sym_false] = ACTIONS(592), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(592), + [sym_super] = ACTIONS(592), + [sym_crate] = ACTIONS(592), + [sym_metavariable] = ACTIONS(590), + [sym_raw_string_literal] = ACTIONS(590), + [sym_float_literal] = ACTIONS(590), + [sym_block_comment] = ACTIONS(3), + }, + [70] = { + [ts_builtin_sym_end] = ACTIONS(594), + [sym_identifier] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_macro_rules_BANG] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(594), + [anon_sym_RBRACE] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_u8] = ACTIONS(596), + [anon_sym_i8] = ACTIONS(596), + [anon_sym_u16] = ACTIONS(596), + [anon_sym_i16] = ACTIONS(596), + [anon_sym_u32] = ACTIONS(596), + [anon_sym_i32] = ACTIONS(596), + [anon_sym_u64] = ACTIONS(596), + [anon_sym_i64] = ACTIONS(596), + [anon_sym_u128] = ACTIONS(596), + [anon_sym_i128] = ACTIONS(596), + [anon_sym_isize] = ACTIONS(596), + [anon_sym_usize] = ACTIONS(596), + [anon_sym_f32] = ACTIONS(596), + [anon_sym_f64] = ACTIONS(596), + [anon_sym_bool] = ACTIONS(596), + [anon_sym_str] = ACTIONS(596), + [anon_sym_char] = ACTIONS(596), + [anon_sym_SQUOTE] = ACTIONS(596), + [anon_sym_as] = ACTIONS(596), + [anon_sym_async] = ACTIONS(596), + [anon_sym_break] = ACTIONS(596), + [anon_sym_const] = ACTIONS(596), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_default] = ACTIONS(596), + [anon_sym_enum] = ACTIONS(596), + [anon_sym_fn] = ACTIONS(596), + [anon_sym_for] = ACTIONS(596), + [anon_sym_if] = ACTIONS(596), + [anon_sym_impl] = ACTIONS(596), + [anon_sym_let] = ACTIONS(596), + [anon_sym_loop] = ACTIONS(596), + [anon_sym_match] = ACTIONS(596), + [anon_sym_mod] = ACTIONS(596), + [anon_sym_pub] = ACTIONS(596), + [anon_sym_return] = ACTIONS(596), + [anon_sym_static] = ACTIONS(596), + [anon_sym_struct] = ACTIONS(596), + [anon_sym_trait] = ACTIONS(596), + [anon_sym_type] = ACTIONS(596), + [anon_sym_union] = ACTIONS(596), + [anon_sym_unsafe] = ACTIONS(596), + [anon_sym_use] = ACTIONS(596), + [anon_sym_while] = ACTIONS(596), + [anon_sym_POUND] = ACTIONS(594), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_extern] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(594), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(594), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(594), + [anon_sym_DASH_EQ] = ACTIONS(594), + [anon_sym_STAR_EQ] = ACTIONS(594), + [anon_sym_SLASH_EQ] = ACTIONS(594), + [anon_sym_PERCENT_EQ] = ACTIONS(594), + [anon_sym_AMP_EQ] = ACTIONS(594), + [anon_sym_PIPE_EQ] = ACTIONS(594), + [anon_sym_CARET_EQ] = ACTIONS(594), + [anon_sym_LT_LT_EQ] = ACTIONS(594), + [anon_sym_GT_GT_EQ] = ACTIONS(594), + [anon_sym_move] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [sym_integer_literal] = ACTIONS(594), + [aux_sym_string_literal_token1] = ACTIONS(594), + [sym_char_literal] = ACTIONS(594), + [anon_sym_true] = ACTIONS(596), + [anon_sym_false] = ACTIONS(596), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(596), + [sym_super] = ACTIONS(596), + [sym_crate] = ACTIONS(596), + [sym_metavariable] = ACTIONS(594), + [sym_raw_string_literal] = ACTIONS(594), + [sym_float_literal] = ACTIONS(594), + [sym_block_comment] = ACTIONS(3), + }, + [71] = { + [ts_builtin_sym_end] = ACTIONS(598), + [sym_identifier] = ACTIONS(600), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_macro_rules_BANG] = ACTIONS(598), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(598), + [anon_sym_RBRACE] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(598), + [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_SQUOTE] = ACTIONS(600), + [anon_sym_as] = ACTIONS(600), + [anon_sym_async] = 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_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_while] = ACTIONS(600), + [anon_sym_POUND] = ACTIONS(598), + [anon_sym_BANG] = ACTIONS(600), + [anon_sym_EQ] = ACTIONS(600), + [anon_sym_extern] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_DOT_DOT_EQ] = ACTIONS(598), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(598), + [anon_sym_PIPE_PIPE] = ACTIONS(598), + [anon_sym_PIPE] = ACTIONS(600), + [anon_sym_CARET] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(598), + [anon_sym_BANG_EQ] = ACTIONS(598), + [anon_sym_LT_EQ] = ACTIONS(598), + [anon_sym_GT_EQ] = ACTIONS(598), + [anon_sym_LT_LT] = ACTIONS(600), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_SLASH] = ACTIONS(600), + [anon_sym_PERCENT] = ACTIONS(600), + [anon_sym_PLUS_EQ] = ACTIONS(598), + [anon_sym_DASH_EQ] = ACTIONS(598), + [anon_sym_STAR_EQ] = ACTIONS(598), + [anon_sym_SLASH_EQ] = ACTIONS(598), + [anon_sym_PERCENT_EQ] = ACTIONS(598), + [anon_sym_AMP_EQ] = ACTIONS(598), + [anon_sym_PIPE_EQ] = ACTIONS(598), + [anon_sym_CARET_EQ] = ACTIONS(598), + [anon_sym_LT_LT_EQ] = ACTIONS(598), + [anon_sym_GT_GT_EQ] = ACTIONS(598), + [anon_sym_move] = ACTIONS(600), + [anon_sym_DOT] = ACTIONS(600), + [sym_integer_literal] = ACTIONS(598), + [aux_sym_string_literal_token1] = ACTIONS(598), + [sym_char_literal] = ACTIONS(598), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_crate] = ACTIONS(600), + [sym_metavariable] = ACTIONS(598), + [sym_raw_string_literal] = ACTIONS(598), + [sym_float_literal] = ACTIONS(598), + [sym_block_comment] = ACTIONS(3), + }, + [72] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1169), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(959), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_DASH_GT] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(341), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [73] = { + [sym_identifier] = ACTIONS(451), + [anon_sym_SEMI] = ACTIONS(453), + [anon_sym_macro_rules_BANG] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(455), + [anon_sym_QMARK] = ACTIONS(453), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u128] = ACTIONS(451), + [anon_sym_i128] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_str] = ACTIONS(451), + [anon_sym_char] = ACTIONS(451), + [anon_sym_SQUOTE] = ACTIONS(451), + [anon_sym_as] = ACTIONS(455), + [anon_sym_async] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_const] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_default] = ACTIONS(451), + [anon_sym_enum] = ACTIONS(451), + [anon_sym_fn] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_impl] = ACTIONS(451), + [anon_sym_let] = ACTIONS(451), + [anon_sym_loop] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_mod] = ACTIONS(451), + [anon_sym_pub] = ACTIONS(451), + [anon_sym_return] = ACTIONS(451), + [anon_sym_static] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_trait] = ACTIONS(451), + [anon_sym_type] = ACTIONS(451), + [anon_sym_union] = ACTIONS(451), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_use] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_POUND] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(455), + [anon_sym_extern] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(455), + [anon_sym_GT] = ACTIONS(455), + [anon_sym_COLON_COLON] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(453), + [anon_sym_DOT_DOT] = ACTIONS(455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_AMP_AMP] = ACTIONS(453), + [anon_sym_PIPE_PIPE] = ACTIONS(453), + [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_CARET] = ACTIONS(455), + [anon_sym_EQ_EQ] = ACTIONS(453), + [anon_sym_BANG_EQ] = ACTIONS(453), + [anon_sym_LT_EQ] = ACTIONS(453), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_LT_LT] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(455), + [anon_sym_PERCENT] = ACTIONS(455), + [anon_sym_PLUS_EQ] = ACTIONS(453), + [anon_sym_DASH_EQ] = ACTIONS(453), + [anon_sym_STAR_EQ] = ACTIONS(453), + [anon_sym_SLASH_EQ] = ACTIONS(453), + [anon_sym_PERCENT_EQ] = ACTIONS(453), + [anon_sym_AMP_EQ] = ACTIONS(453), + [anon_sym_PIPE_EQ] = ACTIONS(453), + [anon_sym_CARET_EQ] = ACTIONS(453), + [anon_sym_LT_LT_EQ] = ACTIONS(453), + [anon_sym_GT_GT_EQ] = ACTIONS(453), + [anon_sym_move] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(455), + [sym_integer_literal] = ACTIONS(449), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(449), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(451), + [sym_super] = ACTIONS(451), + [sym_crate] = ACTIONS(451), + [sym_metavariable] = ACTIONS(449), + [sym_raw_string_literal] = ACTIONS(449), + [sym_float_literal] = ACTIONS(449), + [sym_block_comment] = ACTIONS(3), + }, + [74] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1151), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(610), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [75] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1119), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(612), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [76] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1113), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [77] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1153), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(616), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [78] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(961), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(959), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [79] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1142), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(618), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [80] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1204), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1046), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_DASH_GT] = ACTIONS(620), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(341), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [81] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1208), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [sym_mutable_specifier] = ACTIONS(622), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [82] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1154), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(624), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [83] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1105), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(626), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [84] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1113), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(628), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [85] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1128), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(630), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [86] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1042), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1046), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(620), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [87] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1159), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(632), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [88] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(981), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [sym_mutable_specifier] = ACTIONS(634), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [89] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1134), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(636), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [90] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1113), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [91] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1114), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(211), + [sym_if_let_expression] = STATE(211), + [sym_match_expression] = STATE(211), + [sym_while_expression] = STATE(211), + [sym_while_let_expression] = STATE(211), + [sym_loop_expression] = STATE(211), + [sym_for_expression] = STATE(211), + [sym_const_block] = STATE(211), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2407), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(211), + [sym_async_block] = STATE(211), + [sym_block] = STATE(211), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(642), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(644), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(646), + [anon_sym_if] = ACTIONS(648), + [anon_sym_loop] = ACTIONS(650), + [anon_sym_match] = ACTIONS(652), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(654), + [anon_sym_while] = ACTIONS(656), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [92] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1166), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [93] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1124), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [94] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1183), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [95] = { + [sym_attribute_item] = STATE(187), + [sym_function_modifiers] = STATE(2292), + [sym_self_parameter] = STATE(1764), + [sym_variadic_parameter] = STATE(1764), + [sym_parameter] = STATE(1764), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1741), + [sym_bracketed_type] = STATE(2365), + [sym_lifetime] = STATE(1763), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2366), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1443), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1638), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_RPAREN] = ACTIONS(662), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(668), + [anon_sym_i8] = ACTIONS(668), + [anon_sym_u16] = ACTIONS(668), + [anon_sym_i16] = ACTIONS(668), + [anon_sym_u32] = ACTIONS(668), + [anon_sym_i32] = ACTIONS(668), + [anon_sym_u64] = ACTIONS(668), + [anon_sym_i64] = ACTIONS(668), + [anon_sym_u128] = ACTIONS(668), + [anon_sym_i128] = ACTIONS(668), + [anon_sym_isize] = ACTIONS(668), + [anon_sym_usize] = ACTIONS(668), + [anon_sym_f32] = ACTIONS(668), + [anon_sym_f64] = ACTIONS(668), + [anon_sym_bool] = ACTIONS(668), + [anon_sym_str] = ACTIONS(668), + [anon_sym_char] = ACTIONS(668), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(676), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(684), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(696), + [anon_sym__] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(702), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(706), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(718), + [sym_super] = ACTIONS(720), + [sym_crate] = ACTIONS(720), + [sym_metavariable] = ACTIONS(722), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [96] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1155), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [97] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1160), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [98] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1197), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [99] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1175), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [100] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1199), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [101] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1219), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [102] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1143), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [103] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1007), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [104] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1182), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [105] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1180), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [106] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1217), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [107] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [108] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1177), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [109] = { + [sym_attribute_item] = STATE(188), + [sym_function_modifiers] = STATE(2292), + [sym_self_parameter] = STATE(1957), + [sym_variadic_parameter] = STATE(1957), + [sym_parameter] = STATE(1957), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1750), + [sym_bracketed_type] = STATE(2362), + [sym_lifetime] = STATE(1763), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2363), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2111), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(732), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(734), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(736), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(702), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(706), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [110] = { + [sym_attribute_item] = STATE(187), + [sym_function_modifiers] = STATE(2292), + [sym_self_parameter] = STATE(1764), + [sym_variadic_parameter] = STATE(1764), + [sym_parameter] = STATE(1764), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1741), + [sym_bracketed_type] = STATE(2362), + [sym_lifetime] = STATE(1763), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2363), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2111), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(732), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(734), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(752), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(754), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(702), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(706), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [111] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1144), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [112] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1163), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [113] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1113), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [114] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1065), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [115] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1211), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [116] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1209), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [117] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1207), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [118] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(764), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [119] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [120] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1205), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [121] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1196), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [122] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1174), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [123] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1195), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [124] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1194), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [125] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1135), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [126] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1215), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [127] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1172), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [128] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1156), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [129] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1184), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [130] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1066), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [131] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1067), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [132] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1068), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [133] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1145), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [134] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1069), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [135] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1070), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [136] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1179), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [137] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(764), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [138] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1072), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [139] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1074), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [140] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1059), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [141] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1116), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [142] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1188), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [143] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1178), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [144] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1043), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [145] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1029), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [146] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1171), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [147] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1129), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [148] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1170), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [149] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1120), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [150] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1190), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [151] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1147), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [152] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1148), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [153] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1125), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [154] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1176), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [155] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1214), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [156] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1218), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [157] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1098), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [158] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1100), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [159] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1123), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [160] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1193), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(221), + [sym_if_let_expression] = STATE(221), + [sym_match_expression] = STATE(221), + [sym_while_expression] = STATE(221), + [sym_while_let_expression] = STATE(221), + [sym_loop_expression] = STATE(221), + [sym_for_expression] = STATE(221), + [sym_const_block] = STATE(221), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2407), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(221), + [sym_async_block] = STATE(221), + [sym_block] = STATE(221), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(642), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(644), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(646), + [anon_sym_if] = ACTIONS(648), + [anon_sym_loop] = ACTIONS(650), + [anon_sym_match] = ACTIONS(652), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(654), + [anon_sym_while] = ACTIONS(656), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [161] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1181), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(211), + [sym_if_let_expression] = STATE(211), + [sym_match_expression] = STATE(211), + [sym_while_expression] = STATE(211), + [sym_while_let_expression] = STATE(211), + [sym_loop_expression] = STATE(211), + [sym_for_expression] = STATE(211), + [sym_const_block] = STATE(211), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2407), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(211), + [sym_async_block] = STATE(211), + [sym_block] = STATE(211), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(642), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(644), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(646), + [anon_sym_if] = ACTIONS(648), + [anon_sym_loop] = ACTIONS(650), + [anon_sym_match] = ACTIONS(652), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(654), + [anon_sym_while] = ACTIONS(656), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [162] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1162), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [163] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1186), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [164] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1126), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [165] = { + [sym_attribute_item] = STATE(187), + [sym_function_modifiers] = STATE(2292), + [sym_self_parameter] = STATE(1764), + [sym_variadic_parameter] = STATE(1764), + [sym_parameter] = STATE(1764), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1741), + [sym_bracketed_type] = STATE(2365), + [sym_lifetime] = STATE(1763), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2366), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1443), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1638), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_RPAREN] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(668), + [anon_sym_i8] = ACTIONS(668), + [anon_sym_u16] = ACTIONS(668), + [anon_sym_i16] = ACTIONS(668), + [anon_sym_u32] = ACTIONS(668), + [anon_sym_i32] = ACTIONS(668), + [anon_sym_u64] = ACTIONS(668), + [anon_sym_i64] = ACTIONS(668), + [anon_sym_u128] = ACTIONS(668), + [anon_sym_i128] = ACTIONS(668), + [anon_sym_isize] = ACTIONS(668), + [anon_sym_usize] = ACTIONS(668), + [anon_sym_f32] = ACTIONS(668), + [anon_sym_f64] = ACTIONS(668), + [anon_sym_bool] = ACTIONS(668), + [anon_sym_str] = ACTIONS(668), + [anon_sym_char] = ACTIONS(668), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(676), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(684), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(696), + [anon_sym__] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(702), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(706), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(718), + [sym_super] = ACTIONS(720), + [sym_crate] = ACTIONS(720), + [sym_metavariable] = ACTIONS(722), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [166] = { + [sym_attribute_item] = STATE(187), + [sym_function_modifiers] = STATE(2292), + [sym_self_parameter] = STATE(1764), + [sym_variadic_parameter] = STATE(1764), + [sym_parameter] = STATE(1764), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1741), + [sym_bracketed_type] = STATE(2365), + [sym_lifetime] = STATE(1763), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2366), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1443), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1638), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(668), + [anon_sym_i8] = ACTIONS(668), + [anon_sym_u16] = ACTIONS(668), + [anon_sym_i16] = ACTIONS(668), + [anon_sym_u32] = ACTIONS(668), + [anon_sym_i32] = ACTIONS(668), + [anon_sym_u64] = ACTIONS(668), + [anon_sym_i64] = ACTIONS(668), + [anon_sym_u128] = ACTIONS(668), + [anon_sym_i128] = ACTIONS(668), + [anon_sym_isize] = ACTIONS(668), + [anon_sym_usize] = ACTIONS(668), + [anon_sym_f32] = ACTIONS(668), + [anon_sym_f64] = ACTIONS(668), + [anon_sym_bool] = ACTIONS(668), + [anon_sym_str] = ACTIONS(668), + [anon_sym_char] = ACTIONS(668), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(676), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(684), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(762), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(696), + [anon_sym__] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(702), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(706), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(718), + [sym_super] = ACTIONS(720), + [sym_crate] = ACTIONS(720), + [sym_metavariable] = ACTIONS(722), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [167] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1202), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [168] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1165), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [169] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1034), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [170] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1187), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [171] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1099), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [172] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1210), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [173] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1192), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [174] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1110), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [175] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1157), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [176] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1185), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [177] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1221), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [178] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1860), + [sym__expression] = STATE(1121), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(1107), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(1039), + [sym_if_let_expression] = STATE(1039), + [sym_match_expression] = STATE(1039), + [sym_while_expression] = STATE(1039), + [sym_while_let_expression] = STATE(1039), + [sym_loop_expression] = STATE(1039), + [sym_for_expression] = STATE(1039), + [sym_const_block] = STATE(1039), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2374), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(1039), + [sym_async_block] = STATE(1039), + [sym_block] = STATE(1039), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [179] = { + [sym_bracketed_type] = STATE(2341), + [sym_generic_function] = STATE(1039), + [sym_generic_type_with_turbofish] = STATE(1804), + [sym__expression] = STATE(1132), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2127), + [sym_range_expression] = STATE(1039), + [sym_unary_expression] = STATE(1039), + [sym_try_expression] = STATE(1039), + [sym_reference_expression] = STATE(1039), + [sym_binary_expression] = STATE(1039), + [sym_assignment_expression] = STATE(1039), + [sym_compound_assignment_expr] = STATE(1039), + [sym_type_cast_expression] = STATE(1039), + [sym_return_expression] = STATE(1039), + [sym_call_expression] = STATE(1039), + [sym_array_expression] = STATE(1039), + [sym_parenthesized_expression] = STATE(1039), + [sym_tuple_expression] = STATE(1039), + [sym_unit_expression] = STATE(1039), + [sym_struct_expression] = STATE(1039), + [sym_if_expression] = STATE(221), + [sym_if_let_expression] = STATE(221), + [sym_match_expression] = STATE(221), + [sym_while_expression] = STATE(221), + [sym_while_let_expression] = STATE(221), + [sym_loop_expression] = STATE(221), + [sym_for_expression] = STATE(221), + [sym_const_block] = STATE(221), + [sym_closure_expression] = STATE(1039), + [sym_closure_parameters] = STATE(78), + [sym_loop_label] = STATE(2407), + [sym_break_expression] = STATE(1039), + [sym_continue_expression] = STATE(1039), + [sym_index_expression] = STATE(1039), + [sym_await_expression] = STATE(1039), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(221), + [sym_async_block] = STATE(221), + [sym_block] = STATE(221), + [sym__literal] = STATE(1039), + [sym_string_literal] = STATE(990), + [sym_boolean_literal] = STATE(990), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(642), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(644), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(646), + [anon_sym_if] = ACTIONS(648), + [anon_sym_loop] = ACTIONS(650), + [anon_sym_match] = ACTIONS(652), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(654), + [anon_sym_while] = ACTIONS(656), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [180] = { + [sym_attribute_item] = STATE(189), + [sym_function_modifiers] = STATE(2292), + [sym_self_parameter] = STATE(2189), + [sym_variadic_parameter] = STATE(2189), + [sym_parameter] = STATE(2189), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1869), + [sym_bracketed_type] = STATE(2362), + [sym_lifetime] = STATE(1763), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2363), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2111), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(732), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(734), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(766), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(702), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(706), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [181] = { + [sym_attribute_item] = STATE(189), + [sym_function_modifiers] = STATE(2292), + [sym_self_parameter] = STATE(2189), + [sym_variadic_parameter] = STATE(2189), + [sym_parameter] = STATE(2189), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1869), + [sym_bracketed_type] = STATE(2362), + [sym_lifetime] = STATE(1763), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2363), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2111), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(732), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(734), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(766), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(702), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(706), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [182] = { + [sym_attribute_item] = STATE(189), + [sym_function_modifiers] = STATE(2292), + [sym_self_parameter] = STATE(2189), + [sym_variadic_parameter] = STATE(2189), + [sym_parameter] = STATE(2189), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1869), + [sym_bracketed_type] = STATE(2362), + [sym_lifetime] = STATE(1763), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2363), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2111), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_RPAREN] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(732), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(734), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(766), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(702), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(706), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [183] = { + [sym_attribute_item] = STATE(189), + [sym_function_modifiers] = STATE(2292), + [sym_self_parameter] = STATE(2189), + [sym_variadic_parameter] = STATE(2189), + [sym_parameter] = STATE(2189), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1869), + [sym_bracketed_type] = STATE(2362), + [sym_lifetime] = STATE(1763), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2363), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2111), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(732), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(734), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(766), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(702), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(706), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [184] = { + [sym_attribute_item] = STATE(189), + [sym_function_modifiers] = STATE(2292), + [sym_self_parameter] = STATE(2189), + [sym_variadic_parameter] = STATE(2189), + [sym_parameter] = STATE(2189), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1869), + [sym_bracketed_type] = STATE(2362), + [sym_lifetime] = STATE(1763), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2363), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2111), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_RPAREN] = ACTIONS(774), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(732), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(734), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(766), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(702), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(706), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [185] = { + [sym_attribute_item] = STATE(189), + [sym_function_modifiers] = STATE(2292), + [sym_self_parameter] = STATE(2189), + [sym_variadic_parameter] = STATE(2189), + [sym_parameter] = STATE(2189), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1869), + [sym_bracketed_type] = STATE(2362), + [sym_lifetime] = STATE(1763), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2363), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2111), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_RPAREN] = ACTIONS(776), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(732), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(734), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(766), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(702), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(706), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [186] = { + [sym_attribute_item] = STATE(189), + [sym_function_modifiers] = STATE(2292), + [sym_self_parameter] = STATE(2189), + [sym_variadic_parameter] = STATE(2189), + [sym_parameter] = STATE(2189), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1869), + [sym_bracketed_type] = STATE(2362), + [sym_lifetime] = STATE(1763), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2363), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2111), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(732), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(734), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(766), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(702), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(706), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [187] = { + [sym_function_modifiers] = STATE(2292), + [sym_self_parameter] = STATE(2004), + [sym_variadic_parameter] = STATE(2004), + [sym_parameter] = STATE(2004), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1714), + [sym_bracketed_type] = STATE(2362), + [sym_lifetime] = STATE(1763), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2363), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2111), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(732), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(734), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(702), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(706), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [188] = { + [sym_function_modifiers] = STATE(2292), + [sym_self_parameter] = STATE(1986), + [sym_variadic_parameter] = STATE(1986), + [sym_parameter] = STATE(1986), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1720), + [sym_bracketed_type] = STATE(2362), + [sym_lifetime] = STATE(1763), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2363), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2111), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(732), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(734), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(702), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(706), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [189] = { + [sym_function_modifiers] = STATE(2292), + [sym_self_parameter] = STATE(2107), + [sym_variadic_parameter] = STATE(2107), + [sym_parameter] = STATE(2107), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1789), + [sym_bracketed_type] = STATE(2362), + [sym_lifetime] = STATE(1763), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2363), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2111), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(732), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(734), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(702), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(706), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [190] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1946), + [sym_bracketed_type] = STATE(2368), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2369), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1457), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1670), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_RBRACK] = ACTIONS(788), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(790), + [anon_sym_i8] = ACTIONS(790), + [anon_sym_u16] = ACTIONS(790), + [anon_sym_i16] = ACTIONS(790), + [anon_sym_u32] = ACTIONS(790), + [anon_sym_i32] = ACTIONS(790), + [anon_sym_u64] = ACTIONS(790), + [anon_sym_i64] = ACTIONS(790), + [anon_sym_u128] = ACTIONS(790), + [anon_sym_i128] = ACTIONS(790), + [anon_sym_isize] = ACTIONS(790), + [anon_sym_usize] = ACTIONS(790), + [anon_sym_f32] = ACTIONS(790), + [anon_sym_f64] = ACTIONS(790), + [anon_sym_bool] = ACTIONS(790), + [anon_sym_str] = ACTIONS(790), + [anon_sym_char] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(792), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(794), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(796), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(798), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(808), + [sym_super] = ACTIONS(808), + [sym_crate] = ACTIONS(808), + [sym_metavariable] = ACTIONS(810), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [191] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1759), + [sym_bracketed_type] = STATE(2365), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2366), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1443), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1701), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_RPAREN] = ACTIONS(812), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(668), + [anon_sym_i8] = ACTIONS(668), + [anon_sym_u16] = ACTIONS(668), + [anon_sym_i16] = ACTIONS(668), + [anon_sym_u32] = ACTIONS(668), + [anon_sym_i32] = ACTIONS(668), + [anon_sym_u64] = ACTIONS(668), + [anon_sym_i64] = ACTIONS(668), + [anon_sym_u128] = ACTIONS(668), + [anon_sym_i128] = ACTIONS(668), + [anon_sym_isize] = ACTIONS(668), + [anon_sym_usize] = ACTIONS(668), + [anon_sym_f32] = ACTIONS(668), + [anon_sym_f64] = ACTIONS(668), + [anon_sym_bool] = ACTIONS(668), + [anon_sym_str] = ACTIONS(668), + [anon_sym_char] = ACTIONS(668), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(814), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(816), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(696), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(720), + [sym_super] = ACTIONS(720), + [sym_crate] = ACTIONS(720), + [sym_metavariable] = ACTIONS(722), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [192] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1759), + [sym_bracketed_type] = STATE(2365), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2366), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1443), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1701), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_RPAREN] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(668), + [anon_sym_i8] = ACTIONS(668), + [anon_sym_u16] = ACTIONS(668), + [anon_sym_i16] = ACTIONS(668), + [anon_sym_u32] = ACTIONS(668), + [anon_sym_i32] = ACTIONS(668), + [anon_sym_u64] = ACTIONS(668), + [anon_sym_i64] = ACTIONS(668), + [anon_sym_u128] = ACTIONS(668), + [anon_sym_i128] = ACTIONS(668), + [anon_sym_isize] = ACTIONS(668), + [anon_sym_usize] = ACTIONS(668), + [anon_sym_f32] = ACTIONS(668), + [anon_sym_f64] = ACTIONS(668), + [anon_sym_bool] = ACTIONS(668), + [anon_sym_str] = ACTIONS(668), + [anon_sym_char] = ACTIONS(668), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(814), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(816), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(696), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(720), + [sym_super] = ACTIONS(720), + [sym_crate] = ACTIONS(720), + [sym_metavariable] = ACTIONS(722), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [193] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1759), + [sym_bracketed_type] = STATE(2365), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2366), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1443), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1701), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_RPAREN] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(668), + [anon_sym_i8] = ACTIONS(668), + [anon_sym_u16] = ACTIONS(668), + [anon_sym_i16] = ACTIONS(668), + [anon_sym_u32] = ACTIONS(668), + [anon_sym_i32] = ACTIONS(668), + [anon_sym_u64] = ACTIONS(668), + [anon_sym_i64] = ACTIONS(668), + [anon_sym_u128] = ACTIONS(668), + [anon_sym_i128] = ACTIONS(668), + [anon_sym_isize] = ACTIONS(668), + [anon_sym_usize] = ACTIONS(668), + [anon_sym_f32] = ACTIONS(668), + [anon_sym_f64] = ACTIONS(668), + [anon_sym_bool] = ACTIONS(668), + [anon_sym_str] = ACTIONS(668), + [anon_sym_char] = ACTIONS(668), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(814), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(816), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(696), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(720), + [sym_super] = ACTIONS(720), + [sym_crate] = ACTIONS(720), + [sym_metavariable] = ACTIONS(722), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [194] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1329), + [sym_bracketed_type] = STATE(2368), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2369), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1457), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1377), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(790), + [anon_sym_i8] = ACTIONS(790), + [anon_sym_u16] = ACTIONS(790), + [anon_sym_i16] = ACTIONS(790), + [anon_sym_u32] = ACTIONS(790), + [anon_sym_i32] = ACTIONS(790), + [anon_sym_u64] = ACTIONS(790), + [anon_sym_i64] = ACTIONS(790), + [anon_sym_u128] = ACTIONS(790), + [anon_sym_i128] = ACTIONS(790), + [anon_sym_isize] = ACTIONS(790), + [anon_sym_usize] = ACTIONS(790), + [anon_sym_f32] = ACTIONS(790), + [anon_sym_f64] = ACTIONS(790), + [anon_sym_bool] = ACTIONS(790), + [anon_sym_str] = ACTIONS(790), + [anon_sym_char] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(792), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(794), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(798), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(808), + [sym_super] = ACTIONS(808), + [sym_crate] = ACTIONS(808), + [sym_metavariable] = ACTIONS(810), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [195] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1329), + [sym_bracketed_type] = STATE(2365), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2366), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1443), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1377), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(668), + [anon_sym_i8] = ACTIONS(668), + [anon_sym_u16] = ACTIONS(668), + [anon_sym_i16] = ACTIONS(668), + [anon_sym_u32] = ACTIONS(668), + [anon_sym_i32] = ACTIONS(668), + [anon_sym_u64] = ACTIONS(668), + [anon_sym_i64] = ACTIONS(668), + [anon_sym_u128] = ACTIONS(668), + [anon_sym_i128] = ACTIONS(668), + [anon_sym_isize] = ACTIONS(668), + [anon_sym_usize] = ACTIONS(668), + [anon_sym_f32] = ACTIONS(668), + [anon_sym_f64] = ACTIONS(668), + [anon_sym_bool] = ACTIONS(668), + [anon_sym_str] = ACTIONS(668), + [anon_sym_char] = ACTIONS(668), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(814), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(816), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(696), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(720), + [sym_super] = ACTIONS(720), + [sym_crate] = ACTIONS(720), + [sym_metavariable] = ACTIONS(722), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [196] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1329), + [sym_bracketed_type] = STATE(2362), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2363), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1377), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(826), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(828), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(746), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [197] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1329), + [sym_bracketed_type] = STATE(2365), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2366), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1443), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1377), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(668), + [anon_sym_i8] = ACTIONS(668), + [anon_sym_u16] = ACTIONS(668), + [anon_sym_i16] = ACTIONS(668), + [anon_sym_u32] = ACTIONS(668), + [anon_sym_i32] = ACTIONS(668), + [anon_sym_u64] = ACTIONS(668), + [anon_sym_i64] = ACTIONS(668), + [anon_sym_u128] = ACTIONS(668), + [anon_sym_i128] = ACTIONS(668), + [anon_sym_isize] = ACTIONS(668), + [anon_sym_usize] = ACTIONS(668), + [anon_sym_f32] = ACTIONS(668), + [anon_sym_f64] = ACTIONS(668), + [anon_sym_bool] = ACTIONS(668), + [anon_sym_str] = ACTIONS(668), + [anon_sym_char] = ACTIONS(668), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(814), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(816), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(696), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(832), + [sym_super] = ACTIONS(720), + [sym_crate] = ACTIONS(720), + [sym_metavariable] = ACTIONS(722), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [198] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1313), + [sym_bracketed_type] = STATE(2362), + [sym_lifetime] = STATE(567), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2363), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1368), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(834), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(826), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(828), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(836), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(746), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [199] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1313), + [sym_bracketed_type] = STATE(2365), + [sym_lifetime] = STATE(570), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2366), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1443), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1368), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(668), + [anon_sym_i8] = ACTIONS(668), + [anon_sym_u16] = ACTIONS(668), + [anon_sym_i16] = ACTIONS(668), + [anon_sym_u32] = ACTIONS(668), + [anon_sym_i32] = ACTIONS(668), + [anon_sym_u64] = ACTIONS(668), + [anon_sym_i64] = ACTIONS(668), + [anon_sym_u128] = ACTIONS(668), + [anon_sym_i128] = ACTIONS(668), + [anon_sym_isize] = ACTIONS(668), + [anon_sym_usize] = ACTIONS(668), + [anon_sym_f32] = ACTIONS(668), + [anon_sym_f64] = ACTIONS(668), + [anon_sym_bool] = ACTIONS(668), + [anon_sym_str] = ACTIONS(668), + [anon_sym_char] = ACTIONS(668), + [anon_sym_SQUOTE] = ACTIONS(834), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(814), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(816), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(696), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(838), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(840), + [sym_super] = ACTIONS(720), + [sym_crate] = ACTIONS(720), + [sym_metavariable] = ACTIONS(722), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [200] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1313), + [sym_bracketed_type] = STATE(2368), + [sym_lifetime] = STATE(567), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2369), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1457), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1368), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(790), + [anon_sym_i8] = ACTIONS(790), + [anon_sym_u16] = ACTIONS(790), + [anon_sym_i16] = ACTIONS(790), + [anon_sym_u32] = ACTIONS(790), + [anon_sym_i32] = ACTIONS(790), + [anon_sym_u64] = ACTIONS(790), + [anon_sym_i64] = ACTIONS(790), + [anon_sym_u128] = ACTIONS(790), + [anon_sym_i128] = ACTIONS(790), + [anon_sym_isize] = ACTIONS(790), + [anon_sym_usize] = ACTIONS(790), + [anon_sym_f32] = ACTIONS(790), + [anon_sym_f64] = ACTIONS(790), + [anon_sym_bool] = ACTIONS(790), + [anon_sym_str] = ACTIONS(790), + [anon_sym_char] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(834), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(792), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(794), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(798), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(808), + [sym_super] = ACTIONS(808), + [sym_crate] = ACTIONS(808), + [sym_metavariable] = ACTIONS(810), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [201] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1313), + [sym_bracketed_type] = STATE(2365), + [sym_lifetime] = STATE(567), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2366), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1443), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1368), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(668), + [anon_sym_i8] = ACTIONS(668), + [anon_sym_u16] = ACTIONS(668), + [anon_sym_i16] = ACTIONS(668), + [anon_sym_u32] = ACTIONS(668), + [anon_sym_i32] = ACTIONS(668), + [anon_sym_u64] = ACTIONS(668), + [anon_sym_i64] = ACTIONS(668), + [anon_sym_u128] = ACTIONS(668), + [anon_sym_i128] = ACTIONS(668), + [anon_sym_isize] = ACTIONS(668), + [anon_sym_usize] = ACTIONS(668), + [anon_sym_f32] = ACTIONS(668), + [anon_sym_f64] = ACTIONS(668), + [anon_sym_bool] = ACTIONS(668), + [anon_sym_str] = ACTIONS(668), + [anon_sym_char] = ACTIONS(668), + [anon_sym_SQUOTE] = ACTIONS(834), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(814), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(816), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(696), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(844), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(720), + [sym_super] = ACTIONS(720), + [sym_crate] = ACTIONS(720), + [sym_metavariable] = ACTIONS(722), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [202] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1313), + [sym_bracketed_type] = STATE(2362), + [sym_lifetime] = STATE(570), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2363), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1368), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(834), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(826), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(828), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(846), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(848), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [203] = { + [sym_identifier] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(852), + [anon_sym_RPAREN] = ACTIONS(852), + [anon_sym_LBRACE] = ACTIONS(852), + [anon_sym_RBRACE] = ACTIONS(852), + [anon_sym_EQ_GT] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_RBRACK] = ACTIONS(852), + [anon_sym_COLON] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(850), + [anon_sym_QMARK] = ACTIONS(852), + [anon_sym_u8] = ACTIONS(850), + [anon_sym_i8] = ACTIONS(850), + [anon_sym_u16] = ACTIONS(850), + [anon_sym_i16] = ACTIONS(850), + [anon_sym_u32] = ACTIONS(850), + [anon_sym_i32] = ACTIONS(850), + [anon_sym_u64] = ACTIONS(850), + [anon_sym_i64] = ACTIONS(850), + [anon_sym_u128] = ACTIONS(850), + [anon_sym_i128] = ACTIONS(850), + [anon_sym_isize] = ACTIONS(850), + [anon_sym_usize] = ACTIONS(850), + [anon_sym_f32] = ACTIONS(850), + [anon_sym_f64] = ACTIONS(850), + [anon_sym_bool] = ACTIONS(850), + [anon_sym_str] = ACTIONS(850), + [anon_sym_char] = ACTIONS(850), + [anon_sym_SQUOTE] = ACTIONS(850), + [anon_sym_as] = ACTIONS(850), + [anon_sym_async] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [anon_sym_const] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_default] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(850), + [anon_sym_loop] = ACTIONS(850), + [anon_sym_match] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_union] = ACTIONS(850), + [anon_sym_unsafe] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(850), + [anon_sym_COMMA] = ACTIONS(852), + [anon_sym_LT] = ACTIONS(850), + [anon_sym_GT] = ACTIONS(850), + [anon_sym_COLON_COLON] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(850), + [anon_sym_DOT_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(852), + [anon_sym_PIPE_PIPE] = ACTIONS(852), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [anon_sym_EQ_EQ] = ACTIONS(852), + [anon_sym_BANG_EQ] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(852), + [anon_sym_LT_LT] = ACTIONS(850), + [anon_sym_GT_GT] = ACTIONS(850), + [anon_sym_SLASH] = ACTIONS(850), + [anon_sym_PERCENT] = ACTIONS(850), + [anon_sym_PLUS_EQ] = ACTIONS(852), + [anon_sym_DASH_EQ] = ACTIONS(852), + [anon_sym_STAR_EQ] = ACTIONS(852), + [anon_sym_SLASH_EQ] = ACTIONS(852), + [anon_sym_PERCENT_EQ] = ACTIONS(852), + [anon_sym_AMP_EQ] = ACTIONS(852), + [anon_sym_PIPE_EQ] = ACTIONS(852), + [anon_sym_CARET_EQ] = ACTIONS(852), + [anon_sym_LT_LT_EQ] = ACTIONS(852), + [anon_sym_GT_GT_EQ] = ACTIONS(852), + [anon_sym_move] = ACTIONS(850), + [anon_sym_DOT] = ACTIONS(850), + [sym_integer_literal] = ACTIONS(852), + [aux_sym_string_literal_token1] = ACTIONS(852), + [sym_char_literal] = ACTIONS(852), + [anon_sym_true] = ACTIONS(850), + [anon_sym_false] = ACTIONS(850), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(850), + [sym_super] = ACTIONS(850), + [sym_crate] = ACTIONS(850), + [sym_metavariable] = ACTIONS(852), + [sym_raw_string_literal] = ACTIONS(852), + [sym_float_literal] = ACTIONS(852), + [sym_block_comment] = ACTIONS(3), + }, + [204] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1329), + [sym_bracketed_type] = STATE(2362), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2363), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1399), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1377), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(826), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(828), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(854), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [205] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1385), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(858), + [anon_sym_STAR] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(856), + [anon_sym_i8] = ACTIONS(856), + [anon_sym_u16] = ACTIONS(856), + [anon_sym_i16] = ACTIONS(856), + [anon_sym_u32] = ACTIONS(856), + [anon_sym_i32] = ACTIONS(856), + [anon_sym_u64] = ACTIONS(856), + [anon_sym_i64] = ACTIONS(856), + [anon_sym_u128] = ACTIONS(856), + [anon_sym_i128] = ACTIONS(856), + [anon_sym_isize] = ACTIONS(856), + [anon_sym_usize] = ACTIONS(856), + [anon_sym_f32] = ACTIONS(856), + [anon_sym_f64] = ACTIONS(856), + [anon_sym_bool] = ACTIONS(856), + [anon_sym_str] = ACTIONS(856), + [anon_sym_char] = ACTIONS(856), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(856), + [anon_sym_break] = ACTIONS(856), + [anon_sym_const] = ACTIONS(856), + [anon_sym_continue] = ACTIONS(856), + [anon_sym_default] = ACTIONS(856), + [anon_sym_for] = ACTIONS(856), + [anon_sym_if] = ACTIONS(856), + [anon_sym_loop] = ACTIONS(856), + [anon_sym_match] = ACTIONS(856), + [anon_sym_return] = ACTIONS(856), + [anon_sym_union] = ACTIONS(856), + [anon_sym_unsafe] = ACTIONS(856), + [anon_sym_while] = ACTIONS(856), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_DASH_GT] = ACTIONS(858), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_COLON_COLON] = ACTIONS(858), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(858), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(856), + [anon_sym_PIPE] = ACTIONS(858), + [anon_sym_move] = ACTIONS(856), + [sym_integer_literal] = ACTIONS(858), + [aux_sym_string_literal_token1] = ACTIONS(858), + [sym_char_literal] = ACTIONS(858), + [anon_sym_true] = ACTIONS(856), + [anon_sym_false] = ACTIONS(856), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(856), + [sym_super] = ACTIONS(856), + [sym_crate] = ACTIONS(856), + [sym_metavariable] = ACTIONS(858), + [sym_raw_string_literal] = ACTIONS(858), + [sym_float_literal] = ACTIONS(858), + [sym_block_comment] = ACTIONS(3), + }, + [206] = { + [sym_else_clause] = STATE(235), + [sym_identifier] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RBRACE] = ACTIONS(383), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_STAR] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(383), + [anon_sym_u8] = ACTIONS(385), + [anon_sym_i8] = ACTIONS(385), + [anon_sym_u16] = ACTIONS(385), + [anon_sym_i16] = ACTIONS(385), + [anon_sym_u32] = ACTIONS(385), + [anon_sym_i32] = ACTIONS(385), + [anon_sym_u64] = ACTIONS(385), + [anon_sym_i64] = ACTIONS(385), + [anon_sym_u128] = ACTIONS(385), + [anon_sym_i128] = ACTIONS(385), + [anon_sym_isize] = ACTIONS(385), + [anon_sym_usize] = ACTIONS(385), + [anon_sym_f32] = ACTIONS(385), + [anon_sym_f64] = ACTIONS(385), + [anon_sym_bool] = ACTIONS(385), + [anon_sym_str] = ACTIONS(385), + [anon_sym_char] = ACTIONS(385), + [anon_sym_as] = ACTIONS(385), + [anon_sym_const] = ACTIONS(385), + [anon_sym_default] = ACTIONS(385), + [anon_sym_union] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_COMMA] = ACTIONS(383), + [anon_sym_ref] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(383), + [anon_sym__] = ACTIONS(385), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(383), + [sym_mutable_specifier] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(383), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(383), + [anon_sym_PIPE_PIPE] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(383), + [anon_sym_BANG_EQ] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(383), + [anon_sym_DASH_EQ] = ACTIONS(383), + [anon_sym_STAR_EQ] = ACTIONS(383), + [anon_sym_SLASH_EQ] = ACTIONS(383), + [anon_sym_PERCENT_EQ] = ACTIONS(383), + [anon_sym_AMP_EQ] = ACTIONS(383), + [anon_sym_PIPE_EQ] = ACTIONS(383), + [anon_sym_CARET_EQ] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(383), + [anon_sym_GT_GT_EQ] = ACTIONS(383), + [anon_sym_else] = ACTIONS(860), + [anon_sym_DOT] = ACTIONS(385), + [sym_integer_literal] = ACTIONS(383), + [aux_sym_string_literal_token1] = ACTIONS(383), + [sym_char_literal] = ACTIONS(383), + [anon_sym_true] = ACTIONS(385), + [anon_sym_false] = ACTIONS(385), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(385), + [sym_super] = ACTIONS(385), + [sym_crate] = ACTIONS(385), + [sym_metavariable] = ACTIONS(383), + [sym_raw_string_literal] = ACTIONS(383), + [sym_float_literal] = ACTIONS(383), + [sym_block_comment] = ACTIONS(3), + }, + [207] = { + [sym_else_clause] = STATE(220), + [sym_identifier] = ACTIONS(373), + [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_RBRACE] = ACTIONS(371), + [anon_sym_LBRACK] = ACTIONS(371), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_QMARK] = ACTIONS(371), + [anon_sym_u8] = ACTIONS(373), + [anon_sym_i8] = ACTIONS(373), + [anon_sym_u16] = ACTIONS(373), + [anon_sym_i16] = ACTIONS(373), + [anon_sym_u32] = ACTIONS(373), + [anon_sym_i32] = ACTIONS(373), + [anon_sym_u64] = ACTIONS(373), + [anon_sym_i64] = ACTIONS(373), + [anon_sym_u128] = ACTIONS(373), + [anon_sym_i128] = ACTIONS(373), + [anon_sym_isize] = ACTIONS(373), + [anon_sym_usize] = ACTIONS(373), + [anon_sym_f32] = ACTIONS(373), + [anon_sym_f64] = ACTIONS(373), + [anon_sym_bool] = ACTIONS(373), + [anon_sym_str] = ACTIONS(373), + [anon_sym_char] = ACTIONS(373), + [anon_sym_as] = ACTIONS(373), + [anon_sym_const] = ACTIONS(373), + [anon_sym_default] = ACTIONS(373), + [anon_sym_union] = ACTIONS(373), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_EQ] = ACTIONS(373), + [anon_sym_COMMA] = ACTIONS(371), + [anon_sym_ref] = ACTIONS(373), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(371), + [anon_sym__] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(371), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_AMP_AMP] = ACTIONS(371), + [anon_sym_PIPE_PIPE] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(373), + [anon_sym_CARET] = ACTIONS(373), + [anon_sym_EQ_EQ] = ACTIONS(371), + [anon_sym_BANG_EQ] = ACTIONS(371), + [anon_sym_LT_EQ] = ACTIONS(371), + [anon_sym_GT_EQ] = ACTIONS(371), + [anon_sym_LT_LT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_SLASH] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(373), + [anon_sym_PLUS_EQ] = ACTIONS(371), + [anon_sym_DASH_EQ] = ACTIONS(371), + [anon_sym_STAR_EQ] = ACTIONS(371), + [anon_sym_SLASH_EQ] = ACTIONS(371), + [anon_sym_PERCENT_EQ] = ACTIONS(371), + [anon_sym_AMP_EQ] = ACTIONS(371), + [anon_sym_PIPE_EQ] = ACTIONS(371), + [anon_sym_CARET_EQ] = ACTIONS(371), + [anon_sym_LT_LT_EQ] = ACTIONS(371), + [anon_sym_GT_GT_EQ] = ACTIONS(371), + [anon_sym_else] = ACTIONS(860), + [anon_sym_DOT] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(371), + [aux_sym_string_literal_token1] = ACTIONS(371), + [sym_char_literal] = ACTIONS(371), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(373), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(371), + [sym_raw_string_literal] = ACTIONS(371), + [sym_float_literal] = ACTIONS(371), + [sym_block_comment] = ACTIONS(3), + }, + [208] = { + [sym_identifier] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_isize] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_f32] = ACTIONS(399), + [anon_sym_f64] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_str] = ACTIONS(399), + [anon_sym_char] = ACTIONS(399), + [anon_sym_as] = ACTIONS(399), + [anon_sym_const] = ACTIONS(399), + [anon_sym_default] = ACTIONS(399), + [anon_sym_union] = ACTIONS(399), + [anon_sym_POUND] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_ref] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym__] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [sym_mutable_specifier] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_else] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(399), + [sym_integer_literal] = ACTIONS(397), + [aux_sym_string_literal_token1] = ACTIONS(397), + [sym_char_literal] = ACTIONS(397), + [anon_sym_true] = ACTIONS(399), + [anon_sym_false] = ACTIONS(399), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(399), + [sym_super] = ACTIONS(399), + [sym_crate] = ACTIONS(399), + [sym_metavariable] = ACTIONS(397), + [sym_raw_string_literal] = ACTIONS(397), + [sym_float_literal] = ACTIONS(397), + [sym_block_comment] = ACTIONS(3), + }, + [209] = { + [sym_identifier] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(391), + [anon_sym_QMARK] = ACTIONS(389), + [anon_sym_u8] = ACTIONS(391), + [anon_sym_i8] = ACTIONS(391), + [anon_sym_u16] = ACTIONS(391), + [anon_sym_i16] = ACTIONS(391), + [anon_sym_u32] = ACTIONS(391), + [anon_sym_i32] = ACTIONS(391), + [anon_sym_u64] = ACTIONS(391), + [anon_sym_i64] = ACTIONS(391), + [anon_sym_u128] = ACTIONS(391), + [anon_sym_i128] = ACTIONS(391), + [anon_sym_isize] = ACTIONS(391), + [anon_sym_usize] = ACTIONS(391), + [anon_sym_f32] = ACTIONS(391), + [anon_sym_f64] = ACTIONS(391), + [anon_sym_bool] = ACTIONS(391), + [anon_sym_str] = ACTIONS(391), + [anon_sym_char] = ACTIONS(391), + [anon_sym_as] = ACTIONS(391), + [anon_sym_const] = ACTIONS(391), + [anon_sym_default] = ACTIONS(391), + [anon_sym_union] = ACTIONS(391), + [anon_sym_POUND] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(389), + [anon_sym_ref] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym__] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_mutable_specifier] = ACTIONS(391), + [anon_sym_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_AMP_AMP] = ACTIONS(389), + [anon_sym_PIPE_PIPE] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), + [anon_sym_CARET] = ACTIONS(391), + [anon_sym_EQ_EQ] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(389), + [anon_sym_LT_EQ] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_SLASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(391), + [anon_sym_PLUS_EQ] = ACTIONS(389), + [anon_sym_DASH_EQ] = ACTIONS(389), + [anon_sym_STAR_EQ] = ACTIONS(389), + [anon_sym_SLASH_EQ] = ACTIONS(389), + [anon_sym_PERCENT_EQ] = ACTIONS(389), + [anon_sym_AMP_EQ] = ACTIONS(389), + [anon_sym_PIPE_EQ] = ACTIONS(389), + [anon_sym_CARET_EQ] = ACTIONS(389), + [anon_sym_LT_LT_EQ] = ACTIONS(389), + [anon_sym_GT_GT_EQ] = ACTIONS(389), + [anon_sym_else] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(391), + [sym_integer_literal] = ACTIONS(389), + [aux_sym_string_literal_token1] = ACTIONS(389), + [sym_char_literal] = ACTIONS(389), + [anon_sym_true] = ACTIONS(391), + [anon_sym_false] = ACTIONS(391), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(391), + [sym_super] = ACTIONS(391), + [sym_crate] = ACTIONS(391), + [sym_metavariable] = ACTIONS(389), + [sym_raw_string_literal] = ACTIONS(389), + [sym_float_literal] = ACTIONS(389), + [sym_block_comment] = ACTIONS(3), + }, + [210] = { + [sym_identifier] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_as] = ACTIONS(395), + [anon_sym_const] = ACTIONS(395), + [anon_sym_default] = ACTIONS(395), + [anon_sym_union] = ACTIONS(395), + [anon_sym_POUND] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(393), + [anon_sym_ref] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_COLON_COLON] = ACTIONS(393), + [anon_sym__] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [sym_mutable_specifier] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_else] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(395), + [sym_integer_literal] = ACTIONS(393), + [aux_sym_string_literal_token1] = ACTIONS(393), + [sym_char_literal] = ACTIONS(393), + [anon_sym_true] = ACTIONS(395), + [anon_sym_false] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(395), + [sym_super] = ACTIONS(395), + [sym_crate] = ACTIONS(395), + [sym_metavariable] = ACTIONS(393), + [sym_raw_string_literal] = ACTIONS(393), + [sym_float_literal] = ACTIONS(393), + [sym_block_comment] = ACTIONS(3), + }, + [211] = { + [sym_identifier] = ACTIONS(862), + [anon_sym_LPAREN] = ACTIONS(864), + [anon_sym_RBRACE] = ACTIONS(453), + [anon_sym_LBRACK] = ACTIONS(864), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(455), + [anon_sym_QMARK] = ACTIONS(453), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_as] = ACTIONS(455), + [anon_sym_const] = ACTIONS(862), + [anon_sym_default] = ACTIONS(862), + [anon_sym_union] = ACTIONS(862), + [anon_sym_POUND] = ACTIONS(864), + [anon_sym_EQ] = ACTIONS(455), + [anon_sym_COMMA] = ACTIONS(453), + [anon_sym_ref] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(862), + [anon_sym_GT] = ACTIONS(455), + [anon_sym_COLON_COLON] = ACTIONS(864), + [anon_sym__] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(453), + [sym_mutable_specifier] = ACTIONS(862), + [anon_sym_DOT_DOT] = ACTIONS(862), + [anon_sym_DOT_DOT_EQ] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_AMP_AMP] = ACTIONS(453), + [anon_sym_PIPE_PIPE] = ACTIONS(453), + [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_CARET] = ACTIONS(455), + [anon_sym_EQ_EQ] = ACTIONS(453), + [anon_sym_BANG_EQ] = ACTIONS(453), + [anon_sym_LT_EQ] = ACTIONS(453), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_LT_LT] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(455), + [anon_sym_PERCENT] = ACTIONS(455), + [anon_sym_PLUS_EQ] = ACTIONS(453), + [anon_sym_DASH_EQ] = ACTIONS(453), + [anon_sym_STAR_EQ] = ACTIONS(453), + [anon_sym_SLASH_EQ] = ACTIONS(453), + [anon_sym_PERCENT_EQ] = ACTIONS(453), + [anon_sym_AMP_EQ] = ACTIONS(453), + [anon_sym_PIPE_EQ] = ACTIONS(453), + [anon_sym_CARET_EQ] = ACTIONS(453), + [anon_sym_LT_LT_EQ] = ACTIONS(453), + [anon_sym_GT_GT_EQ] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(455), + [sym_integer_literal] = ACTIONS(864), + [aux_sym_string_literal_token1] = ACTIONS(864), + [sym_char_literal] = ACTIONS(864), + [anon_sym_true] = ACTIONS(862), + [anon_sym_false] = ACTIONS(862), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(862), + [sym_super] = ACTIONS(862), + [sym_crate] = ACTIONS(862), + [sym_metavariable] = ACTIONS(864), + [sym_raw_string_literal] = ACTIONS(864), + [sym_float_literal] = ACTIONS(864), + [sym_block_comment] = ACTIONS(3), + }, + [212] = { + [sym_identifier] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_QMARK] = ACTIONS(590), + [anon_sym_u8] = ACTIONS(592), + [anon_sym_i8] = ACTIONS(592), + [anon_sym_u16] = ACTIONS(592), + [anon_sym_i16] = ACTIONS(592), + [anon_sym_u32] = ACTIONS(592), + [anon_sym_i32] = ACTIONS(592), + [anon_sym_u64] = ACTIONS(592), + [anon_sym_i64] = ACTIONS(592), + [anon_sym_u128] = ACTIONS(592), + [anon_sym_i128] = ACTIONS(592), + [anon_sym_isize] = ACTIONS(592), + [anon_sym_usize] = ACTIONS(592), + [anon_sym_f32] = ACTIONS(592), + [anon_sym_f64] = ACTIONS(592), + [anon_sym_bool] = ACTIONS(592), + [anon_sym_str] = ACTIONS(592), + [anon_sym_char] = ACTIONS(592), + [anon_sym_as] = ACTIONS(592), + [anon_sym_const] = ACTIONS(592), + [anon_sym_default] = ACTIONS(592), + [anon_sym_union] = ACTIONS(592), + [anon_sym_POUND] = ACTIONS(590), + [anon_sym_EQ] = ACTIONS(592), + [anon_sym_COMMA] = ACTIONS(590), + [anon_sym_ref] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(592), + [anon_sym_GT] = ACTIONS(592), + [anon_sym_COLON_COLON] = ACTIONS(590), + [anon_sym__] = ACTIONS(592), + [anon_sym_AMP] = ACTIONS(592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(590), + [sym_mutable_specifier] = ACTIONS(592), + [anon_sym_DOT_DOT] = ACTIONS(592), + [anon_sym_DOT_DOT_EQ] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_AMP_AMP] = ACTIONS(590), + [anon_sym_PIPE_PIPE] = ACTIONS(590), + [anon_sym_PIPE] = ACTIONS(592), + [anon_sym_CARET] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(590), + [anon_sym_BANG_EQ] = ACTIONS(590), + [anon_sym_LT_EQ] = ACTIONS(590), + [anon_sym_GT_EQ] = ACTIONS(590), + [anon_sym_LT_LT] = ACTIONS(592), + [anon_sym_GT_GT] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(592), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_PLUS_EQ] = ACTIONS(590), + [anon_sym_DASH_EQ] = ACTIONS(590), + [anon_sym_STAR_EQ] = ACTIONS(590), + [anon_sym_SLASH_EQ] = ACTIONS(590), + [anon_sym_PERCENT_EQ] = ACTIONS(590), + [anon_sym_AMP_EQ] = ACTIONS(590), + [anon_sym_PIPE_EQ] = ACTIONS(590), + [anon_sym_CARET_EQ] = ACTIONS(590), + [anon_sym_LT_LT_EQ] = ACTIONS(590), + [anon_sym_GT_GT_EQ] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(592), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(590), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(592), + [anon_sym_false] = ACTIONS(592), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(592), + [sym_super] = ACTIONS(592), + [sym_crate] = ACTIONS(592), + [sym_metavariable] = ACTIONS(590), + [sym_raw_string_literal] = ACTIONS(590), + [sym_float_literal] = ACTIONS(590), + [sym_block_comment] = ACTIONS(3), + }, + [213] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1849), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(1848), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_type_binding] = STATE(2205), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [sym_block] = STATE(2205), + [sym__literal] = STATE(2205), + [sym_string_literal] = STATE(2170), + [sym_boolean_literal] = STATE(2170), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(886), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(886), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), + [sym_block_comment] = ACTIONS(3), + }, + [214] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1849), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(1848), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_type_binding] = STATE(2205), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [sym_block] = STATE(2205), + [sym__literal] = STATE(2205), + [sym_string_literal] = STATE(2170), + [sym_boolean_literal] = STATE(2170), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(892), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(886), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(886), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), + [sym_block_comment] = ACTIONS(3), + }, + [215] = { + [sym_identifier] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(409), + [anon_sym_RBRACE] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_PLUS] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(409), + [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_as] = ACTIONS(411), + [anon_sym_const] = ACTIONS(411), + [anon_sym_default] = ACTIONS(411), + [anon_sym_union] = ACTIONS(411), + [anon_sym_POUND] = ACTIONS(409), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_COMMA] = ACTIONS(409), + [anon_sym_ref] = ACTIONS(411), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_COLON_COLON] = ACTIONS(409), + [anon_sym__] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [sym_mutable_specifier] = ACTIONS(411), + [anon_sym_DOT_DOT] = ACTIONS(411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(411), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_CARET] = ACTIONS(411), + [anon_sym_EQ_EQ] = ACTIONS(409), + [anon_sym_BANG_EQ] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(411), + [anon_sym_SLASH] = ACTIONS(411), + [anon_sym_PERCENT] = ACTIONS(411), + [anon_sym_PLUS_EQ] = ACTIONS(409), + [anon_sym_DASH_EQ] = ACTIONS(409), + [anon_sym_STAR_EQ] = ACTIONS(409), + [anon_sym_SLASH_EQ] = ACTIONS(409), + [anon_sym_PERCENT_EQ] = ACTIONS(409), + [anon_sym_AMP_EQ] = ACTIONS(409), + [anon_sym_PIPE_EQ] = ACTIONS(409), + [anon_sym_CARET_EQ] = ACTIONS(409), + [anon_sym_LT_LT_EQ] = ACTIONS(409), + [anon_sym_GT_GT_EQ] = ACTIONS(409), + [anon_sym_DOT] = ACTIONS(411), + [sym_integer_literal] = ACTIONS(409), + [aux_sym_string_literal_token1] = ACTIONS(409), + [sym_char_literal] = ACTIONS(409), + [anon_sym_true] = ACTIONS(411), + [anon_sym_false] = ACTIONS(411), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(411), + [sym_super] = ACTIONS(411), + [sym_crate] = ACTIONS(411), + [sym_metavariable] = ACTIONS(409), + [sym_raw_string_literal] = ACTIONS(409), + [sym_float_literal] = ACTIONS(409), + [sym_block_comment] = ACTIONS(3), + }, + [216] = { + [sym_identifier] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_u8] = ACTIONS(576), + [anon_sym_i8] = ACTIONS(576), + [anon_sym_u16] = ACTIONS(576), + [anon_sym_i16] = ACTIONS(576), + [anon_sym_u32] = ACTIONS(576), + [anon_sym_i32] = ACTIONS(576), + [anon_sym_u64] = ACTIONS(576), + [anon_sym_i64] = ACTIONS(576), + [anon_sym_u128] = ACTIONS(576), + [anon_sym_i128] = ACTIONS(576), + [anon_sym_isize] = ACTIONS(576), + [anon_sym_usize] = ACTIONS(576), + [anon_sym_f32] = ACTIONS(576), + [anon_sym_f64] = ACTIONS(576), + [anon_sym_bool] = ACTIONS(576), + [anon_sym_str] = ACTIONS(576), + [anon_sym_char] = ACTIONS(576), + [anon_sym_as] = ACTIONS(576), + [anon_sym_const] = ACTIONS(576), + [anon_sym_default] = ACTIONS(576), + [anon_sym_union] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(574), + [anon_sym_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(574), + [anon_sym_ref] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(574), + [anon_sym__] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(576), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_EQ_EQ] = ACTIONS(574), + [anon_sym_BANG_EQ] = ACTIONS(574), + [anon_sym_LT_EQ] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(576), + [anon_sym_PERCENT] = ACTIONS(576), + [anon_sym_PLUS_EQ] = ACTIONS(574), + [anon_sym_DASH_EQ] = ACTIONS(574), + [anon_sym_STAR_EQ] = ACTIONS(574), + [anon_sym_SLASH_EQ] = ACTIONS(574), + [anon_sym_PERCENT_EQ] = ACTIONS(574), + [anon_sym_AMP_EQ] = ACTIONS(574), + [anon_sym_PIPE_EQ] = ACTIONS(574), + [anon_sym_CARET_EQ] = ACTIONS(574), + [anon_sym_LT_LT_EQ] = ACTIONS(574), + [anon_sym_GT_GT_EQ] = ACTIONS(574), + [anon_sym_DOT] = ACTIONS(576), + [sym_integer_literal] = ACTIONS(574), + [aux_sym_string_literal_token1] = ACTIONS(574), + [sym_char_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(576), + [sym_super] = ACTIONS(576), + [sym_crate] = ACTIONS(576), + [sym_metavariable] = ACTIONS(574), + [sym_raw_string_literal] = ACTIONS(574), + [sym_float_literal] = ACTIONS(574), + [sym_block_comment] = ACTIONS(3), + }, + [217] = { + [sym_identifier] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_u8] = ACTIONS(568), + [anon_sym_i8] = ACTIONS(568), + [anon_sym_u16] = ACTIONS(568), + [anon_sym_i16] = ACTIONS(568), + [anon_sym_u32] = ACTIONS(568), + [anon_sym_i32] = ACTIONS(568), + [anon_sym_u64] = ACTIONS(568), + [anon_sym_i64] = ACTIONS(568), + [anon_sym_u128] = ACTIONS(568), + [anon_sym_i128] = ACTIONS(568), + [anon_sym_isize] = ACTIONS(568), + [anon_sym_usize] = ACTIONS(568), + [anon_sym_f32] = ACTIONS(568), + [anon_sym_f64] = ACTIONS(568), + [anon_sym_bool] = ACTIONS(568), + [anon_sym_str] = ACTIONS(568), + [anon_sym_char] = ACTIONS(568), + [anon_sym_as] = ACTIONS(568), + [anon_sym_const] = ACTIONS(568), + [anon_sym_default] = ACTIONS(568), + [anon_sym_union] = ACTIONS(568), + [anon_sym_POUND] = ACTIONS(566), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_ref] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(566), + [anon_sym__] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [sym_mutable_specifier] = ACTIONS(568), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(566), + [aux_sym_string_literal_token1] = ACTIONS(566), + [sym_char_literal] = ACTIONS(566), + [anon_sym_true] = ACTIONS(568), + [anon_sym_false] = ACTIONS(568), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(568), + [sym_super] = ACTIONS(568), + [sym_crate] = ACTIONS(568), + [sym_metavariable] = ACTIONS(566), + [sym_raw_string_literal] = ACTIONS(566), + [sym_float_literal] = ACTIONS(566), + [sym_block_comment] = ACTIONS(3), + }, + [218] = { + [sym_identifier] = ACTIONS(580), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(580), + [anon_sym_QMARK] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(580), + [anon_sym_i8] = ACTIONS(580), + [anon_sym_u16] = ACTIONS(580), + [anon_sym_i16] = ACTIONS(580), + [anon_sym_u32] = ACTIONS(580), + [anon_sym_i32] = ACTIONS(580), + [anon_sym_u64] = ACTIONS(580), + [anon_sym_i64] = ACTIONS(580), + [anon_sym_u128] = ACTIONS(580), + [anon_sym_i128] = ACTIONS(580), + [anon_sym_isize] = ACTIONS(580), + [anon_sym_usize] = ACTIONS(580), + [anon_sym_f32] = ACTIONS(580), + [anon_sym_f64] = ACTIONS(580), + [anon_sym_bool] = ACTIONS(580), + [anon_sym_str] = ACTIONS(580), + [anon_sym_char] = ACTIONS(580), + [anon_sym_as] = ACTIONS(580), + [anon_sym_const] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_union] = ACTIONS(580), + [anon_sym_POUND] = ACTIONS(578), + [anon_sym_EQ] = ACTIONS(580), + [anon_sym_COMMA] = ACTIONS(578), + [anon_sym_ref] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_COLON_COLON] = ACTIONS(578), + [anon_sym__] = ACTIONS(580), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [sym_mutable_specifier] = ACTIONS(580), + [anon_sym_DOT_DOT] = ACTIONS(580), + [anon_sym_DOT_DOT_EQ] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_EQ_EQ] = ACTIONS(578), + [anon_sym_BANG_EQ] = ACTIONS(578), + [anon_sym_LT_EQ] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(580), + [anon_sym_GT_GT] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(580), + [anon_sym_PLUS_EQ] = ACTIONS(578), + [anon_sym_DASH_EQ] = ACTIONS(578), + [anon_sym_STAR_EQ] = ACTIONS(578), + [anon_sym_SLASH_EQ] = ACTIONS(578), + [anon_sym_PERCENT_EQ] = ACTIONS(578), + [anon_sym_AMP_EQ] = ACTIONS(578), + [anon_sym_PIPE_EQ] = ACTIONS(578), + [anon_sym_CARET_EQ] = ACTIONS(578), + [anon_sym_LT_LT_EQ] = ACTIONS(578), + [anon_sym_GT_GT_EQ] = ACTIONS(578), + [anon_sym_DOT] = ACTIONS(580), + [sym_integer_literal] = ACTIONS(578), + [aux_sym_string_literal_token1] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(580), + [anon_sym_false] = ACTIONS(580), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(580), + [sym_super] = ACTIONS(580), + [sym_crate] = ACTIONS(580), + [sym_metavariable] = ACTIONS(578), + [sym_raw_string_literal] = ACTIONS(578), + [sym_float_literal] = ACTIONS(578), + [sym_block_comment] = ACTIONS(3), + }, + [219] = { + [sym_identifier] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_RBRACE] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(598), + [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_as] = ACTIONS(600), + [anon_sym_const] = ACTIONS(600), + [anon_sym_default] = ACTIONS(600), + [anon_sym_union] = ACTIONS(600), + [anon_sym_POUND] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(600), + [anon_sym_COMMA] = ACTIONS(598), + [anon_sym_ref] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(598), + [anon_sym__] = ACTIONS(600), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(598), + [sym_mutable_specifier] = ACTIONS(600), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_DOT_DOT_EQ] = ACTIONS(598), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(598), + [anon_sym_PIPE_PIPE] = ACTIONS(598), + [anon_sym_PIPE] = ACTIONS(600), + [anon_sym_CARET] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(598), + [anon_sym_BANG_EQ] = ACTIONS(598), + [anon_sym_LT_EQ] = ACTIONS(598), + [anon_sym_GT_EQ] = ACTIONS(598), + [anon_sym_LT_LT] = ACTIONS(600), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_SLASH] = ACTIONS(600), + [anon_sym_PERCENT] = ACTIONS(600), + [anon_sym_PLUS_EQ] = ACTIONS(598), + [anon_sym_DASH_EQ] = ACTIONS(598), + [anon_sym_STAR_EQ] = ACTIONS(598), + [anon_sym_SLASH_EQ] = ACTIONS(598), + [anon_sym_PERCENT_EQ] = ACTIONS(598), + [anon_sym_AMP_EQ] = ACTIONS(598), + [anon_sym_PIPE_EQ] = ACTIONS(598), + [anon_sym_CARET_EQ] = ACTIONS(598), + [anon_sym_LT_LT_EQ] = ACTIONS(598), + [anon_sym_GT_GT_EQ] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(600), + [sym_integer_literal] = ACTIONS(598), + [aux_sym_string_literal_token1] = ACTIONS(598), + [sym_char_literal] = ACTIONS(598), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_crate] = ACTIONS(600), + [sym_metavariable] = ACTIONS(598), + [sym_raw_string_literal] = ACTIONS(598), + [sym_float_literal] = ACTIONS(598), + [sym_block_comment] = ACTIONS(3), + }, + [220] = { + [sym_identifier] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_u8] = ACTIONS(429), + [anon_sym_i8] = ACTIONS(429), + [anon_sym_u16] = ACTIONS(429), + [anon_sym_i16] = ACTIONS(429), + [anon_sym_u32] = ACTIONS(429), + [anon_sym_i32] = ACTIONS(429), + [anon_sym_u64] = ACTIONS(429), + [anon_sym_i64] = ACTIONS(429), + [anon_sym_u128] = ACTIONS(429), + [anon_sym_i128] = ACTIONS(429), + [anon_sym_isize] = ACTIONS(429), + [anon_sym_usize] = ACTIONS(429), + [anon_sym_f32] = ACTIONS(429), + [anon_sym_f64] = ACTIONS(429), + [anon_sym_bool] = ACTIONS(429), + [anon_sym_str] = ACTIONS(429), + [anon_sym_char] = ACTIONS(429), + [anon_sym_as] = ACTIONS(429), + [anon_sym_const] = ACTIONS(429), + [anon_sym_default] = ACTIONS(429), + [anon_sym_union] = ACTIONS(429), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(429), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_ref] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_COLON_COLON] = ACTIONS(427), + [anon_sym__] = ACTIONS(429), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(427), + [sym_mutable_specifier] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ] = ACTIONS(427), + [anon_sym_LT_EQ] = ACTIONS(427), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(429), + [anon_sym_PLUS_EQ] = ACTIONS(427), + [anon_sym_DASH_EQ] = ACTIONS(427), + [anon_sym_STAR_EQ] = ACTIONS(427), + [anon_sym_SLASH_EQ] = ACTIONS(427), + [anon_sym_PERCENT_EQ] = ACTIONS(427), + [anon_sym_AMP_EQ] = ACTIONS(427), + [anon_sym_PIPE_EQ] = ACTIONS(427), + [anon_sym_CARET_EQ] = ACTIONS(427), + [anon_sym_LT_LT_EQ] = ACTIONS(427), + [anon_sym_GT_GT_EQ] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(427), + [aux_sym_string_literal_token1] = ACTIONS(427), + [sym_char_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(429), + [sym_super] = ACTIONS(429), + [sym_crate] = ACTIONS(429), + [sym_metavariable] = ACTIONS(427), + [sym_raw_string_literal] = ACTIONS(427), + [sym_float_literal] = ACTIONS(427), + [sym_block_comment] = ACTIONS(3), + }, + [221] = { + [sym_identifier] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(896), + [anon_sym_RBRACE] = ACTIONS(453), + [anon_sym_LBRACK] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(455), + [anon_sym_QMARK] = ACTIONS(453), + [anon_sym_u8] = ACTIONS(894), + [anon_sym_i8] = ACTIONS(894), + [anon_sym_u16] = ACTIONS(894), + [anon_sym_i16] = ACTIONS(894), + [anon_sym_u32] = ACTIONS(894), + [anon_sym_i32] = ACTIONS(894), + [anon_sym_u64] = ACTIONS(894), + [anon_sym_i64] = ACTIONS(894), + [anon_sym_u128] = ACTIONS(894), + [anon_sym_i128] = ACTIONS(894), + [anon_sym_isize] = ACTIONS(894), + [anon_sym_usize] = ACTIONS(894), + [anon_sym_f32] = ACTIONS(894), + [anon_sym_f64] = ACTIONS(894), + [anon_sym_bool] = ACTIONS(894), + [anon_sym_str] = ACTIONS(894), + [anon_sym_char] = ACTIONS(894), + [anon_sym_as] = ACTIONS(455), + [anon_sym_const] = ACTIONS(894), + [anon_sym_default] = ACTIONS(894), + [anon_sym_union] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(896), + [anon_sym_EQ] = ACTIONS(455), + [anon_sym_COMMA] = ACTIONS(453), + [anon_sym_ref] = ACTIONS(894), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(455), + [anon_sym_COLON_COLON] = ACTIONS(896), + [anon_sym__] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_DOT_DOT_DOT] = ACTIONS(453), + [sym_mutable_specifier] = ACTIONS(894), + [anon_sym_DOT_DOT] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_AMP_AMP] = ACTIONS(453), + [anon_sym_PIPE_PIPE] = ACTIONS(453), + [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_CARET] = ACTIONS(455), + [anon_sym_EQ_EQ] = ACTIONS(453), + [anon_sym_BANG_EQ] = ACTIONS(453), + [anon_sym_LT_EQ] = ACTIONS(453), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_LT_LT] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(455), + [anon_sym_PERCENT] = ACTIONS(455), + [anon_sym_PLUS_EQ] = ACTIONS(453), + [anon_sym_DASH_EQ] = ACTIONS(453), + [anon_sym_STAR_EQ] = ACTIONS(453), + [anon_sym_SLASH_EQ] = ACTIONS(453), + [anon_sym_PERCENT_EQ] = ACTIONS(453), + [anon_sym_AMP_EQ] = ACTIONS(453), + [anon_sym_PIPE_EQ] = ACTIONS(453), + [anon_sym_CARET_EQ] = ACTIONS(453), + [anon_sym_LT_LT_EQ] = ACTIONS(453), + [anon_sym_GT_GT_EQ] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(455), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(896), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(894), + [sym_super] = ACTIONS(894), + [sym_crate] = ACTIONS(894), + [sym_metavariable] = ACTIONS(896), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), + [sym_block_comment] = ACTIONS(3), + }, + [222] = { + [sym_identifier] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(445), + [anon_sym_RBRACE] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_QMARK] = ACTIONS(445), + [anon_sym_u8] = ACTIONS(447), + [anon_sym_i8] = ACTIONS(447), + [anon_sym_u16] = ACTIONS(447), + [anon_sym_i16] = ACTIONS(447), + [anon_sym_u32] = ACTIONS(447), + [anon_sym_i32] = ACTIONS(447), + [anon_sym_u64] = ACTIONS(447), + [anon_sym_i64] = ACTIONS(447), + [anon_sym_u128] = ACTIONS(447), + [anon_sym_i128] = ACTIONS(447), + [anon_sym_isize] = ACTIONS(447), + [anon_sym_usize] = ACTIONS(447), + [anon_sym_f32] = ACTIONS(447), + [anon_sym_f64] = ACTIONS(447), + [anon_sym_bool] = ACTIONS(447), + [anon_sym_str] = ACTIONS(447), + [anon_sym_char] = ACTIONS(447), + [anon_sym_as] = ACTIONS(447), + [anon_sym_const] = ACTIONS(447), + [anon_sym_default] = ACTIONS(447), + [anon_sym_union] = ACTIONS(447), + [anon_sym_POUND] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(447), + [anon_sym_COMMA] = ACTIONS(445), + [anon_sym_ref] = ACTIONS(447), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_COLON_COLON] = ACTIONS(445), + [anon_sym__] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(445), + [sym_mutable_specifier] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_AMP_AMP] = ACTIONS(445), + [anon_sym_PIPE_PIPE] = ACTIONS(445), + [anon_sym_PIPE] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_EQ_EQ] = ACTIONS(445), + [anon_sym_BANG_EQ] = ACTIONS(445), + [anon_sym_LT_EQ] = ACTIONS(445), + [anon_sym_GT_EQ] = ACTIONS(445), + [anon_sym_LT_LT] = ACTIONS(447), + [anon_sym_GT_GT] = ACTIONS(447), + [anon_sym_SLASH] = ACTIONS(447), + [anon_sym_PERCENT] = ACTIONS(447), + [anon_sym_PLUS_EQ] = ACTIONS(445), + [anon_sym_DASH_EQ] = ACTIONS(445), + [anon_sym_STAR_EQ] = ACTIONS(445), + [anon_sym_SLASH_EQ] = ACTIONS(445), + [anon_sym_PERCENT_EQ] = ACTIONS(445), + [anon_sym_AMP_EQ] = ACTIONS(445), + [anon_sym_PIPE_EQ] = ACTIONS(445), + [anon_sym_CARET_EQ] = ACTIONS(445), + [anon_sym_LT_LT_EQ] = ACTIONS(445), + [anon_sym_GT_GT_EQ] = ACTIONS(445), + [anon_sym_DOT] = ACTIONS(447), + [sym_integer_literal] = ACTIONS(445), + [aux_sym_string_literal_token1] = ACTIONS(445), + [sym_char_literal] = ACTIONS(445), + [anon_sym_true] = ACTIONS(447), + [anon_sym_false] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(447), + [sym_super] = ACTIONS(447), + [sym_crate] = ACTIONS(447), + [sym_metavariable] = ACTIONS(445), + [sym_raw_string_literal] = ACTIONS(445), + [sym_float_literal] = ACTIONS(445), + [sym_block_comment] = ACTIONS(3), + }, + [223] = { + [sym_identifier] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(423), + [anon_sym_RBRACE] = ACTIONS(423), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_QMARK] = ACTIONS(423), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u128] = ACTIONS(425), + [anon_sym_i128] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_str] = ACTIONS(425), + [anon_sym_char] = ACTIONS(425), + [anon_sym_as] = ACTIONS(425), + [anon_sym_const] = ACTIONS(425), + [anon_sym_default] = ACTIONS(425), + [anon_sym_union] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(423), + [anon_sym_EQ] = ACTIONS(425), + [anon_sym_COMMA] = ACTIONS(423), + [anon_sym_ref] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(425), + [anon_sym_COLON_COLON] = ACTIONS(423), + [anon_sym__] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(423), + [sym_mutable_specifier] = ACTIONS(425), + [anon_sym_DOT_DOT] = ACTIONS(425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(425), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_EQ_EQ] = ACTIONS(423), + [anon_sym_BANG_EQ] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(425), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(425), + [anon_sym_PERCENT] = ACTIONS(425), + [anon_sym_PLUS_EQ] = ACTIONS(423), + [anon_sym_DASH_EQ] = ACTIONS(423), + [anon_sym_STAR_EQ] = ACTIONS(423), + [anon_sym_SLASH_EQ] = ACTIONS(423), + [anon_sym_PERCENT_EQ] = ACTIONS(423), + [anon_sym_AMP_EQ] = ACTIONS(423), + [anon_sym_PIPE_EQ] = ACTIONS(423), + [anon_sym_CARET_EQ] = ACTIONS(423), + [anon_sym_LT_LT_EQ] = ACTIONS(423), + [anon_sym_GT_GT_EQ] = ACTIONS(423), + [anon_sym_DOT] = ACTIONS(425), + [sym_integer_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(423), + [sym_char_literal] = ACTIONS(423), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(425), + [sym_super] = ACTIONS(425), + [sym_crate] = ACTIONS(425), + [sym_metavariable] = ACTIONS(423), + [sym_raw_string_literal] = ACTIONS(423), + [sym_float_literal] = ACTIONS(423), + [sym_block_comment] = ACTIONS(3), + }, + [224] = { + [sym_identifier] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_u8] = ACTIONS(417), + [anon_sym_i8] = ACTIONS(417), + [anon_sym_u16] = ACTIONS(417), + [anon_sym_i16] = ACTIONS(417), + [anon_sym_u32] = ACTIONS(417), + [anon_sym_i32] = ACTIONS(417), + [anon_sym_u64] = ACTIONS(417), + [anon_sym_i64] = ACTIONS(417), + [anon_sym_u128] = ACTIONS(417), + [anon_sym_i128] = ACTIONS(417), + [anon_sym_isize] = ACTIONS(417), + [anon_sym_usize] = ACTIONS(417), + [anon_sym_f32] = ACTIONS(417), + [anon_sym_f64] = ACTIONS(417), + [anon_sym_bool] = ACTIONS(417), + [anon_sym_str] = ACTIONS(417), + [anon_sym_char] = ACTIONS(417), + [anon_sym_as] = ACTIONS(417), + [anon_sym_const] = ACTIONS(417), + [anon_sym_default] = ACTIONS(417), + [anon_sym_union] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(415), + [anon_sym_EQ] = ACTIONS(417), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_ref] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym__] = ACTIONS(417), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(415), + [sym_mutable_specifier] = ACTIONS(417), + [anon_sym_DOT_DOT] = ACTIONS(417), + [anon_sym_DOT_DOT_EQ] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(417), + [anon_sym_EQ_EQ] = ACTIONS(415), + [anon_sym_BANG_EQ] = ACTIONS(415), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [anon_sym_SLASH] = ACTIONS(417), + [anon_sym_PERCENT] = ACTIONS(417), + [anon_sym_PLUS_EQ] = ACTIONS(415), + [anon_sym_DASH_EQ] = ACTIONS(415), + [anon_sym_STAR_EQ] = ACTIONS(415), + [anon_sym_SLASH_EQ] = ACTIONS(415), + [anon_sym_PERCENT_EQ] = ACTIONS(415), + [anon_sym_AMP_EQ] = ACTIONS(415), + [anon_sym_PIPE_EQ] = ACTIONS(415), + [anon_sym_CARET_EQ] = ACTIONS(415), + [anon_sym_LT_LT_EQ] = ACTIONS(415), + [anon_sym_GT_GT_EQ] = ACTIONS(415), + [anon_sym_DOT] = ACTIONS(417), + [sym_integer_literal] = ACTIONS(415), + [aux_sym_string_literal_token1] = ACTIONS(415), + [sym_char_literal] = ACTIONS(415), + [anon_sym_true] = ACTIONS(417), + [anon_sym_false] = ACTIONS(417), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(417), + [sym_super] = ACTIONS(417), + [sym_crate] = ACTIONS(417), + [sym_metavariable] = ACTIONS(415), + [sym_raw_string_literal] = ACTIONS(415), + [sym_float_literal] = ACTIONS(415), + [sym_block_comment] = ACTIONS(3), + }, + [225] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1849), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(1848), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_type_binding] = STATE(2205), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [sym_block] = STATE(2205), + [sym__literal] = STATE(2205), + [sym_string_literal] = STATE(2170), + [sym_boolean_literal] = STATE(2170), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(886), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(886), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), + [sym_block_comment] = ACTIONS(3), + }, + [226] = { + [sym_identifier] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_u8] = ACTIONS(433), + [anon_sym_i8] = ACTIONS(433), + [anon_sym_u16] = ACTIONS(433), + [anon_sym_i16] = ACTIONS(433), + [anon_sym_u32] = ACTIONS(433), + [anon_sym_i32] = ACTIONS(433), + [anon_sym_u64] = ACTIONS(433), + [anon_sym_i64] = ACTIONS(433), + [anon_sym_u128] = ACTIONS(433), + [anon_sym_i128] = ACTIONS(433), + [anon_sym_isize] = ACTIONS(433), + [anon_sym_usize] = ACTIONS(433), + [anon_sym_f32] = ACTIONS(433), + [anon_sym_f64] = ACTIONS(433), + [anon_sym_bool] = ACTIONS(433), + [anon_sym_str] = ACTIONS(433), + [anon_sym_char] = ACTIONS(433), + [anon_sym_as] = ACTIONS(433), + [anon_sym_const] = ACTIONS(433), + [anon_sym_default] = ACTIONS(433), + [anon_sym_union] = ACTIONS(433), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(433), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_ref] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(433), + [anon_sym_COLON_COLON] = ACTIONS(431), + [anon_sym__] = ACTIONS(433), + [anon_sym_AMP] = ACTIONS(433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_mutable_specifier] = ACTIONS(433), + [anon_sym_DOT_DOT] = ACTIONS(433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(431), + [anon_sym_PIPE_PIPE] = ACTIONS(431), + [anon_sym_PIPE] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ] = ACTIONS(431), + [anon_sym_LT_EQ] = ACTIONS(431), + [anon_sym_GT_EQ] = ACTIONS(431), + [anon_sym_LT_LT] = ACTIONS(433), + [anon_sym_GT_GT] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(433), + [anon_sym_PERCENT] = ACTIONS(433), + [anon_sym_PLUS_EQ] = ACTIONS(431), + [anon_sym_DASH_EQ] = ACTIONS(431), + [anon_sym_STAR_EQ] = ACTIONS(431), + [anon_sym_SLASH_EQ] = ACTIONS(431), + [anon_sym_PERCENT_EQ] = ACTIONS(431), + [anon_sym_AMP_EQ] = ACTIONS(431), + [anon_sym_PIPE_EQ] = ACTIONS(431), + [anon_sym_CARET_EQ] = ACTIONS(431), + [anon_sym_LT_LT_EQ] = ACTIONS(431), + [anon_sym_GT_GT_EQ] = ACTIONS(431), + [anon_sym_DOT] = ACTIONS(433), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(431), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(433), + [anon_sym_false] = ACTIONS(433), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(433), + [sym_super] = ACTIONS(433), + [sym_crate] = ACTIONS(433), + [sym_metavariable] = ACTIONS(431), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), + [sym_block_comment] = ACTIONS(3), + }, + [227] = { + [sym_identifier] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(405), + [anon_sym_u8] = ACTIONS(407), + [anon_sym_i8] = ACTIONS(407), + [anon_sym_u16] = ACTIONS(407), + [anon_sym_i16] = ACTIONS(407), + [anon_sym_u32] = ACTIONS(407), + [anon_sym_i32] = ACTIONS(407), + [anon_sym_u64] = ACTIONS(407), + [anon_sym_i64] = ACTIONS(407), + [anon_sym_u128] = ACTIONS(407), + [anon_sym_i128] = ACTIONS(407), + [anon_sym_isize] = ACTIONS(407), + [anon_sym_usize] = ACTIONS(407), + [anon_sym_f32] = ACTIONS(407), + [anon_sym_f64] = ACTIONS(407), + [anon_sym_bool] = ACTIONS(407), + [anon_sym_str] = ACTIONS(407), + [anon_sym_char] = ACTIONS(407), + [anon_sym_as] = ACTIONS(407), + [anon_sym_const] = ACTIONS(407), + [anon_sym_default] = ACTIONS(407), + [anon_sym_union] = ACTIONS(407), + [anon_sym_POUND] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COMMA] = ACTIONS(405), + [anon_sym_ref] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(405), + [anon_sym__] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(405), + [sym_mutable_specifier] = ACTIONS(407), + [anon_sym_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_AMP_AMP] = ACTIONS(405), + [anon_sym_PIPE_PIPE] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(407), + [anon_sym_CARET] = ACTIONS(407), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(405), + [anon_sym_LT_LT] = ACTIONS(407), + [anon_sym_GT_GT] = ACTIONS(407), + [anon_sym_SLASH] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_PLUS_EQ] = ACTIONS(405), + [anon_sym_DASH_EQ] = ACTIONS(405), + [anon_sym_STAR_EQ] = ACTIONS(405), + [anon_sym_SLASH_EQ] = ACTIONS(405), + [anon_sym_PERCENT_EQ] = ACTIONS(405), + [anon_sym_AMP_EQ] = ACTIONS(405), + [anon_sym_PIPE_EQ] = ACTIONS(405), + [anon_sym_CARET_EQ] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(405), + [anon_sym_GT_GT_EQ] = ACTIONS(405), + [anon_sym_DOT] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(405), + [aux_sym_string_literal_token1] = ACTIONS(405), + [sym_char_literal] = ACTIONS(405), + [anon_sym_true] = ACTIONS(407), + [anon_sym_false] = ACTIONS(407), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(407), + [sym_super] = ACTIONS(407), + [sym_crate] = ACTIONS(407), + [sym_metavariable] = ACTIONS(405), + [sym_raw_string_literal] = ACTIONS(405), + [sym_float_literal] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + }, + [228] = { + [sym_identifier] = ACTIONS(421), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(421), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_as] = ACTIONS(421), + [anon_sym_const] = ACTIONS(421), + [anon_sym_default] = ACTIONS(421), + [anon_sym_union] = ACTIONS(421), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_ref] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym__] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(419), + [sym_mutable_specifier] = ACTIONS(421), + [anon_sym_DOT_DOT] = ACTIONS(421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(421), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_SLASH] = ACTIONS(421), + [anon_sym_PERCENT] = ACTIONS(421), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_STAR_EQ] = ACTIONS(419), + [anon_sym_SLASH_EQ] = ACTIONS(419), + [anon_sym_PERCENT_EQ] = ACTIONS(419), + [anon_sym_AMP_EQ] = ACTIONS(419), + [anon_sym_PIPE_EQ] = ACTIONS(419), + [anon_sym_CARET_EQ] = ACTIONS(419), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_GT_GT_EQ] = ACTIONS(419), + [anon_sym_DOT] = ACTIONS(421), + [sym_integer_literal] = ACTIONS(419), + [aux_sym_string_literal_token1] = ACTIONS(419), + [sym_char_literal] = ACTIONS(419), + [anon_sym_true] = ACTIONS(421), + [anon_sym_false] = ACTIONS(421), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(421), + [sym_super] = ACTIONS(421), + [sym_crate] = ACTIONS(421), + [sym_metavariable] = ACTIONS(419), + [sym_raw_string_literal] = ACTIONS(419), + [sym_float_literal] = ACTIONS(419), + [sym_block_comment] = ACTIONS(3), + }, + [229] = { + [sym_identifier] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(562), + [anon_sym_u8] = ACTIONS(564), + [anon_sym_i8] = ACTIONS(564), + [anon_sym_u16] = ACTIONS(564), + [anon_sym_i16] = ACTIONS(564), + [anon_sym_u32] = ACTIONS(564), + [anon_sym_i32] = ACTIONS(564), + [anon_sym_u64] = ACTIONS(564), + [anon_sym_i64] = ACTIONS(564), + [anon_sym_u128] = ACTIONS(564), + [anon_sym_i128] = ACTIONS(564), + [anon_sym_isize] = ACTIONS(564), + [anon_sym_usize] = ACTIONS(564), + [anon_sym_f32] = ACTIONS(564), + [anon_sym_f64] = ACTIONS(564), + [anon_sym_bool] = ACTIONS(564), + [anon_sym_str] = ACTIONS(564), + [anon_sym_char] = ACTIONS(564), + [anon_sym_as] = ACTIONS(564), + [anon_sym_const] = ACTIONS(564), + [anon_sym_default] = ACTIONS(564), + [anon_sym_union] = ACTIONS(564), + [anon_sym_POUND] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_COMMA] = ACTIONS(562), + [anon_sym_ref] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_COLON_COLON] = ACTIONS(562), + [anon_sym__] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(562), + [sym_mutable_specifier] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_EQ] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(562), + [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(562), + [anon_sym_DASH_EQ] = ACTIONS(562), + [anon_sym_STAR_EQ] = ACTIONS(562), + [anon_sym_SLASH_EQ] = ACTIONS(562), + [anon_sym_PERCENT_EQ] = ACTIONS(562), + [anon_sym_AMP_EQ] = ACTIONS(562), + [anon_sym_PIPE_EQ] = ACTIONS(562), + [anon_sym_CARET_EQ] = ACTIONS(562), + [anon_sym_LT_LT_EQ] = ACTIONS(562), + [anon_sym_GT_GT_EQ] = ACTIONS(562), + [anon_sym_DOT] = ACTIONS(564), + [sym_integer_literal] = ACTIONS(562), + [aux_sym_string_literal_token1] = ACTIONS(562), + [sym_char_literal] = ACTIONS(562), + [anon_sym_true] = ACTIONS(564), + [anon_sym_false] = ACTIONS(564), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(564), + [sym_super] = ACTIONS(564), + [sym_crate] = ACTIONS(564), + [sym_metavariable] = ACTIONS(562), + [sym_raw_string_literal] = ACTIONS(562), + [sym_float_literal] = ACTIONS(562), + [sym_block_comment] = ACTIONS(3), + }, + [230] = { + [sym_identifier] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(570), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u128] = ACTIONS(572), + [anon_sym_i128] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_str] = ACTIONS(572), + [anon_sym_char] = ACTIONS(572), + [anon_sym_as] = ACTIONS(572), + [anon_sym_const] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_union] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_ref] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(570), + [anon_sym__] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_DOT] = ACTIONS(572), + [sym_integer_literal] = ACTIONS(570), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(570), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(572), + [sym_super] = ACTIONS(572), + [sym_crate] = ACTIONS(572), + [sym_metavariable] = ACTIONS(570), + [sym_raw_string_literal] = ACTIONS(570), + [sym_float_literal] = ACTIONS(570), + [sym_block_comment] = ACTIONS(3), + }, + [231] = { + [sym_identifier] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_PLUS] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(437), + [anon_sym_QMARK] = ACTIONS(435), + [anon_sym_u8] = ACTIONS(437), + [anon_sym_i8] = ACTIONS(437), + [anon_sym_u16] = ACTIONS(437), + [anon_sym_i16] = ACTIONS(437), + [anon_sym_u32] = ACTIONS(437), + [anon_sym_i32] = ACTIONS(437), + [anon_sym_u64] = ACTIONS(437), + [anon_sym_i64] = ACTIONS(437), + [anon_sym_u128] = ACTIONS(437), + [anon_sym_i128] = ACTIONS(437), + [anon_sym_isize] = ACTIONS(437), + [anon_sym_usize] = ACTIONS(437), + [anon_sym_f32] = ACTIONS(437), + [anon_sym_f64] = ACTIONS(437), + [anon_sym_bool] = ACTIONS(437), + [anon_sym_str] = ACTIONS(437), + [anon_sym_char] = ACTIONS(437), + [anon_sym_as] = ACTIONS(437), + [anon_sym_const] = ACTIONS(437), + [anon_sym_default] = ACTIONS(437), + [anon_sym_union] = ACTIONS(437), + [anon_sym_POUND] = ACTIONS(435), + [anon_sym_EQ] = ACTIONS(437), + [anon_sym_COMMA] = ACTIONS(435), + [anon_sym_ref] = ACTIONS(437), + [anon_sym_LT] = ACTIONS(437), + [anon_sym_GT] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(435), + [anon_sym__] = ACTIONS(437), + [anon_sym_AMP] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(435), + [sym_mutable_specifier] = ACTIONS(437), + [anon_sym_DOT_DOT] = ACTIONS(437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(435), + [anon_sym_DASH] = ACTIONS(437), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(437), + [anon_sym_EQ_EQ] = ACTIONS(435), + [anon_sym_BANG_EQ] = ACTIONS(435), + [anon_sym_LT_EQ] = ACTIONS(435), + [anon_sym_GT_EQ] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(437), + [anon_sym_GT_GT] = ACTIONS(437), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(437), + [anon_sym_PLUS_EQ] = ACTIONS(435), + [anon_sym_DASH_EQ] = ACTIONS(435), + [anon_sym_STAR_EQ] = ACTIONS(435), + [anon_sym_SLASH_EQ] = ACTIONS(435), + [anon_sym_PERCENT_EQ] = ACTIONS(435), + [anon_sym_AMP_EQ] = ACTIONS(435), + [anon_sym_PIPE_EQ] = ACTIONS(435), + [anon_sym_CARET_EQ] = ACTIONS(435), + [anon_sym_LT_LT_EQ] = ACTIONS(435), + [anon_sym_GT_GT_EQ] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [sym_integer_literal] = ACTIONS(435), + [aux_sym_string_literal_token1] = ACTIONS(435), + [sym_char_literal] = ACTIONS(435), + [anon_sym_true] = ACTIONS(437), + [anon_sym_false] = ACTIONS(437), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(437), + [sym_crate] = ACTIONS(437), + [sym_metavariable] = ACTIONS(435), + [sym_raw_string_literal] = ACTIONS(435), + [sym_float_literal] = ACTIONS(435), + [sym_block_comment] = ACTIONS(3), + }, + [232] = { + [sym_identifier] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_RBRACE] = ACTIONS(441), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_QMARK] = ACTIONS(441), + [anon_sym_u8] = ACTIONS(443), + [anon_sym_i8] = ACTIONS(443), + [anon_sym_u16] = ACTIONS(443), + [anon_sym_i16] = ACTIONS(443), + [anon_sym_u32] = ACTIONS(443), + [anon_sym_i32] = ACTIONS(443), + [anon_sym_u64] = ACTIONS(443), + [anon_sym_i64] = ACTIONS(443), + [anon_sym_u128] = ACTIONS(443), + [anon_sym_i128] = ACTIONS(443), + [anon_sym_isize] = ACTIONS(443), + [anon_sym_usize] = ACTIONS(443), + [anon_sym_f32] = ACTIONS(443), + [anon_sym_f64] = ACTIONS(443), + [anon_sym_bool] = ACTIONS(443), + [anon_sym_str] = ACTIONS(443), + [anon_sym_char] = ACTIONS(443), + [anon_sym_as] = ACTIONS(443), + [anon_sym_const] = ACTIONS(443), + [anon_sym_default] = ACTIONS(443), + [anon_sym_union] = ACTIONS(443), + [anon_sym_POUND] = ACTIONS(441), + [anon_sym_EQ] = ACTIONS(443), + [anon_sym_COMMA] = ACTIONS(441), + [anon_sym_ref] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(443), + [anon_sym_GT] = ACTIONS(443), + [anon_sym_COLON_COLON] = ACTIONS(441), + [anon_sym__] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(441), + [sym_mutable_specifier] = ACTIONS(443), + [anon_sym_DOT_DOT] = ACTIONS(443), + [anon_sym_DOT_DOT_EQ] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_AMP_AMP] = ACTIONS(441), + [anon_sym_PIPE_PIPE] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(443), + [anon_sym_CARET] = ACTIONS(443), + [anon_sym_EQ_EQ] = ACTIONS(441), + [anon_sym_BANG_EQ] = ACTIONS(441), + [anon_sym_LT_EQ] = ACTIONS(441), + [anon_sym_GT_EQ] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(443), + [anon_sym_GT_GT] = ACTIONS(443), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_PERCENT] = ACTIONS(443), + [anon_sym_PLUS_EQ] = ACTIONS(441), + [anon_sym_DASH_EQ] = ACTIONS(441), + [anon_sym_STAR_EQ] = ACTIONS(441), + [anon_sym_SLASH_EQ] = ACTIONS(441), + [anon_sym_PERCENT_EQ] = ACTIONS(441), + [anon_sym_AMP_EQ] = ACTIONS(441), + [anon_sym_PIPE_EQ] = ACTIONS(441), + [anon_sym_CARET_EQ] = ACTIONS(441), + [anon_sym_LT_LT_EQ] = ACTIONS(441), + [anon_sym_GT_GT_EQ] = ACTIONS(441), + [anon_sym_DOT] = ACTIONS(443), + [sym_integer_literal] = ACTIONS(441), + [aux_sym_string_literal_token1] = ACTIONS(441), + [sym_char_literal] = ACTIONS(441), + [anon_sym_true] = ACTIONS(443), + [anon_sym_false] = ACTIONS(443), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(443), + [sym_crate] = ACTIONS(443), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(441), + [sym_float_literal] = ACTIONS(441), + [sym_block_comment] = ACTIONS(3), + }, + [233] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1849), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(1848), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_type_binding] = STATE(2205), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [sym_block] = STATE(2205), + [sym__literal] = STATE(2205), + [sym_string_literal] = STATE(2170), + [sym_boolean_literal] = STATE(2170), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(886), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(886), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), + [sym_block_comment] = ACTIONS(3), + }, + [234] = { + [sym_identifier] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(594), + [anon_sym_RBRACE] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_u8] = ACTIONS(596), + [anon_sym_i8] = ACTIONS(596), + [anon_sym_u16] = ACTIONS(596), + [anon_sym_i16] = ACTIONS(596), + [anon_sym_u32] = ACTIONS(596), + [anon_sym_i32] = ACTIONS(596), + [anon_sym_u64] = ACTIONS(596), + [anon_sym_i64] = ACTIONS(596), + [anon_sym_u128] = ACTIONS(596), + [anon_sym_i128] = ACTIONS(596), + [anon_sym_isize] = ACTIONS(596), + [anon_sym_usize] = ACTIONS(596), + [anon_sym_f32] = ACTIONS(596), + [anon_sym_f64] = ACTIONS(596), + [anon_sym_bool] = ACTIONS(596), + [anon_sym_str] = ACTIONS(596), + [anon_sym_char] = ACTIONS(596), + [anon_sym_as] = ACTIONS(596), + [anon_sym_const] = ACTIONS(596), + [anon_sym_default] = ACTIONS(596), + [anon_sym_union] = ACTIONS(596), + [anon_sym_POUND] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_COMMA] = ACTIONS(594), + [anon_sym_ref] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(594), + [anon_sym__] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [sym_mutable_specifier] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(594), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(594), + [anon_sym_DASH_EQ] = ACTIONS(594), + [anon_sym_STAR_EQ] = ACTIONS(594), + [anon_sym_SLASH_EQ] = ACTIONS(594), + [anon_sym_PERCENT_EQ] = ACTIONS(594), + [anon_sym_AMP_EQ] = ACTIONS(594), + [anon_sym_PIPE_EQ] = ACTIONS(594), + [anon_sym_CARET_EQ] = ACTIONS(594), + [anon_sym_LT_LT_EQ] = ACTIONS(594), + [anon_sym_GT_GT_EQ] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(596), + [sym_integer_literal] = ACTIONS(594), + [aux_sym_string_literal_token1] = ACTIONS(594), + [sym_char_literal] = ACTIONS(594), + [anon_sym_true] = ACTIONS(596), + [anon_sym_false] = ACTIONS(596), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(596), + [sym_super] = ACTIONS(596), + [sym_crate] = ACTIONS(596), + [sym_metavariable] = ACTIONS(594), + [sym_raw_string_literal] = ACTIONS(594), + [sym_float_literal] = ACTIONS(594), + [sym_block_comment] = ACTIONS(3), + }, + [235] = { + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u8] = ACTIONS(403), + [anon_sym_i8] = ACTIONS(403), + [anon_sym_u16] = ACTIONS(403), + [anon_sym_i16] = ACTIONS(403), + [anon_sym_u32] = ACTIONS(403), + [anon_sym_i32] = ACTIONS(403), + [anon_sym_u64] = ACTIONS(403), + [anon_sym_i64] = ACTIONS(403), + [anon_sym_u128] = ACTIONS(403), + [anon_sym_i128] = ACTIONS(403), + [anon_sym_isize] = ACTIONS(403), + [anon_sym_usize] = ACTIONS(403), + [anon_sym_f32] = ACTIONS(403), + [anon_sym_f64] = ACTIONS(403), + [anon_sym_bool] = ACTIONS(403), + [anon_sym_str] = ACTIONS(403), + [anon_sym_char] = ACTIONS(403), + [anon_sym_as] = ACTIONS(403), + [anon_sym_const] = ACTIONS(403), + [anon_sym_default] = ACTIONS(403), + [anon_sym_union] = ACTIONS(403), + [anon_sym_POUND] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(401), + [anon_sym_ref] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(401), + [anon_sym__] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [sym_mutable_specifier] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [sym_integer_literal] = ACTIONS(401), + [aux_sym_string_literal_token1] = ACTIONS(401), + [sym_char_literal] = ACTIONS(401), + [anon_sym_true] = ACTIONS(403), + [anon_sym_false] = ACTIONS(403), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(403), + [sym_super] = ACTIONS(403), + [sym_crate] = ACTIONS(403), + [sym_metavariable] = ACTIONS(401), + [sym_raw_string_literal] = ACTIONS(401), + [sym_float_literal] = ACTIONS(401), + [sym_block_comment] = ACTIONS(3), + }, + [236] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1849), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(1848), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_type_binding] = STATE(2205), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [sym_block] = STATE(2205), + [sym__literal] = STATE(2205), + [sym_string_literal] = STATE(2170), + [sym_boolean_literal] = STATE(2170), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(886), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(886), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), + [sym_block_comment] = ACTIONS(3), + }, + [237] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1708), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(1707), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_type_binding] = STATE(1814), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [sym_block] = STATE(1814), + [sym__literal] = STATE(1814), + [sym_string_literal] = STATE(2170), + [sym_boolean_literal] = STATE(2170), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(886), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(886), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), + [sym_block_comment] = ACTIONS(3), + }, + [238] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1752), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(1753), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_type_binding] = STATE(1964), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [sym_block] = STATE(1964), + [sym__literal] = STATE(1964), + [sym_string_literal] = STATE(2170), + [sym_boolean_literal] = STATE(2170), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(886), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(886), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), + [sym_block_comment] = ACTIONS(3), + }, + [239] = { + [sym__token_pattern] = STATE(239), + [sym_token_tree_pattern] = STATE(239), + [sym_token_binding_pattern] = STATE(239), + [sym_token_repetition_pattern] = STATE(239), + [sym__literal] = STATE(239), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_pattern_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(905), + [anon_sym_RPAREN] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_RBRACK] = ACTIONS(908), + [anon_sym_DOLLAR] = ACTIONS(916), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [aux_sym__non_special_token_token1] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(902), + [anon_sym_as] = ACTIONS(902), + [anon_sym_async] = ACTIONS(902), + [anon_sym_await] = ACTIONS(902), + [anon_sym_break] = ACTIONS(902), + [anon_sym_const] = ACTIONS(902), + [anon_sym_continue] = ACTIONS(902), + [anon_sym_default] = ACTIONS(902), + [anon_sym_enum] = ACTIONS(902), + [anon_sym_fn] = ACTIONS(902), + [anon_sym_for] = ACTIONS(902), + [anon_sym_if] = ACTIONS(902), + [anon_sym_impl] = ACTIONS(902), + [anon_sym_let] = ACTIONS(902), + [anon_sym_loop] = ACTIONS(902), + [anon_sym_match] = ACTIONS(902), + [anon_sym_mod] = ACTIONS(902), + [anon_sym_pub] = ACTIONS(902), + [anon_sym_return] = ACTIONS(902), + [anon_sym_static] = ACTIONS(902), + [anon_sym_struct] = ACTIONS(902), + [anon_sym_trait] = ACTIONS(902), + [anon_sym_type] = ACTIONS(902), + [anon_sym_union] = ACTIONS(902), + [anon_sym_unsafe] = ACTIONS(902), + [anon_sym_use] = ACTIONS(902), + [anon_sym_where] = ACTIONS(902), + [anon_sym_while] = ACTIONS(902), + [sym_mutable_specifier] = ACTIONS(902), + [sym_integer_literal] = ACTIONS(919), + [aux_sym_string_literal_token1] = ACTIONS(922), + [sym_char_literal] = ACTIONS(919), + [anon_sym_true] = ACTIONS(925), + [anon_sym_false] = ACTIONS(925), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(902), + [sym_super] = ACTIONS(902), + [sym_crate] = ACTIONS(902), + [sym_metavariable] = ACTIONS(930), + [sym_raw_string_literal] = ACTIONS(919), + [sym_float_literal] = ACTIONS(919), + [sym_block_comment] = ACTIONS(3), + }, + [240] = { + [sym_empty_statement] = STATE(241), + [sym_macro_definition] = STATE(241), + [sym_attribute_item] = STATE(241), + [sym_inner_attribute_item] = STATE(241), + [sym_mod_item] = STATE(241), + [sym_foreign_mod_item] = STATE(241), + [sym_struct_item] = STATE(241), + [sym_union_item] = STATE(241), + [sym_enum_item] = STATE(241), + [sym_extern_crate_declaration] = STATE(241), + [sym_const_item] = STATE(241), + [sym_static_item] = STATE(241), + [sym_type_item] = STATE(241), + [sym_function_item] = STATE(241), + [sym_function_signature_item] = STATE(241), + [sym_function_modifiers] = STATE(2416), + [sym_impl_item] = STATE(241), + [sym_trait_item] = STATE(241), + [sym_associated_type] = STATE(241), + [sym_let_declaration] = STATE(241), + [sym_use_declaration] = STATE(241), + [sym_extern_modifier] = STATE(1440), + [sym_visibility_modifier] = STATE(1259), + [sym_bracketed_type] = STATE(2246), + [sym_generic_type_with_turbofish] = STATE(2243), + [sym_macro_invocation] = STATE(241), + [sym_scoped_identifier] = STATE(2126), + [aux_sym_declaration_list_repeat1] = STATE(241), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_macro_rules_BANG] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(939), + [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_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(943), + [anon_sym_default] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_fn] = ACTIONS(949), + [anon_sym_impl] = ACTIONS(951), + [anon_sym_let] = ACTIONS(953), + [anon_sym_mod] = ACTIONS(955), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(957), + [anon_sym_struct] = ACTIONS(959), + [anon_sym_trait] = ACTIONS(961), + [anon_sym_type] = ACTIONS(963), + [anon_sym_union] = ACTIONS(965), + [anon_sym_unsafe] = ACTIONS(967), + [anon_sym_use] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(971), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(975), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(977), + [sym_super] = ACTIONS(977), + [sym_crate] = ACTIONS(979), + [sym_metavariable] = ACTIONS(981), + [sym_block_comment] = ACTIONS(3), + }, + [241] = { + [sym_empty_statement] = STATE(244), + [sym_macro_definition] = STATE(244), + [sym_attribute_item] = STATE(244), + [sym_inner_attribute_item] = STATE(244), + [sym_mod_item] = STATE(244), + [sym_foreign_mod_item] = STATE(244), + [sym_struct_item] = STATE(244), + [sym_union_item] = STATE(244), + [sym_enum_item] = STATE(244), + [sym_extern_crate_declaration] = STATE(244), + [sym_const_item] = STATE(244), + [sym_static_item] = STATE(244), + [sym_type_item] = STATE(244), + [sym_function_item] = STATE(244), + [sym_function_signature_item] = STATE(244), + [sym_function_modifiers] = STATE(2416), + [sym_impl_item] = STATE(244), + [sym_trait_item] = STATE(244), + [sym_associated_type] = STATE(244), + [sym_let_declaration] = STATE(244), + [sym_use_declaration] = STATE(244), + [sym_extern_modifier] = STATE(1440), + [sym_visibility_modifier] = STATE(1259), + [sym_bracketed_type] = STATE(2246), + [sym_generic_type_with_turbofish] = STATE(2243), + [sym_macro_invocation] = STATE(244), + [sym_scoped_identifier] = STATE(2126), + [aux_sym_declaration_list_repeat1] = STATE(244), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_macro_rules_BANG] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(983), + [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_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(943), + [anon_sym_default] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_fn] = ACTIONS(949), + [anon_sym_impl] = ACTIONS(951), + [anon_sym_let] = ACTIONS(953), + [anon_sym_mod] = ACTIONS(955), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(957), + [anon_sym_struct] = ACTIONS(959), + [anon_sym_trait] = ACTIONS(961), + [anon_sym_type] = ACTIONS(963), + [anon_sym_union] = ACTIONS(965), + [anon_sym_unsafe] = ACTIONS(967), + [anon_sym_use] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(971), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(975), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(977), + [sym_super] = ACTIONS(977), + [sym_crate] = ACTIONS(979), + [sym_metavariable] = ACTIONS(981), + [sym_block_comment] = ACTIONS(3), + }, + [242] = { + [sym_empty_statement] = STATE(243), + [sym_macro_definition] = STATE(243), + [sym_attribute_item] = STATE(243), + [sym_inner_attribute_item] = STATE(243), + [sym_mod_item] = STATE(243), + [sym_foreign_mod_item] = STATE(243), + [sym_struct_item] = STATE(243), + [sym_union_item] = STATE(243), + [sym_enum_item] = STATE(243), + [sym_extern_crate_declaration] = STATE(243), + [sym_const_item] = STATE(243), + [sym_static_item] = STATE(243), + [sym_type_item] = STATE(243), + [sym_function_item] = STATE(243), + [sym_function_signature_item] = STATE(243), + [sym_function_modifiers] = STATE(2416), + [sym_impl_item] = STATE(243), + [sym_trait_item] = STATE(243), + [sym_associated_type] = STATE(243), + [sym_let_declaration] = STATE(243), + [sym_use_declaration] = STATE(243), + [sym_extern_modifier] = STATE(1440), + [sym_visibility_modifier] = STATE(1259), + [sym_bracketed_type] = STATE(2246), + [sym_generic_type_with_turbofish] = STATE(2243), + [sym_macro_invocation] = STATE(243), + [sym_scoped_identifier] = STATE(2126), + [aux_sym_declaration_list_repeat1] = STATE(243), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_macro_rules_BANG] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(985), + [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_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(943), + [anon_sym_default] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_fn] = ACTIONS(949), + [anon_sym_impl] = ACTIONS(951), + [anon_sym_let] = ACTIONS(953), + [anon_sym_mod] = ACTIONS(955), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(957), + [anon_sym_struct] = ACTIONS(959), + [anon_sym_trait] = ACTIONS(961), + [anon_sym_type] = ACTIONS(963), + [anon_sym_union] = ACTIONS(965), + [anon_sym_unsafe] = ACTIONS(967), + [anon_sym_use] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(971), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(975), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(977), + [sym_super] = ACTIONS(977), + [sym_crate] = ACTIONS(979), + [sym_metavariable] = ACTIONS(981), + [sym_block_comment] = ACTIONS(3), + }, + [243] = { + [sym_empty_statement] = STATE(244), + [sym_macro_definition] = STATE(244), + [sym_attribute_item] = STATE(244), + [sym_inner_attribute_item] = STATE(244), + [sym_mod_item] = STATE(244), + [sym_foreign_mod_item] = STATE(244), + [sym_struct_item] = STATE(244), + [sym_union_item] = STATE(244), + [sym_enum_item] = STATE(244), + [sym_extern_crate_declaration] = STATE(244), + [sym_const_item] = STATE(244), + [sym_static_item] = STATE(244), + [sym_type_item] = STATE(244), + [sym_function_item] = STATE(244), + [sym_function_signature_item] = STATE(244), + [sym_function_modifiers] = STATE(2416), + [sym_impl_item] = STATE(244), + [sym_trait_item] = STATE(244), + [sym_associated_type] = STATE(244), + [sym_let_declaration] = STATE(244), + [sym_use_declaration] = STATE(244), + [sym_extern_modifier] = STATE(1440), + [sym_visibility_modifier] = STATE(1259), + [sym_bracketed_type] = STATE(2246), + [sym_generic_type_with_turbofish] = STATE(2243), + [sym_macro_invocation] = STATE(244), + [sym_scoped_identifier] = STATE(2126), + [aux_sym_declaration_list_repeat1] = STATE(244), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_macro_rules_BANG] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(987), + [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_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(943), + [anon_sym_default] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_fn] = ACTIONS(949), + [anon_sym_impl] = ACTIONS(951), + [anon_sym_let] = ACTIONS(953), + [anon_sym_mod] = ACTIONS(955), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(957), + [anon_sym_struct] = ACTIONS(959), + [anon_sym_trait] = ACTIONS(961), + [anon_sym_type] = ACTIONS(963), + [anon_sym_union] = ACTIONS(965), + [anon_sym_unsafe] = ACTIONS(967), + [anon_sym_use] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(971), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(975), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(977), + [sym_super] = ACTIONS(977), + [sym_crate] = ACTIONS(979), + [sym_metavariable] = ACTIONS(981), + [sym_block_comment] = ACTIONS(3), + }, + [244] = { + [sym_empty_statement] = STATE(244), + [sym_macro_definition] = STATE(244), + [sym_attribute_item] = STATE(244), + [sym_inner_attribute_item] = STATE(244), + [sym_mod_item] = STATE(244), + [sym_foreign_mod_item] = STATE(244), + [sym_struct_item] = STATE(244), + [sym_union_item] = STATE(244), + [sym_enum_item] = STATE(244), + [sym_extern_crate_declaration] = STATE(244), + [sym_const_item] = STATE(244), + [sym_static_item] = STATE(244), + [sym_type_item] = STATE(244), + [sym_function_item] = STATE(244), + [sym_function_signature_item] = STATE(244), + [sym_function_modifiers] = STATE(2416), + [sym_impl_item] = STATE(244), + [sym_trait_item] = STATE(244), + [sym_associated_type] = STATE(244), + [sym_let_declaration] = STATE(244), + [sym_use_declaration] = STATE(244), + [sym_extern_modifier] = STATE(1440), + [sym_visibility_modifier] = STATE(1259), + [sym_bracketed_type] = STATE(2246), + [sym_generic_type_with_turbofish] = STATE(2243), + [sym_macro_invocation] = STATE(244), + [sym_scoped_identifier] = STATE(2126), + [aux_sym_declaration_list_repeat1] = STATE(244), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_macro_rules_BANG] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(1000), + [anon_sym_i8] = ACTIONS(1000), + [anon_sym_u16] = ACTIONS(1000), + [anon_sym_i16] = ACTIONS(1000), + [anon_sym_u32] = ACTIONS(1000), + [anon_sym_i32] = ACTIONS(1000), + [anon_sym_u64] = ACTIONS(1000), + [anon_sym_i64] = ACTIONS(1000), + [anon_sym_u128] = ACTIONS(1000), + [anon_sym_i128] = ACTIONS(1000), + [anon_sym_isize] = ACTIONS(1000), + [anon_sym_usize] = ACTIONS(1000), + [anon_sym_f32] = ACTIONS(1000), + [anon_sym_f64] = ACTIONS(1000), + [anon_sym_bool] = ACTIONS(1000), + [anon_sym_str] = ACTIONS(1000), + [anon_sym_char] = ACTIONS(1000), + [anon_sym_async] = ACTIONS(1003), + [anon_sym_const] = ACTIONS(1006), + [anon_sym_default] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_fn] = ACTIONS(1015), + [anon_sym_impl] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_pub] = ACTIONS(1027), + [anon_sym_static] = ACTIONS(1030), + [anon_sym_struct] = ACTIONS(1033), + [anon_sym_trait] = ACTIONS(1036), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_union] = ACTIONS(1042), + [anon_sym_unsafe] = ACTIONS(1045), + [anon_sym_use] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1063), + [sym_super] = ACTIONS(1063), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1069), + [sym_block_comment] = ACTIONS(3), + }, + [245] = { + [sym_attribute_item] = STATE(494), + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_macro_invocation] = STATE(2288), + [sym_scoped_identifier] = STATE(1493), + [sym_scoped_type_identifier] = STATE(1824), + [sym_match_arm] = STATE(355), + [sym_last_match_arm] = STATE(2302), + [sym_match_pattern] = STATE(2285), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1839), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_enum_variant_list_repeat1] = STATE(494), + [aux_sym_match_block_repeat1] = STATE(355), + [sym_identifier] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [246] = { + [sym_attribute_item] = STATE(494), + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_macro_invocation] = STATE(2288), + [sym_scoped_identifier] = STATE(1493), + [sym_scoped_type_identifier] = STATE(1824), + [sym_match_arm] = STATE(329), + [sym_last_match_arm] = STATE(2287), + [sym_match_pattern] = STATE(2285), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1839), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_enum_variant_list_repeat1] = STATE(494), + [aux_sym_match_block_repeat1] = STATE(329), + [sym_identifier] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1094), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [247] = { + [sym_attribute_item] = STATE(494), + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_macro_invocation] = STATE(2288), + [sym_scoped_identifier] = STATE(1493), + [sym_scoped_type_identifier] = STATE(1824), + [sym_match_arm] = STATE(453), + [sym_last_match_arm] = STATE(2418), + [sym_match_pattern] = STATE(2285), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1839), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_enum_variant_list_repeat1] = STATE(494), + [aux_sym_match_block_repeat1] = STATE(453), + [sym_identifier] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1096), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [248] = { + [sym__token_pattern] = STATE(334), + [sym_token_tree_pattern] = STATE(334), + [sym_token_binding_pattern] = STATE(334), + [sym_token_repetition_pattern] = STATE(334), + [sym__literal] = STATE(334), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_pattern_repeat1] = STATE(334), + [sym_identifier] = ACTIONS(1098), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_RPAREN] = ACTIONS(1102), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_u8] = ACTIONS(1098), + [anon_sym_i8] = ACTIONS(1098), + [anon_sym_u16] = ACTIONS(1098), + [anon_sym_i16] = ACTIONS(1098), + [anon_sym_u32] = ACTIONS(1098), + [anon_sym_i32] = ACTIONS(1098), + [anon_sym_u64] = ACTIONS(1098), + [anon_sym_i64] = ACTIONS(1098), + [anon_sym_u128] = ACTIONS(1098), + [anon_sym_i128] = ACTIONS(1098), + [anon_sym_isize] = ACTIONS(1098), + [anon_sym_usize] = ACTIONS(1098), + [anon_sym_f32] = ACTIONS(1098), + [anon_sym_f64] = ACTIONS(1098), + [anon_sym_bool] = ACTIONS(1098), + [anon_sym_str] = ACTIONS(1098), + [anon_sym_char] = ACTIONS(1098), + [aux_sym__non_special_token_token1] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(1098), + [anon_sym_as] = ACTIONS(1098), + [anon_sym_async] = ACTIONS(1098), + [anon_sym_await] = ACTIONS(1098), + [anon_sym_break] = ACTIONS(1098), + [anon_sym_const] = ACTIONS(1098), + [anon_sym_continue] = ACTIONS(1098), + [anon_sym_default] = ACTIONS(1098), + [anon_sym_enum] = ACTIONS(1098), + [anon_sym_fn] = ACTIONS(1098), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_if] = ACTIONS(1098), + [anon_sym_impl] = ACTIONS(1098), + [anon_sym_let] = ACTIONS(1098), + [anon_sym_loop] = ACTIONS(1098), + [anon_sym_match] = ACTIONS(1098), + [anon_sym_mod] = ACTIONS(1098), + [anon_sym_pub] = ACTIONS(1098), + [anon_sym_return] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1098), + [anon_sym_struct] = ACTIONS(1098), + [anon_sym_trait] = ACTIONS(1098), + [anon_sym_type] = ACTIONS(1098), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1098), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_where] = ACTIONS(1098), + [anon_sym_while] = ACTIONS(1098), + [sym_mutable_specifier] = ACTIONS(1098), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(1098), + [sym_super] = ACTIONS(1098), + [sym_crate] = ACTIONS(1098), + [sym_metavariable] = ACTIONS(1116), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [249] = { + [ts_builtin_sym_end] = ACTIONS(1118), + [sym_identifier] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_macro_rules_BANG] = ACTIONS(1118), + [anon_sym_LPAREN] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_RBRACE] = ACTIONS(1118), + [anon_sym_LBRACK] = ACTIONS(1118), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_u8] = ACTIONS(1120), + [anon_sym_i8] = ACTIONS(1120), + [anon_sym_u16] = ACTIONS(1120), + [anon_sym_i16] = ACTIONS(1120), + [anon_sym_u32] = ACTIONS(1120), + [anon_sym_i32] = ACTIONS(1120), + [anon_sym_u64] = ACTIONS(1120), + [anon_sym_i64] = ACTIONS(1120), + [anon_sym_u128] = ACTIONS(1120), + [anon_sym_i128] = ACTIONS(1120), + [anon_sym_isize] = ACTIONS(1120), + [anon_sym_usize] = ACTIONS(1120), + [anon_sym_f32] = ACTIONS(1120), + [anon_sym_f64] = ACTIONS(1120), + [anon_sym_bool] = ACTIONS(1120), + [anon_sym_str] = ACTIONS(1120), + [anon_sym_char] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_fn] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_impl] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(1120), + [anon_sym_loop] = ACTIONS(1120), + [anon_sym_match] = ACTIONS(1120), + [anon_sym_mod] = ACTIONS(1120), + [anon_sym_pub] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_trait] = ACTIONS(1120), + [anon_sym_type] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_unsafe] = ACTIONS(1120), + [anon_sym_use] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_POUND] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1118), + [anon_sym_COLON_COLON] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_DOT_DOT] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_PIPE] = ACTIONS(1118), + [anon_sym_move] = ACTIONS(1120), + [sym_integer_literal] = ACTIONS(1118), + [aux_sym_string_literal_token1] = ACTIONS(1118), + [sym_char_literal] = ACTIONS(1118), + [anon_sym_true] = ACTIONS(1120), + [anon_sym_false] = ACTIONS(1120), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1120), + [sym_crate] = ACTIONS(1120), + [sym_metavariable] = ACTIONS(1118), + [sym_raw_string_literal] = ACTIONS(1118), + [sym_float_literal] = ACTIONS(1118), + [sym_block_comment] = ACTIONS(3), + }, + [250] = { + [ts_builtin_sym_end] = ACTIONS(1122), + [sym_identifier] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_macro_rules_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_RBRACE] = ACTIONS(1122), + [anon_sym_LBRACK] = ACTIONS(1122), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_u8] = ACTIONS(1124), + [anon_sym_i8] = ACTIONS(1124), + [anon_sym_u16] = ACTIONS(1124), + [anon_sym_i16] = ACTIONS(1124), + [anon_sym_u32] = ACTIONS(1124), + [anon_sym_i32] = ACTIONS(1124), + [anon_sym_u64] = ACTIONS(1124), + [anon_sym_i64] = ACTIONS(1124), + [anon_sym_u128] = ACTIONS(1124), + [anon_sym_i128] = ACTIONS(1124), + [anon_sym_isize] = ACTIONS(1124), + [anon_sym_usize] = ACTIONS(1124), + [anon_sym_f32] = ACTIONS(1124), + [anon_sym_f64] = ACTIONS(1124), + [anon_sym_bool] = ACTIONS(1124), + [anon_sym_str] = ACTIONS(1124), + [anon_sym_char] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_async] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_fn] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_impl] = ACTIONS(1124), + [anon_sym_let] = ACTIONS(1124), + [anon_sym_loop] = ACTIONS(1124), + [anon_sym_match] = ACTIONS(1124), + [anon_sym_mod] = ACTIONS(1124), + [anon_sym_pub] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_struct] = ACTIONS(1124), + [anon_sym_trait] = ACTIONS(1124), + [anon_sym_type] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_unsafe] = ACTIONS(1124), + [anon_sym_use] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_POUND] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym_LT] = ACTIONS(1122), + [anon_sym_COLON_COLON] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_DOT_DOT] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_PIPE] = ACTIONS(1122), + [anon_sym_move] = ACTIONS(1124), + [sym_integer_literal] = ACTIONS(1122), + [aux_sym_string_literal_token1] = ACTIONS(1122), + [sym_char_literal] = ACTIONS(1122), + [anon_sym_true] = ACTIONS(1124), + [anon_sym_false] = ACTIONS(1124), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1124), + [sym_super] = ACTIONS(1124), + [sym_crate] = ACTIONS(1124), + [sym_metavariable] = ACTIONS(1122), + [sym_raw_string_literal] = ACTIONS(1122), + [sym_float_literal] = ACTIONS(1122), + [sym_block_comment] = ACTIONS(3), + }, + [251] = { + [ts_builtin_sym_end] = ACTIONS(1126), + [sym_identifier] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_macro_rules_BANG] = ACTIONS(1126), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_u8] = ACTIONS(1128), + [anon_sym_i8] = ACTIONS(1128), + [anon_sym_u16] = ACTIONS(1128), + [anon_sym_i16] = ACTIONS(1128), + [anon_sym_u32] = ACTIONS(1128), + [anon_sym_i32] = ACTIONS(1128), + [anon_sym_u64] = ACTIONS(1128), + [anon_sym_i64] = ACTIONS(1128), + [anon_sym_u128] = ACTIONS(1128), + [anon_sym_i128] = ACTIONS(1128), + [anon_sym_isize] = ACTIONS(1128), + [anon_sym_usize] = ACTIONS(1128), + [anon_sym_f32] = ACTIONS(1128), + [anon_sym_f64] = ACTIONS(1128), + [anon_sym_bool] = ACTIONS(1128), + [anon_sym_str] = ACTIONS(1128), + [anon_sym_char] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_const] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1128), + [anon_sym_default] = ACTIONS(1128), + [anon_sym_enum] = ACTIONS(1128), + [anon_sym_fn] = ACTIONS(1128), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1128), + [anon_sym_impl] = ACTIONS(1128), + [anon_sym_let] = ACTIONS(1128), + [anon_sym_loop] = ACTIONS(1128), + [anon_sym_match] = ACTIONS(1128), + [anon_sym_mod] = ACTIONS(1128), + [anon_sym_pub] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_struct] = ACTIONS(1128), + [anon_sym_trait] = ACTIONS(1128), + [anon_sym_type] = ACTIONS(1128), + [anon_sym_union] = ACTIONS(1128), + [anon_sym_unsafe] = ACTIONS(1128), + [anon_sym_use] = ACTIONS(1128), + [anon_sym_while] = ACTIONS(1128), + [anon_sym_POUND] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_COLON_COLON] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_DOT_DOT] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1126), + [anon_sym_move] = ACTIONS(1128), + [sym_integer_literal] = ACTIONS(1126), + [aux_sym_string_literal_token1] = ACTIONS(1126), + [sym_char_literal] = ACTIONS(1126), + [anon_sym_true] = ACTIONS(1128), + [anon_sym_false] = ACTIONS(1128), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1128), + [sym_super] = ACTIONS(1128), + [sym_crate] = ACTIONS(1128), + [sym_metavariable] = ACTIONS(1126), + [sym_raw_string_literal] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1126), + [sym_block_comment] = ACTIONS(3), + }, + [252] = { + [ts_builtin_sym_end] = ACTIONS(1130), + [sym_identifier] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_macro_rules_BANG] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_u8] = ACTIONS(1132), + [anon_sym_i8] = ACTIONS(1132), + [anon_sym_u16] = ACTIONS(1132), + [anon_sym_i16] = ACTIONS(1132), + [anon_sym_u32] = ACTIONS(1132), + [anon_sym_i32] = ACTIONS(1132), + [anon_sym_u64] = ACTIONS(1132), + [anon_sym_i64] = ACTIONS(1132), + [anon_sym_u128] = ACTIONS(1132), + [anon_sym_i128] = ACTIONS(1132), + [anon_sym_isize] = ACTIONS(1132), + [anon_sym_usize] = ACTIONS(1132), + [anon_sym_f32] = ACTIONS(1132), + [anon_sym_f64] = ACTIONS(1132), + [anon_sym_bool] = ACTIONS(1132), + [anon_sym_str] = ACTIONS(1132), + [anon_sym_char] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_async] = ACTIONS(1132), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1132), + [anon_sym_default] = ACTIONS(1132), + [anon_sym_enum] = ACTIONS(1132), + [anon_sym_fn] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1132), + [anon_sym_if] = ACTIONS(1132), + [anon_sym_impl] = ACTIONS(1132), + [anon_sym_let] = ACTIONS(1132), + [anon_sym_loop] = ACTIONS(1132), + [anon_sym_match] = ACTIONS(1132), + [anon_sym_mod] = ACTIONS(1132), + [anon_sym_pub] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1132), + [anon_sym_struct] = ACTIONS(1132), + [anon_sym_trait] = ACTIONS(1132), + [anon_sym_type] = ACTIONS(1132), + [anon_sym_union] = ACTIONS(1132), + [anon_sym_unsafe] = ACTIONS(1132), + [anon_sym_use] = ACTIONS(1132), + [anon_sym_while] = ACTIONS(1132), + [anon_sym_POUND] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_COLON_COLON] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [anon_sym_DOT_DOT] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1130), + [anon_sym_move] = ACTIONS(1132), + [sym_integer_literal] = ACTIONS(1130), + [aux_sym_string_literal_token1] = ACTIONS(1130), + [sym_char_literal] = ACTIONS(1130), + [anon_sym_true] = ACTIONS(1132), + [anon_sym_false] = ACTIONS(1132), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1132), + [sym_super] = ACTIONS(1132), + [sym_crate] = ACTIONS(1132), + [sym_metavariable] = ACTIONS(1130), + [sym_raw_string_literal] = ACTIONS(1130), + [sym_float_literal] = ACTIONS(1130), + [sym_block_comment] = ACTIONS(3), + }, + [253] = { + [ts_builtin_sym_end] = ACTIONS(1134), + [sym_identifier] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1134), + [anon_sym_macro_rules_BANG] = ACTIONS(1134), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [anon_sym_async] = ACTIONS(1136), + [anon_sym_break] = ACTIONS(1136), + [anon_sym_const] = ACTIONS(1136), + [anon_sym_continue] = ACTIONS(1136), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_enum] = ACTIONS(1136), + [anon_sym_fn] = ACTIONS(1136), + [anon_sym_for] = ACTIONS(1136), + [anon_sym_if] = ACTIONS(1136), + [anon_sym_impl] = ACTIONS(1136), + [anon_sym_let] = ACTIONS(1136), + [anon_sym_loop] = ACTIONS(1136), + [anon_sym_match] = ACTIONS(1136), + [anon_sym_mod] = ACTIONS(1136), + [anon_sym_pub] = ACTIONS(1136), + [anon_sym_return] = ACTIONS(1136), + [anon_sym_static] = ACTIONS(1136), + [anon_sym_struct] = ACTIONS(1136), + [anon_sym_trait] = ACTIONS(1136), + [anon_sym_type] = ACTIONS(1136), + [anon_sym_union] = ACTIONS(1136), + [anon_sym_unsafe] = ACTIONS(1136), + [anon_sym_use] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_POUND] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1134), + [anon_sym_extern] = ACTIONS(1136), + [anon_sym_LT] = ACTIONS(1134), + [anon_sym_COLON_COLON] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_DOT_DOT] = ACTIONS(1134), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_PIPE] = ACTIONS(1134), + [anon_sym_move] = ACTIONS(1136), + [sym_integer_literal] = ACTIONS(1134), + [aux_sym_string_literal_token1] = ACTIONS(1134), + [sym_char_literal] = ACTIONS(1134), + [anon_sym_true] = ACTIONS(1136), + [anon_sym_false] = ACTIONS(1136), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1136), + [sym_super] = ACTIONS(1136), + [sym_crate] = ACTIONS(1136), + [sym_metavariable] = ACTIONS(1134), + [sym_raw_string_literal] = ACTIONS(1134), + [sym_float_literal] = ACTIONS(1134), + [sym_block_comment] = ACTIONS(3), + }, + [254] = { + [ts_builtin_sym_end] = ACTIONS(1138), + [sym_identifier] = ACTIONS(1140), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_macro_rules_BANG] = ACTIONS(1138), + [anon_sym_LPAREN] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1138), + [anon_sym_RBRACE] = ACTIONS(1138), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(1140), + [anon_sym_break] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1140), + [anon_sym_continue] = ACTIONS(1140), + [anon_sym_default] = ACTIONS(1140), + [anon_sym_enum] = ACTIONS(1140), + [anon_sym_fn] = ACTIONS(1140), + [anon_sym_for] = ACTIONS(1140), + [anon_sym_if] = ACTIONS(1140), + [anon_sym_impl] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_loop] = ACTIONS(1140), + [anon_sym_match] = ACTIONS(1140), + [anon_sym_mod] = ACTIONS(1140), + [anon_sym_pub] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1140), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_struct] = ACTIONS(1140), + [anon_sym_trait] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_union] = ACTIONS(1140), + [anon_sym_unsafe] = ACTIONS(1140), + [anon_sym_use] = ACTIONS(1140), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_POUND] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(1138), + [anon_sym_COLON_COLON] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1138), + [anon_sym_move] = ACTIONS(1140), + [sym_integer_literal] = ACTIONS(1138), + [aux_sym_string_literal_token1] = ACTIONS(1138), + [sym_char_literal] = ACTIONS(1138), + [anon_sym_true] = ACTIONS(1140), + [anon_sym_false] = ACTIONS(1140), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1140), + [sym_super] = ACTIONS(1140), + [sym_crate] = ACTIONS(1140), + [sym_metavariable] = ACTIONS(1138), + [sym_raw_string_literal] = ACTIONS(1138), + [sym_float_literal] = ACTIONS(1138), + [sym_block_comment] = ACTIONS(3), + }, + [255] = { + [ts_builtin_sym_end] = ACTIONS(1142), + [sym_identifier] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1142), + [anon_sym_macro_rules_BANG] = ACTIONS(1142), + [anon_sym_LPAREN] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(1142), + [anon_sym_RBRACE] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_u8] = ACTIONS(1144), + [anon_sym_i8] = ACTIONS(1144), + [anon_sym_u16] = ACTIONS(1144), + [anon_sym_i16] = ACTIONS(1144), + [anon_sym_u32] = ACTIONS(1144), + [anon_sym_i32] = ACTIONS(1144), + [anon_sym_u64] = ACTIONS(1144), + [anon_sym_i64] = ACTIONS(1144), + [anon_sym_u128] = ACTIONS(1144), + [anon_sym_i128] = ACTIONS(1144), + [anon_sym_isize] = ACTIONS(1144), + [anon_sym_usize] = ACTIONS(1144), + [anon_sym_f32] = ACTIONS(1144), + [anon_sym_f64] = ACTIONS(1144), + [anon_sym_bool] = ACTIONS(1144), + [anon_sym_str] = ACTIONS(1144), + [anon_sym_char] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_async] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1144), + [anon_sym_const] = ACTIONS(1144), + [anon_sym_continue] = ACTIONS(1144), + [anon_sym_default] = ACTIONS(1144), + [anon_sym_enum] = ACTIONS(1144), + [anon_sym_fn] = ACTIONS(1144), + [anon_sym_for] = ACTIONS(1144), + [anon_sym_if] = ACTIONS(1144), + [anon_sym_impl] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(1144), + [anon_sym_loop] = ACTIONS(1144), + [anon_sym_match] = ACTIONS(1144), + [anon_sym_mod] = ACTIONS(1144), + [anon_sym_pub] = ACTIONS(1144), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_struct] = ACTIONS(1144), + [anon_sym_trait] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_union] = ACTIONS(1144), + [anon_sym_unsafe] = ACTIONS(1144), + [anon_sym_use] = ACTIONS(1144), + [anon_sym_while] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(1142), + [anon_sym_BANG] = ACTIONS(1142), + [anon_sym_extern] = ACTIONS(1144), + [anon_sym_LT] = ACTIONS(1142), + [anon_sym_COLON_COLON] = ACTIONS(1142), + [anon_sym_AMP] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_PIPE] = ACTIONS(1142), + [anon_sym_move] = ACTIONS(1144), + [sym_integer_literal] = ACTIONS(1142), + [aux_sym_string_literal_token1] = ACTIONS(1142), + [sym_char_literal] = ACTIONS(1142), + [anon_sym_true] = ACTIONS(1144), + [anon_sym_false] = ACTIONS(1144), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1144), + [sym_super] = ACTIONS(1144), + [sym_crate] = ACTIONS(1144), + [sym_metavariable] = ACTIONS(1142), + [sym_raw_string_literal] = ACTIONS(1142), + [sym_float_literal] = ACTIONS(1142), + [sym_block_comment] = ACTIONS(3), + }, + [256] = { + [ts_builtin_sym_end] = ACTIONS(1146), + [sym_identifier] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1146), + [anon_sym_macro_rules_BANG] = ACTIONS(1146), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_RBRACE] = ACTIONS(1146), + [anon_sym_LBRACK] = ACTIONS(1146), + [anon_sym_STAR] = ACTIONS(1146), + [anon_sym_u8] = ACTIONS(1148), + [anon_sym_i8] = ACTIONS(1148), + [anon_sym_u16] = ACTIONS(1148), + [anon_sym_i16] = ACTIONS(1148), + [anon_sym_u32] = ACTIONS(1148), + [anon_sym_i32] = ACTIONS(1148), + [anon_sym_u64] = ACTIONS(1148), + [anon_sym_i64] = ACTIONS(1148), + [anon_sym_u128] = ACTIONS(1148), + [anon_sym_i128] = ACTIONS(1148), + [anon_sym_isize] = ACTIONS(1148), + [anon_sym_usize] = ACTIONS(1148), + [anon_sym_f32] = ACTIONS(1148), + [anon_sym_f64] = ACTIONS(1148), + [anon_sym_bool] = ACTIONS(1148), + [anon_sym_str] = ACTIONS(1148), + [anon_sym_char] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1148), + [anon_sym_break] = ACTIONS(1148), + [anon_sym_const] = ACTIONS(1148), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_default] = ACTIONS(1148), + [anon_sym_enum] = ACTIONS(1148), + [anon_sym_fn] = ACTIONS(1148), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_if] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1148), + [anon_sym_let] = ACTIONS(1148), + [anon_sym_loop] = ACTIONS(1148), + [anon_sym_match] = ACTIONS(1148), + [anon_sym_mod] = ACTIONS(1148), + [anon_sym_pub] = ACTIONS(1148), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_static] = ACTIONS(1148), + [anon_sym_struct] = ACTIONS(1148), + [anon_sym_trait] = ACTIONS(1148), + [anon_sym_type] = ACTIONS(1148), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1148), + [anon_sym_use] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1148), + [anon_sym_POUND] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1146), + [anon_sym_extern] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(1146), + [anon_sym_COLON_COLON] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_DOT_DOT] = ACTIONS(1146), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_PIPE] = ACTIONS(1146), + [anon_sym_move] = ACTIONS(1148), + [sym_integer_literal] = ACTIONS(1146), + [aux_sym_string_literal_token1] = ACTIONS(1146), + [sym_char_literal] = ACTIONS(1146), + [anon_sym_true] = ACTIONS(1148), + [anon_sym_false] = ACTIONS(1148), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1148), + [sym_super] = ACTIONS(1148), + [sym_crate] = ACTIONS(1148), + [sym_metavariable] = ACTIONS(1146), + [sym_raw_string_literal] = ACTIONS(1146), + [sym_float_literal] = ACTIONS(1146), + [sym_block_comment] = ACTIONS(3), + }, + [257] = { + [ts_builtin_sym_end] = ACTIONS(1150), + [sym_identifier] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_macro_rules_BANG] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1150), + [anon_sym_STAR] = ACTIONS(1150), + [anon_sym_u8] = ACTIONS(1152), + [anon_sym_i8] = ACTIONS(1152), + [anon_sym_u16] = ACTIONS(1152), + [anon_sym_i16] = ACTIONS(1152), + [anon_sym_u32] = ACTIONS(1152), + [anon_sym_i32] = ACTIONS(1152), + [anon_sym_u64] = ACTIONS(1152), + [anon_sym_i64] = ACTIONS(1152), + [anon_sym_u128] = ACTIONS(1152), + [anon_sym_i128] = ACTIONS(1152), + [anon_sym_isize] = ACTIONS(1152), + [anon_sym_usize] = ACTIONS(1152), + [anon_sym_f32] = ACTIONS(1152), + [anon_sym_f64] = ACTIONS(1152), + [anon_sym_bool] = ACTIONS(1152), + [anon_sym_str] = ACTIONS(1152), + [anon_sym_char] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_async] = ACTIONS(1152), + [anon_sym_break] = ACTIONS(1152), + [anon_sym_const] = ACTIONS(1152), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_default] = ACTIONS(1152), + [anon_sym_enum] = ACTIONS(1152), + [anon_sym_fn] = ACTIONS(1152), + [anon_sym_for] = ACTIONS(1152), + [anon_sym_if] = ACTIONS(1152), + [anon_sym_impl] = ACTIONS(1152), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_loop] = ACTIONS(1152), + [anon_sym_match] = ACTIONS(1152), + [anon_sym_mod] = ACTIONS(1152), + [anon_sym_pub] = ACTIONS(1152), + [anon_sym_return] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_struct] = ACTIONS(1152), + [anon_sym_trait] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_union] = ACTIONS(1152), + [anon_sym_unsafe] = ACTIONS(1152), + [anon_sym_use] = ACTIONS(1152), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_BANG] = ACTIONS(1150), + [anon_sym_extern] = ACTIONS(1152), + [anon_sym_LT] = ACTIONS(1150), + [anon_sym_COLON_COLON] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_DOT_DOT] = ACTIONS(1150), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PIPE] = ACTIONS(1150), + [anon_sym_move] = ACTIONS(1152), + [sym_integer_literal] = ACTIONS(1150), + [aux_sym_string_literal_token1] = ACTIONS(1150), + [sym_char_literal] = ACTIONS(1150), + [anon_sym_true] = ACTIONS(1152), + [anon_sym_false] = ACTIONS(1152), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1152), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1150), + [sym_raw_string_literal] = ACTIONS(1150), + [sym_float_literal] = ACTIONS(1150), + [sym_block_comment] = ACTIONS(3), + }, + [258] = { + [ts_builtin_sym_end] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_macro_rules_BANG] = ACTIONS(1154), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1154), + [anon_sym_RBRACE] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1154), + [anon_sym_u8] = ACTIONS(1156), + [anon_sym_i8] = ACTIONS(1156), + [anon_sym_u16] = ACTIONS(1156), + [anon_sym_i16] = ACTIONS(1156), + [anon_sym_u32] = ACTIONS(1156), + [anon_sym_i32] = ACTIONS(1156), + [anon_sym_u64] = ACTIONS(1156), + [anon_sym_i64] = ACTIONS(1156), + [anon_sym_u128] = ACTIONS(1156), + [anon_sym_i128] = ACTIONS(1156), + [anon_sym_isize] = ACTIONS(1156), + [anon_sym_usize] = ACTIONS(1156), + [anon_sym_f32] = ACTIONS(1156), + [anon_sym_f64] = ACTIONS(1156), + [anon_sym_bool] = ACTIONS(1156), + [anon_sym_str] = ACTIONS(1156), + [anon_sym_char] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_async] = ACTIONS(1156), + [anon_sym_break] = ACTIONS(1156), + [anon_sym_const] = ACTIONS(1156), + [anon_sym_continue] = ACTIONS(1156), + [anon_sym_default] = ACTIONS(1156), + [anon_sym_enum] = ACTIONS(1156), + [anon_sym_fn] = ACTIONS(1156), + [anon_sym_for] = ACTIONS(1156), + [anon_sym_if] = ACTIONS(1156), + [anon_sym_impl] = ACTIONS(1156), + [anon_sym_let] = ACTIONS(1156), + [anon_sym_loop] = ACTIONS(1156), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_mod] = ACTIONS(1156), + [anon_sym_pub] = ACTIONS(1156), + [anon_sym_return] = ACTIONS(1156), + [anon_sym_static] = ACTIONS(1156), + [anon_sym_struct] = ACTIONS(1156), + [anon_sym_trait] = ACTIONS(1156), + [anon_sym_type] = ACTIONS(1156), + [anon_sym_union] = ACTIONS(1156), + [anon_sym_unsafe] = ACTIONS(1156), + [anon_sym_use] = ACTIONS(1156), + [anon_sym_while] = ACTIONS(1156), + [anon_sym_POUND] = ACTIONS(1154), + [anon_sym_BANG] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1156), + [anon_sym_LT] = ACTIONS(1154), + [anon_sym_COLON_COLON] = ACTIONS(1154), + [anon_sym_AMP] = ACTIONS(1154), + [anon_sym_DOT_DOT] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1154), + [anon_sym_move] = ACTIONS(1156), + [sym_integer_literal] = ACTIONS(1154), + [aux_sym_string_literal_token1] = ACTIONS(1154), + [sym_char_literal] = ACTIONS(1154), + [anon_sym_true] = ACTIONS(1156), + [anon_sym_false] = ACTIONS(1156), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1156), + [sym_super] = ACTIONS(1156), + [sym_crate] = ACTIONS(1156), + [sym_metavariable] = ACTIONS(1154), + [sym_raw_string_literal] = ACTIONS(1154), + [sym_float_literal] = ACTIONS(1154), + [sym_block_comment] = ACTIONS(3), + }, + [259] = { + [ts_builtin_sym_end] = ACTIONS(1158), + [sym_identifier] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1158), + [anon_sym_macro_rules_BANG] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_RBRACE] = ACTIONS(1158), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_async] = ACTIONS(1160), + [anon_sym_break] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1160), + [anon_sym_continue] = ACTIONS(1160), + [anon_sym_default] = ACTIONS(1160), + [anon_sym_enum] = ACTIONS(1160), + [anon_sym_fn] = ACTIONS(1160), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(1160), + [anon_sym_impl] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_loop] = ACTIONS(1160), + [anon_sym_match] = ACTIONS(1160), + [anon_sym_mod] = ACTIONS(1160), + [anon_sym_pub] = ACTIONS(1160), + [anon_sym_return] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_struct] = ACTIONS(1160), + [anon_sym_trait] = ACTIONS(1160), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_union] = ACTIONS(1160), + [anon_sym_unsafe] = ACTIONS(1160), + [anon_sym_use] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1160), + [anon_sym_POUND] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1158), + [anon_sym_COLON_COLON] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1158), + [anon_sym_DOT_DOT] = ACTIONS(1158), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_PIPE] = ACTIONS(1158), + [anon_sym_move] = ACTIONS(1160), + [sym_integer_literal] = ACTIONS(1158), + [aux_sym_string_literal_token1] = ACTIONS(1158), + [sym_char_literal] = ACTIONS(1158), + [anon_sym_true] = ACTIONS(1160), + [anon_sym_false] = ACTIONS(1160), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1160), + [sym_super] = ACTIONS(1160), + [sym_crate] = ACTIONS(1160), + [sym_metavariable] = ACTIONS(1158), + [sym_raw_string_literal] = ACTIONS(1158), + [sym_float_literal] = ACTIONS(1158), + [sym_block_comment] = ACTIONS(3), + }, + [260] = { + [ts_builtin_sym_end] = ACTIONS(1162), + [sym_identifier] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1162), + [anon_sym_macro_rules_BANG] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_RBRACE] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1162), + [anon_sym_u8] = ACTIONS(1164), + [anon_sym_i8] = ACTIONS(1164), + [anon_sym_u16] = ACTIONS(1164), + [anon_sym_i16] = ACTIONS(1164), + [anon_sym_u32] = ACTIONS(1164), + [anon_sym_i32] = ACTIONS(1164), + [anon_sym_u64] = ACTIONS(1164), + [anon_sym_i64] = ACTIONS(1164), + [anon_sym_u128] = ACTIONS(1164), + [anon_sym_i128] = ACTIONS(1164), + [anon_sym_isize] = ACTIONS(1164), + [anon_sym_usize] = ACTIONS(1164), + [anon_sym_f32] = ACTIONS(1164), + [anon_sym_f64] = ACTIONS(1164), + [anon_sym_bool] = ACTIONS(1164), + [anon_sym_str] = ACTIONS(1164), + [anon_sym_char] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_break] = ACTIONS(1164), + [anon_sym_const] = ACTIONS(1164), + [anon_sym_continue] = ACTIONS(1164), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_enum] = ACTIONS(1164), + [anon_sym_fn] = ACTIONS(1164), + [anon_sym_for] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_impl] = ACTIONS(1164), + [anon_sym_let] = ACTIONS(1164), + [anon_sym_loop] = ACTIONS(1164), + [anon_sym_match] = ACTIONS(1164), + [anon_sym_mod] = ACTIONS(1164), + [anon_sym_pub] = ACTIONS(1164), + [anon_sym_return] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1164), + [anon_sym_trait] = ACTIONS(1164), + [anon_sym_type] = ACTIONS(1164), + [anon_sym_union] = ACTIONS(1164), + [anon_sym_unsafe] = ACTIONS(1164), + [anon_sym_use] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1164), + [anon_sym_POUND] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1162), + [anon_sym_extern] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_COLON_COLON] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1162), + [anon_sym_DOT_DOT] = ACTIONS(1162), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1162), + [anon_sym_move] = ACTIONS(1164), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1162), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1164), + [anon_sym_false] = ACTIONS(1164), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1164), + [sym_super] = ACTIONS(1164), + [sym_crate] = ACTIONS(1164), + [sym_metavariable] = ACTIONS(1162), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), + [sym_block_comment] = ACTIONS(3), + }, + [261] = { + [ts_builtin_sym_end] = ACTIONS(1166), + [sym_identifier] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1166), + [anon_sym_macro_rules_BANG] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_RBRACE] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_u8] = ACTIONS(1168), + [anon_sym_i8] = ACTIONS(1168), + [anon_sym_u16] = ACTIONS(1168), + [anon_sym_i16] = ACTIONS(1168), + [anon_sym_u32] = ACTIONS(1168), + [anon_sym_i32] = ACTIONS(1168), + [anon_sym_u64] = ACTIONS(1168), + [anon_sym_i64] = ACTIONS(1168), + [anon_sym_u128] = ACTIONS(1168), + [anon_sym_i128] = ACTIONS(1168), + [anon_sym_isize] = ACTIONS(1168), + [anon_sym_usize] = ACTIONS(1168), + [anon_sym_f32] = ACTIONS(1168), + [anon_sym_f64] = ACTIONS(1168), + [anon_sym_bool] = ACTIONS(1168), + [anon_sym_str] = ACTIONS(1168), + [anon_sym_char] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_async] = ACTIONS(1168), + [anon_sym_break] = ACTIONS(1168), + [anon_sym_const] = ACTIONS(1168), + [anon_sym_continue] = ACTIONS(1168), + [anon_sym_default] = ACTIONS(1168), + [anon_sym_enum] = ACTIONS(1168), + [anon_sym_fn] = ACTIONS(1168), + [anon_sym_for] = ACTIONS(1168), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_impl] = ACTIONS(1168), + [anon_sym_let] = ACTIONS(1168), + [anon_sym_loop] = ACTIONS(1168), + [anon_sym_match] = ACTIONS(1168), + [anon_sym_mod] = ACTIONS(1168), + [anon_sym_pub] = ACTIONS(1168), + [anon_sym_return] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1168), + [anon_sym_struct] = ACTIONS(1168), + [anon_sym_trait] = ACTIONS(1168), + [anon_sym_type] = ACTIONS(1168), + [anon_sym_union] = ACTIONS(1168), + [anon_sym_unsafe] = ACTIONS(1168), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_while] = ACTIONS(1168), + [anon_sym_POUND] = ACTIONS(1166), + [anon_sym_BANG] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1168), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_AMP] = ACTIONS(1166), + [anon_sym_DOT_DOT] = ACTIONS(1166), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PIPE] = ACTIONS(1166), + [anon_sym_move] = ACTIONS(1168), + [sym_integer_literal] = ACTIONS(1166), + [aux_sym_string_literal_token1] = ACTIONS(1166), + [sym_char_literal] = ACTIONS(1166), + [anon_sym_true] = ACTIONS(1168), + [anon_sym_false] = ACTIONS(1168), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1168), + [sym_super] = ACTIONS(1168), + [sym_crate] = ACTIONS(1168), + [sym_metavariable] = ACTIONS(1166), + [sym_raw_string_literal] = ACTIONS(1166), + [sym_float_literal] = ACTIONS(1166), + [sym_block_comment] = ACTIONS(3), + }, + [262] = { + [ts_builtin_sym_end] = ACTIONS(1170), + [sym_identifier] = ACTIONS(1172), + [anon_sym_SEMI] = ACTIONS(1170), + [anon_sym_macro_rules_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1170), + [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1170), + [anon_sym_STAR] = ACTIONS(1170), + [anon_sym_u8] = ACTIONS(1172), + [anon_sym_i8] = ACTIONS(1172), + [anon_sym_u16] = ACTIONS(1172), + [anon_sym_i16] = ACTIONS(1172), + [anon_sym_u32] = ACTIONS(1172), + [anon_sym_i32] = ACTIONS(1172), + [anon_sym_u64] = ACTIONS(1172), + [anon_sym_i64] = ACTIONS(1172), + [anon_sym_u128] = ACTIONS(1172), + [anon_sym_i128] = ACTIONS(1172), + [anon_sym_isize] = ACTIONS(1172), + [anon_sym_usize] = ACTIONS(1172), + [anon_sym_f32] = ACTIONS(1172), + [anon_sym_f64] = ACTIONS(1172), + [anon_sym_bool] = ACTIONS(1172), + [anon_sym_str] = ACTIONS(1172), + [anon_sym_char] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_async] = ACTIONS(1172), + [anon_sym_break] = ACTIONS(1172), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_continue] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1172), + [anon_sym_enum] = ACTIONS(1172), + [anon_sym_fn] = ACTIONS(1172), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_if] = ACTIONS(1172), + [anon_sym_impl] = ACTIONS(1172), + [anon_sym_let] = ACTIONS(1172), + [anon_sym_loop] = ACTIONS(1172), + [anon_sym_match] = ACTIONS(1172), + [anon_sym_mod] = ACTIONS(1172), + [anon_sym_pub] = ACTIONS(1172), + [anon_sym_return] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1172), + [anon_sym_struct] = ACTIONS(1172), + [anon_sym_trait] = ACTIONS(1172), + [anon_sym_type] = ACTIONS(1172), + [anon_sym_union] = ACTIONS(1172), + [anon_sym_unsafe] = ACTIONS(1172), + [anon_sym_use] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1172), + [anon_sym_POUND] = ACTIONS(1170), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_extern] = ACTIONS(1172), + [anon_sym_LT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(1170), + [anon_sym_AMP] = ACTIONS(1170), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_PIPE] = ACTIONS(1170), + [anon_sym_move] = ACTIONS(1172), + [sym_integer_literal] = ACTIONS(1170), + [aux_sym_string_literal_token1] = ACTIONS(1170), + [sym_char_literal] = ACTIONS(1170), + [anon_sym_true] = ACTIONS(1172), + [anon_sym_false] = ACTIONS(1172), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1172), + [sym_super] = ACTIONS(1172), + [sym_crate] = ACTIONS(1172), + [sym_metavariable] = ACTIONS(1170), + [sym_raw_string_literal] = ACTIONS(1170), + [sym_float_literal] = ACTIONS(1170), + [sym_block_comment] = ACTIONS(3), + }, + [263] = { + [ts_builtin_sym_end] = ACTIONS(1174), + [sym_identifier] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1174), + [anon_sym_macro_rules_BANG] = ACTIONS(1174), + [anon_sym_LPAREN] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1174), + [anon_sym_RBRACE] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1174), + [anon_sym_u8] = ACTIONS(1176), + [anon_sym_i8] = ACTIONS(1176), + [anon_sym_u16] = ACTIONS(1176), + [anon_sym_i16] = ACTIONS(1176), + [anon_sym_u32] = ACTIONS(1176), + [anon_sym_i32] = ACTIONS(1176), + [anon_sym_u64] = ACTIONS(1176), + [anon_sym_i64] = ACTIONS(1176), + [anon_sym_u128] = ACTIONS(1176), + [anon_sym_i128] = ACTIONS(1176), + [anon_sym_isize] = ACTIONS(1176), + [anon_sym_usize] = ACTIONS(1176), + [anon_sym_f32] = ACTIONS(1176), + [anon_sym_f64] = ACTIONS(1176), + [anon_sym_bool] = ACTIONS(1176), + [anon_sym_str] = ACTIONS(1176), + [anon_sym_char] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1176), + [anon_sym_break] = ACTIONS(1176), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_continue] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1176), + [anon_sym_enum] = ACTIONS(1176), + [anon_sym_fn] = ACTIONS(1176), + [anon_sym_for] = ACTIONS(1176), + [anon_sym_if] = ACTIONS(1176), + [anon_sym_impl] = ACTIONS(1176), + [anon_sym_let] = ACTIONS(1176), + [anon_sym_loop] = ACTIONS(1176), + [anon_sym_match] = ACTIONS(1176), + [anon_sym_mod] = ACTIONS(1176), + [anon_sym_pub] = ACTIONS(1176), + [anon_sym_return] = ACTIONS(1176), + [anon_sym_static] = ACTIONS(1176), + [anon_sym_struct] = ACTIONS(1176), + [anon_sym_trait] = ACTIONS(1176), + [anon_sym_type] = ACTIONS(1176), + [anon_sym_union] = ACTIONS(1176), + [anon_sym_unsafe] = ACTIONS(1176), + [anon_sym_use] = ACTIONS(1176), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_POUND] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1176), + [anon_sym_LT] = ACTIONS(1174), + [anon_sym_COLON_COLON] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_DOT_DOT] = ACTIONS(1174), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_PIPE] = ACTIONS(1174), + [anon_sym_move] = ACTIONS(1176), + [sym_integer_literal] = ACTIONS(1174), + [aux_sym_string_literal_token1] = ACTIONS(1174), + [sym_char_literal] = ACTIONS(1174), + [anon_sym_true] = ACTIONS(1176), + [anon_sym_false] = ACTIONS(1176), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1176), + [sym_super] = ACTIONS(1176), + [sym_crate] = ACTIONS(1176), + [sym_metavariable] = ACTIONS(1174), + [sym_raw_string_literal] = ACTIONS(1174), + [sym_float_literal] = ACTIONS(1174), + [sym_block_comment] = ACTIONS(3), + }, + [264] = { + [ts_builtin_sym_end] = ACTIONS(1178), + [sym_identifier] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1178), + [anon_sym_macro_rules_BANG] = ACTIONS(1178), + [anon_sym_LPAREN] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_RBRACE] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1178), + [anon_sym_u8] = ACTIONS(1180), + [anon_sym_i8] = ACTIONS(1180), + [anon_sym_u16] = ACTIONS(1180), + [anon_sym_i16] = ACTIONS(1180), + [anon_sym_u32] = ACTIONS(1180), + [anon_sym_i32] = ACTIONS(1180), + [anon_sym_u64] = ACTIONS(1180), + [anon_sym_i64] = ACTIONS(1180), + [anon_sym_u128] = ACTIONS(1180), + [anon_sym_i128] = ACTIONS(1180), + [anon_sym_isize] = ACTIONS(1180), + [anon_sym_usize] = ACTIONS(1180), + [anon_sym_f32] = ACTIONS(1180), + [anon_sym_f64] = ACTIONS(1180), + [anon_sym_bool] = ACTIONS(1180), + [anon_sym_str] = ACTIONS(1180), + [anon_sym_char] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_async] = ACTIONS(1180), + [anon_sym_break] = ACTIONS(1180), + [anon_sym_const] = ACTIONS(1180), + [anon_sym_continue] = ACTIONS(1180), + [anon_sym_default] = ACTIONS(1180), + [anon_sym_enum] = ACTIONS(1180), + [anon_sym_fn] = ACTIONS(1180), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_if] = ACTIONS(1180), + [anon_sym_impl] = ACTIONS(1180), + [anon_sym_let] = ACTIONS(1180), + [anon_sym_loop] = ACTIONS(1180), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_mod] = ACTIONS(1180), + [anon_sym_pub] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1180), + [anon_sym_static] = ACTIONS(1180), + [anon_sym_struct] = ACTIONS(1180), + [anon_sym_trait] = ACTIONS(1180), + [anon_sym_type] = ACTIONS(1180), + [anon_sym_union] = ACTIONS(1180), + [anon_sym_unsafe] = ACTIONS(1180), + [anon_sym_use] = ACTIONS(1180), + [anon_sym_while] = ACTIONS(1180), + [anon_sym_POUND] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1180), + [anon_sym_LT] = ACTIONS(1178), + [anon_sym_COLON_COLON] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_DOT_DOT] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1178), + [anon_sym_move] = ACTIONS(1180), + [sym_integer_literal] = ACTIONS(1178), + [aux_sym_string_literal_token1] = ACTIONS(1178), + [sym_char_literal] = ACTIONS(1178), + [anon_sym_true] = ACTIONS(1180), + [anon_sym_false] = ACTIONS(1180), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1178), + [sym_raw_string_literal] = ACTIONS(1178), + [sym_float_literal] = ACTIONS(1178), + [sym_block_comment] = ACTIONS(3), + }, + [265] = { + [ts_builtin_sym_end] = ACTIONS(1182), + [sym_identifier] = ACTIONS(1184), + [anon_sym_SEMI] = ACTIONS(1182), + [anon_sym_macro_rules_BANG] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1182), + [anon_sym_LBRACE] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(1182), + [anon_sym_LBRACK] = ACTIONS(1182), + [anon_sym_STAR] = ACTIONS(1182), + [anon_sym_u8] = ACTIONS(1184), + [anon_sym_i8] = ACTIONS(1184), + [anon_sym_u16] = ACTIONS(1184), + [anon_sym_i16] = ACTIONS(1184), + [anon_sym_u32] = ACTIONS(1184), + [anon_sym_i32] = ACTIONS(1184), + [anon_sym_u64] = ACTIONS(1184), + [anon_sym_i64] = ACTIONS(1184), + [anon_sym_u128] = ACTIONS(1184), + [anon_sym_i128] = ACTIONS(1184), + [anon_sym_isize] = ACTIONS(1184), + [anon_sym_usize] = ACTIONS(1184), + [anon_sym_f32] = ACTIONS(1184), + [anon_sym_f64] = ACTIONS(1184), + [anon_sym_bool] = ACTIONS(1184), + [anon_sym_str] = ACTIONS(1184), + [anon_sym_char] = ACTIONS(1184), + [anon_sym_SQUOTE] = ACTIONS(1184), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_const] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1184), + [anon_sym_default] = ACTIONS(1184), + [anon_sym_enum] = ACTIONS(1184), + [anon_sym_fn] = ACTIONS(1184), + [anon_sym_for] = ACTIONS(1184), + [anon_sym_if] = ACTIONS(1184), + [anon_sym_impl] = ACTIONS(1184), + [anon_sym_let] = ACTIONS(1184), + [anon_sym_loop] = ACTIONS(1184), + [anon_sym_match] = ACTIONS(1184), + [anon_sym_mod] = ACTIONS(1184), + [anon_sym_pub] = ACTIONS(1184), + [anon_sym_return] = ACTIONS(1184), + [anon_sym_static] = ACTIONS(1184), + [anon_sym_struct] = ACTIONS(1184), + [anon_sym_trait] = ACTIONS(1184), + [anon_sym_type] = ACTIONS(1184), + [anon_sym_union] = ACTIONS(1184), + [anon_sym_unsafe] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1184), + [anon_sym_while] = ACTIONS(1184), + [anon_sym_POUND] = ACTIONS(1182), + [anon_sym_BANG] = ACTIONS(1182), + [anon_sym_extern] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1182), + [anon_sym_COLON_COLON] = ACTIONS(1182), + [anon_sym_AMP] = ACTIONS(1182), + [anon_sym_DOT_DOT] = ACTIONS(1182), + [anon_sym_DASH] = ACTIONS(1182), + [anon_sym_PIPE] = ACTIONS(1182), + [anon_sym_move] = ACTIONS(1184), + [sym_integer_literal] = ACTIONS(1182), + [aux_sym_string_literal_token1] = ACTIONS(1182), + [sym_char_literal] = ACTIONS(1182), + [anon_sym_true] = ACTIONS(1184), + [anon_sym_false] = ACTIONS(1184), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(1182), + [sym_float_literal] = ACTIONS(1182), + [sym_block_comment] = ACTIONS(3), + }, + [266] = { + [ts_builtin_sym_end] = ACTIONS(1186), + [sym_identifier] = ACTIONS(1188), + [anon_sym_SEMI] = ACTIONS(1186), + [anon_sym_macro_rules_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1186), + [anon_sym_RBRACE] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1186), + [anon_sym_STAR] = ACTIONS(1186), + [anon_sym_u8] = ACTIONS(1188), + [anon_sym_i8] = ACTIONS(1188), + [anon_sym_u16] = ACTIONS(1188), + [anon_sym_i16] = ACTIONS(1188), + [anon_sym_u32] = ACTIONS(1188), + [anon_sym_i32] = ACTIONS(1188), + [anon_sym_u64] = ACTIONS(1188), + [anon_sym_i64] = ACTIONS(1188), + [anon_sym_u128] = ACTIONS(1188), + [anon_sym_i128] = ACTIONS(1188), + [anon_sym_isize] = ACTIONS(1188), + [anon_sym_usize] = ACTIONS(1188), + [anon_sym_f32] = ACTIONS(1188), + [anon_sym_f64] = ACTIONS(1188), + [anon_sym_bool] = ACTIONS(1188), + [anon_sym_str] = ACTIONS(1188), + [anon_sym_char] = ACTIONS(1188), + [anon_sym_SQUOTE] = ACTIONS(1188), + [anon_sym_async] = ACTIONS(1188), + [anon_sym_break] = ACTIONS(1188), + [anon_sym_const] = ACTIONS(1188), + [anon_sym_continue] = ACTIONS(1188), + [anon_sym_default] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(1188), + [anon_sym_fn] = ACTIONS(1188), + [anon_sym_for] = ACTIONS(1188), + [anon_sym_if] = ACTIONS(1188), + [anon_sym_impl] = ACTIONS(1188), + [anon_sym_let] = ACTIONS(1188), + [anon_sym_loop] = ACTIONS(1188), + [anon_sym_match] = ACTIONS(1188), + [anon_sym_mod] = ACTIONS(1188), + [anon_sym_pub] = ACTIONS(1188), + [anon_sym_return] = ACTIONS(1188), + [anon_sym_static] = ACTIONS(1188), + [anon_sym_struct] = ACTIONS(1188), + [anon_sym_trait] = ACTIONS(1188), + [anon_sym_type] = ACTIONS(1188), + [anon_sym_union] = ACTIONS(1188), + [anon_sym_unsafe] = ACTIONS(1188), + [anon_sym_use] = ACTIONS(1188), + [anon_sym_while] = ACTIONS(1188), + [anon_sym_POUND] = ACTIONS(1186), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_extern] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_COLON_COLON] = ACTIONS(1186), + [anon_sym_AMP] = ACTIONS(1186), + [anon_sym_DOT_DOT] = ACTIONS(1186), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_PIPE] = ACTIONS(1186), + [anon_sym_move] = ACTIONS(1188), + [sym_integer_literal] = ACTIONS(1186), + [aux_sym_string_literal_token1] = ACTIONS(1186), + [sym_char_literal] = ACTIONS(1186), + [anon_sym_true] = ACTIONS(1188), + [anon_sym_false] = ACTIONS(1188), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1188), + [sym_super] = ACTIONS(1188), + [sym_crate] = ACTIONS(1188), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(1186), + [sym_float_literal] = ACTIONS(1186), + [sym_block_comment] = ACTIONS(3), + }, + [267] = { + [ts_builtin_sym_end] = ACTIONS(1190), + [sym_identifier] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1190), + [anon_sym_macro_rules_BANG] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1190), + [anon_sym_RBRACE] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1190), + [anon_sym_u8] = ACTIONS(1192), + [anon_sym_i8] = ACTIONS(1192), + [anon_sym_u16] = ACTIONS(1192), + [anon_sym_i16] = ACTIONS(1192), + [anon_sym_u32] = ACTIONS(1192), + [anon_sym_i32] = ACTIONS(1192), + [anon_sym_u64] = ACTIONS(1192), + [anon_sym_i64] = ACTIONS(1192), + [anon_sym_u128] = ACTIONS(1192), + [anon_sym_i128] = ACTIONS(1192), + [anon_sym_isize] = ACTIONS(1192), + [anon_sym_usize] = ACTIONS(1192), + [anon_sym_f32] = ACTIONS(1192), + [anon_sym_f64] = ACTIONS(1192), + [anon_sym_bool] = ACTIONS(1192), + [anon_sym_str] = ACTIONS(1192), + [anon_sym_char] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_break] = ACTIONS(1192), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_continue] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(1192), + [anon_sym_enum] = ACTIONS(1192), + [anon_sym_fn] = ACTIONS(1192), + [anon_sym_for] = ACTIONS(1192), + [anon_sym_if] = ACTIONS(1192), + [anon_sym_impl] = ACTIONS(1192), + [anon_sym_let] = ACTIONS(1192), + [anon_sym_loop] = ACTIONS(1192), + [anon_sym_match] = ACTIONS(1192), + [anon_sym_mod] = ACTIONS(1192), + [anon_sym_pub] = ACTIONS(1192), + [anon_sym_return] = ACTIONS(1192), + [anon_sym_static] = ACTIONS(1192), + [anon_sym_struct] = ACTIONS(1192), + [anon_sym_trait] = ACTIONS(1192), + [anon_sym_type] = ACTIONS(1192), + [anon_sym_union] = ACTIONS(1192), + [anon_sym_unsafe] = ACTIONS(1192), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_while] = ACTIONS(1192), + [anon_sym_POUND] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_COLON_COLON] = ACTIONS(1190), + [anon_sym_AMP] = ACTIONS(1190), + [anon_sym_DOT_DOT] = ACTIONS(1190), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_move] = ACTIONS(1192), + [sym_integer_literal] = ACTIONS(1190), + [aux_sym_string_literal_token1] = ACTIONS(1190), + [sym_char_literal] = ACTIONS(1190), + [anon_sym_true] = ACTIONS(1192), + [anon_sym_false] = ACTIONS(1192), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1192), + [sym_super] = ACTIONS(1192), + [sym_crate] = ACTIONS(1192), + [sym_metavariable] = ACTIONS(1190), + [sym_raw_string_literal] = ACTIONS(1190), + [sym_float_literal] = ACTIONS(1190), + [sym_block_comment] = ACTIONS(3), + }, + [268] = { + [ts_builtin_sym_end] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1194), + [anon_sym_macro_rules_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_RBRACE] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1194), + [anon_sym_STAR] = ACTIONS(1194), + [anon_sym_u8] = ACTIONS(1196), + [anon_sym_i8] = ACTIONS(1196), + [anon_sym_u16] = ACTIONS(1196), + [anon_sym_i16] = ACTIONS(1196), + [anon_sym_u32] = ACTIONS(1196), + [anon_sym_i32] = ACTIONS(1196), + [anon_sym_u64] = ACTIONS(1196), + [anon_sym_i64] = ACTIONS(1196), + [anon_sym_u128] = ACTIONS(1196), + [anon_sym_i128] = ACTIONS(1196), + [anon_sym_isize] = ACTIONS(1196), + [anon_sym_usize] = ACTIONS(1196), + [anon_sym_f32] = ACTIONS(1196), + [anon_sym_f64] = ACTIONS(1196), + [anon_sym_bool] = ACTIONS(1196), + [anon_sym_str] = ACTIONS(1196), + [anon_sym_char] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_async] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_const] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_default] = ACTIONS(1196), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_fn] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_impl] = ACTIONS(1196), + [anon_sym_let] = ACTIONS(1196), + [anon_sym_loop] = ACTIONS(1196), + [anon_sym_match] = ACTIONS(1196), + [anon_sym_mod] = ACTIONS(1196), + [anon_sym_pub] = ACTIONS(1196), + [anon_sym_return] = ACTIONS(1196), + [anon_sym_static] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_trait] = ACTIONS(1196), + [anon_sym_type] = ACTIONS(1196), + [anon_sym_union] = ACTIONS(1196), + [anon_sym_unsafe] = ACTIONS(1196), + [anon_sym_use] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_POUND] = ACTIONS(1194), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_extern] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1194), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [anon_sym_AMP] = ACTIONS(1194), + [anon_sym_DOT_DOT] = ACTIONS(1194), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_PIPE] = ACTIONS(1194), + [anon_sym_move] = ACTIONS(1196), + [sym_integer_literal] = ACTIONS(1194), + [aux_sym_string_literal_token1] = ACTIONS(1194), + [sym_char_literal] = ACTIONS(1194), + [anon_sym_true] = ACTIONS(1196), + [anon_sym_false] = ACTIONS(1196), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1196), + [sym_super] = ACTIONS(1196), + [sym_crate] = ACTIONS(1196), + [sym_metavariable] = ACTIONS(1194), + [sym_raw_string_literal] = ACTIONS(1194), + [sym_float_literal] = ACTIONS(1194), + [sym_block_comment] = ACTIONS(3), + }, + [269] = { + [ts_builtin_sym_end] = ACTIONS(1198), + [sym_identifier] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_macro_rules_BANG] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_u8] = ACTIONS(1200), + [anon_sym_i8] = ACTIONS(1200), + [anon_sym_u16] = ACTIONS(1200), + [anon_sym_i16] = ACTIONS(1200), + [anon_sym_u32] = ACTIONS(1200), + [anon_sym_i32] = ACTIONS(1200), + [anon_sym_u64] = ACTIONS(1200), + [anon_sym_i64] = ACTIONS(1200), + [anon_sym_u128] = ACTIONS(1200), + [anon_sym_i128] = ACTIONS(1200), + [anon_sym_isize] = ACTIONS(1200), + [anon_sym_usize] = ACTIONS(1200), + [anon_sym_f32] = ACTIONS(1200), + [anon_sym_f64] = ACTIONS(1200), + [anon_sym_bool] = ACTIONS(1200), + [anon_sym_str] = ACTIONS(1200), + [anon_sym_char] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_async] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_fn] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_impl] = ACTIONS(1200), + [anon_sym_let] = ACTIONS(1200), + [anon_sym_loop] = ACTIONS(1200), + [anon_sym_match] = ACTIONS(1200), + [anon_sym_mod] = ACTIONS(1200), + [anon_sym_pub] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_struct] = ACTIONS(1200), + [anon_sym_trait] = ACTIONS(1200), + [anon_sym_type] = ACTIONS(1200), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_unsafe] = ACTIONS(1200), + [anon_sym_use] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_POUND] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym_LT] = ACTIONS(1198), + [anon_sym_COLON_COLON] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_DOT_DOT] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_move] = ACTIONS(1200), + [sym_integer_literal] = ACTIONS(1198), + [aux_sym_string_literal_token1] = ACTIONS(1198), + [sym_char_literal] = ACTIONS(1198), + [anon_sym_true] = ACTIONS(1200), + [anon_sym_false] = ACTIONS(1200), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1198), + [sym_raw_string_literal] = ACTIONS(1198), + [sym_float_literal] = ACTIONS(1198), + [sym_block_comment] = ACTIONS(3), + }, + [270] = { + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_identifier] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_macro_rules_BANG] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_async] = ACTIONS(1204), + [anon_sym_break] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1204), + [anon_sym_continue] = ACTIONS(1204), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1204), + [anon_sym_fn] = ACTIONS(1204), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_impl] = ACTIONS(1204), + [anon_sym_let] = ACTIONS(1204), + [anon_sym_loop] = ACTIONS(1204), + [anon_sym_match] = ACTIONS(1204), + [anon_sym_mod] = ACTIONS(1204), + [anon_sym_pub] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1204), + [anon_sym_static] = ACTIONS(1204), + [anon_sym_struct] = ACTIONS(1204), + [anon_sym_trait] = ACTIONS(1204), + [anon_sym_type] = ACTIONS(1204), + [anon_sym_union] = ACTIONS(1204), + [anon_sym_unsafe] = ACTIONS(1204), + [anon_sym_use] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1204), + [anon_sym_POUND] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_extern] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1202), + [anon_sym_COLON_COLON] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_DOT_DOT] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_PIPE] = ACTIONS(1202), + [anon_sym_move] = ACTIONS(1204), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1202), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1204), + [anon_sym_false] = ACTIONS(1204), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1204), + [sym_super] = ACTIONS(1204), + [sym_crate] = ACTIONS(1204), + [sym_metavariable] = ACTIONS(1202), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), + [sym_block_comment] = ACTIONS(3), + }, + [271] = { + [ts_builtin_sym_end] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_macro_rules_BANG] = ACTIONS(1206), + [anon_sym_LPAREN] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_u8] = ACTIONS(1208), + [anon_sym_i8] = ACTIONS(1208), + [anon_sym_u16] = ACTIONS(1208), + [anon_sym_i16] = ACTIONS(1208), + [anon_sym_u32] = ACTIONS(1208), + [anon_sym_i32] = ACTIONS(1208), + [anon_sym_u64] = ACTIONS(1208), + [anon_sym_i64] = ACTIONS(1208), + [anon_sym_u128] = ACTIONS(1208), + [anon_sym_i128] = ACTIONS(1208), + [anon_sym_isize] = ACTIONS(1208), + [anon_sym_usize] = ACTIONS(1208), + [anon_sym_f32] = ACTIONS(1208), + [anon_sym_f64] = ACTIONS(1208), + [anon_sym_bool] = ACTIONS(1208), + [anon_sym_str] = ACTIONS(1208), + [anon_sym_char] = ACTIONS(1208), + [anon_sym_SQUOTE] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [anon_sym_fn] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_impl] = ACTIONS(1208), + [anon_sym_let] = ACTIONS(1208), + [anon_sym_loop] = ACTIONS(1208), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_mod] = ACTIONS(1208), + [anon_sym_pub] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_struct] = ACTIONS(1208), + [anon_sym_trait] = ACTIONS(1208), + [anon_sym_type] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), + [anon_sym_unsafe] = ACTIONS(1208), + [anon_sym_use] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_POUND] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_extern] = ACTIONS(1208), + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_DOT_DOT] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_PIPE] = ACTIONS(1206), + [anon_sym_move] = ACTIONS(1208), + [sym_integer_literal] = ACTIONS(1206), + [aux_sym_string_literal_token1] = ACTIONS(1206), + [sym_char_literal] = ACTIONS(1206), + [anon_sym_true] = ACTIONS(1208), + [anon_sym_false] = ACTIONS(1208), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1208), + [sym_super] = ACTIONS(1208), + [sym_crate] = ACTIONS(1208), + [sym_metavariable] = ACTIONS(1206), + [sym_raw_string_literal] = ACTIONS(1206), + [sym_float_literal] = ACTIONS(1206), + [sym_block_comment] = ACTIONS(3), + }, + [272] = { + [ts_builtin_sym_end] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_macro_rules_BANG] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_RBRACE] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1210), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_u8] = ACTIONS(1212), + [anon_sym_i8] = ACTIONS(1212), + [anon_sym_u16] = ACTIONS(1212), + [anon_sym_i16] = ACTIONS(1212), + [anon_sym_u32] = ACTIONS(1212), + [anon_sym_i32] = ACTIONS(1212), + [anon_sym_u64] = ACTIONS(1212), + [anon_sym_i64] = ACTIONS(1212), + [anon_sym_u128] = ACTIONS(1212), + [anon_sym_i128] = ACTIONS(1212), + [anon_sym_isize] = ACTIONS(1212), + [anon_sym_usize] = ACTIONS(1212), + [anon_sym_f32] = ACTIONS(1212), + [anon_sym_f64] = ACTIONS(1212), + [anon_sym_bool] = ACTIONS(1212), + [anon_sym_str] = ACTIONS(1212), + [anon_sym_char] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_fn] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_impl] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_loop] = ACTIONS(1212), + [anon_sym_match] = ACTIONS(1212), + [anon_sym_mod] = ACTIONS(1212), + [anon_sym_pub] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_trait] = ACTIONS(1212), + [anon_sym_type] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_unsafe] = ACTIONS(1212), + [anon_sym_use] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_POUND] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_DOT_DOT] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_PIPE] = ACTIONS(1210), + [anon_sym_move] = ACTIONS(1212), + [sym_integer_literal] = ACTIONS(1210), + [aux_sym_string_literal_token1] = ACTIONS(1210), + [sym_char_literal] = ACTIONS(1210), + [anon_sym_true] = ACTIONS(1212), + [anon_sym_false] = ACTIONS(1212), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1212), + [sym_super] = ACTIONS(1212), + [sym_crate] = ACTIONS(1212), + [sym_metavariable] = ACTIONS(1210), + [sym_raw_string_literal] = ACTIONS(1210), + [sym_float_literal] = ACTIONS(1210), + [sym_block_comment] = ACTIONS(3), + }, + [273] = { + [ts_builtin_sym_end] = ACTIONS(1214), + [sym_identifier] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_macro_rules_BANG] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1214), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_u8] = ACTIONS(1216), + [anon_sym_i8] = ACTIONS(1216), + [anon_sym_u16] = ACTIONS(1216), + [anon_sym_i16] = ACTIONS(1216), + [anon_sym_u32] = ACTIONS(1216), + [anon_sym_i32] = ACTIONS(1216), + [anon_sym_u64] = ACTIONS(1216), + [anon_sym_i64] = ACTIONS(1216), + [anon_sym_u128] = ACTIONS(1216), + [anon_sym_i128] = ACTIONS(1216), + [anon_sym_isize] = ACTIONS(1216), + [anon_sym_usize] = ACTIONS(1216), + [anon_sym_f32] = ACTIONS(1216), + [anon_sym_f64] = ACTIONS(1216), + [anon_sym_bool] = ACTIONS(1216), + [anon_sym_str] = ACTIONS(1216), + [anon_sym_char] = ACTIONS(1216), + [anon_sym_SQUOTE] = ACTIONS(1216), + [anon_sym_async] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_const] = ACTIONS(1216), + [anon_sym_continue] = ACTIONS(1216), + [anon_sym_default] = ACTIONS(1216), + [anon_sym_enum] = ACTIONS(1216), + [anon_sym_fn] = ACTIONS(1216), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1216), + [anon_sym_impl] = ACTIONS(1216), + [anon_sym_let] = ACTIONS(1216), + [anon_sym_loop] = ACTIONS(1216), + [anon_sym_match] = ACTIONS(1216), + [anon_sym_mod] = ACTIONS(1216), + [anon_sym_pub] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_struct] = ACTIONS(1216), + [anon_sym_trait] = ACTIONS(1216), + [anon_sym_type] = ACTIONS(1216), + [anon_sym_union] = ACTIONS(1216), + [anon_sym_unsafe] = ACTIONS(1216), + [anon_sym_use] = ACTIONS(1216), + [anon_sym_while] = ACTIONS(1216), + [anon_sym_POUND] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1216), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_DOT_DOT] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(1214), + [anon_sym_move] = ACTIONS(1216), + [sym_integer_literal] = ACTIONS(1214), + [aux_sym_string_literal_token1] = ACTIONS(1214), + [sym_char_literal] = ACTIONS(1214), + [anon_sym_true] = ACTIONS(1216), + [anon_sym_false] = ACTIONS(1216), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1214), + [sym_raw_string_literal] = ACTIONS(1214), + [sym_float_literal] = ACTIONS(1214), + [sym_block_comment] = ACTIONS(3), + }, + [274] = { + [ts_builtin_sym_end] = ACTIONS(1218), + [sym_identifier] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_macro_rules_BANG] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_u8] = ACTIONS(1220), + [anon_sym_i8] = ACTIONS(1220), + [anon_sym_u16] = ACTIONS(1220), + [anon_sym_i16] = ACTIONS(1220), + [anon_sym_u32] = ACTIONS(1220), + [anon_sym_i32] = ACTIONS(1220), + [anon_sym_u64] = ACTIONS(1220), + [anon_sym_i64] = ACTIONS(1220), + [anon_sym_u128] = ACTIONS(1220), + [anon_sym_i128] = ACTIONS(1220), + [anon_sym_isize] = ACTIONS(1220), + [anon_sym_usize] = ACTIONS(1220), + [anon_sym_f32] = ACTIONS(1220), + [anon_sym_f64] = ACTIONS(1220), + [anon_sym_bool] = ACTIONS(1220), + [anon_sym_str] = ACTIONS(1220), + [anon_sym_char] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_const] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_fn] = ACTIONS(1220), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_impl] = ACTIONS(1220), + [anon_sym_let] = ACTIONS(1220), + [anon_sym_loop] = ACTIONS(1220), + [anon_sym_match] = ACTIONS(1220), + [anon_sym_mod] = ACTIONS(1220), + [anon_sym_pub] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1220), + [anon_sym_trait] = ACTIONS(1220), + [anon_sym_type] = ACTIONS(1220), + [anon_sym_union] = ACTIONS(1220), + [anon_sym_unsafe] = ACTIONS(1220), + [anon_sym_use] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_POUND] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1218), + [anon_sym_COLON_COLON] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_DOT_DOT] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_move] = ACTIONS(1220), + [sym_integer_literal] = ACTIONS(1218), + [aux_sym_string_literal_token1] = ACTIONS(1218), + [sym_char_literal] = ACTIONS(1218), + [anon_sym_true] = ACTIONS(1220), + [anon_sym_false] = ACTIONS(1220), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1220), + [sym_super] = ACTIONS(1220), + [sym_crate] = ACTIONS(1220), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(1218), + [sym_float_literal] = ACTIONS(1218), + [sym_block_comment] = ACTIONS(3), + }, + [275] = { + [ts_builtin_sym_end] = ACTIONS(1222), + [sym_identifier] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_macro_rules_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_SQUOTE] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [anon_sym_fn] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_impl] = ACTIONS(1224), + [anon_sym_let] = ACTIONS(1224), + [anon_sym_loop] = ACTIONS(1224), + [anon_sym_match] = ACTIONS(1224), + [anon_sym_mod] = ACTIONS(1224), + [anon_sym_pub] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_struct] = ACTIONS(1224), + [anon_sym_trait] = ACTIONS(1224), + [anon_sym_type] = ACTIONS(1224), + [anon_sym_union] = ACTIONS(1224), + [anon_sym_unsafe] = ACTIONS(1224), + [anon_sym_use] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_POUND] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1224), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_COLON_COLON] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_DOT_DOT] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1222), + [anon_sym_move] = ACTIONS(1224), + [sym_integer_literal] = ACTIONS(1222), + [aux_sym_string_literal_token1] = ACTIONS(1222), + [sym_char_literal] = ACTIONS(1222), + [anon_sym_true] = ACTIONS(1224), + [anon_sym_false] = ACTIONS(1224), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1224), + [sym_super] = ACTIONS(1224), + [sym_crate] = ACTIONS(1224), + [sym_metavariable] = ACTIONS(1222), + [sym_raw_string_literal] = ACTIONS(1222), + [sym_float_literal] = ACTIONS(1222), + [sym_block_comment] = ACTIONS(3), + }, + [276] = { + [ts_builtin_sym_end] = ACTIONS(1226), + [sym_identifier] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_macro_rules_BANG] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_u8] = ACTIONS(1228), + [anon_sym_i8] = ACTIONS(1228), + [anon_sym_u16] = ACTIONS(1228), + [anon_sym_i16] = ACTIONS(1228), + [anon_sym_u32] = ACTIONS(1228), + [anon_sym_i32] = ACTIONS(1228), + [anon_sym_u64] = ACTIONS(1228), + [anon_sym_i64] = ACTIONS(1228), + [anon_sym_u128] = ACTIONS(1228), + [anon_sym_i128] = ACTIONS(1228), + [anon_sym_isize] = ACTIONS(1228), + [anon_sym_usize] = ACTIONS(1228), + [anon_sym_f32] = ACTIONS(1228), + [anon_sym_f64] = ACTIONS(1228), + [anon_sym_bool] = ACTIONS(1228), + [anon_sym_str] = ACTIONS(1228), + [anon_sym_char] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_async] = ACTIONS(1228), + [anon_sym_break] = ACTIONS(1228), + [anon_sym_const] = ACTIONS(1228), + [anon_sym_continue] = ACTIONS(1228), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_enum] = ACTIONS(1228), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_impl] = ACTIONS(1228), + [anon_sym_let] = ACTIONS(1228), + [anon_sym_loop] = ACTIONS(1228), + [anon_sym_match] = ACTIONS(1228), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_pub] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1228), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_struct] = ACTIONS(1228), + [anon_sym_trait] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_unsafe] = ACTIONS(1228), + [anon_sym_use] = ACTIONS(1228), + [anon_sym_while] = ACTIONS(1228), + [anon_sym_POUND] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_extern] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1226), + [anon_sym_COLON_COLON] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_DOT_DOT] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_move] = ACTIONS(1228), + [sym_integer_literal] = ACTIONS(1226), + [aux_sym_string_literal_token1] = ACTIONS(1226), + [sym_char_literal] = ACTIONS(1226), + [anon_sym_true] = ACTIONS(1228), + [anon_sym_false] = ACTIONS(1228), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1228), + [sym_super] = ACTIONS(1228), + [sym_crate] = ACTIONS(1228), + [sym_metavariable] = ACTIONS(1226), + [sym_raw_string_literal] = ACTIONS(1226), + [sym_float_literal] = ACTIONS(1226), + [sym_block_comment] = ACTIONS(3), + }, + [277] = { + [ts_builtin_sym_end] = ACTIONS(1230), + [sym_identifier] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_macro_rules_BANG] = ACTIONS(1230), + [anon_sym_LPAREN] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_RBRACE] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_u8] = ACTIONS(1232), + [anon_sym_i8] = ACTIONS(1232), + [anon_sym_u16] = ACTIONS(1232), + [anon_sym_i16] = ACTIONS(1232), + [anon_sym_u32] = ACTIONS(1232), + [anon_sym_i32] = ACTIONS(1232), + [anon_sym_u64] = ACTIONS(1232), + [anon_sym_i64] = ACTIONS(1232), + [anon_sym_u128] = ACTIONS(1232), + [anon_sym_i128] = ACTIONS(1232), + [anon_sym_isize] = ACTIONS(1232), + [anon_sym_usize] = ACTIONS(1232), + [anon_sym_f32] = ACTIONS(1232), + [anon_sym_f64] = ACTIONS(1232), + [anon_sym_bool] = ACTIONS(1232), + [anon_sym_str] = ACTIONS(1232), + [anon_sym_char] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1232), + [anon_sym_async] = ACTIONS(1232), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_const] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_default] = ACTIONS(1232), + [anon_sym_enum] = ACTIONS(1232), + [anon_sym_fn] = ACTIONS(1232), + [anon_sym_for] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_let] = ACTIONS(1232), + [anon_sym_loop] = ACTIONS(1232), + [anon_sym_match] = ACTIONS(1232), + [anon_sym_mod] = ACTIONS(1232), + [anon_sym_pub] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1232), + [anon_sym_struct] = ACTIONS(1232), + [anon_sym_trait] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1232), + [anon_sym_unsafe] = ACTIONS(1232), + [anon_sym_use] = ACTIONS(1232), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_POUND] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_extern] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_DOT_DOT] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_PIPE] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1232), + [sym_integer_literal] = ACTIONS(1230), + [aux_sym_string_literal_token1] = ACTIONS(1230), + [sym_char_literal] = ACTIONS(1230), + [anon_sym_true] = ACTIONS(1232), + [anon_sym_false] = ACTIONS(1232), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1232), + [sym_super] = ACTIONS(1232), + [sym_crate] = ACTIONS(1232), + [sym_metavariable] = ACTIONS(1230), + [sym_raw_string_literal] = ACTIONS(1230), + [sym_float_literal] = ACTIONS(1230), + [sym_block_comment] = ACTIONS(3), + }, + [278] = { + [ts_builtin_sym_end] = ACTIONS(1234), + [sym_identifier] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_macro_rules_BANG] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_u8] = ACTIONS(1236), + [anon_sym_i8] = ACTIONS(1236), + [anon_sym_u16] = ACTIONS(1236), + [anon_sym_i16] = ACTIONS(1236), + [anon_sym_u32] = ACTIONS(1236), + [anon_sym_i32] = ACTIONS(1236), + [anon_sym_u64] = ACTIONS(1236), + [anon_sym_i64] = ACTIONS(1236), + [anon_sym_u128] = ACTIONS(1236), + [anon_sym_i128] = ACTIONS(1236), + [anon_sym_isize] = ACTIONS(1236), + [anon_sym_usize] = ACTIONS(1236), + [anon_sym_f32] = ACTIONS(1236), + [anon_sym_f64] = ACTIONS(1236), + [anon_sym_bool] = ACTIONS(1236), + [anon_sym_str] = ACTIONS(1236), + [anon_sym_char] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_async] = ACTIONS(1236), + [anon_sym_break] = ACTIONS(1236), + [anon_sym_const] = ACTIONS(1236), + [anon_sym_continue] = ACTIONS(1236), + [anon_sym_default] = ACTIONS(1236), + [anon_sym_enum] = ACTIONS(1236), + [anon_sym_fn] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1236), + [anon_sym_impl] = ACTIONS(1236), + [anon_sym_let] = ACTIONS(1236), + [anon_sym_loop] = ACTIONS(1236), + [anon_sym_match] = ACTIONS(1236), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_pub] = ACTIONS(1236), + [anon_sym_return] = ACTIONS(1236), + [anon_sym_static] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1236), + [anon_sym_trait] = ACTIONS(1236), + [anon_sym_type] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1236), + [anon_sym_unsafe] = ACTIONS(1236), + [anon_sym_use] = ACTIONS(1236), + [anon_sym_while] = ACTIONS(1236), + [anon_sym_POUND] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_COLON_COLON] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_DOT_DOT] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_move] = ACTIONS(1236), + [sym_integer_literal] = ACTIONS(1234), + [aux_sym_string_literal_token1] = ACTIONS(1234), + [sym_char_literal] = ACTIONS(1234), + [anon_sym_true] = ACTIONS(1236), + [anon_sym_false] = ACTIONS(1236), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1236), + [sym_super] = ACTIONS(1236), + [sym_crate] = ACTIONS(1236), + [sym_metavariable] = ACTIONS(1234), + [sym_raw_string_literal] = ACTIONS(1234), + [sym_float_literal] = ACTIONS(1234), + [sym_block_comment] = ACTIONS(3), + }, + [279] = { + [ts_builtin_sym_end] = ACTIONS(1238), + [sym_identifier] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_macro_rules_BANG] = ACTIONS(1238), + [anon_sym_LPAREN] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_RBRACE] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_u8] = ACTIONS(1240), + [anon_sym_i8] = ACTIONS(1240), + [anon_sym_u16] = ACTIONS(1240), + [anon_sym_i16] = ACTIONS(1240), + [anon_sym_u32] = ACTIONS(1240), + [anon_sym_i32] = ACTIONS(1240), + [anon_sym_u64] = ACTIONS(1240), + [anon_sym_i64] = ACTIONS(1240), + [anon_sym_u128] = ACTIONS(1240), + [anon_sym_i128] = ACTIONS(1240), + [anon_sym_isize] = ACTIONS(1240), + [anon_sym_usize] = ACTIONS(1240), + [anon_sym_f32] = ACTIONS(1240), + [anon_sym_f64] = ACTIONS(1240), + [anon_sym_bool] = ACTIONS(1240), + [anon_sym_str] = ACTIONS(1240), + [anon_sym_char] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_async] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_fn] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_impl] = ACTIONS(1240), + [anon_sym_let] = ACTIONS(1240), + [anon_sym_loop] = ACTIONS(1240), + [anon_sym_match] = ACTIONS(1240), + [anon_sym_mod] = ACTIONS(1240), + [anon_sym_pub] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_trait] = ACTIONS(1240), + [anon_sym_type] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_unsafe] = ACTIONS(1240), + [anon_sym_use] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_POUND] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_COLON_COLON] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1238), + [anon_sym_DOT_DOT] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_move] = ACTIONS(1240), + [sym_integer_literal] = ACTIONS(1238), + [aux_sym_string_literal_token1] = ACTIONS(1238), + [sym_char_literal] = ACTIONS(1238), + [anon_sym_true] = ACTIONS(1240), + [anon_sym_false] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1240), + [sym_super] = ACTIONS(1240), + [sym_crate] = ACTIONS(1240), + [sym_metavariable] = ACTIONS(1238), + [sym_raw_string_literal] = ACTIONS(1238), + [sym_float_literal] = ACTIONS(1238), + [sym_block_comment] = ACTIONS(3), + }, + [280] = { + [ts_builtin_sym_end] = ACTIONS(1242), + [sym_identifier] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_macro_rules_BANG] = ACTIONS(1242), + [anon_sym_LPAREN] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1244), + [anon_sym_i8] = ACTIONS(1244), + [anon_sym_u16] = ACTIONS(1244), + [anon_sym_i16] = ACTIONS(1244), + [anon_sym_u32] = ACTIONS(1244), + [anon_sym_i32] = ACTIONS(1244), + [anon_sym_u64] = ACTIONS(1244), + [anon_sym_i64] = ACTIONS(1244), + [anon_sym_u128] = ACTIONS(1244), + [anon_sym_i128] = ACTIONS(1244), + [anon_sym_isize] = ACTIONS(1244), + [anon_sym_usize] = ACTIONS(1244), + [anon_sym_f32] = ACTIONS(1244), + [anon_sym_f64] = ACTIONS(1244), + [anon_sym_bool] = ACTIONS(1244), + [anon_sym_str] = ACTIONS(1244), + [anon_sym_char] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1244), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_break] = ACTIONS(1244), + [anon_sym_const] = ACTIONS(1244), + [anon_sym_continue] = ACTIONS(1244), + [anon_sym_default] = ACTIONS(1244), + [anon_sym_enum] = ACTIONS(1244), + [anon_sym_fn] = ACTIONS(1244), + [anon_sym_for] = ACTIONS(1244), + [anon_sym_if] = ACTIONS(1244), + [anon_sym_impl] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_loop] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1244), + [anon_sym_mod] = ACTIONS(1244), + [anon_sym_pub] = ACTIONS(1244), + [anon_sym_return] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1244), + [anon_sym_struct] = ACTIONS(1244), + [anon_sym_trait] = ACTIONS(1244), + [anon_sym_type] = ACTIONS(1244), + [anon_sym_union] = ACTIONS(1244), + [anon_sym_unsafe] = ACTIONS(1244), + [anon_sym_use] = ACTIONS(1244), + [anon_sym_while] = ACTIONS(1244), + [anon_sym_POUND] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_extern] = ACTIONS(1244), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_COLON_COLON] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_DOT_DOT] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_move] = ACTIONS(1244), + [sym_integer_literal] = ACTIONS(1242), + [aux_sym_string_literal_token1] = ACTIONS(1242), + [sym_char_literal] = ACTIONS(1242), + [anon_sym_true] = ACTIONS(1244), + [anon_sym_false] = ACTIONS(1244), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1244), + [sym_super] = ACTIONS(1244), + [sym_crate] = ACTIONS(1244), + [sym_metavariable] = ACTIONS(1242), + [sym_raw_string_literal] = ACTIONS(1242), + [sym_float_literal] = ACTIONS(1242), + [sym_block_comment] = ACTIONS(3), + }, + [281] = { + [ts_builtin_sym_end] = ACTIONS(1246), + [sym_identifier] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_macro_rules_BANG] = ACTIONS(1246), + [anon_sym_LPAREN] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_RBRACE] = ACTIONS(1246), + [anon_sym_LBRACK] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_u8] = ACTIONS(1248), + [anon_sym_i8] = ACTIONS(1248), + [anon_sym_u16] = ACTIONS(1248), + [anon_sym_i16] = ACTIONS(1248), + [anon_sym_u32] = ACTIONS(1248), + [anon_sym_i32] = ACTIONS(1248), + [anon_sym_u64] = ACTIONS(1248), + [anon_sym_i64] = ACTIONS(1248), + [anon_sym_u128] = ACTIONS(1248), + [anon_sym_i128] = ACTIONS(1248), + [anon_sym_isize] = ACTIONS(1248), + [anon_sym_usize] = ACTIONS(1248), + [anon_sym_f32] = ACTIONS(1248), + [anon_sym_f64] = ACTIONS(1248), + [anon_sym_bool] = ACTIONS(1248), + [anon_sym_str] = ACTIONS(1248), + [anon_sym_char] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_async] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_const] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1248), + [anon_sym_enum] = ACTIONS(1248), + [anon_sym_fn] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_impl] = ACTIONS(1248), + [anon_sym_let] = ACTIONS(1248), + [anon_sym_loop] = ACTIONS(1248), + [anon_sym_match] = ACTIONS(1248), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_pub] = ACTIONS(1248), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_struct] = ACTIONS(1248), + [anon_sym_trait] = ACTIONS(1248), + [anon_sym_type] = ACTIONS(1248), + [anon_sym_union] = ACTIONS(1248), + [anon_sym_unsafe] = ACTIONS(1248), + [anon_sym_use] = ACTIONS(1248), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_POUND] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1246), + [anon_sym_COLON_COLON] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_DOT_DOT] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_move] = ACTIONS(1248), + [sym_integer_literal] = ACTIONS(1246), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1246), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1248), + [sym_super] = ACTIONS(1248), + [sym_crate] = ACTIONS(1248), + [sym_metavariable] = ACTIONS(1246), + [sym_raw_string_literal] = ACTIONS(1246), + [sym_float_literal] = ACTIONS(1246), + [sym_block_comment] = ACTIONS(3), + }, + [282] = { + [ts_builtin_sym_end] = ACTIONS(1250), + [sym_identifier] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_macro_rules_BANG] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_RBRACE] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_u8] = ACTIONS(1252), + [anon_sym_i8] = ACTIONS(1252), + [anon_sym_u16] = ACTIONS(1252), + [anon_sym_i16] = ACTIONS(1252), + [anon_sym_u32] = ACTIONS(1252), + [anon_sym_i32] = ACTIONS(1252), + [anon_sym_u64] = ACTIONS(1252), + [anon_sym_i64] = ACTIONS(1252), + [anon_sym_u128] = ACTIONS(1252), + [anon_sym_i128] = ACTIONS(1252), + [anon_sym_isize] = ACTIONS(1252), + [anon_sym_usize] = ACTIONS(1252), + [anon_sym_f32] = ACTIONS(1252), + [anon_sym_f64] = ACTIONS(1252), + [anon_sym_bool] = ACTIONS(1252), + [anon_sym_str] = ACTIONS(1252), + [anon_sym_char] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_async] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1252), + [anon_sym_const] = ACTIONS(1252), + [anon_sym_continue] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1252), + [anon_sym_enum] = ACTIONS(1252), + [anon_sym_fn] = ACTIONS(1252), + [anon_sym_for] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1252), + [anon_sym_impl] = ACTIONS(1252), + [anon_sym_let] = ACTIONS(1252), + [anon_sym_loop] = ACTIONS(1252), + [anon_sym_match] = ACTIONS(1252), + [anon_sym_mod] = ACTIONS(1252), + [anon_sym_pub] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_struct] = ACTIONS(1252), + [anon_sym_trait] = ACTIONS(1252), + [anon_sym_type] = ACTIONS(1252), + [anon_sym_union] = ACTIONS(1252), + [anon_sym_unsafe] = ACTIONS(1252), + [anon_sym_use] = ACTIONS(1252), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_COLON_COLON] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_DOT_DOT] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(1250), + [anon_sym_move] = ACTIONS(1252), + [sym_integer_literal] = ACTIONS(1250), + [aux_sym_string_literal_token1] = ACTIONS(1250), + [sym_char_literal] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1252), + [anon_sym_false] = ACTIONS(1252), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1252), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1250), + [sym_raw_string_literal] = ACTIONS(1250), + [sym_float_literal] = ACTIONS(1250), + [sym_block_comment] = ACTIONS(3), + }, + [283] = { + [ts_builtin_sym_end] = ACTIONS(1254), + [sym_identifier] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_macro_rules_BANG] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_RBRACE] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_u8] = ACTIONS(1256), + [anon_sym_i8] = ACTIONS(1256), + [anon_sym_u16] = ACTIONS(1256), + [anon_sym_i16] = ACTIONS(1256), + [anon_sym_u32] = ACTIONS(1256), + [anon_sym_i32] = ACTIONS(1256), + [anon_sym_u64] = ACTIONS(1256), + [anon_sym_i64] = ACTIONS(1256), + [anon_sym_u128] = ACTIONS(1256), + [anon_sym_i128] = ACTIONS(1256), + [anon_sym_isize] = ACTIONS(1256), + [anon_sym_usize] = ACTIONS(1256), + [anon_sym_f32] = ACTIONS(1256), + [anon_sym_f64] = ACTIONS(1256), + [anon_sym_bool] = ACTIONS(1256), + [anon_sym_str] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_async] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_fn] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_impl] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1256), + [anon_sym_loop] = ACTIONS(1256), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_mod] = ACTIONS(1256), + [anon_sym_pub] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_trait] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_unsafe] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_POUND] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_move] = ACTIONS(1256), + [sym_integer_literal] = ACTIONS(1254), + [aux_sym_string_literal_token1] = ACTIONS(1254), + [sym_char_literal] = ACTIONS(1254), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1256), + [sym_super] = ACTIONS(1256), + [sym_crate] = ACTIONS(1256), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1254), + [sym_float_literal] = ACTIONS(1254), + [sym_block_comment] = ACTIONS(3), + }, + [284] = { + [ts_builtin_sym_end] = ACTIONS(1258), + [sym_identifier] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_macro_rules_BANG] = ACTIONS(1258), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1260), + [anon_sym_i8] = ACTIONS(1260), + [anon_sym_u16] = ACTIONS(1260), + [anon_sym_i16] = ACTIONS(1260), + [anon_sym_u32] = ACTIONS(1260), + [anon_sym_i32] = ACTIONS(1260), + [anon_sym_u64] = ACTIONS(1260), + [anon_sym_i64] = ACTIONS(1260), + [anon_sym_u128] = ACTIONS(1260), + [anon_sym_i128] = ACTIONS(1260), + [anon_sym_isize] = ACTIONS(1260), + [anon_sym_usize] = ACTIONS(1260), + [anon_sym_f32] = ACTIONS(1260), + [anon_sym_f64] = ACTIONS(1260), + [anon_sym_bool] = ACTIONS(1260), + [anon_sym_str] = ACTIONS(1260), + [anon_sym_char] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_async] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1260), + [anon_sym_enum] = ACTIONS(1260), + [anon_sym_fn] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_impl] = ACTIONS(1260), + [anon_sym_let] = ACTIONS(1260), + [anon_sym_loop] = ACTIONS(1260), + [anon_sym_match] = ACTIONS(1260), + [anon_sym_mod] = ACTIONS(1260), + [anon_sym_pub] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_struct] = ACTIONS(1260), + [anon_sym_trait] = ACTIONS(1260), + [anon_sym_type] = ACTIONS(1260), + [anon_sym_union] = ACTIONS(1260), + [anon_sym_unsafe] = ACTIONS(1260), + [anon_sym_use] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_POUND] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_COLON_COLON] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_DOT_DOT] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_move] = ACTIONS(1260), + [sym_integer_literal] = ACTIONS(1258), + [aux_sym_string_literal_token1] = ACTIONS(1258), + [sym_char_literal] = ACTIONS(1258), + [anon_sym_true] = ACTIONS(1260), + [anon_sym_false] = ACTIONS(1260), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1260), + [sym_super] = ACTIONS(1260), + [sym_crate] = ACTIONS(1260), + [sym_metavariable] = ACTIONS(1258), + [sym_raw_string_literal] = ACTIONS(1258), + [sym_float_literal] = ACTIONS(1258), + [sym_block_comment] = ACTIONS(3), + }, + [285] = { + [ts_builtin_sym_end] = ACTIONS(1262), + [sym_identifier] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_macro_rules_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_RBRACE] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_u8] = ACTIONS(1264), + [anon_sym_i8] = ACTIONS(1264), + [anon_sym_u16] = ACTIONS(1264), + [anon_sym_i16] = ACTIONS(1264), + [anon_sym_u32] = ACTIONS(1264), + [anon_sym_i32] = ACTIONS(1264), + [anon_sym_u64] = ACTIONS(1264), + [anon_sym_i64] = ACTIONS(1264), + [anon_sym_u128] = ACTIONS(1264), + [anon_sym_i128] = ACTIONS(1264), + [anon_sym_isize] = ACTIONS(1264), + [anon_sym_usize] = ACTIONS(1264), + [anon_sym_f32] = ACTIONS(1264), + [anon_sym_f64] = ACTIONS(1264), + [anon_sym_bool] = ACTIONS(1264), + [anon_sym_str] = ACTIONS(1264), + [anon_sym_char] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_async] = ACTIONS(1264), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1264), + [anon_sym_default] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_fn] = ACTIONS(1264), + [anon_sym_for] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_impl] = ACTIONS(1264), + [anon_sym_let] = ACTIONS(1264), + [anon_sym_loop] = ACTIONS(1264), + [anon_sym_match] = ACTIONS(1264), + [anon_sym_mod] = ACTIONS(1264), + [anon_sym_pub] = ACTIONS(1264), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_trait] = ACTIONS(1264), + [anon_sym_type] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_unsafe] = ACTIONS(1264), + [anon_sym_use] = ACTIONS(1264), + [anon_sym_while] = ACTIONS(1264), + [anon_sym_POUND] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_COLON_COLON] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_DOT_DOT] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1262), + [anon_sym_move] = ACTIONS(1264), + [sym_integer_literal] = ACTIONS(1262), + [aux_sym_string_literal_token1] = ACTIONS(1262), + [sym_char_literal] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1264), + [anon_sym_false] = ACTIONS(1264), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1264), + [sym_super] = ACTIONS(1264), + [sym_crate] = ACTIONS(1264), + [sym_metavariable] = ACTIONS(1262), + [sym_raw_string_literal] = ACTIONS(1262), + [sym_float_literal] = ACTIONS(1262), + [sym_block_comment] = ACTIONS(3), + }, + [286] = { + [ts_builtin_sym_end] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_macro_rules_BANG] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_u8] = ACTIONS(1268), + [anon_sym_i8] = ACTIONS(1268), + [anon_sym_u16] = ACTIONS(1268), + [anon_sym_i16] = ACTIONS(1268), + [anon_sym_u32] = ACTIONS(1268), + [anon_sym_i32] = ACTIONS(1268), + [anon_sym_u64] = ACTIONS(1268), + [anon_sym_i64] = ACTIONS(1268), + [anon_sym_u128] = ACTIONS(1268), + [anon_sym_i128] = ACTIONS(1268), + [anon_sym_isize] = ACTIONS(1268), + [anon_sym_usize] = ACTIONS(1268), + [anon_sym_f32] = ACTIONS(1268), + [anon_sym_f64] = ACTIONS(1268), + [anon_sym_bool] = ACTIONS(1268), + [anon_sym_str] = ACTIONS(1268), + [anon_sym_char] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1268), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_const] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1268), + [anon_sym_enum] = ACTIONS(1268), + [anon_sym_fn] = ACTIONS(1268), + [anon_sym_for] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1268), + [anon_sym_impl] = ACTIONS(1268), + [anon_sym_let] = ACTIONS(1268), + [anon_sym_loop] = ACTIONS(1268), + [anon_sym_match] = ACTIONS(1268), + [anon_sym_mod] = ACTIONS(1268), + [anon_sym_pub] = ACTIONS(1268), + [anon_sym_return] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1268), + [anon_sym_struct] = ACTIONS(1268), + [anon_sym_trait] = ACTIONS(1268), + [anon_sym_type] = ACTIONS(1268), + [anon_sym_union] = ACTIONS(1268), + [anon_sym_unsafe] = ACTIONS(1268), + [anon_sym_use] = ACTIONS(1268), + [anon_sym_while] = ACTIONS(1268), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_COLON_COLON] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_DOT_DOT] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_move] = ACTIONS(1268), + [sym_integer_literal] = ACTIONS(1266), + [aux_sym_string_literal_token1] = ACTIONS(1266), + [sym_char_literal] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1268), + [anon_sym_false] = ACTIONS(1268), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1268), + [sym_super] = ACTIONS(1268), + [sym_crate] = ACTIONS(1268), + [sym_metavariable] = ACTIONS(1266), + [sym_raw_string_literal] = ACTIONS(1266), + [sym_float_literal] = ACTIONS(1266), + [sym_block_comment] = ACTIONS(3), + }, + [287] = { + [sym__token_pattern] = STATE(239), + [sym_token_tree_pattern] = STATE(239), + [sym_token_binding_pattern] = STATE(239), + [sym_token_repetition_pattern] = STATE(239), + [sym__literal] = STATE(239), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_pattern_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_RPAREN] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_u8] = ACTIONS(1270), + [anon_sym_i8] = ACTIONS(1270), + [anon_sym_u16] = ACTIONS(1270), + [anon_sym_i16] = ACTIONS(1270), + [anon_sym_u32] = ACTIONS(1270), + [anon_sym_i32] = ACTIONS(1270), + [anon_sym_u64] = ACTIONS(1270), + [anon_sym_i64] = ACTIONS(1270), + [anon_sym_u128] = ACTIONS(1270), + [anon_sym_i128] = ACTIONS(1270), + [anon_sym_isize] = ACTIONS(1270), + [anon_sym_usize] = ACTIONS(1270), + [anon_sym_f32] = ACTIONS(1270), + [anon_sym_f64] = ACTIONS(1270), + [anon_sym_bool] = ACTIONS(1270), + [anon_sym_str] = ACTIONS(1270), + [anon_sym_char] = ACTIONS(1270), + [aux_sym__non_special_token_token1] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_as] = ACTIONS(1270), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_fn] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_impl] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_pub] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_trait] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_where] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [sym_mutable_specifier] = ACTIONS(1270), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(1270), + [sym_super] = ACTIONS(1270), + [sym_crate] = ACTIONS(1270), + [sym_metavariable] = ACTIONS(1116), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [288] = { + [ts_builtin_sym_end] = ACTIONS(1274), + [sym_identifier] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym_macro_rules_BANG] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_u8] = ACTIONS(1276), + [anon_sym_i8] = ACTIONS(1276), + [anon_sym_u16] = ACTIONS(1276), + [anon_sym_i16] = ACTIONS(1276), + [anon_sym_u32] = ACTIONS(1276), + [anon_sym_i32] = ACTIONS(1276), + [anon_sym_u64] = ACTIONS(1276), + [anon_sym_i64] = ACTIONS(1276), + [anon_sym_u128] = ACTIONS(1276), + [anon_sym_i128] = ACTIONS(1276), + [anon_sym_isize] = ACTIONS(1276), + [anon_sym_usize] = ACTIONS(1276), + [anon_sym_f32] = ACTIONS(1276), + [anon_sym_f64] = ACTIONS(1276), + [anon_sym_bool] = ACTIONS(1276), + [anon_sym_str] = ACTIONS(1276), + [anon_sym_char] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [anon_sym_async] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_impl] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1276), + [anon_sym_loop] = ACTIONS(1276), + [anon_sym_match] = ACTIONS(1276), + [anon_sym_mod] = ACTIONS(1276), + [anon_sym_pub] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_struct] = ACTIONS(1276), + [anon_sym_trait] = ACTIONS(1276), + [anon_sym_type] = ACTIONS(1276), + [anon_sym_union] = ACTIONS(1276), + [anon_sym_unsafe] = ACTIONS(1276), + [anon_sym_use] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_POUND] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1276), + [anon_sym_LT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_DOT_DOT] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_PIPE] = ACTIONS(1274), + [anon_sym_move] = ACTIONS(1276), + [sym_integer_literal] = ACTIONS(1274), + [aux_sym_string_literal_token1] = ACTIONS(1274), + [sym_char_literal] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1276), + [anon_sym_false] = ACTIONS(1276), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1276), + [sym_super] = ACTIONS(1276), + [sym_crate] = ACTIONS(1276), + [sym_metavariable] = ACTIONS(1274), + [sym_raw_string_literal] = ACTIONS(1274), + [sym_float_literal] = ACTIONS(1274), + [sym_block_comment] = ACTIONS(3), + }, + [289] = { + [ts_builtin_sym_end] = ACTIONS(1278), + [sym_identifier] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym_macro_rules_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_RBRACE] = ACTIONS(1278), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_u8] = ACTIONS(1280), + [anon_sym_i8] = ACTIONS(1280), + [anon_sym_u16] = ACTIONS(1280), + [anon_sym_i16] = ACTIONS(1280), + [anon_sym_u32] = ACTIONS(1280), + [anon_sym_i32] = ACTIONS(1280), + [anon_sym_u64] = ACTIONS(1280), + [anon_sym_i64] = ACTIONS(1280), + [anon_sym_u128] = ACTIONS(1280), + [anon_sym_i128] = ACTIONS(1280), + [anon_sym_isize] = ACTIONS(1280), + [anon_sym_usize] = ACTIONS(1280), + [anon_sym_f32] = ACTIONS(1280), + [anon_sym_f64] = ACTIONS(1280), + [anon_sym_bool] = ACTIONS(1280), + [anon_sym_str] = ACTIONS(1280), + [anon_sym_char] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_break] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_continue] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1280), + [anon_sym_enum] = ACTIONS(1280), + [anon_sym_fn] = ACTIONS(1280), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_if] = ACTIONS(1280), + [anon_sym_impl] = ACTIONS(1280), + [anon_sym_let] = ACTIONS(1280), + [anon_sym_loop] = ACTIONS(1280), + [anon_sym_match] = ACTIONS(1280), + [anon_sym_mod] = ACTIONS(1280), + [anon_sym_pub] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1280), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_struct] = ACTIONS(1280), + [anon_sym_trait] = ACTIONS(1280), + [anon_sym_type] = ACTIONS(1280), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_unsafe] = ACTIONS(1280), + [anon_sym_use] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_POUND] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(1278), + [anon_sym_COLON_COLON] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_DOT_DOT] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1278), + [anon_sym_move] = ACTIONS(1280), + [sym_integer_literal] = ACTIONS(1278), + [aux_sym_string_literal_token1] = ACTIONS(1278), + [sym_char_literal] = ACTIONS(1278), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1280), + [sym_super] = ACTIONS(1280), + [sym_crate] = ACTIONS(1280), + [sym_metavariable] = ACTIONS(1278), + [sym_raw_string_literal] = ACTIONS(1278), + [sym_float_literal] = ACTIONS(1278), + [sym_block_comment] = ACTIONS(3), + }, + [290] = { + [ts_builtin_sym_end] = ACTIONS(1282), + [sym_identifier] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_macro_rules_BANG] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_u8] = ACTIONS(1284), + [anon_sym_i8] = ACTIONS(1284), + [anon_sym_u16] = ACTIONS(1284), + [anon_sym_i16] = ACTIONS(1284), + [anon_sym_u32] = ACTIONS(1284), + [anon_sym_i32] = ACTIONS(1284), + [anon_sym_u64] = ACTIONS(1284), + [anon_sym_i64] = ACTIONS(1284), + [anon_sym_u128] = ACTIONS(1284), + [anon_sym_i128] = ACTIONS(1284), + [anon_sym_isize] = ACTIONS(1284), + [anon_sym_usize] = ACTIONS(1284), + [anon_sym_f32] = ACTIONS(1284), + [anon_sym_f64] = ACTIONS(1284), + [anon_sym_bool] = ACTIONS(1284), + [anon_sym_str] = ACTIONS(1284), + [anon_sym_char] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [anon_sym_fn] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_impl] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_loop] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1284), + [anon_sym_mod] = ACTIONS(1284), + [anon_sym_pub] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_trait] = ACTIONS(1284), + [anon_sym_type] = ACTIONS(1284), + [anon_sym_union] = ACTIONS(1284), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_use] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [anon_sym_POUND] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1282), + [anon_sym_COLON_COLON] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_DOT_DOT] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_PIPE] = ACTIONS(1282), + [anon_sym_move] = ACTIONS(1284), + [sym_integer_literal] = ACTIONS(1282), + [aux_sym_string_literal_token1] = ACTIONS(1282), + [sym_char_literal] = ACTIONS(1282), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1284), + [sym_super] = ACTIONS(1284), + [sym_crate] = ACTIONS(1284), + [sym_metavariable] = ACTIONS(1282), + [sym_raw_string_literal] = ACTIONS(1282), + [sym_float_literal] = ACTIONS(1282), + [sym_block_comment] = ACTIONS(3), + }, + [291] = { + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_identifier] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_macro_rules_BANG] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_u8] = ACTIONS(1288), + [anon_sym_i8] = ACTIONS(1288), + [anon_sym_u16] = ACTIONS(1288), + [anon_sym_i16] = ACTIONS(1288), + [anon_sym_u32] = ACTIONS(1288), + [anon_sym_i32] = ACTIONS(1288), + [anon_sym_u64] = ACTIONS(1288), + [anon_sym_i64] = ACTIONS(1288), + [anon_sym_u128] = ACTIONS(1288), + [anon_sym_i128] = ACTIONS(1288), + [anon_sym_isize] = ACTIONS(1288), + [anon_sym_usize] = ACTIONS(1288), + [anon_sym_f32] = ACTIONS(1288), + [anon_sym_f64] = ACTIONS(1288), + [anon_sym_bool] = ACTIONS(1288), + [anon_sym_str] = ACTIONS(1288), + [anon_sym_char] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_fn] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_impl] = ACTIONS(1288), + [anon_sym_let] = ACTIONS(1288), + [anon_sym_loop] = ACTIONS(1288), + [anon_sym_match] = ACTIONS(1288), + [anon_sym_mod] = ACTIONS(1288), + [anon_sym_pub] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_trait] = ACTIONS(1288), + [anon_sym_type] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_unsafe] = ACTIONS(1288), + [anon_sym_use] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_POUND] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_DOT_DOT] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1286), + [anon_sym_move] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1286), + [aux_sym_string_literal_token1] = ACTIONS(1286), + [sym_char_literal] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1288), + [anon_sym_false] = ACTIONS(1288), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1286), + [sym_raw_string_literal] = ACTIONS(1286), + [sym_float_literal] = ACTIONS(1286), + [sym_block_comment] = ACTIONS(3), + }, + [292] = { + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_identifier] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_macro_rules_BANG] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(1290), + [anon_sym_STAR] = ACTIONS(1290), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u128] = ACTIONS(1292), + [anon_sym_i128] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_str] = ACTIONS(1292), + [anon_sym_char] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_async] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_fn] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_loop] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_mod] = ACTIONS(1292), + [anon_sym_pub] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_trait] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_unsafe] = ACTIONS(1292), + [anon_sym_use] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_POUND] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_PIPE] = ACTIONS(1290), + [anon_sym_move] = ACTIONS(1292), + [sym_integer_literal] = ACTIONS(1290), + [aux_sym_string_literal_token1] = ACTIONS(1290), + [sym_char_literal] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1292), + [sym_super] = ACTIONS(1292), + [sym_crate] = ACTIONS(1292), + [sym_metavariable] = ACTIONS(1290), + [sym_raw_string_literal] = ACTIONS(1290), + [sym_float_literal] = ACTIONS(1290), + [sym_block_comment] = ACTIONS(3), + }, + [293] = { + [ts_builtin_sym_end] = ACTIONS(1294), + [sym_identifier] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_macro_rules_BANG] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_u8] = ACTIONS(1296), + [anon_sym_i8] = ACTIONS(1296), + [anon_sym_u16] = ACTIONS(1296), + [anon_sym_i16] = ACTIONS(1296), + [anon_sym_u32] = ACTIONS(1296), + [anon_sym_i32] = ACTIONS(1296), + [anon_sym_u64] = ACTIONS(1296), + [anon_sym_i64] = ACTIONS(1296), + [anon_sym_u128] = ACTIONS(1296), + [anon_sym_i128] = ACTIONS(1296), + [anon_sym_isize] = ACTIONS(1296), + [anon_sym_usize] = ACTIONS(1296), + [anon_sym_f32] = ACTIONS(1296), + [anon_sym_f64] = ACTIONS(1296), + [anon_sym_bool] = ACTIONS(1296), + [anon_sym_str] = ACTIONS(1296), + [anon_sym_char] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_fn] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_impl] = ACTIONS(1296), + [anon_sym_let] = ACTIONS(1296), + [anon_sym_loop] = ACTIONS(1296), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_mod] = ACTIONS(1296), + [anon_sym_pub] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_trait] = ACTIONS(1296), + [anon_sym_type] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_use] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_COLON_COLON] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_DOT_DOT] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_move] = ACTIONS(1296), + [sym_integer_literal] = ACTIONS(1294), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1294), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1296), + [sym_super] = ACTIONS(1296), + [sym_crate] = ACTIONS(1296), + [sym_metavariable] = ACTIONS(1294), + [sym_raw_string_literal] = ACTIONS(1294), + [sym_float_literal] = ACTIONS(1294), + [sym_block_comment] = ACTIONS(3), + }, + [294] = { + [ts_builtin_sym_end] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym_macro_rules_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_RBRACE] = ACTIONS(1298), + [anon_sym_LBRACK] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_u8] = ACTIONS(1300), + [anon_sym_i8] = ACTIONS(1300), + [anon_sym_u16] = ACTIONS(1300), + [anon_sym_i16] = ACTIONS(1300), + [anon_sym_u32] = ACTIONS(1300), + [anon_sym_i32] = ACTIONS(1300), + [anon_sym_u64] = ACTIONS(1300), + [anon_sym_i64] = ACTIONS(1300), + [anon_sym_u128] = ACTIONS(1300), + [anon_sym_i128] = ACTIONS(1300), + [anon_sym_isize] = ACTIONS(1300), + [anon_sym_usize] = ACTIONS(1300), + [anon_sym_f32] = ACTIONS(1300), + [anon_sym_f64] = ACTIONS(1300), + [anon_sym_bool] = ACTIONS(1300), + [anon_sym_str] = ACTIONS(1300), + [anon_sym_char] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_async] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_impl] = ACTIONS(1300), + [anon_sym_let] = ACTIONS(1300), + [anon_sym_loop] = ACTIONS(1300), + [anon_sym_match] = ACTIONS(1300), + [anon_sym_mod] = ACTIONS(1300), + [anon_sym_pub] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_trait] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_unsafe] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_POUND] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1298), + [anon_sym_COLON_COLON] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_DOT_DOT] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1298), + [anon_sym_move] = ACTIONS(1300), + [sym_integer_literal] = ACTIONS(1298), + [aux_sym_string_literal_token1] = ACTIONS(1298), + [sym_char_literal] = ACTIONS(1298), + [anon_sym_true] = ACTIONS(1300), + [anon_sym_false] = ACTIONS(1300), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1300), + [sym_super] = ACTIONS(1300), + [sym_crate] = ACTIONS(1300), + [sym_metavariable] = ACTIONS(1298), + [sym_raw_string_literal] = ACTIONS(1298), + [sym_float_literal] = ACTIONS(1298), + [sym_block_comment] = ACTIONS(3), + }, + [295] = { + [ts_builtin_sym_end] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_macro_rules_BANG] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_RBRACE] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_u8] = ACTIONS(1304), + [anon_sym_i8] = ACTIONS(1304), + [anon_sym_u16] = ACTIONS(1304), + [anon_sym_i16] = ACTIONS(1304), + [anon_sym_u32] = ACTIONS(1304), + [anon_sym_i32] = ACTIONS(1304), + [anon_sym_u64] = ACTIONS(1304), + [anon_sym_i64] = ACTIONS(1304), + [anon_sym_u128] = ACTIONS(1304), + [anon_sym_i128] = ACTIONS(1304), + [anon_sym_isize] = ACTIONS(1304), + [anon_sym_usize] = ACTIONS(1304), + [anon_sym_f32] = ACTIONS(1304), + [anon_sym_f64] = ACTIONS(1304), + [anon_sym_bool] = ACTIONS(1304), + [anon_sym_str] = ACTIONS(1304), + [anon_sym_char] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_async] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_fn] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1304), + [anon_sym_let] = ACTIONS(1304), + [anon_sym_loop] = ACTIONS(1304), + [anon_sym_match] = ACTIONS(1304), + [anon_sym_mod] = ACTIONS(1304), + [anon_sym_pub] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_trait] = ACTIONS(1304), + [anon_sym_type] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_unsafe] = ACTIONS(1304), + [anon_sym_use] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_POUND] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1302), + [anon_sym_COLON_COLON] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_DOT_DOT] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_move] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1302), + [aux_sym_string_literal_token1] = ACTIONS(1302), + [sym_char_literal] = ACTIONS(1302), + [anon_sym_true] = ACTIONS(1304), + [anon_sym_false] = ACTIONS(1304), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1304), + [sym_super] = ACTIONS(1304), + [sym_crate] = ACTIONS(1304), + [sym_metavariable] = ACTIONS(1302), + [sym_raw_string_literal] = ACTIONS(1302), + [sym_float_literal] = ACTIONS(1302), + [sym_block_comment] = ACTIONS(3), + }, + [296] = { + [ts_builtin_sym_end] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_macro_rules_BANG] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(1308), + [anon_sym_i8] = ACTIONS(1308), + [anon_sym_u16] = ACTIONS(1308), + [anon_sym_i16] = ACTIONS(1308), + [anon_sym_u32] = ACTIONS(1308), + [anon_sym_i32] = ACTIONS(1308), + [anon_sym_u64] = ACTIONS(1308), + [anon_sym_i64] = ACTIONS(1308), + [anon_sym_u128] = ACTIONS(1308), + [anon_sym_i128] = ACTIONS(1308), + [anon_sym_isize] = ACTIONS(1308), + [anon_sym_usize] = ACTIONS(1308), + [anon_sym_f32] = ACTIONS(1308), + [anon_sym_f64] = ACTIONS(1308), + [anon_sym_bool] = ACTIONS(1308), + [anon_sym_str] = ACTIONS(1308), + [anon_sym_char] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_impl] = ACTIONS(1308), + [anon_sym_let] = ACTIONS(1308), + [anon_sym_loop] = ACTIONS(1308), + [anon_sym_match] = ACTIONS(1308), + [anon_sym_mod] = ACTIONS(1308), + [anon_sym_pub] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_trait] = ACTIONS(1308), + [anon_sym_type] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1308), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_POUND] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_COLON_COLON] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1306), + [anon_sym_move] = ACTIONS(1308), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1306), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1308), + [anon_sym_false] = ACTIONS(1308), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1308), + [sym_super] = ACTIONS(1308), + [sym_crate] = ACTIONS(1308), + [sym_metavariable] = ACTIONS(1306), + [sym_raw_string_literal] = ACTIONS(1306), + [sym_float_literal] = ACTIONS(1306), + [sym_block_comment] = ACTIONS(3), + }, + [297] = { + [ts_builtin_sym_end] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_macro_rules_BANG] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_RBRACE] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_async] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_impl] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(1312), + [anon_sym_loop] = ACTIONS(1312), + [anon_sym_match] = ACTIONS(1312), + [anon_sym_mod] = ACTIONS(1312), + [anon_sym_pub] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_trait] = ACTIONS(1312), + [anon_sym_type] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_unsafe] = ACTIONS(1312), + [anon_sym_use] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(1310), + [anon_sym_move] = ACTIONS(1312), + [sym_integer_literal] = ACTIONS(1310), + [aux_sym_string_literal_token1] = ACTIONS(1310), + [sym_char_literal] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1312), + [anon_sym_false] = ACTIONS(1312), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1312), + [sym_super] = ACTIONS(1312), + [sym_crate] = ACTIONS(1312), + [sym_metavariable] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1310), + [sym_float_literal] = ACTIONS(1310), + [sym_block_comment] = ACTIONS(3), + }, + [298] = { + [ts_builtin_sym_end] = ACTIONS(1314), + [sym_identifier] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_macro_rules_BANG] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_RBRACE] = ACTIONS(1314), + [anon_sym_LBRACK] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_u8] = ACTIONS(1316), + [anon_sym_i8] = ACTIONS(1316), + [anon_sym_u16] = ACTIONS(1316), + [anon_sym_i16] = ACTIONS(1316), + [anon_sym_u32] = ACTIONS(1316), + [anon_sym_i32] = ACTIONS(1316), + [anon_sym_u64] = ACTIONS(1316), + [anon_sym_i64] = ACTIONS(1316), + [anon_sym_u128] = ACTIONS(1316), + [anon_sym_i128] = ACTIONS(1316), + [anon_sym_isize] = ACTIONS(1316), + [anon_sym_usize] = ACTIONS(1316), + [anon_sym_f32] = ACTIONS(1316), + [anon_sym_f64] = ACTIONS(1316), + [anon_sym_bool] = ACTIONS(1316), + [anon_sym_str] = ACTIONS(1316), + [anon_sym_char] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_async] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_fn] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_impl] = ACTIONS(1316), + [anon_sym_let] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1316), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_mod] = ACTIONS(1316), + [anon_sym_pub] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_trait] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsafe] = ACTIONS(1316), + [anon_sym_use] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [anon_sym_POUND] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym_LT] = ACTIONS(1314), + [anon_sym_COLON_COLON] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1314), + [aux_sym_string_literal_token1] = ACTIONS(1314), + [sym_char_literal] = ACTIONS(1314), + [anon_sym_true] = ACTIONS(1316), + [anon_sym_false] = ACTIONS(1316), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1316), + [sym_super] = ACTIONS(1316), + [sym_crate] = ACTIONS(1316), + [sym_metavariable] = ACTIONS(1314), + [sym_raw_string_literal] = ACTIONS(1314), + [sym_float_literal] = ACTIONS(1314), + [sym_block_comment] = ACTIONS(3), + }, + [299] = { + [ts_builtin_sym_end] = ACTIONS(1318), + [sym_identifier] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_macro_rules_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_u8] = ACTIONS(1320), + [anon_sym_i8] = ACTIONS(1320), + [anon_sym_u16] = ACTIONS(1320), + [anon_sym_i16] = ACTIONS(1320), + [anon_sym_u32] = ACTIONS(1320), + [anon_sym_i32] = ACTIONS(1320), + [anon_sym_u64] = ACTIONS(1320), + [anon_sym_i64] = ACTIONS(1320), + [anon_sym_u128] = ACTIONS(1320), + [anon_sym_i128] = ACTIONS(1320), + [anon_sym_isize] = ACTIONS(1320), + [anon_sym_usize] = ACTIONS(1320), + [anon_sym_f32] = ACTIONS(1320), + [anon_sym_f64] = ACTIONS(1320), + [anon_sym_bool] = ACTIONS(1320), + [anon_sym_str] = ACTIONS(1320), + [anon_sym_char] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_async] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_fn] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_impl] = ACTIONS(1320), + [anon_sym_let] = ACTIONS(1320), + [anon_sym_loop] = ACTIONS(1320), + [anon_sym_match] = ACTIONS(1320), + [anon_sym_mod] = ACTIONS(1320), + [anon_sym_pub] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_trait] = ACTIONS(1320), + [anon_sym_type] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_unsafe] = ACTIONS(1320), + [anon_sym_use] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_POUND] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_COLON_COLON] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_DOT_DOT] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PIPE] = ACTIONS(1318), + [anon_sym_move] = ACTIONS(1320), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = ACTIONS(1320), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1320), + [sym_super] = ACTIONS(1320), + [sym_crate] = ACTIONS(1320), + [sym_metavariable] = ACTIONS(1318), + [sym_raw_string_literal] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1318), + [sym_block_comment] = ACTIONS(3), + }, + [300] = { + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_macro_rules_BANG] = ACTIONS(1322), + [anon_sym_LPAREN] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_u8] = ACTIONS(1324), + [anon_sym_i8] = ACTIONS(1324), + [anon_sym_u16] = ACTIONS(1324), + [anon_sym_i16] = ACTIONS(1324), + [anon_sym_u32] = ACTIONS(1324), + [anon_sym_i32] = ACTIONS(1324), + [anon_sym_u64] = ACTIONS(1324), + [anon_sym_i64] = ACTIONS(1324), + [anon_sym_u128] = ACTIONS(1324), + [anon_sym_i128] = ACTIONS(1324), + [anon_sym_isize] = ACTIONS(1324), + [anon_sym_usize] = ACTIONS(1324), + [anon_sym_f32] = ACTIONS(1324), + [anon_sym_f64] = ACTIONS(1324), + [anon_sym_bool] = ACTIONS(1324), + [anon_sym_str] = ACTIONS(1324), + [anon_sym_char] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_async] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_fn] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1324), + [anon_sym_let] = ACTIONS(1324), + [anon_sym_loop] = ACTIONS(1324), + [anon_sym_match] = ACTIONS(1324), + [anon_sym_mod] = ACTIONS(1324), + [anon_sym_pub] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_trait] = ACTIONS(1324), + [anon_sym_type] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1324), + [anon_sym_use] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_POUND] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym_LT] = ACTIONS(1322), + [anon_sym_COLON_COLON] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_DOT_DOT] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_move] = ACTIONS(1324), + [sym_integer_literal] = ACTIONS(1322), + [aux_sym_string_literal_token1] = ACTIONS(1322), + [sym_char_literal] = ACTIONS(1322), + [anon_sym_true] = ACTIONS(1324), + [anon_sym_false] = ACTIONS(1324), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1324), + [sym_crate] = ACTIONS(1324), + [sym_metavariable] = ACTIONS(1322), + [sym_raw_string_literal] = ACTIONS(1322), + [sym_float_literal] = ACTIONS(1322), + [sym_block_comment] = ACTIONS(3), + }, + [301] = { + [ts_builtin_sym_end] = ACTIONS(1326), + [sym_identifier] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_macro_rules_BANG] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_RBRACE] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_u8] = ACTIONS(1328), + [anon_sym_i8] = ACTIONS(1328), + [anon_sym_u16] = ACTIONS(1328), + [anon_sym_i16] = ACTIONS(1328), + [anon_sym_u32] = ACTIONS(1328), + [anon_sym_i32] = ACTIONS(1328), + [anon_sym_u64] = ACTIONS(1328), + [anon_sym_i64] = ACTIONS(1328), + [anon_sym_u128] = ACTIONS(1328), + [anon_sym_i128] = ACTIONS(1328), + [anon_sym_isize] = ACTIONS(1328), + [anon_sym_usize] = ACTIONS(1328), + [anon_sym_f32] = ACTIONS(1328), + [anon_sym_f64] = ACTIONS(1328), + [anon_sym_bool] = ACTIONS(1328), + [anon_sym_str] = ACTIONS(1328), + [anon_sym_char] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_async] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_fn] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_impl] = ACTIONS(1328), + [anon_sym_let] = ACTIONS(1328), + [anon_sym_loop] = ACTIONS(1328), + [anon_sym_match] = ACTIONS(1328), + [anon_sym_mod] = ACTIONS(1328), + [anon_sym_pub] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_trait] = ACTIONS(1328), + [anon_sym_type] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_unsafe] = ACTIONS(1328), + [anon_sym_use] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_POUND] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym_LT] = ACTIONS(1326), + [anon_sym_COLON_COLON] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_DOT_DOT] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PIPE] = ACTIONS(1326), + [anon_sym_move] = ACTIONS(1328), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1326), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1328), + [anon_sym_false] = ACTIONS(1328), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1328), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1326), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), + [sym_block_comment] = ACTIONS(3), + }, + [302] = { + [ts_builtin_sym_end] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_macro_rules_BANG] = ACTIONS(1330), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_RBRACE] = ACTIONS(1330), + [anon_sym_LBRACK] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_u8] = ACTIONS(1332), + [anon_sym_i8] = ACTIONS(1332), + [anon_sym_u16] = ACTIONS(1332), + [anon_sym_i16] = ACTIONS(1332), + [anon_sym_u32] = ACTIONS(1332), + [anon_sym_i32] = ACTIONS(1332), + [anon_sym_u64] = ACTIONS(1332), + [anon_sym_i64] = ACTIONS(1332), + [anon_sym_u128] = ACTIONS(1332), + [anon_sym_i128] = ACTIONS(1332), + [anon_sym_isize] = ACTIONS(1332), + [anon_sym_usize] = ACTIONS(1332), + [anon_sym_f32] = ACTIONS(1332), + [anon_sym_f64] = ACTIONS(1332), + [anon_sym_bool] = ACTIONS(1332), + [anon_sym_str] = ACTIONS(1332), + [anon_sym_char] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_async] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_fn] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_impl] = ACTIONS(1332), + [anon_sym_let] = ACTIONS(1332), + [anon_sym_loop] = ACTIONS(1332), + [anon_sym_match] = ACTIONS(1332), + [anon_sym_mod] = ACTIONS(1332), + [anon_sym_pub] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_trait] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_unsafe] = ACTIONS(1332), + [anon_sym_use] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_POUND] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(1330), + [anon_sym_COLON_COLON] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_DOT_DOT] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PIPE] = ACTIONS(1330), + [anon_sym_move] = ACTIONS(1332), + [sym_integer_literal] = ACTIONS(1330), + [aux_sym_string_literal_token1] = ACTIONS(1330), + [sym_char_literal] = ACTIONS(1330), + [anon_sym_true] = ACTIONS(1332), + [anon_sym_false] = ACTIONS(1332), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1332), + [sym_super] = ACTIONS(1332), + [sym_crate] = ACTIONS(1332), + [sym_metavariable] = ACTIONS(1330), + [sym_raw_string_literal] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1330), + [sym_block_comment] = ACTIONS(3), + }, + [303] = { + [ts_builtin_sym_end] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_macro_rules_BANG] = ACTIONS(1334), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_u8] = ACTIONS(1336), + [anon_sym_i8] = ACTIONS(1336), + [anon_sym_u16] = ACTIONS(1336), + [anon_sym_i16] = ACTIONS(1336), + [anon_sym_u32] = ACTIONS(1336), + [anon_sym_i32] = ACTIONS(1336), + [anon_sym_u64] = ACTIONS(1336), + [anon_sym_i64] = ACTIONS(1336), + [anon_sym_u128] = ACTIONS(1336), + [anon_sym_i128] = ACTIONS(1336), + [anon_sym_isize] = ACTIONS(1336), + [anon_sym_usize] = ACTIONS(1336), + [anon_sym_f32] = ACTIONS(1336), + [anon_sym_f64] = ACTIONS(1336), + [anon_sym_bool] = ACTIONS(1336), + [anon_sym_str] = ACTIONS(1336), + [anon_sym_char] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_fn] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_impl] = ACTIONS(1336), + [anon_sym_let] = ACTIONS(1336), + [anon_sym_loop] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_mod] = ACTIONS(1336), + [anon_sym_pub] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_trait] = ACTIONS(1336), + [anon_sym_type] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_unsafe] = ACTIONS(1336), + [anon_sym_use] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1334), + [anon_sym_COLON_COLON] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PIPE] = ACTIONS(1334), + [anon_sym_move] = ACTIONS(1336), + [sym_integer_literal] = ACTIONS(1334), + [aux_sym_string_literal_token1] = ACTIONS(1334), + [sym_char_literal] = ACTIONS(1334), + [anon_sym_true] = ACTIONS(1336), + [anon_sym_false] = ACTIONS(1336), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1336), + [sym_super] = ACTIONS(1336), + [sym_crate] = ACTIONS(1336), + [sym_metavariable] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1334), + [sym_float_literal] = ACTIONS(1334), + [sym_block_comment] = ACTIONS(3), + }, + [304] = { + [ts_builtin_sym_end] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_macro_rules_BANG] = ACTIONS(1338), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_impl] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_loop] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_mod] = ACTIONS(1340), + [anon_sym_pub] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_trait] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_unsafe] = ACTIONS(1340), + [anon_sym_use] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_POUND] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1338), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_DOT_DOT] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PIPE] = ACTIONS(1338), + [anon_sym_move] = ACTIONS(1340), + [sym_integer_literal] = ACTIONS(1338), + [aux_sym_string_literal_token1] = ACTIONS(1338), + [sym_char_literal] = ACTIONS(1338), + [anon_sym_true] = ACTIONS(1340), + [anon_sym_false] = ACTIONS(1340), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_crate] = ACTIONS(1340), + [sym_metavariable] = ACTIONS(1338), + [sym_raw_string_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1338), + [sym_block_comment] = ACTIONS(3), + }, + [305] = { + [sym__token_pattern] = STATE(239), + [sym_token_tree_pattern] = STATE(239), + [sym_token_binding_pattern] = STATE(239), + [sym_token_repetition_pattern] = STATE(239), + [sym__literal] = STATE(239), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_pattern_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_u8] = ACTIONS(1270), + [anon_sym_i8] = ACTIONS(1270), + [anon_sym_u16] = ACTIONS(1270), + [anon_sym_i16] = ACTIONS(1270), + [anon_sym_u32] = ACTIONS(1270), + [anon_sym_i32] = ACTIONS(1270), + [anon_sym_u64] = ACTIONS(1270), + [anon_sym_i64] = ACTIONS(1270), + [anon_sym_u128] = ACTIONS(1270), + [anon_sym_i128] = ACTIONS(1270), + [anon_sym_isize] = ACTIONS(1270), + [anon_sym_usize] = ACTIONS(1270), + [anon_sym_f32] = ACTIONS(1270), + [anon_sym_f64] = ACTIONS(1270), + [anon_sym_bool] = ACTIONS(1270), + [anon_sym_str] = ACTIONS(1270), + [anon_sym_char] = ACTIONS(1270), + [aux_sym__non_special_token_token1] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_as] = ACTIONS(1270), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_fn] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_impl] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_pub] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_trait] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_where] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [sym_mutable_specifier] = ACTIONS(1270), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(1270), + [sym_super] = ACTIONS(1270), + [sym_crate] = ACTIONS(1270), + [sym_metavariable] = ACTIONS(1116), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [306] = { + [ts_builtin_sym_end] = ACTIONS(1342), + [sym_identifier] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_macro_rules_BANG] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_u8] = ACTIONS(1344), + [anon_sym_i8] = ACTIONS(1344), + [anon_sym_u16] = ACTIONS(1344), + [anon_sym_i16] = ACTIONS(1344), + [anon_sym_u32] = ACTIONS(1344), + [anon_sym_i32] = ACTIONS(1344), + [anon_sym_u64] = ACTIONS(1344), + [anon_sym_i64] = ACTIONS(1344), + [anon_sym_u128] = ACTIONS(1344), + [anon_sym_i128] = ACTIONS(1344), + [anon_sym_isize] = ACTIONS(1344), + [anon_sym_usize] = ACTIONS(1344), + [anon_sym_f32] = ACTIONS(1344), + [anon_sym_f64] = ACTIONS(1344), + [anon_sym_bool] = ACTIONS(1344), + [anon_sym_str] = ACTIONS(1344), + [anon_sym_char] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_async] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_fn] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_impl] = ACTIONS(1344), + [anon_sym_let] = ACTIONS(1344), + [anon_sym_loop] = ACTIONS(1344), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_mod] = ACTIONS(1344), + [anon_sym_pub] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_trait] = ACTIONS(1344), + [anon_sym_type] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_unsafe] = ACTIONS(1344), + [anon_sym_use] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_POUND] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_COLON_COLON] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_DOT_DOT] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PIPE] = ACTIONS(1342), + [anon_sym_move] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1342), + [aux_sym_string_literal_token1] = ACTIONS(1342), + [sym_char_literal] = ACTIONS(1342), + [anon_sym_true] = ACTIONS(1344), + [anon_sym_false] = ACTIONS(1344), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1342), + [sym_raw_string_literal] = ACTIONS(1342), + [sym_float_literal] = ACTIONS(1342), + [sym_block_comment] = ACTIONS(3), + }, + [307] = { + [sym__token_pattern] = STATE(239), + [sym_token_tree_pattern] = STATE(239), + [sym_token_binding_pattern] = STATE(239), + [sym_token_repetition_pattern] = STATE(239), + [sym__literal] = STATE(239), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_pattern_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_RBRACK] = ACTIONS(1272), + [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_u8] = ACTIONS(1270), + [anon_sym_i8] = ACTIONS(1270), + [anon_sym_u16] = ACTIONS(1270), + [anon_sym_i16] = ACTIONS(1270), + [anon_sym_u32] = ACTIONS(1270), + [anon_sym_i32] = ACTIONS(1270), + [anon_sym_u64] = ACTIONS(1270), + [anon_sym_i64] = ACTIONS(1270), + [anon_sym_u128] = ACTIONS(1270), + [anon_sym_i128] = ACTIONS(1270), + [anon_sym_isize] = ACTIONS(1270), + [anon_sym_usize] = ACTIONS(1270), + [anon_sym_f32] = ACTIONS(1270), + [anon_sym_f64] = ACTIONS(1270), + [anon_sym_bool] = ACTIONS(1270), + [anon_sym_str] = ACTIONS(1270), + [anon_sym_char] = ACTIONS(1270), + [aux_sym__non_special_token_token1] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_as] = ACTIONS(1270), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_fn] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_impl] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_pub] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_trait] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_where] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [sym_mutable_specifier] = ACTIONS(1270), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(1270), + [sym_super] = ACTIONS(1270), + [sym_crate] = ACTIONS(1270), + [sym_metavariable] = ACTIONS(1116), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [308] = { + [ts_builtin_sym_end] = ACTIONS(1346), + [sym_identifier] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_macro_rules_BANG] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_u8] = ACTIONS(1348), + [anon_sym_i8] = ACTIONS(1348), + [anon_sym_u16] = ACTIONS(1348), + [anon_sym_i16] = ACTIONS(1348), + [anon_sym_u32] = ACTIONS(1348), + [anon_sym_i32] = ACTIONS(1348), + [anon_sym_u64] = ACTIONS(1348), + [anon_sym_i64] = ACTIONS(1348), + [anon_sym_u128] = ACTIONS(1348), + [anon_sym_i128] = ACTIONS(1348), + [anon_sym_isize] = ACTIONS(1348), + [anon_sym_usize] = ACTIONS(1348), + [anon_sym_f32] = ACTIONS(1348), + [anon_sym_f64] = ACTIONS(1348), + [anon_sym_bool] = ACTIONS(1348), + [anon_sym_str] = ACTIONS(1348), + [anon_sym_char] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_async] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_fn] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_impl] = ACTIONS(1348), + [anon_sym_let] = ACTIONS(1348), + [anon_sym_loop] = ACTIONS(1348), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_mod] = ACTIONS(1348), + [anon_sym_pub] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_trait] = ACTIONS(1348), + [anon_sym_type] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1348), + [anon_sym_use] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_POUND] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1346), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_DOT_DOT] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1346), + [anon_sym_move] = ACTIONS(1348), + [sym_integer_literal] = ACTIONS(1346), + [aux_sym_string_literal_token1] = ACTIONS(1346), + [sym_char_literal] = ACTIONS(1346), + [anon_sym_true] = ACTIONS(1348), + [anon_sym_false] = ACTIONS(1348), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1348), + [sym_super] = ACTIONS(1348), + [sym_crate] = ACTIONS(1348), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(1346), + [sym_float_literal] = ACTIONS(1346), + [sym_block_comment] = ACTIONS(3), + }, + [309] = { + [ts_builtin_sym_end] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_macro_rules_BANG] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_u8] = ACTIONS(1352), + [anon_sym_i8] = ACTIONS(1352), + [anon_sym_u16] = ACTIONS(1352), + [anon_sym_i16] = ACTIONS(1352), + [anon_sym_u32] = ACTIONS(1352), + [anon_sym_i32] = ACTIONS(1352), + [anon_sym_u64] = ACTIONS(1352), + [anon_sym_i64] = ACTIONS(1352), + [anon_sym_u128] = ACTIONS(1352), + [anon_sym_i128] = ACTIONS(1352), + [anon_sym_isize] = ACTIONS(1352), + [anon_sym_usize] = ACTIONS(1352), + [anon_sym_f32] = ACTIONS(1352), + [anon_sym_f64] = ACTIONS(1352), + [anon_sym_bool] = ACTIONS(1352), + [anon_sym_str] = ACTIONS(1352), + [anon_sym_char] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_async] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_fn] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_impl] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1352), + [anon_sym_loop] = ACTIONS(1352), + [anon_sym_match] = ACTIONS(1352), + [anon_sym_mod] = ACTIONS(1352), + [anon_sym_pub] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_trait] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_unsafe] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_POUND] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym_LT] = ACTIONS(1350), + [anon_sym_COLON_COLON] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_DOT_DOT] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PIPE] = ACTIONS(1350), + [anon_sym_move] = ACTIONS(1352), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1350), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1352), + [anon_sym_false] = ACTIONS(1352), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1352), + [sym_super] = ACTIONS(1352), + [sym_crate] = ACTIONS(1352), + [sym_metavariable] = ACTIONS(1350), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), + [sym_block_comment] = ACTIONS(3), + }, + [310] = { + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_macro_rules_BANG] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_u8] = ACTIONS(1356), + [anon_sym_i8] = ACTIONS(1356), + [anon_sym_u16] = ACTIONS(1356), + [anon_sym_i16] = ACTIONS(1356), + [anon_sym_u32] = ACTIONS(1356), + [anon_sym_i32] = ACTIONS(1356), + [anon_sym_u64] = ACTIONS(1356), + [anon_sym_i64] = ACTIONS(1356), + [anon_sym_u128] = ACTIONS(1356), + [anon_sym_i128] = ACTIONS(1356), + [anon_sym_isize] = ACTIONS(1356), + [anon_sym_usize] = ACTIONS(1356), + [anon_sym_f32] = ACTIONS(1356), + [anon_sym_f64] = ACTIONS(1356), + [anon_sym_bool] = ACTIONS(1356), + [anon_sym_str] = ACTIONS(1356), + [anon_sym_char] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_async] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_fn] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_impl] = ACTIONS(1356), + [anon_sym_let] = ACTIONS(1356), + [anon_sym_loop] = ACTIONS(1356), + [anon_sym_match] = ACTIONS(1356), + [anon_sym_mod] = ACTIONS(1356), + [anon_sym_pub] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_trait] = ACTIONS(1356), + [anon_sym_type] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_unsafe] = ACTIONS(1356), + [anon_sym_use] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1354), + [anon_sym_COLON_COLON] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_DOT_DOT] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1354), + [anon_sym_move] = ACTIONS(1356), + [sym_integer_literal] = ACTIONS(1354), + [aux_sym_string_literal_token1] = ACTIONS(1354), + [sym_char_literal] = ACTIONS(1354), + [anon_sym_true] = ACTIONS(1356), + [anon_sym_false] = ACTIONS(1356), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1356), + [sym_super] = ACTIONS(1356), + [sym_crate] = ACTIONS(1356), + [sym_metavariable] = ACTIONS(1354), + [sym_raw_string_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1354), + [sym_block_comment] = ACTIONS(3), + }, + [311] = { + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_macro_rules_BANG] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1360), + [anon_sym_i8] = ACTIONS(1360), + [anon_sym_u16] = ACTIONS(1360), + [anon_sym_i16] = ACTIONS(1360), + [anon_sym_u32] = ACTIONS(1360), + [anon_sym_i32] = ACTIONS(1360), + [anon_sym_u64] = ACTIONS(1360), + [anon_sym_i64] = ACTIONS(1360), + [anon_sym_u128] = ACTIONS(1360), + [anon_sym_i128] = ACTIONS(1360), + [anon_sym_isize] = ACTIONS(1360), + [anon_sym_usize] = ACTIONS(1360), + [anon_sym_f32] = ACTIONS(1360), + [anon_sym_f64] = ACTIONS(1360), + [anon_sym_bool] = ACTIONS(1360), + [anon_sym_str] = ACTIONS(1360), + [anon_sym_char] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_async] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_fn] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_impl] = ACTIONS(1360), + [anon_sym_let] = ACTIONS(1360), + [anon_sym_loop] = ACTIONS(1360), + [anon_sym_match] = ACTIONS(1360), + [anon_sym_mod] = ACTIONS(1360), + [anon_sym_pub] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_trait] = ACTIONS(1360), + [anon_sym_type] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_unsafe] = ACTIONS(1360), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_POUND] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_COLON_COLON] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_DOT_DOT] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_move] = ACTIONS(1360), + [sym_integer_literal] = ACTIONS(1358), + [aux_sym_string_literal_token1] = ACTIONS(1358), + [sym_char_literal] = ACTIONS(1358), + [anon_sym_true] = ACTIONS(1360), + [anon_sym_false] = ACTIONS(1360), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1360), + [sym_super] = ACTIONS(1360), + [sym_crate] = ACTIONS(1360), + [sym_metavariable] = ACTIONS(1358), + [sym_raw_string_literal] = ACTIONS(1358), + [sym_float_literal] = ACTIONS(1358), + [sym_block_comment] = ACTIONS(3), + }, + [312] = { + [ts_builtin_sym_end] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_macro_rules_BANG] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_u8] = ACTIONS(1364), + [anon_sym_i8] = ACTIONS(1364), + [anon_sym_u16] = ACTIONS(1364), + [anon_sym_i16] = ACTIONS(1364), + [anon_sym_u32] = ACTIONS(1364), + [anon_sym_i32] = ACTIONS(1364), + [anon_sym_u64] = ACTIONS(1364), + [anon_sym_i64] = ACTIONS(1364), + [anon_sym_u128] = ACTIONS(1364), + [anon_sym_i128] = ACTIONS(1364), + [anon_sym_isize] = ACTIONS(1364), + [anon_sym_usize] = ACTIONS(1364), + [anon_sym_f32] = ACTIONS(1364), + [anon_sym_f64] = ACTIONS(1364), + [anon_sym_bool] = ACTIONS(1364), + [anon_sym_str] = ACTIONS(1364), + [anon_sym_char] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_async] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_impl] = ACTIONS(1364), + [anon_sym_let] = ACTIONS(1364), + [anon_sym_loop] = ACTIONS(1364), + [anon_sym_match] = ACTIONS(1364), + [anon_sym_mod] = ACTIONS(1364), + [anon_sym_pub] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_trait] = ACTIONS(1364), + [anon_sym_type] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_unsafe] = ACTIONS(1364), + [anon_sym_use] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_POUND] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_COLON_COLON] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_DOT_DOT] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_move] = ACTIONS(1364), + [sym_integer_literal] = ACTIONS(1362), + [aux_sym_string_literal_token1] = ACTIONS(1362), + [sym_char_literal] = ACTIONS(1362), + [anon_sym_true] = ACTIONS(1364), + [anon_sym_false] = ACTIONS(1364), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1364), + [sym_super] = ACTIONS(1364), + [sym_crate] = ACTIONS(1364), + [sym_metavariable] = ACTIONS(1362), + [sym_raw_string_literal] = ACTIONS(1362), + [sym_float_literal] = ACTIONS(1362), + [sym_block_comment] = ACTIONS(3), + }, + [313] = { + [ts_builtin_sym_end] = ACTIONS(1366), + [sym_identifier] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_macro_rules_BANG] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_u8] = ACTIONS(1368), + [anon_sym_i8] = ACTIONS(1368), + [anon_sym_u16] = ACTIONS(1368), + [anon_sym_i16] = ACTIONS(1368), + [anon_sym_u32] = ACTIONS(1368), + [anon_sym_i32] = ACTIONS(1368), + [anon_sym_u64] = ACTIONS(1368), + [anon_sym_i64] = ACTIONS(1368), + [anon_sym_u128] = ACTIONS(1368), + [anon_sym_i128] = ACTIONS(1368), + [anon_sym_isize] = ACTIONS(1368), + [anon_sym_usize] = ACTIONS(1368), + [anon_sym_f32] = ACTIONS(1368), + [anon_sym_f64] = ACTIONS(1368), + [anon_sym_bool] = ACTIONS(1368), + [anon_sym_str] = ACTIONS(1368), + [anon_sym_char] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_async] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_impl] = ACTIONS(1368), + [anon_sym_let] = ACTIONS(1368), + [anon_sym_loop] = ACTIONS(1368), + [anon_sym_match] = ACTIONS(1368), + [anon_sym_mod] = ACTIONS(1368), + [anon_sym_pub] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_trait] = ACTIONS(1368), + [anon_sym_type] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_unsafe] = ACTIONS(1368), + [anon_sym_use] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_POUND] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_COLON_COLON] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_DOT_DOT] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [anon_sym_move] = ACTIONS(1368), + [sym_integer_literal] = ACTIONS(1366), + [aux_sym_string_literal_token1] = ACTIONS(1366), + [sym_char_literal] = ACTIONS(1366), + [anon_sym_true] = ACTIONS(1368), + [anon_sym_false] = ACTIONS(1368), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1368), + [sym_super] = ACTIONS(1368), + [sym_crate] = ACTIONS(1368), + [sym_metavariable] = ACTIONS(1366), + [sym_raw_string_literal] = ACTIONS(1366), + [sym_float_literal] = ACTIONS(1366), + [sym_block_comment] = ACTIONS(3), + }, + [314] = { + [ts_builtin_sym_end] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym_macro_rules_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_u8] = ACTIONS(1372), + [anon_sym_i8] = ACTIONS(1372), + [anon_sym_u16] = ACTIONS(1372), + [anon_sym_i16] = ACTIONS(1372), + [anon_sym_u32] = ACTIONS(1372), + [anon_sym_i32] = ACTIONS(1372), + [anon_sym_u64] = ACTIONS(1372), + [anon_sym_i64] = ACTIONS(1372), + [anon_sym_u128] = ACTIONS(1372), + [anon_sym_i128] = ACTIONS(1372), + [anon_sym_isize] = ACTIONS(1372), + [anon_sym_usize] = ACTIONS(1372), + [anon_sym_f32] = ACTIONS(1372), + [anon_sym_f64] = ACTIONS(1372), + [anon_sym_bool] = ACTIONS(1372), + [anon_sym_str] = ACTIONS(1372), + [anon_sym_char] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_impl] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_loop] = ACTIONS(1372), + [anon_sym_match] = ACTIONS(1372), + [anon_sym_mod] = ACTIONS(1372), + [anon_sym_pub] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_trait] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_unsafe] = ACTIONS(1372), + [anon_sym_use] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_POUND] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym_LT] = ACTIONS(1370), + [anon_sym_COLON_COLON] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_DOT_DOT] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PIPE] = ACTIONS(1370), + [anon_sym_move] = ACTIONS(1372), + [sym_integer_literal] = ACTIONS(1370), + [aux_sym_string_literal_token1] = ACTIONS(1370), + [sym_char_literal] = ACTIONS(1370), + [anon_sym_true] = ACTIONS(1372), + [anon_sym_false] = ACTIONS(1372), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1372), + [sym_super] = ACTIONS(1372), + [sym_crate] = ACTIONS(1372), + [sym_metavariable] = ACTIONS(1370), + [sym_raw_string_literal] = ACTIONS(1370), + [sym_float_literal] = ACTIONS(1370), + [sym_block_comment] = ACTIONS(3), + }, + [315] = { + [ts_builtin_sym_end] = ACTIONS(1374), + [sym_identifier] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_macro_rules_BANG] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_u8] = ACTIONS(1376), + [anon_sym_i8] = ACTIONS(1376), + [anon_sym_u16] = ACTIONS(1376), + [anon_sym_i16] = ACTIONS(1376), + [anon_sym_u32] = ACTIONS(1376), + [anon_sym_i32] = ACTIONS(1376), + [anon_sym_u64] = ACTIONS(1376), + [anon_sym_i64] = ACTIONS(1376), + [anon_sym_u128] = ACTIONS(1376), + [anon_sym_i128] = ACTIONS(1376), + [anon_sym_isize] = ACTIONS(1376), + [anon_sym_usize] = ACTIONS(1376), + [anon_sym_f32] = ACTIONS(1376), + [anon_sym_f64] = ACTIONS(1376), + [anon_sym_bool] = ACTIONS(1376), + [anon_sym_str] = ACTIONS(1376), + [anon_sym_char] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_async] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_fn] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_impl] = ACTIONS(1376), + [anon_sym_let] = ACTIONS(1376), + [anon_sym_loop] = ACTIONS(1376), + [anon_sym_match] = ACTIONS(1376), + [anon_sym_mod] = ACTIONS(1376), + [anon_sym_pub] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_trait] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_unsafe] = ACTIONS(1376), + [anon_sym_use] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_POUND] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym_LT] = ACTIONS(1374), + [anon_sym_COLON_COLON] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_DOT_DOT] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PIPE] = ACTIONS(1374), + [anon_sym_move] = ACTIONS(1376), + [sym_integer_literal] = ACTIONS(1374), + [aux_sym_string_literal_token1] = ACTIONS(1374), + [sym_char_literal] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1376), + [anon_sym_false] = ACTIONS(1376), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1376), + [sym_super] = ACTIONS(1376), + [sym_crate] = ACTIONS(1376), + [sym_metavariable] = ACTIONS(1374), + [sym_raw_string_literal] = ACTIONS(1374), + [sym_float_literal] = ACTIONS(1374), + [sym_block_comment] = ACTIONS(3), + }, + [316] = { + [ts_builtin_sym_end] = ACTIONS(1378), + [sym_identifier] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym_macro_rules_BANG] = ACTIONS(1378), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_u8] = ACTIONS(1380), + [anon_sym_i8] = ACTIONS(1380), + [anon_sym_u16] = ACTIONS(1380), + [anon_sym_i16] = ACTIONS(1380), + [anon_sym_u32] = ACTIONS(1380), + [anon_sym_i32] = ACTIONS(1380), + [anon_sym_u64] = ACTIONS(1380), + [anon_sym_i64] = ACTIONS(1380), + [anon_sym_u128] = ACTIONS(1380), + [anon_sym_i128] = ACTIONS(1380), + [anon_sym_isize] = ACTIONS(1380), + [anon_sym_usize] = ACTIONS(1380), + [anon_sym_f32] = ACTIONS(1380), + [anon_sym_f64] = ACTIONS(1380), + [anon_sym_bool] = ACTIONS(1380), + [anon_sym_str] = ACTIONS(1380), + [anon_sym_char] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_async] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_impl] = ACTIONS(1380), + [anon_sym_let] = ACTIONS(1380), + [anon_sym_loop] = ACTIONS(1380), + [anon_sym_match] = ACTIONS(1380), + [anon_sym_mod] = ACTIONS(1380), + [anon_sym_pub] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_trait] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_unsafe] = ACTIONS(1380), + [anon_sym_use] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_POUND] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym_LT] = ACTIONS(1378), + [anon_sym_COLON_COLON] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_DOT_DOT] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PIPE] = ACTIONS(1378), + [anon_sym_move] = ACTIONS(1380), + [sym_integer_literal] = ACTIONS(1378), + [aux_sym_string_literal_token1] = ACTIONS(1378), + [sym_char_literal] = ACTIONS(1378), + [anon_sym_true] = ACTIONS(1380), + [anon_sym_false] = ACTIONS(1380), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1380), + [sym_super] = ACTIONS(1380), + [sym_crate] = ACTIONS(1380), + [sym_metavariable] = ACTIONS(1378), + [sym_raw_string_literal] = ACTIONS(1378), + [sym_float_literal] = ACTIONS(1378), + [sym_block_comment] = ACTIONS(3), + }, + [317] = { + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_macro_rules_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_u8] = ACTIONS(1384), + [anon_sym_i8] = ACTIONS(1384), + [anon_sym_u16] = ACTIONS(1384), + [anon_sym_i16] = ACTIONS(1384), + [anon_sym_u32] = ACTIONS(1384), + [anon_sym_i32] = ACTIONS(1384), + [anon_sym_u64] = ACTIONS(1384), + [anon_sym_i64] = ACTIONS(1384), + [anon_sym_u128] = ACTIONS(1384), + [anon_sym_i128] = ACTIONS(1384), + [anon_sym_isize] = ACTIONS(1384), + [anon_sym_usize] = ACTIONS(1384), + [anon_sym_f32] = ACTIONS(1384), + [anon_sym_f64] = ACTIONS(1384), + [anon_sym_bool] = ACTIONS(1384), + [anon_sym_str] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_impl] = ACTIONS(1384), + [anon_sym_let] = ACTIONS(1384), + [anon_sym_loop] = ACTIONS(1384), + [anon_sym_match] = ACTIONS(1384), + [anon_sym_mod] = ACTIONS(1384), + [anon_sym_pub] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_trait] = ACTIONS(1384), + [anon_sym_type] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_unsafe] = ACTIONS(1384), + [anon_sym_use] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_POUND] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1382), + [anon_sym_COLON_COLON] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_DOT_DOT] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PIPE] = ACTIONS(1382), + [anon_sym_move] = ACTIONS(1384), + [sym_integer_literal] = ACTIONS(1382), + [aux_sym_string_literal_token1] = ACTIONS(1382), + [sym_char_literal] = ACTIONS(1382), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1384), + [sym_super] = ACTIONS(1384), + [sym_crate] = ACTIONS(1384), + [sym_metavariable] = ACTIONS(1382), + [sym_raw_string_literal] = ACTIONS(1382), + [sym_float_literal] = ACTIONS(1382), + [sym_block_comment] = ACTIONS(3), + }, + [318] = { + [ts_builtin_sym_end] = ACTIONS(1386), + [sym_identifier] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym_macro_rules_BANG] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_RBRACE] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_u8] = ACTIONS(1388), + [anon_sym_i8] = ACTIONS(1388), + [anon_sym_u16] = ACTIONS(1388), + [anon_sym_i16] = ACTIONS(1388), + [anon_sym_u32] = ACTIONS(1388), + [anon_sym_i32] = ACTIONS(1388), + [anon_sym_u64] = ACTIONS(1388), + [anon_sym_i64] = ACTIONS(1388), + [anon_sym_u128] = ACTIONS(1388), + [anon_sym_i128] = ACTIONS(1388), + [anon_sym_isize] = ACTIONS(1388), + [anon_sym_usize] = ACTIONS(1388), + [anon_sym_f32] = ACTIONS(1388), + [anon_sym_f64] = ACTIONS(1388), + [anon_sym_bool] = ACTIONS(1388), + [anon_sym_str] = ACTIONS(1388), + [anon_sym_char] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_fn] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_impl] = ACTIONS(1388), + [anon_sym_let] = ACTIONS(1388), + [anon_sym_loop] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_mod] = ACTIONS(1388), + [anon_sym_pub] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_trait] = ACTIONS(1388), + [anon_sym_type] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_unsafe] = ACTIONS(1388), + [anon_sym_use] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_POUND] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_COLON_COLON] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_DOT_DOT] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PIPE] = ACTIONS(1386), + [anon_sym_move] = ACTIONS(1388), + [sym_integer_literal] = ACTIONS(1386), + [aux_sym_string_literal_token1] = ACTIONS(1386), + [sym_char_literal] = ACTIONS(1386), + [anon_sym_true] = ACTIONS(1388), + [anon_sym_false] = ACTIONS(1388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1388), + [sym_super] = ACTIONS(1388), + [sym_crate] = ACTIONS(1388), + [sym_metavariable] = ACTIONS(1386), + [sym_raw_string_literal] = ACTIONS(1386), + [sym_float_literal] = ACTIONS(1386), + [sym_block_comment] = ACTIONS(3), + }, + [319] = { + [ts_builtin_sym_end] = ACTIONS(1390), + [sym_identifier] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym_macro_rules_BANG] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_u8] = ACTIONS(1392), + [anon_sym_i8] = ACTIONS(1392), + [anon_sym_u16] = ACTIONS(1392), + [anon_sym_i16] = ACTIONS(1392), + [anon_sym_u32] = ACTIONS(1392), + [anon_sym_i32] = ACTIONS(1392), + [anon_sym_u64] = ACTIONS(1392), + [anon_sym_i64] = ACTIONS(1392), + [anon_sym_u128] = ACTIONS(1392), + [anon_sym_i128] = ACTIONS(1392), + [anon_sym_isize] = ACTIONS(1392), + [anon_sym_usize] = ACTIONS(1392), + [anon_sym_f32] = ACTIONS(1392), + [anon_sym_f64] = ACTIONS(1392), + [anon_sym_bool] = ACTIONS(1392), + [anon_sym_str] = ACTIONS(1392), + [anon_sym_char] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_async] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_fn] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_impl] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_loop] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1392), + [anon_sym_mod] = ACTIONS(1392), + [anon_sym_pub] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_trait] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_unsafe] = ACTIONS(1392), + [anon_sym_use] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_POUND] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_COLON_COLON] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_DOT_DOT] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_move] = ACTIONS(1392), + [sym_integer_literal] = ACTIONS(1390), + [aux_sym_string_literal_token1] = ACTIONS(1390), + [sym_char_literal] = ACTIONS(1390), + [anon_sym_true] = ACTIONS(1392), + [anon_sym_false] = ACTIONS(1392), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1392), + [sym_super] = ACTIONS(1392), + [sym_crate] = ACTIONS(1392), + [sym_metavariable] = ACTIONS(1390), + [sym_raw_string_literal] = ACTIONS(1390), + [sym_float_literal] = ACTIONS(1390), + [sym_block_comment] = ACTIONS(3), + }, + [320] = { + [ts_builtin_sym_end] = ACTIONS(1394), + [sym_identifier] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym_macro_rules_BANG] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u128] = ACTIONS(1396), + [anon_sym_i128] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_str] = ACTIONS(1396), + [anon_sym_char] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_async] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_fn] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_impl] = ACTIONS(1396), + [anon_sym_let] = ACTIONS(1396), + [anon_sym_loop] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1396), + [anon_sym_mod] = ACTIONS(1396), + [anon_sym_pub] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_trait] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_unsafe] = ACTIONS(1396), + [anon_sym_use] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_POUND] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1394), + [anon_sym_COLON_COLON] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_DOT_DOT] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_move] = ACTIONS(1396), + [sym_integer_literal] = ACTIONS(1394), + [aux_sym_string_literal_token1] = ACTIONS(1394), + [sym_char_literal] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1396), + [anon_sym_false] = ACTIONS(1396), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1396), + [sym_super] = ACTIONS(1396), + [sym_crate] = ACTIONS(1396), + [sym_metavariable] = ACTIONS(1394), + [sym_raw_string_literal] = ACTIONS(1394), + [sym_float_literal] = ACTIONS(1394), + [sym_block_comment] = ACTIONS(3), + }, + [321] = { + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_macro_rules_BANG] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_u8] = ACTIONS(1400), + [anon_sym_i8] = ACTIONS(1400), + [anon_sym_u16] = ACTIONS(1400), + [anon_sym_i16] = ACTIONS(1400), + [anon_sym_u32] = ACTIONS(1400), + [anon_sym_i32] = ACTIONS(1400), + [anon_sym_u64] = ACTIONS(1400), + [anon_sym_i64] = ACTIONS(1400), + [anon_sym_u128] = ACTIONS(1400), + [anon_sym_i128] = ACTIONS(1400), + [anon_sym_isize] = ACTIONS(1400), + [anon_sym_usize] = ACTIONS(1400), + [anon_sym_f32] = ACTIONS(1400), + [anon_sym_f64] = ACTIONS(1400), + [anon_sym_bool] = ACTIONS(1400), + [anon_sym_str] = ACTIONS(1400), + [anon_sym_char] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_fn] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_impl] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_loop] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1400), + [anon_sym_mod] = ACTIONS(1400), + [anon_sym_pub] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_trait] = ACTIONS(1400), + [anon_sym_type] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_unsafe] = ACTIONS(1400), + [anon_sym_use] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_POUND] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_COLON_COLON] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_DOT_DOT] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1398), + [anon_sym_move] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1398), + [aux_sym_string_literal_token1] = ACTIONS(1398), + [sym_char_literal] = ACTIONS(1398), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1400), + [sym_super] = ACTIONS(1400), + [sym_crate] = ACTIONS(1400), + [sym_metavariable] = ACTIONS(1398), + [sym_raw_string_literal] = ACTIONS(1398), + [sym_float_literal] = ACTIONS(1398), + [sym_block_comment] = ACTIONS(3), + }, + [322] = { + [ts_builtin_sym_end] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_macro_rules_BANG] = ACTIONS(1402), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_u8] = ACTIONS(1404), + [anon_sym_i8] = ACTIONS(1404), + [anon_sym_u16] = ACTIONS(1404), + [anon_sym_i16] = ACTIONS(1404), + [anon_sym_u32] = ACTIONS(1404), + [anon_sym_i32] = ACTIONS(1404), + [anon_sym_u64] = ACTIONS(1404), + [anon_sym_i64] = ACTIONS(1404), + [anon_sym_u128] = ACTIONS(1404), + [anon_sym_i128] = ACTIONS(1404), + [anon_sym_isize] = ACTIONS(1404), + [anon_sym_usize] = ACTIONS(1404), + [anon_sym_f32] = ACTIONS(1404), + [anon_sym_f64] = ACTIONS(1404), + [anon_sym_bool] = ACTIONS(1404), + [anon_sym_str] = ACTIONS(1404), + [anon_sym_char] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_async] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_fn] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_impl] = ACTIONS(1404), + [anon_sym_let] = ACTIONS(1404), + [anon_sym_loop] = ACTIONS(1404), + [anon_sym_match] = ACTIONS(1404), + [anon_sym_mod] = ACTIONS(1404), + [anon_sym_pub] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_trait] = ACTIONS(1404), + [anon_sym_type] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_unsafe] = ACTIONS(1404), + [anon_sym_use] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_POUND] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym_LT] = ACTIONS(1402), + [anon_sym_COLON_COLON] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_DOT_DOT] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1402), + [anon_sym_move] = ACTIONS(1404), + [sym_integer_literal] = ACTIONS(1402), + [aux_sym_string_literal_token1] = ACTIONS(1402), + [sym_char_literal] = ACTIONS(1402), + [anon_sym_true] = ACTIONS(1404), + [anon_sym_false] = ACTIONS(1404), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1404), + [sym_super] = ACTIONS(1404), + [sym_crate] = ACTIONS(1404), + [sym_metavariable] = ACTIONS(1402), + [sym_raw_string_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1402), + [sym_block_comment] = ACTIONS(3), + }, + [323] = { + [ts_builtin_sym_end] = ACTIONS(1406), + [sym_identifier] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym_macro_rules_BANG] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_u8] = ACTIONS(1408), + [anon_sym_i8] = ACTIONS(1408), + [anon_sym_u16] = ACTIONS(1408), + [anon_sym_i16] = ACTIONS(1408), + [anon_sym_u32] = ACTIONS(1408), + [anon_sym_i32] = ACTIONS(1408), + [anon_sym_u64] = ACTIONS(1408), + [anon_sym_i64] = ACTIONS(1408), + [anon_sym_u128] = ACTIONS(1408), + [anon_sym_i128] = ACTIONS(1408), + [anon_sym_isize] = ACTIONS(1408), + [anon_sym_usize] = ACTIONS(1408), + [anon_sym_f32] = ACTIONS(1408), + [anon_sym_f64] = ACTIONS(1408), + [anon_sym_bool] = ACTIONS(1408), + [anon_sym_str] = ACTIONS(1408), + [anon_sym_char] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_impl] = ACTIONS(1408), + [anon_sym_let] = ACTIONS(1408), + [anon_sym_loop] = ACTIONS(1408), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_mod] = ACTIONS(1408), + [anon_sym_pub] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_trait] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_unsafe] = ACTIONS(1408), + [anon_sym_use] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_POUND] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1408), + [anon_sym_LT] = ACTIONS(1406), + [anon_sym_COLON_COLON] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_DOT_DOT] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PIPE] = ACTIONS(1406), + [anon_sym_move] = ACTIONS(1408), + [sym_integer_literal] = ACTIONS(1406), + [aux_sym_string_literal_token1] = ACTIONS(1406), + [sym_char_literal] = ACTIONS(1406), + [anon_sym_true] = ACTIONS(1408), + [anon_sym_false] = ACTIONS(1408), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1408), + [sym_super] = ACTIONS(1408), + [sym_crate] = ACTIONS(1408), + [sym_metavariable] = ACTIONS(1406), + [sym_raw_string_literal] = ACTIONS(1406), + [sym_float_literal] = ACTIONS(1406), + [sym_block_comment] = ACTIONS(3), + }, + [324] = { + [ts_builtin_sym_end] = ACTIONS(1410), + [sym_identifier] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_macro_rules_BANG] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_u8] = ACTIONS(1412), + [anon_sym_i8] = ACTIONS(1412), + [anon_sym_u16] = ACTIONS(1412), + [anon_sym_i16] = ACTIONS(1412), + [anon_sym_u32] = ACTIONS(1412), + [anon_sym_i32] = ACTIONS(1412), + [anon_sym_u64] = ACTIONS(1412), + [anon_sym_i64] = ACTIONS(1412), + [anon_sym_u128] = ACTIONS(1412), + [anon_sym_i128] = ACTIONS(1412), + [anon_sym_isize] = ACTIONS(1412), + [anon_sym_usize] = ACTIONS(1412), + [anon_sym_f32] = ACTIONS(1412), + [anon_sym_f64] = ACTIONS(1412), + [anon_sym_bool] = ACTIONS(1412), + [anon_sym_str] = ACTIONS(1412), + [anon_sym_char] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_async] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_fn] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_impl] = ACTIONS(1412), + [anon_sym_let] = ACTIONS(1412), + [anon_sym_loop] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1412), + [anon_sym_mod] = ACTIONS(1412), + [anon_sym_pub] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_trait] = ACTIONS(1412), + [anon_sym_type] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_POUND] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_COLON_COLON] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_DOT_DOT] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_move] = ACTIONS(1412), + [sym_integer_literal] = ACTIONS(1410), + [aux_sym_string_literal_token1] = ACTIONS(1410), + [sym_char_literal] = ACTIONS(1410), + [anon_sym_true] = ACTIONS(1412), + [anon_sym_false] = ACTIONS(1412), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1412), + [sym_super] = ACTIONS(1412), + [sym_crate] = ACTIONS(1412), + [sym_metavariable] = ACTIONS(1410), + [sym_raw_string_literal] = ACTIONS(1410), + [sym_float_literal] = ACTIONS(1410), + [sym_block_comment] = ACTIONS(3), + }, + [325] = { + [ts_builtin_sym_end] = ACTIONS(1414), + [sym_identifier] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_macro_rules_BANG] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_u8] = ACTIONS(1416), + [anon_sym_i8] = ACTIONS(1416), + [anon_sym_u16] = ACTIONS(1416), + [anon_sym_i16] = ACTIONS(1416), + [anon_sym_u32] = ACTIONS(1416), + [anon_sym_i32] = ACTIONS(1416), + [anon_sym_u64] = ACTIONS(1416), + [anon_sym_i64] = ACTIONS(1416), + [anon_sym_u128] = ACTIONS(1416), + [anon_sym_i128] = ACTIONS(1416), + [anon_sym_isize] = ACTIONS(1416), + [anon_sym_usize] = ACTIONS(1416), + [anon_sym_f32] = ACTIONS(1416), + [anon_sym_f64] = ACTIONS(1416), + [anon_sym_bool] = ACTIONS(1416), + [anon_sym_str] = ACTIONS(1416), + [anon_sym_char] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_async] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_fn] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_impl] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), + [anon_sym_loop] = ACTIONS(1416), + [anon_sym_match] = ACTIONS(1416), + [anon_sym_mod] = ACTIONS(1416), + [anon_sym_pub] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_trait] = ACTIONS(1416), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_unsafe] = ACTIONS(1416), + [anon_sym_use] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_POUND] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1414), + [anon_sym_COLON_COLON] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_move] = ACTIONS(1416), + [sym_integer_literal] = ACTIONS(1414), + [aux_sym_string_literal_token1] = ACTIONS(1414), + [sym_char_literal] = ACTIONS(1414), + [anon_sym_true] = ACTIONS(1416), + [anon_sym_false] = ACTIONS(1416), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1416), + [sym_super] = ACTIONS(1416), + [sym_crate] = ACTIONS(1416), + [sym_metavariable] = ACTIONS(1414), + [sym_raw_string_literal] = ACTIONS(1414), + [sym_float_literal] = ACTIONS(1414), + [sym_block_comment] = ACTIONS(3), + }, + [326] = { + [ts_builtin_sym_end] = ACTIONS(1418), + [sym_identifier] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_macro_rules_BANG] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_u8] = ACTIONS(1420), + [anon_sym_i8] = ACTIONS(1420), + [anon_sym_u16] = ACTIONS(1420), + [anon_sym_i16] = ACTIONS(1420), + [anon_sym_u32] = ACTIONS(1420), + [anon_sym_i32] = ACTIONS(1420), + [anon_sym_u64] = ACTIONS(1420), + [anon_sym_i64] = ACTIONS(1420), + [anon_sym_u128] = ACTIONS(1420), + [anon_sym_i128] = ACTIONS(1420), + [anon_sym_isize] = ACTIONS(1420), + [anon_sym_usize] = ACTIONS(1420), + [anon_sym_f32] = ACTIONS(1420), + [anon_sym_f64] = ACTIONS(1420), + [anon_sym_bool] = ACTIONS(1420), + [anon_sym_str] = ACTIONS(1420), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_async] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_fn] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_impl] = ACTIONS(1420), + [anon_sym_let] = ACTIONS(1420), + [anon_sym_loop] = ACTIONS(1420), + [anon_sym_match] = ACTIONS(1420), + [anon_sym_mod] = ACTIONS(1420), + [anon_sym_pub] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_trait] = ACTIONS(1420), + [anon_sym_type] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_unsafe] = ACTIONS(1420), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym_LT] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_DOT_DOT] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PIPE] = ACTIONS(1418), + [anon_sym_move] = ACTIONS(1420), + [sym_integer_literal] = ACTIONS(1418), + [aux_sym_string_literal_token1] = ACTIONS(1418), + [sym_char_literal] = ACTIONS(1418), + [anon_sym_true] = ACTIONS(1420), + [anon_sym_false] = ACTIONS(1420), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1420), + [sym_super] = ACTIONS(1420), + [sym_crate] = ACTIONS(1420), + [sym_metavariable] = ACTIONS(1418), + [sym_raw_string_literal] = ACTIONS(1418), + [sym_float_literal] = ACTIONS(1418), + [sym_block_comment] = ACTIONS(3), + }, + [327] = { + [ts_builtin_sym_end] = ACTIONS(1422), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym_macro_rules_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_u8] = ACTIONS(1424), + [anon_sym_i8] = ACTIONS(1424), + [anon_sym_u16] = ACTIONS(1424), + [anon_sym_i16] = ACTIONS(1424), + [anon_sym_u32] = ACTIONS(1424), + [anon_sym_i32] = ACTIONS(1424), + [anon_sym_u64] = ACTIONS(1424), + [anon_sym_i64] = ACTIONS(1424), + [anon_sym_u128] = ACTIONS(1424), + [anon_sym_i128] = ACTIONS(1424), + [anon_sym_isize] = ACTIONS(1424), + [anon_sym_usize] = ACTIONS(1424), + [anon_sym_f32] = ACTIONS(1424), + [anon_sym_f64] = ACTIONS(1424), + [anon_sym_bool] = ACTIONS(1424), + [anon_sym_str] = ACTIONS(1424), + [anon_sym_char] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_fn] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_impl] = ACTIONS(1424), + [anon_sym_let] = ACTIONS(1424), + [anon_sym_loop] = ACTIONS(1424), + [anon_sym_match] = ACTIONS(1424), + [anon_sym_mod] = ACTIONS(1424), + [anon_sym_pub] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_trait] = ACTIONS(1424), + [anon_sym_type] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_unsafe] = ACTIONS(1424), + [anon_sym_use] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_COLON_COLON] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PIPE] = ACTIONS(1422), + [anon_sym_move] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1422), + [aux_sym_string_literal_token1] = ACTIONS(1422), + [sym_char_literal] = ACTIONS(1422), + [anon_sym_true] = ACTIONS(1424), + [anon_sym_false] = ACTIONS(1424), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1424), + [sym_super] = ACTIONS(1424), + [sym_crate] = ACTIONS(1424), + [sym_metavariable] = ACTIONS(1422), + [sym_raw_string_literal] = ACTIONS(1422), + [sym_float_literal] = ACTIONS(1422), + [sym_block_comment] = ACTIONS(3), + }, + [328] = { + [ts_builtin_sym_end] = ACTIONS(1426), + [sym_identifier] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_macro_rules_BANG] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_u8] = ACTIONS(1428), + [anon_sym_i8] = ACTIONS(1428), + [anon_sym_u16] = ACTIONS(1428), + [anon_sym_i16] = ACTIONS(1428), + [anon_sym_u32] = ACTIONS(1428), + [anon_sym_i32] = ACTIONS(1428), + [anon_sym_u64] = ACTIONS(1428), + [anon_sym_i64] = ACTIONS(1428), + [anon_sym_u128] = ACTIONS(1428), + [anon_sym_i128] = ACTIONS(1428), + [anon_sym_isize] = ACTIONS(1428), + [anon_sym_usize] = ACTIONS(1428), + [anon_sym_f32] = ACTIONS(1428), + [anon_sym_f64] = ACTIONS(1428), + [anon_sym_bool] = ACTIONS(1428), + [anon_sym_str] = ACTIONS(1428), + [anon_sym_char] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_async] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_fn] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_impl] = ACTIONS(1428), + [anon_sym_let] = ACTIONS(1428), + [anon_sym_loop] = ACTIONS(1428), + [anon_sym_match] = ACTIONS(1428), + [anon_sym_mod] = ACTIONS(1428), + [anon_sym_pub] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_trait] = ACTIONS(1428), + [anon_sym_type] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_unsafe] = ACTIONS(1428), + [anon_sym_use] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_POUND] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_COLON_COLON] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_DOT_DOT] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_move] = ACTIONS(1428), + [sym_integer_literal] = ACTIONS(1426), + [aux_sym_string_literal_token1] = ACTIONS(1426), + [sym_char_literal] = ACTIONS(1426), + [anon_sym_true] = ACTIONS(1428), + [anon_sym_false] = ACTIONS(1428), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1428), + [sym_super] = ACTIONS(1428), + [sym_crate] = ACTIONS(1428), + [sym_metavariable] = ACTIONS(1426), + [sym_raw_string_literal] = ACTIONS(1426), + [sym_float_literal] = ACTIONS(1426), + [sym_block_comment] = ACTIONS(3), + }, + [329] = { + [sym_attribute_item] = STATE(494), + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_macro_invocation] = STATE(2288), + [sym_scoped_identifier] = STATE(1493), + [sym_scoped_type_identifier] = STATE(1824), + [sym_match_arm] = STATE(461), + [sym_last_match_arm] = STATE(2397), + [sym_match_pattern] = STATE(2285), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1839), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_enum_variant_list_repeat1] = STATE(494), + [aux_sym_match_block_repeat1] = STATE(461), + [sym_identifier] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [330] = { + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_macro_rules_BANG] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u128] = ACTIONS(1432), + [anon_sym_i128] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_impl] = ACTIONS(1432), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_loop] = ACTIONS(1432), + [anon_sym_match] = ACTIONS(1432), + [anon_sym_mod] = ACTIONS(1432), + [anon_sym_pub] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_trait] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_unsafe] = ACTIONS(1432), + [anon_sym_use] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1430), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_DOT_DOT] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1430), + [anon_sym_move] = ACTIONS(1432), + [sym_integer_literal] = ACTIONS(1430), + [aux_sym_string_literal_token1] = ACTIONS(1430), + [sym_char_literal] = ACTIONS(1430), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1432), + [sym_super] = ACTIONS(1432), + [sym_crate] = ACTIONS(1432), + [sym_metavariable] = ACTIONS(1430), + [sym_raw_string_literal] = ACTIONS(1430), + [sym_float_literal] = ACTIONS(1430), + [sym_block_comment] = ACTIONS(3), + }, + [331] = { + [ts_builtin_sym_end] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_macro_rules_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_u8] = ACTIONS(1436), + [anon_sym_i8] = ACTIONS(1436), + [anon_sym_u16] = ACTIONS(1436), + [anon_sym_i16] = ACTIONS(1436), + [anon_sym_u32] = ACTIONS(1436), + [anon_sym_i32] = ACTIONS(1436), + [anon_sym_u64] = ACTIONS(1436), + [anon_sym_i64] = ACTIONS(1436), + [anon_sym_u128] = ACTIONS(1436), + [anon_sym_i128] = ACTIONS(1436), + [anon_sym_isize] = ACTIONS(1436), + [anon_sym_usize] = ACTIONS(1436), + [anon_sym_f32] = ACTIONS(1436), + [anon_sym_f64] = ACTIONS(1436), + [anon_sym_bool] = ACTIONS(1436), + [anon_sym_str] = ACTIONS(1436), + [anon_sym_char] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_async] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_impl] = ACTIONS(1436), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_loop] = ACTIONS(1436), + [anon_sym_match] = ACTIONS(1436), + [anon_sym_mod] = ACTIONS(1436), + [anon_sym_pub] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_trait] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1436), + [anon_sym_use] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_COLON_COLON] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_DOT_DOT] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_move] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1434), + [aux_sym_string_literal_token1] = ACTIONS(1434), + [sym_char_literal] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1436), + [sym_super] = ACTIONS(1436), + [sym_crate] = ACTIONS(1436), + [sym_metavariable] = ACTIONS(1434), + [sym_raw_string_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1434), + [sym_block_comment] = ACTIONS(3), + }, + [332] = { + [sym__token_pattern] = STATE(239), + [sym_token_tree_pattern] = STATE(239), + [sym_token_binding_pattern] = STATE(239), + [sym_token_repetition_pattern] = STATE(239), + [sym__literal] = STATE(239), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_pattern_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_RBRACK] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_u8] = ACTIONS(1270), + [anon_sym_i8] = ACTIONS(1270), + [anon_sym_u16] = ACTIONS(1270), + [anon_sym_i16] = ACTIONS(1270), + [anon_sym_u32] = ACTIONS(1270), + [anon_sym_i32] = ACTIONS(1270), + [anon_sym_u64] = ACTIONS(1270), + [anon_sym_i64] = ACTIONS(1270), + [anon_sym_u128] = ACTIONS(1270), + [anon_sym_i128] = ACTIONS(1270), + [anon_sym_isize] = ACTIONS(1270), + [anon_sym_usize] = ACTIONS(1270), + [anon_sym_f32] = ACTIONS(1270), + [anon_sym_f64] = ACTIONS(1270), + [anon_sym_bool] = ACTIONS(1270), + [anon_sym_str] = ACTIONS(1270), + [anon_sym_char] = ACTIONS(1270), + [aux_sym__non_special_token_token1] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_as] = ACTIONS(1270), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_fn] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_impl] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_pub] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_trait] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_where] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [sym_mutable_specifier] = ACTIONS(1270), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(1270), + [sym_super] = ACTIONS(1270), + [sym_crate] = ACTIONS(1270), + [sym_metavariable] = ACTIONS(1116), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [333] = { + [sym__token_pattern] = STATE(239), + [sym_token_tree_pattern] = STATE(239), + [sym_token_binding_pattern] = STATE(239), + [sym_token_repetition_pattern] = STATE(239), + [sym__literal] = STATE(239), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_pattern_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_u8] = ACTIONS(1270), + [anon_sym_i8] = ACTIONS(1270), + [anon_sym_u16] = ACTIONS(1270), + [anon_sym_i16] = ACTIONS(1270), + [anon_sym_u32] = ACTIONS(1270), + [anon_sym_i32] = ACTIONS(1270), + [anon_sym_u64] = ACTIONS(1270), + [anon_sym_i64] = ACTIONS(1270), + [anon_sym_u128] = ACTIONS(1270), + [anon_sym_i128] = ACTIONS(1270), + [anon_sym_isize] = ACTIONS(1270), + [anon_sym_usize] = ACTIONS(1270), + [anon_sym_f32] = ACTIONS(1270), + [anon_sym_f64] = ACTIONS(1270), + [anon_sym_bool] = ACTIONS(1270), + [anon_sym_str] = ACTIONS(1270), + [anon_sym_char] = ACTIONS(1270), + [aux_sym__non_special_token_token1] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_as] = ACTIONS(1270), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_fn] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_impl] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_pub] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_trait] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_where] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [sym_mutable_specifier] = ACTIONS(1270), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(1270), + [sym_super] = ACTIONS(1270), + [sym_crate] = ACTIONS(1270), + [sym_metavariable] = ACTIONS(1116), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [334] = { + [sym__token_pattern] = STATE(239), + [sym_token_tree_pattern] = STATE(239), + [sym_token_binding_pattern] = STATE(239), + [sym_token_repetition_pattern] = STATE(239), + [sym__literal] = STATE(239), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_pattern_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_u8] = ACTIONS(1270), + [anon_sym_i8] = ACTIONS(1270), + [anon_sym_u16] = ACTIONS(1270), + [anon_sym_i16] = ACTIONS(1270), + [anon_sym_u32] = ACTIONS(1270), + [anon_sym_i32] = ACTIONS(1270), + [anon_sym_u64] = ACTIONS(1270), + [anon_sym_i64] = ACTIONS(1270), + [anon_sym_u128] = ACTIONS(1270), + [anon_sym_i128] = ACTIONS(1270), + [anon_sym_isize] = ACTIONS(1270), + [anon_sym_usize] = ACTIONS(1270), + [anon_sym_f32] = ACTIONS(1270), + [anon_sym_f64] = ACTIONS(1270), + [anon_sym_bool] = ACTIONS(1270), + [anon_sym_str] = ACTIONS(1270), + [anon_sym_char] = ACTIONS(1270), + [aux_sym__non_special_token_token1] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_as] = ACTIONS(1270), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_fn] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_impl] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_pub] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_trait] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_where] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [sym_mutable_specifier] = ACTIONS(1270), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(1270), + [sym_super] = ACTIONS(1270), + [sym_crate] = ACTIONS(1270), + [sym_metavariable] = ACTIONS(1116), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [335] = { + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym_macro_rules_BANG] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_u8] = ACTIONS(1442), + [anon_sym_i8] = ACTIONS(1442), + [anon_sym_u16] = ACTIONS(1442), + [anon_sym_i16] = ACTIONS(1442), + [anon_sym_u32] = ACTIONS(1442), + [anon_sym_i32] = ACTIONS(1442), + [anon_sym_u64] = ACTIONS(1442), + [anon_sym_i64] = ACTIONS(1442), + [anon_sym_u128] = ACTIONS(1442), + [anon_sym_i128] = ACTIONS(1442), + [anon_sym_isize] = ACTIONS(1442), + [anon_sym_usize] = ACTIONS(1442), + [anon_sym_f32] = ACTIONS(1442), + [anon_sym_f64] = ACTIONS(1442), + [anon_sym_bool] = ACTIONS(1442), + [anon_sym_str] = ACTIONS(1442), + [anon_sym_char] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_async] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_impl] = ACTIONS(1442), + [anon_sym_let] = ACTIONS(1442), + [anon_sym_loop] = ACTIONS(1442), + [anon_sym_match] = ACTIONS(1442), + [anon_sym_mod] = ACTIONS(1442), + [anon_sym_pub] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_trait] = ACTIONS(1442), + [anon_sym_type] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_unsafe] = ACTIONS(1442), + [anon_sym_use] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1440), + [anon_sym_COLON_COLON] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_DOT_DOT] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PIPE] = ACTIONS(1440), + [anon_sym_move] = ACTIONS(1442), + [sym_integer_literal] = ACTIONS(1440), + [aux_sym_string_literal_token1] = ACTIONS(1440), + [sym_char_literal] = ACTIONS(1440), + [anon_sym_true] = ACTIONS(1442), + [anon_sym_false] = ACTIONS(1442), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1442), + [sym_super] = ACTIONS(1442), + [sym_crate] = ACTIONS(1442), + [sym_metavariable] = ACTIONS(1440), + [sym_raw_string_literal] = ACTIONS(1440), + [sym_float_literal] = ACTIONS(1440), + [sym_block_comment] = ACTIONS(3), + }, + [336] = { + [ts_builtin_sym_end] = ACTIONS(1444), + [sym_identifier] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_macro_rules_BANG] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_u8] = ACTIONS(1446), + [anon_sym_i8] = ACTIONS(1446), + [anon_sym_u16] = ACTIONS(1446), + [anon_sym_i16] = ACTIONS(1446), + [anon_sym_u32] = ACTIONS(1446), + [anon_sym_i32] = ACTIONS(1446), + [anon_sym_u64] = ACTIONS(1446), + [anon_sym_i64] = ACTIONS(1446), + [anon_sym_u128] = ACTIONS(1446), + [anon_sym_i128] = ACTIONS(1446), + [anon_sym_isize] = ACTIONS(1446), + [anon_sym_usize] = ACTIONS(1446), + [anon_sym_f32] = ACTIONS(1446), + [anon_sym_f64] = ACTIONS(1446), + [anon_sym_bool] = ACTIONS(1446), + [anon_sym_str] = ACTIONS(1446), + [anon_sym_char] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_async] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_impl] = ACTIONS(1446), + [anon_sym_let] = ACTIONS(1446), + [anon_sym_loop] = ACTIONS(1446), + [anon_sym_match] = ACTIONS(1446), + [anon_sym_mod] = ACTIONS(1446), + [anon_sym_pub] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_trait] = ACTIONS(1446), + [anon_sym_type] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_unsafe] = ACTIONS(1446), + [anon_sym_use] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_COLON_COLON] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_DOT_DOT] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_move] = ACTIONS(1446), + [sym_integer_literal] = ACTIONS(1444), + [aux_sym_string_literal_token1] = ACTIONS(1444), + [sym_char_literal] = ACTIONS(1444), + [anon_sym_true] = ACTIONS(1446), + [anon_sym_false] = ACTIONS(1446), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1446), + [sym_super] = ACTIONS(1446), + [sym_crate] = ACTIONS(1446), + [sym_metavariable] = ACTIONS(1444), + [sym_raw_string_literal] = ACTIONS(1444), + [sym_float_literal] = ACTIONS(1444), + [sym_block_comment] = ACTIONS(3), + }, + [337] = { + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_identifier] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_macro_rules_BANG] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_u8] = ACTIONS(1450), + [anon_sym_i8] = ACTIONS(1450), + [anon_sym_u16] = ACTIONS(1450), + [anon_sym_i16] = ACTIONS(1450), + [anon_sym_u32] = ACTIONS(1450), + [anon_sym_i32] = ACTIONS(1450), + [anon_sym_u64] = ACTIONS(1450), + [anon_sym_i64] = ACTIONS(1450), + [anon_sym_u128] = ACTIONS(1450), + [anon_sym_i128] = ACTIONS(1450), + [anon_sym_isize] = ACTIONS(1450), + [anon_sym_usize] = ACTIONS(1450), + [anon_sym_f32] = ACTIONS(1450), + [anon_sym_f64] = ACTIONS(1450), + [anon_sym_bool] = ACTIONS(1450), + [anon_sym_str] = ACTIONS(1450), + [anon_sym_char] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_async] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_impl] = ACTIONS(1450), + [anon_sym_let] = ACTIONS(1450), + [anon_sym_loop] = ACTIONS(1450), + [anon_sym_match] = ACTIONS(1450), + [anon_sym_mod] = ACTIONS(1450), + [anon_sym_pub] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_trait] = ACTIONS(1450), + [anon_sym_type] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_unsafe] = ACTIONS(1450), + [anon_sym_use] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_COLON_COLON] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_move] = ACTIONS(1450), + [sym_integer_literal] = ACTIONS(1448), + [aux_sym_string_literal_token1] = ACTIONS(1448), + [sym_char_literal] = ACTIONS(1448), + [anon_sym_true] = ACTIONS(1450), + [anon_sym_false] = ACTIONS(1450), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1450), + [sym_super] = ACTIONS(1450), + [sym_crate] = ACTIONS(1450), + [sym_metavariable] = ACTIONS(1448), + [sym_raw_string_literal] = ACTIONS(1448), + [sym_float_literal] = ACTIONS(1448), + [sym_block_comment] = ACTIONS(3), + }, + [338] = { + [ts_builtin_sym_end] = ACTIONS(1452), + [sym_identifier] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_macro_rules_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_u8] = ACTIONS(1454), + [anon_sym_i8] = ACTIONS(1454), + [anon_sym_u16] = ACTIONS(1454), + [anon_sym_i16] = ACTIONS(1454), + [anon_sym_u32] = ACTIONS(1454), + [anon_sym_i32] = ACTIONS(1454), + [anon_sym_u64] = ACTIONS(1454), + [anon_sym_i64] = ACTIONS(1454), + [anon_sym_u128] = ACTIONS(1454), + [anon_sym_i128] = ACTIONS(1454), + [anon_sym_isize] = ACTIONS(1454), + [anon_sym_usize] = ACTIONS(1454), + [anon_sym_f32] = ACTIONS(1454), + [anon_sym_f64] = ACTIONS(1454), + [anon_sym_bool] = ACTIONS(1454), + [anon_sym_str] = ACTIONS(1454), + [anon_sym_char] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_async] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_fn] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_impl] = ACTIONS(1454), + [anon_sym_let] = ACTIONS(1454), + [anon_sym_loop] = ACTIONS(1454), + [anon_sym_match] = ACTIONS(1454), + [anon_sym_mod] = ACTIONS(1454), + [anon_sym_pub] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_trait] = ACTIONS(1454), + [anon_sym_type] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_unsafe] = ACTIONS(1454), + [anon_sym_use] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_POUND] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1452), + [anon_sym_COLON_COLON] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_DOT_DOT] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_move] = ACTIONS(1454), + [sym_integer_literal] = ACTIONS(1452), + [aux_sym_string_literal_token1] = ACTIONS(1452), + [sym_char_literal] = ACTIONS(1452), + [anon_sym_true] = ACTIONS(1454), + [anon_sym_false] = ACTIONS(1454), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1454), + [sym_super] = ACTIONS(1454), + [sym_crate] = ACTIONS(1454), + [sym_metavariable] = ACTIONS(1452), + [sym_raw_string_literal] = ACTIONS(1452), + [sym_float_literal] = ACTIONS(1452), + [sym_block_comment] = ACTIONS(3), + }, + [339] = { + [ts_builtin_sym_end] = ACTIONS(1456), + [sym_identifier] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_macro_rules_BANG] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_u8] = ACTIONS(1458), + [anon_sym_i8] = ACTIONS(1458), + [anon_sym_u16] = ACTIONS(1458), + [anon_sym_i16] = ACTIONS(1458), + [anon_sym_u32] = ACTIONS(1458), + [anon_sym_i32] = ACTIONS(1458), + [anon_sym_u64] = ACTIONS(1458), + [anon_sym_i64] = ACTIONS(1458), + [anon_sym_u128] = ACTIONS(1458), + [anon_sym_i128] = ACTIONS(1458), + [anon_sym_isize] = ACTIONS(1458), + [anon_sym_usize] = ACTIONS(1458), + [anon_sym_f32] = ACTIONS(1458), + [anon_sym_f64] = ACTIONS(1458), + [anon_sym_bool] = ACTIONS(1458), + [anon_sym_str] = ACTIONS(1458), + [anon_sym_char] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_async] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_fn] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_impl] = ACTIONS(1458), + [anon_sym_let] = ACTIONS(1458), + [anon_sym_loop] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1458), + [anon_sym_mod] = ACTIONS(1458), + [anon_sym_pub] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_trait] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_unsafe] = ACTIONS(1458), + [anon_sym_use] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_POUND] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_COLON_COLON] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_DOT_DOT] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1456), + [anon_sym_move] = ACTIONS(1458), + [sym_integer_literal] = ACTIONS(1456), + [aux_sym_string_literal_token1] = ACTIONS(1456), + [sym_char_literal] = ACTIONS(1456), + [anon_sym_true] = ACTIONS(1458), + [anon_sym_false] = ACTIONS(1458), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1458), + [sym_super] = ACTIONS(1458), + [sym_crate] = ACTIONS(1458), + [sym_metavariable] = ACTIONS(1456), + [sym_raw_string_literal] = ACTIONS(1456), + [sym_float_literal] = ACTIONS(1456), + [sym_block_comment] = ACTIONS(3), + }, + [340] = { + [ts_builtin_sym_end] = ACTIONS(1460), + [sym_identifier] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym_macro_rules_BANG] = ACTIONS(1460), + [anon_sym_LPAREN] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_LBRACK] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_u8] = ACTIONS(1462), + [anon_sym_i8] = ACTIONS(1462), + [anon_sym_u16] = ACTIONS(1462), + [anon_sym_i16] = ACTIONS(1462), + [anon_sym_u32] = ACTIONS(1462), + [anon_sym_i32] = ACTIONS(1462), + [anon_sym_u64] = ACTIONS(1462), + [anon_sym_i64] = ACTIONS(1462), + [anon_sym_u128] = ACTIONS(1462), + [anon_sym_i128] = ACTIONS(1462), + [anon_sym_isize] = ACTIONS(1462), + [anon_sym_usize] = ACTIONS(1462), + [anon_sym_f32] = ACTIONS(1462), + [anon_sym_f64] = ACTIONS(1462), + [anon_sym_bool] = ACTIONS(1462), + [anon_sym_str] = ACTIONS(1462), + [anon_sym_char] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_fn] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_impl] = ACTIONS(1462), + [anon_sym_let] = ACTIONS(1462), + [anon_sym_loop] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1462), + [anon_sym_mod] = ACTIONS(1462), + [anon_sym_pub] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_trait] = ACTIONS(1462), + [anon_sym_type] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_unsafe] = ACTIONS(1462), + [anon_sym_use] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_POUND] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_DOT_DOT] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_move] = ACTIONS(1462), + [sym_integer_literal] = ACTIONS(1460), + [aux_sym_string_literal_token1] = ACTIONS(1460), + [sym_char_literal] = ACTIONS(1460), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1462), + [sym_super] = ACTIONS(1462), + [sym_crate] = ACTIONS(1462), + [sym_metavariable] = ACTIONS(1460), + [sym_raw_string_literal] = ACTIONS(1460), + [sym_float_literal] = ACTIONS(1460), + [sym_block_comment] = ACTIONS(3), + }, + [341] = { + [ts_builtin_sym_end] = ACTIONS(1464), + [sym_identifier] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_macro_rules_BANG] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_u8] = ACTIONS(1466), + [anon_sym_i8] = ACTIONS(1466), + [anon_sym_u16] = ACTIONS(1466), + [anon_sym_i16] = ACTIONS(1466), + [anon_sym_u32] = ACTIONS(1466), + [anon_sym_i32] = ACTIONS(1466), + [anon_sym_u64] = ACTIONS(1466), + [anon_sym_i64] = ACTIONS(1466), + [anon_sym_u128] = ACTIONS(1466), + [anon_sym_i128] = ACTIONS(1466), + [anon_sym_isize] = ACTIONS(1466), + [anon_sym_usize] = ACTIONS(1466), + [anon_sym_f32] = ACTIONS(1466), + [anon_sym_f64] = ACTIONS(1466), + [anon_sym_bool] = ACTIONS(1466), + [anon_sym_str] = ACTIONS(1466), + [anon_sym_char] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_async] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_fn] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_impl] = ACTIONS(1466), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_loop] = ACTIONS(1466), + [anon_sym_match] = ACTIONS(1466), + [anon_sym_mod] = ACTIONS(1466), + [anon_sym_pub] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_trait] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_unsafe] = ACTIONS(1466), + [anon_sym_use] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1464), + [anon_sym_COLON_COLON] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_DOT_DOT] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(1464), + [anon_sym_move] = ACTIONS(1466), + [sym_integer_literal] = ACTIONS(1464), + [aux_sym_string_literal_token1] = ACTIONS(1464), + [sym_char_literal] = ACTIONS(1464), + [anon_sym_true] = ACTIONS(1466), + [anon_sym_false] = ACTIONS(1466), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1466), + [sym_super] = ACTIONS(1466), + [sym_crate] = ACTIONS(1466), + [sym_metavariable] = ACTIONS(1464), + [sym_raw_string_literal] = ACTIONS(1464), + [sym_float_literal] = ACTIONS(1464), + [sym_block_comment] = ACTIONS(3), + }, + [342] = { + [ts_builtin_sym_end] = ACTIONS(1468), + [sym_identifier] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_macro_rules_BANG] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_u8] = ACTIONS(1470), + [anon_sym_i8] = ACTIONS(1470), + [anon_sym_u16] = ACTIONS(1470), + [anon_sym_i16] = ACTIONS(1470), + [anon_sym_u32] = ACTIONS(1470), + [anon_sym_i32] = ACTIONS(1470), + [anon_sym_u64] = ACTIONS(1470), + [anon_sym_i64] = ACTIONS(1470), + [anon_sym_u128] = ACTIONS(1470), + [anon_sym_i128] = ACTIONS(1470), + [anon_sym_isize] = ACTIONS(1470), + [anon_sym_usize] = ACTIONS(1470), + [anon_sym_f32] = ACTIONS(1470), + [anon_sym_f64] = ACTIONS(1470), + [anon_sym_bool] = ACTIONS(1470), + [anon_sym_str] = ACTIONS(1470), + [anon_sym_char] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_async] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_fn] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_impl] = ACTIONS(1470), + [anon_sym_let] = ACTIONS(1470), + [anon_sym_loop] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_mod] = ACTIONS(1470), + [anon_sym_pub] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_trait] = ACTIONS(1470), + [anon_sym_type] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_unsafe] = ACTIONS(1470), + [anon_sym_use] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_POUND] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1468), + [anon_sym_COLON_COLON] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_DOT_DOT] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1470), + [sym_integer_literal] = ACTIONS(1468), + [aux_sym_string_literal_token1] = ACTIONS(1468), + [sym_char_literal] = ACTIONS(1468), + [anon_sym_true] = ACTIONS(1470), + [anon_sym_false] = ACTIONS(1470), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1470), + [sym_super] = ACTIONS(1470), + [sym_crate] = ACTIONS(1470), + [sym_metavariable] = ACTIONS(1468), + [sym_raw_string_literal] = ACTIONS(1468), + [sym_float_literal] = ACTIONS(1468), + [sym_block_comment] = ACTIONS(3), + }, + [343] = { + [ts_builtin_sym_end] = ACTIONS(1472), + [sym_identifier] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_macro_rules_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_u8] = ACTIONS(1474), + [anon_sym_i8] = ACTIONS(1474), + [anon_sym_u16] = ACTIONS(1474), + [anon_sym_i16] = ACTIONS(1474), + [anon_sym_u32] = ACTIONS(1474), + [anon_sym_i32] = ACTIONS(1474), + [anon_sym_u64] = ACTIONS(1474), + [anon_sym_i64] = ACTIONS(1474), + [anon_sym_u128] = ACTIONS(1474), + [anon_sym_i128] = ACTIONS(1474), + [anon_sym_isize] = ACTIONS(1474), + [anon_sym_usize] = ACTIONS(1474), + [anon_sym_f32] = ACTIONS(1474), + [anon_sym_f64] = ACTIONS(1474), + [anon_sym_bool] = ACTIONS(1474), + [anon_sym_str] = ACTIONS(1474), + [anon_sym_char] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_fn] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_impl] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_loop] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1474), + [anon_sym_mod] = ACTIONS(1474), + [anon_sym_pub] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_trait] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_unsafe] = ACTIONS(1474), + [anon_sym_use] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1472), + [anon_sym_COLON_COLON] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_DOT_DOT] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_move] = ACTIONS(1474), + [sym_integer_literal] = ACTIONS(1472), + [aux_sym_string_literal_token1] = ACTIONS(1472), + [sym_char_literal] = ACTIONS(1472), + [anon_sym_true] = ACTIONS(1474), + [anon_sym_false] = ACTIONS(1474), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1474), + [sym_super] = ACTIONS(1474), + [sym_crate] = ACTIONS(1474), + [sym_metavariable] = ACTIONS(1472), + [sym_raw_string_literal] = ACTIONS(1472), + [sym_float_literal] = ACTIONS(1472), + [sym_block_comment] = ACTIONS(3), + }, + [344] = { + [ts_builtin_sym_end] = ACTIONS(1476), + [sym_identifier] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_macro_rules_BANG] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_u8] = ACTIONS(1478), + [anon_sym_i8] = ACTIONS(1478), + [anon_sym_u16] = ACTIONS(1478), + [anon_sym_i16] = ACTIONS(1478), + [anon_sym_u32] = ACTIONS(1478), + [anon_sym_i32] = ACTIONS(1478), + [anon_sym_u64] = ACTIONS(1478), + [anon_sym_i64] = ACTIONS(1478), + [anon_sym_u128] = ACTIONS(1478), + [anon_sym_i128] = ACTIONS(1478), + [anon_sym_isize] = ACTIONS(1478), + [anon_sym_usize] = ACTIONS(1478), + [anon_sym_f32] = ACTIONS(1478), + [anon_sym_f64] = ACTIONS(1478), + [anon_sym_bool] = ACTIONS(1478), + [anon_sym_str] = ACTIONS(1478), + [anon_sym_char] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_fn] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_impl] = ACTIONS(1478), + [anon_sym_let] = ACTIONS(1478), + [anon_sym_loop] = ACTIONS(1478), + [anon_sym_match] = ACTIONS(1478), + [anon_sym_mod] = ACTIONS(1478), + [anon_sym_pub] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_trait] = ACTIONS(1478), + [anon_sym_type] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_use] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_COLON_COLON] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_move] = ACTIONS(1478), + [sym_integer_literal] = ACTIONS(1476), + [aux_sym_string_literal_token1] = ACTIONS(1476), + [sym_char_literal] = ACTIONS(1476), + [anon_sym_true] = ACTIONS(1478), + [anon_sym_false] = ACTIONS(1478), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1478), + [sym_super] = ACTIONS(1478), + [sym_crate] = ACTIONS(1478), + [sym_metavariable] = ACTIONS(1476), + [sym_raw_string_literal] = ACTIONS(1476), + [sym_float_literal] = ACTIONS(1476), + [sym_block_comment] = ACTIONS(3), + }, + [345] = { + [ts_builtin_sym_end] = ACTIONS(1480), + [sym_identifier] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_macro_rules_BANG] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_u8] = ACTIONS(1482), + [anon_sym_i8] = ACTIONS(1482), + [anon_sym_u16] = ACTIONS(1482), + [anon_sym_i16] = ACTIONS(1482), + [anon_sym_u32] = ACTIONS(1482), + [anon_sym_i32] = ACTIONS(1482), + [anon_sym_u64] = ACTIONS(1482), + [anon_sym_i64] = ACTIONS(1482), + [anon_sym_u128] = ACTIONS(1482), + [anon_sym_i128] = ACTIONS(1482), + [anon_sym_isize] = ACTIONS(1482), + [anon_sym_usize] = ACTIONS(1482), + [anon_sym_f32] = ACTIONS(1482), + [anon_sym_f64] = ACTIONS(1482), + [anon_sym_bool] = ACTIONS(1482), + [anon_sym_str] = ACTIONS(1482), + [anon_sym_char] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_async] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_fn] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_impl] = ACTIONS(1482), + [anon_sym_let] = ACTIONS(1482), + [anon_sym_loop] = ACTIONS(1482), + [anon_sym_match] = ACTIONS(1482), + [anon_sym_mod] = ACTIONS(1482), + [anon_sym_pub] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_trait] = ACTIONS(1482), + [anon_sym_type] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_use] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_COLON_COLON] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_move] = ACTIONS(1482), + [sym_integer_literal] = ACTIONS(1480), + [aux_sym_string_literal_token1] = ACTIONS(1480), + [sym_char_literal] = ACTIONS(1480), + [anon_sym_true] = ACTIONS(1482), + [anon_sym_false] = ACTIONS(1482), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1482), + [sym_super] = ACTIONS(1482), + [sym_crate] = ACTIONS(1482), + [sym_metavariable] = ACTIONS(1480), + [sym_raw_string_literal] = ACTIONS(1480), + [sym_float_literal] = ACTIONS(1480), + [sym_block_comment] = ACTIONS(3), + }, + [346] = { + [ts_builtin_sym_end] = ACTIONS(1484), + [sym_identifier] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_macro_rules_BANG] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_u8] = ACTIONS(1486), + [anon_sym_i8] = ACTIONS(1486), + [anon_sym_u16] = ACTIONS(1486), + [anon_sym_i16] = ACTIONS(1486), + [anon_sym_u32] = ACTIONS(1486), + [anon_sym_i32] = ACTIONS(1486), + [anon_sym_u64] = ACTIONS(1486), + [anon_sym_i64] = ACTIONS(1486), + [anon_sym_u128] = ACTIONS(1486), + [anon_sym_i128] = ACTIONS(1486), + [anon_sym_isize] = ACTIONS(1486), + [anon_sym_usize] = ACTIONS(1486), + [anon_sym_f32] = ACTIONS(1486), + [anon_sym_f64] = ACTIONS(1486), + [anon_sym_bool] = ACTIONS(1486), + [anon_sym_str] = ACTIONS(1486), + [anon_sym_char] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_async] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_fn] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_impl] = ACTIONS(1486), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_loop] = ACTIONS(1486), + [anon_sym_match] = ACTIONS(1486), + [anon_sym_mod] = ACTIONS(1486), + [anon_sym_pub] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_trait] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_unsafe] = ACTIONS(1486), + [anon_sym_use] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_POUND] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_COLON_COLON] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_move] = ACTIONS(1486), + [sym_integer_literal] = ACTIONS(1484), + [aux_sym_string_literal_token1] = ACTIONS(1484), + [sym_char_literal] = ACTIONS(1484), + [anon_sym_true] = ACTIONS(1486), + [anon_sym_false] = ACTIONS(1486), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1486), + [sym_super] = ACTIONS(1486), + [sym_crate] = ACTIONS(1486), + [sym_metavariable] = ACTIONS(1484), + [sym_raw_string_literal] = ACTIONS(1484), + [sym_float_literal] = ACTIONS(1484), + [sym_block_comment] = ACTIONS(3), + }, + [347] = { + [ts_builtin_sym_end] = ACTIONS(1488), + [sym_identifier] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_macro_rules_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_u8] = ACTIONS(1490), + [anon_sym_i8] = ACTIONS(1490), + [anon_sym_u16] = ACTIONS(1490), + [anon_sym_i16] = ACTIONS(1490), + [anon_sym_u32] = ACTIONS(1490), + [anon_sym_i32] = ACTIONS(1490), + [anon_sym_u64] = ACTIONS(1490), + [anon_sym_i64] = ACTIONS(1490), + [anon_sym_u128] = ACTIONS(1490), + [anon_sym_i128] = ACTIONS(1490), + [anon_sym_isize] = ACTIONS(1490), + [anon_sym_usize] = ACTIONS(1490), + [anon_sym_f32] = ACTIONS(1490), + [anon_sym_f64] = ACTIONS(1490), + [anon_sym_bool] = ACTIONS(1490), + [anon_sym_str] = ACTIONS(1490), + [anon_sym_char] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_async] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_default] = ACTIONS(1490), + [anon_sym_enum] = ACTIONS(1490), + [anon_sym_fn] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_impl] = ACTIONS(1490), + [anon_sym_let] = ACTIONS(1490), + [anon_sym_loop] = ACTIONS(1490), + [anon_sym_match] = ACTIONS(1490), + [anon_sym_mod] = ACTIONS(1490), + [anon_sym_pub] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_static] = ACTIONS(1490), + [anon_sym_struct] = ACTIONS(1490), + [anon_sym_trait] = ACTIONS(1490), + [anon_sym_type] = ACTIONS(1490), + [anon_sym_union] = ACTIONS(1490), + [anon_sym_unsafe] = ACTIONS(1490), + [anon_sym_use] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_COLON_COLON] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_move] = ACTIONS(1490), + [sym_integer_literal] = ACTIONS(1488), + [aux_sym_string_literal_token1] = ACTIONS(1488), + [sym_char_literal] = ACTIONS(1488), + [anon_sym_true] = ACTIONS(1490), + [anon_sym_false] = ACTIONS(1490), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1490), + [sym_super] = ACTIONS(1490), + [sym_crate] = ACTIONS(1490), + [sym_metavariable] = ACTIONS(1488), + [sym_raw_string_literal] = ACTIONS(1488), + [sym_float_literal] = ACTIONS(1488), + [sym_block_comment] = ACTIONS(3), + }, + [348] = { + [ts_builtin_sym_end] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_macro_rules_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_u8] = ACTIONS(1494), + [anon_sym_i8] = ACTIONS(1494), + [anon_sym_u16] = ACTIONS(1494), + [anon_sym_i16] = ACTIONS(1494), + [anon_sym_u32] = ACTIONS(1494), + [anon_sym_i32] = ACTIONS(1494), + [anon_sym_u64] = ACTIONS(1494), + [anon_sym_i64] = ACTIONS(1494), + [anon_sym_u128] = ACTIONS(1494), + [anon_sym_i128] = ACTIONS(1494), + [anon_sym_isize] = ACTIONS(1494), + [anon_sym_usize] = ACTIONS(1494), + [anon_sym_f32] = ACTIONS(1494), + [anon_sym_f64] = ACTIONS(1494), + [anon_sym_bool] = ACTIONS(1494), + [anon_sym_str] = ACTIONS(1494), + [anon_sym_char] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_async] = ACTIONS(1494), + [anon_sym_break] = ACTIONS(1494), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_continue] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1494), + [anon_sym_enum] = ACTIONS(1494), + [anon_sym_fn] = ACTIONS(1494), + [anon_sym_for] = ACTIONS(1494), + [anon_sym_if] = ACTIONS(1494), + [anon_sym_impl] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1494), + [anon_sym_loop] = ACTIONS(1494), + [anon_sym_match] = ACTIONS(1494), + [anon_sym_mod] = ACTIONS(1494), + [anon_sym_pub] = ACTIONS(1494), + [anon_sym_return] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1494), + [anon_sym_struct] = ACTIONS(1494), + [anon_sym_trait] = ACTIONS(1494), + [anon_sym_type] = ACTIONS(1494), + [anon_sym_union] = ACTIONS(1494), + [anon_sym_unsafe] = ACTIONS(1494), + [anon_sym_use] = ACTIONS(1494), + [anon_sym_while] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1494), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_COLON_COLON] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_DOT_DOT] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_move] = ACTIONS(1494), + [sym_integer_literal] = ACTIONS(1492), + [aux_sym_string_literal_token1] = ACTIONS(1492), + [sym_char_literal] = ACTIONS(1492), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1494), + [sym_super] = ACTIONS(1494), + [sym_crate] = ACTIONS(1494), + [sym_metavariable] = ACTIONS(1492), + [sym_raw_string_literal] = ACTIONS(1492), + [sym_float_literal] = ACTIONS(1492), + [sym_block_comment] = ACTIONS(3), + }, + [349] = { + [ts_builtin_sym_end] = ACTIONS(1496), + [sym_identifier] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_macro_rules_BANG] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_u8] = ACTIONS(1498), + [anon_sym_i8] = ACTIONS(1498), + [anon_sym_u16] = ACTIONS(1498), + [anon_sym_i16] = ACTIONS(1498), + [anon_sym_u32] = ACTIONS(1498), + [anon_sym_i32] = ACTIONS(1498), + [anon_sym_u64] = ACTIONS(1498), + [anon_sym_i64] = ACTIONS(1498), + [anon_sym_u128] = ACTIONS(1498), + [anon_sym_i128] = ACTIONS(1498), + [anon_sym_isize] = ACTIONS(1498), + [anon_sym_usize] = ACTIONS(1498), + [anon_sym_f32] = ACTIONS(1498), + [anon_sym_f64] = ACTIONS(1498), + [anon_sym_bool] = ACTIONS(1498), + [anon_sym_str] = ACTIONS(1498), + [anon_sym_char] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_async] = ACTIONS(1498), + [anon_sym_break] = ACTIONS(1498), + [anon_sym_const] = ACTIONS(1498), + [anon_sym_continue] = ACTIONS(1498), + [anon_sym_default] = ACTIONS(1498), + [anon_sym_enum] = ACTIONS(1498), + [anon_sym_fn] = ACTIONS(1498), + [anon_sym_for] = ACTIONS(1498), + [anon_sym_if] = ACTIONS(1498), + [anon_sym_impl] = ACTIONS(1498), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_loop] = ACTIONS(1498), + [anon_sym_match] = ACTIONS(1498), + [anon_sym_mod] = ACTIONS(1498), + [anon_sym_pub] = ACTIONS(1498), + [anon_sym_return] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_struct] = ACTIONS(1498), + [anon_sym_trait] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_union] = ACTIONS(1498), + [anon_sym_unsafe] = ACTIONS(1498), + [anon_sym_use] = ACTIONS(1498), + [anon_sym_while] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_COLON_COLON] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_DOT_DOT] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_move] = ACTIONS(1498), + [sym_integer_literal] = ACTIONS(1496), + [aux_sym_string_literal_token1] = ACTIONS(1496), + [sym_char_literal] = ACTIONS(1496), + [anon_sym_true] = ACTIONS(1498), + [anon_sym_false] = ACTIONS(1498), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1498), + [sym_super] = ACTIONS(1498), + [sym_crate] = ACTIONS(1498), + [sym_metavariable] = ACTIONS(1496), + [sym_raw_string_literal] = ACTIONS(1496), + [sym_float_literal] = ACTIONS(1496), + [sym_block_comment] = ACTIONS(3), + }, + [350] = { + [ts_builtin_sym_end] = ACTIONS(1500), + [sym_identifier] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_macro_rules_BANG] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_u8] = ACTIONS(1502), + [anon_sym_i8] = ACTIONS(1502), + [anon_sym_u16] = ACTIONS(1502), + [anon_sym_i16] = ACTIONS(1502), + [anon_sym_u32] = ACTIONS(1502), + [anon_sym_i32] = ACTIONS(1502), + [anon_sym_u64] = ACTIONS(1502), + [anon_sym_i64] = ACTIONS(1502), + [anon_sym_u128] = ACTIONS(1502), + [anon_sym_i128] = ACTIONS(1502), + [anon_sym_isize] = ACTIONS(1502), + [anon_sym_usize] = ACTIONS(1502), + [anon_sym_f32] = ACTIONS(1502), + [anon_sym_f64] = ACTIONS(1502), + [anon_sym_bool] = ACTIONS(1502), + [anon_sym_str] = ACTIONS(1502), + [anon_sym_char] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_break] = ACTIONS(1502), + [anon_sym_const] = ACTIONS(1502), + [anon_sym_continue] = ACTIONS(1502), + [anon_sym_default] = ACTIONS(1502), + [anon_sym_enum] = ACTIONS(1502), + [anon_sym_fn] = ACTIONS(1502), + [anon_sym_for] = ACTIONS(1502), + [anon_sym_if] = ACTIONS(1502), + [anon_sym_impl] = ACTIONS(1502), + [anon_sym_let] = ACTIONS(1502), + [anon_sym_loop] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_mod] = ACTIONS(1502), + [anon_sym_pub] = ACTIONS(1502), + [anon_sym_return] = ACTIONS(1502), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1502), + [anon_sym_trait] = ACTIONS(1502), + [anon_sym_type] = ACTIONS(1502), + [anon_sym_union] = ACTIONS(1502), + [anon_sym_unsafe] = ACTIONS(1502), + [anon_sym_use] = ACTIONS(1502), + [anon_sym_while] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_COLON_COLON] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_move] = ACTIONS(1502), + [sym_integer_literal] = ACTIONS(1500), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1500), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1500), + [sym_raw_string_literal] = ACTIONS(1500), + [sym_float_literal] = ACTIONS(1500), + [sym_block_comment] = ACTIONS(3), + }, + [351] = { + [ts_builtin_sym_end] = ACTIONS(1504), + [sym_identifier] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_macro_rules_BANG] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_u8] = ACTIONS(1506), + [anon_sym_i8] = ACTIONS(1506), + [anon_sym_u16] = ACTIONS(1506), + [anon_sym_i16] = ACTIONS(1506), + [anon_sym_u32] = ACTIONS(1506), + [anon_sym_i32] = ACTIONS(1506), + [anon_sym_u64] = ACTIONS(1506), + [anon_sym_i64] = ACTIONS(1506), + [anon_sym_u128] = ACTIONS(1506), + [anon_sym_i128] = ACTIONS(1506), + [anon_sym_isize] = ACTIONS(1506), + [anon_sym_usize] = ACTIONS(1506), + [anon_sym_f32] = ACTIONS(1506), + [anon_sym_f64] = ACTIONS(1506), + [anon_sym_bool] = ACTIONS(1506), + [anon_sym_str] = ACTIONS(1506), + [anon_sym_char] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_async] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_default] = ACTIONS(1506), + [anon_sym_enum] = ACTIONS(1506), + [anon_sym_fn] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_impl] = ACTIONS(1506), + [anon_sym_let] = ACTIONS(1506), + [anon_sym_loop] = ACTIONS(1506), + [anon_sym_match] = ACTIONS(1506), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_pub] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_static] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1506), + [anon_sym_trait] = ACTIONS(1506), + [anon_sym_type] = ACTIONS(1506), + [anon_sym_union] = ACTIONS(1506), + [anon_sym_unsafe] = ACTIONS(1506), + [anon_sym_use] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_COLON_COLON] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_DOT_DOT] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_move] = ACTIONS(1506), + [sym_integer_literal] = ACTIONS(1504), + [aux_sym_string_literal_token1] = ACTIONS(1504), + [sym_char_literal] = ACTIONS(1504), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1506), + [sym_super] = ACTIONS(1506), + [sym_crate] = ACTIONS(1506), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1504), + [sym_float_literal] = ACTIONS(1504), + [sym_block_comment] = ACTIONS(3), + }, + [352] = { + [ts_builtin_sym_end] = ACTIONS(1508), + [sym_identifier] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_macro_rules_BANG] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_u8] = ACTIONS(1510), + [anon_sym_i8] = ACTIONS(1510), + [anon_sym_u16] = ACTIONS(1510), + [anon_sym_i16] = ACTIONS(1510), + [anon_sym_u32] = ACTIONS(1510), + [anon_sym_i32] = ACTIONS(1510), + [anon_sym_u64] = ACTIONS(1510), + [anon_sym_i64] = ACTIONS(1510), + [anon_sym_u128] = ACTIONS(1510), + [anon_sym_i128] = ACTIONS(1510), + [anon_sym_isize] = ACTIONS(1510), + [anon_sym_usize] = ACTIONS(1510), + [anon_sym_f32] = ACTIONS(1510), + [anon_sym_f64] = ACTIONS(1510), + [anon_sym_bool] = ACTIONS(1510), + [anon_sym_str] = ACTIONS(1510), + [anon_sym_char] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_async] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_fn] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_impl] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_loop] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_mod] = ACTIONS(1510), + [anon_sym_pub] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_struct] = ACTIONS(1510), + [anon_sym_trait] = ACTIONS(1510), + [anon_sym_type] = ACTIONS(1510), + [anon_sym_union] = ACTIONS(1510), + [anon_sym_unsafe] = ACTIONS(1510), + [anon_sym_use] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_COLON_COLON] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_move] = ACTIONS(1510), + [sym_integer_literal] = ACTIONS(1508), + [aux_sym_string_literal_token1] = ACTIONS(1508), + [sym_char_literal] = ACTIONS(1508), + [anon_sym_true] = ACTIONS(1510), + [anon_sym_false] = ACTIONS(1510), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1510), + [sym_super] = ACTIONS(1510), + [sym_crate] = ACTIONS(1510), + [sym_metavariable] = ACTIONS(1508), + [sym_raw_string_literal] = ACTIONS(1508), + [sym_float_literal] = ACTIONS(1508), + [sym_block_comment] = ACTIONS(3), + }, + [353] = { + [ts_builtin_sym_end] = ACTIONS(1512), + [sym_identifier] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_macro_rules_BANG] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_u8] = ACTIONS(1514), + [anon_sym_i8] = ACTIONS(1514), + [anon_sym_u16] = ACTIONS(1514), + [anon_sym_i16] = ACTIONS(1514), + [anon_sym_u32] = ACTIONS(1514), + [anon_sym_i32] = ACTIONS(1514), + [anon_sym_u64] = ACTIONS(1514), + [anon_sym_i64] = ACTIONS(1514), + [anon_sym_u128] = ACTIONS(1514), + [anon_sym_i128] = ACTIONS(1514), + [anon_sym_isize] = ACTIONS(1514), + [anon_sym_usize] = ACTIONS(1514), + [anon_sym_f32] = ACTIONS(1514), + [anon_sym_f64] = ACTIONS(1514), + [anon_sym_bool] = ACTIONS(1514), + [anon_sym_str] = ACTIONS(1514), + [anon_sym_char] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_async] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_default] = ACTIONS(1514), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_fn] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_impl] = ACTIONS(1514), + [anon_sym_let] = ACTIONS(1514), + [anon_sym_loop] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_pub] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_static] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(1514), + [anon_sym_trait] = ACTIONS(1514), + [anon_sym_type] = ACTIONS(1514), + [anon_sym_union] = ACTIONS(1514), + [anon_sym_unsafe] = ACTIONS(1514), + [anon_sym_use] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_COLON_COLON] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_move] = ACTIONS(1514), + [sym_integer_literal] = ACTIONS(1512), + [aux_sym_string_literal_token1] = ACTIONS(1512), + [sym_char_literal] = ACTIONS(1512), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1514), + [sym_super] = ACTIONS(1514), + [sym_crate] = ACTIONS(1514), + [sym_metavariable] = ACTIONS(1512), + [sym_raw_string_literal] = ACTIONS(1512), + [sym_float_literal] = ACTIONS(1512), + [sym_block_comment] = ACTIONS(3), + }, + [354] = { + [ts_builtin_sym_end] = ACTIONS(1516), + [sym_identifier] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_macro_rules_BANG] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_enum] = ACTIONS(1518), + [anon_sym_fn] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_impl] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_loop] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_mod] = ACTIONS(1518), + [anon_sym_pub] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_trait] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_union] = ACTIONS(1518), + [anon_sym_unsafe] = ACTIONS(1518), + [anon_sym_use] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_COLON_COLON] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_move] = ACTIONS(1518), + [sym_integer_literal] = ACTIONS(1516), + [aux_sym_string_literal_token1] = ACTIONS(1516), + [sym_char_literal] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1518), + [anon_sym_false] = ACTIONS(1518), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1518), + [sym_super] = ACTIONS(1518), + [sym_crate] = ACTIONS(1518), + [sym_metavariable] = ACTIONS(1516), + [sym_raw_string_literal] = ACTIONS(1516), + [sym_float_literal] = ACTIONS(1516), + [sym_block_comment] = ACTIONS(3), + }, + [355] = { + [sym_attribute_item] = STATE(494), + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_macro_invocation] = STATE(2288), + [sym_scoped_identifier] = STATE(1493), + [sym_scoped_type_identifier] = STATE(1824), + [sym_match_arm] = STATE(461), + [sym_last_match_arm] = STATE(2289), + [sym_match_pattern] = STATE(2285), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1839), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_enum_variant_list_repeat1] = STATE(494), + [aux_sym_match_block_repeat1] = STATE(461), + [sym_identifier] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [356] = { + [ts_builtin_sym_end] = ACTIONS(1520), + [sym_identifier] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_macro_rules_BANG] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_async] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_enum] = ACTIONS(1522), + [anon_sym_fn] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_impl] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(1522), + [anon_sym_loop] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_mod] = ACTIONS(1522), + [anon_sym_pub] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_static] = ACTIONS(1522), + [anon_sym_struct] = ACTIONS(1522), + [anon_sym_trait] = ACTIONS(1522), + [anon_sym_type] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_unsafe] = ACTIONS(1522), + [anon_sym_use] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_COLON_COLON] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_move] = ACTIONS(1522), + [sym_integer_literal] = ACTIONS(1520), + [aux_sym_string_literal_token1] = ACTIONS(1520), + [sym_char_literal] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1522), + [anon_sym_false] = ACTIONS(1522), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1522), + [sym_super] = ACTIONS(1522), + [sym_crate] = ACTIONS(1522), + [sym_metavariable] = ACTIONS(1520), + [sym_raw_string_literal] = ACTIONS(1520), + [sym_float_literal] = ACTIONS(1520), + [sym_block_comment] = ACTIONS(3), + }, + [357] = { + [ts_builtin_sym_end] = ACTIONS(1524), + [sym_identifier] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_macro_rules_BANG] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_async] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_enum] = ACTIONS(1526), + [anon_sym_fn] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_impl] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_loop] = ACTIONS(1526), + [anon_sym_match] = ACTIONS(1526), + [anon_sym_mod] = ACTIONS(1526), + [anon_sym_pub] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_static] = ACTIONS(1526), + [anon_sym_struct] = ACTIONS(1526), + [anon_sym_trait] = ACTIONS(1526), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_unsafe] = ACTIONS(1526), + [anon_sym_use] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_DOT_DOT] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_move] = ACTIONS(1526), + [sym_integer_literal] = ACTIONS(1524), + [aux_sym_string_literal_token1] = ACTIONS(1524), + [sym_char_literal] = ACTIONS(1524), + [anon_sym_true] = ACTIONS(1526), + [anon_sym_false] = ACTIONS(1526), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1526), + [sym_super] = ACTIONS(1526), + [sym_crate] = ACTIONS(1526), + [sym_metavariable] = ACTIONS(1524), + [sym_raw_string_literal] = ACTIONS(1524), + [sym_float_literal] = ACTIONS(1524), + [sym_block_comment] = ACTIONS(3), + }, + [358] = { + [ts_builtin_sym_end] = ACTIONS(1528), + [sym_identifier] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_macro_rules_BANG] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_u8] = ACTIONS(1530), + [anon_sym_i8] = ACTIONS(1530), + [anon_sym_u16] = ACTIONS(1530), + [anon_sym_i16] = ACTIONS(1530), + [anon_sym_u32] = ACTIONS(1530), + [anon_sym_i32] = ACTIONS(1530), + [anon_sym_u64] = ACTIONS(1530), + [anon_sym_i64] = ACTIONS(1530), + [anon_sym_u128] = ACTIONS(1530), + [anon_sym_i128] = ACTIONS(1530), + [anon_sym_isize] = ACTIONS(1530), + [anon_sym_usize] = ACTIONS(1530), + [anon_sym_f32] = ACTIONS(1530), + [anon_sym_f64] = ACTIONS(1530), + [anon_sym_bool] = ACTIONS(1530), + [anon_sym_str] = ACTIONS(1530), + [anon_sym_char] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_async] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_enum] = ACTIONS(1530), + [anon_sym_fn] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_impl] = ACTIONS(1530), + [anon_sym_let] = ACTIONS(1530), + [anon_sym_loop] = ACTIONS(1530), + [anon_sym_match] = ACTIONS(1530), + [anon_sym_mod] = ACTIONS(1530), + [anon_sym_pub] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_static] = ACTIONS(1530), + [anon_sym_struct] = ACTIONS(1530), + [anon_sym_trait] = ACTIONS(1530), + [anon_sym_type] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_unsafe] = ACTIONS(1530), + [anon_sym_use] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym_LT] = ACTIONS(1528), + [anon_sym_COLON_COLON] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_DOT_DOT] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_move] = ACTIONS(1530), + [sym_integer_literal] = ACTIONS(1528), + [aux_sym_string_literal_token1] = ACTIONS(1528), + [sym_char_literal] = ACTIONS(1528), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1530), + [sym_super] = ACTIONS(1530), + [sym_crate] = ACTIONS(1530), + [sym_metavariable] = ACTIONS(1528), + [sym_raw_string_literal] = ACTIONS(1528), + [sym_float_literal] = ACTIONS(1528), + [sym_block_comment] = ACTIONS(3), + }, + [359] = { + [ts_builtin_sym_end] = ACTIONS(1532), + [sym_identifier] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_macro_rules_BANG] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_async] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1534), + [anon_sym_enum] = ACTIONS(1534), + [anon_sym_fn] = ACTIONS(1534), + [anon_sym_for] = ACTIONS(1534), + [anon_sym_if] = ACTIONS(1534), + [anon_sym_impl] = ACTIONS(1534), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_loop] = ACTIONS(1534), + [anon_sym_match] = ACTIONS(1534), + [anon_sym_mod] = ACTIONS(1534), + [anon_sym_pub] = ACTIONS(1534), + [anon_sym_return] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_struct] = ACTIONS(1534), + [anon_sym_trait] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_union] = ACTIONS(1534), + [anon_sym_unsafe] = ACTIONS(1534), + [anon_sym_use] = ACTIONS(1534), + [anon_sym_while] = ACTIONS(1534), + [anon_sym_POUND] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_DOT_DOT] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_move] = ACTIONS(1534), + [sym_integer_literal] = ACTIONS(1532), + [aux_sym_string_literal_token1] = ACTIONS(1532), + [sym_char_literal] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1534), + [anon_sym_false] = ACTIONS(1534), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1534), + [sym_super] = ACTIONS(1534), + [sym_crate] = ACTIONS(1534), + [sym_metavariable] = ACTIONS(1532), + [sym_raw_string_literal] = ACTIONS(1532), + [sym_float_literal] = ACTIONS(1532), + [sym_block_comment] = ACTIONS(3), + }, + [360] = { + [sym__token_pattern] = STATE(332), + [sym_token_tree_pattern] = STATE(332), + [sym_token_binding_pattern] = STATE(332), + [sym_token_repetition_pattern] = STATE(332), + [sym__literal] = STATE(332), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_pattern_repeat1] = STATE(332), + [sym_identifier] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_RBRACK] = ACTIONS(1102), + [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_u8] = ACTIONS(1536), + [anon_sym_i8] = ACTIONS(1536), + [anon_sym_u16] = ACTIONS(1536), + [anon_sym_i16] = ACTIONS(1536), + [anon_sym_u32] = ACTIONS(1536), + [anon_sym_i32] = ACTIONS(1536), + [anon_sym_u64] = ACTIONS(1536), + [anon_sym_i64] = ACTIONS(1536), + [anon_sym_u128] = ACTIONS(1536), + [anon_sym_i128] = ACTIONS(1536), + [anon_sym_isize] = ACTIONS(1536), + [anon_sym_usize] = ACTIONS(1536), + [anon_sym_f32] = ACTIONS(1536), + [anon_sym_f64] = ACTIONS(1536), + [anon_sym_bool] = ACTIONS(1536), + [anon_sym_str] = ACTIONS(1536), + [anon_sym_char] = ACTIONS(1536), + [aux_sym__non_special_token_token1] = ACTIONS(1536), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_async] = ACTIONS(1536), + [anon_sym_await] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_enum] = ACTIONS(1536), + [anon_sym_fn] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_impl] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_loop] = ACTIONS(1536), + [anon_sym_match] = ACTIONS(1536), + [anon_sym_mod] = ACTIONS(1536), + [anon_sym_pub] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_static] = ACTIONS(1536), + [anon_sym_struct] = ACTIONS(1536), + [anon_sym_trait] = ACTIONS(1536), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_unsafe] = ACTIONS(1536), + [anon_sym_use] = ACTIONS(1536), + [anon_sym_where] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [sym_mutable_specifier] = ACTIONS(1536), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1116), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [361] = { + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_macro_rules_BANG] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_u8] = ACTIONS(1540), + [anon_sym_i8] = ACTIONS(1540), + [anon_sym_u16] = ACTIONS(1540), + [anon_sym_i16] = ACTIONS(1540), + [anon_sym_u32] = ACTIONS(1540), + [anon_sym_i32] = ACTIONS(1540), + [anon_sym_u64] = ACTIONS(1540), + [anon_sym_i64] = ACTIONS(1540), + [anon_sym_u128] = ACTIONS(1540), + [anon_sym_i128] = ACTIONS(1540), + [anon_sym_isize] = ACTIONS(1540), + [anon_sym_usize] = ACTIONS(1540), + [anon_sym_f32] = ACTIONS(1540), + [anon_sym_f64] = ACTIONS(1540), + [anon_sym_bool] = ACTIONS(1540), + [anon_sym_str] = ACTIONS(1540), + [anon_sym_char] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_async] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_enum] = ACTIONS(1540), + [anon_sym_fn] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_impl] = ACTIONS(1540), + [anon_sym_let] = ACTIONS(1540), + [anon_sym_loop] = ACTIONS(1540), + [anon_sym_match] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_pub] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1540), + [anon_sym_struct] = ACTIONS(1540), + [anon_sym_trait] = ACTIONS(1540), + [anon_sym_type] = ACTIONS(1540), + [anon_sym_union] = ACTIONS(1540), + [anon_sym_unsafe] = ACTIONS(1540), + [anon_sym_use] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1538), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_move] = ACTIONS(1540), + [sym_integer_literal] = ACTIONS(1538), + [aux_sym_string_literal_token1] = ACTIONS(1538), + [sym_char_literal] = ACTIONS(1538), + [anon_sym_true] = ACTIONS(1540), + [anon_sym_false] = ACTIONS(1540), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1540), + [sym_super] = ACTIONS(1540), + [sym_crate] = ACTIONS(1540), + [sym_metavariable] = ACTIONS(1538), + [sym_raw_string_literal] = ACTIONS(1538), + [sym_float_literal] = ACTIONS(1538), + [sym_block_comment] = ACTIONS(3), + }, + [362] = { + [sym__token_pattern] = STATE(333), + [sym_token_tree_pattern] = STATE(333), + [sym_token_binding_pattern] = STATE(333), + [sym_token_repetition_pattern] = STATE(333), + [sym__literal] = STATE(333), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_pattern_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_u8] = ACTIONS(1542), + [anon_sym_i8] = ACTIONS(1542), + [anon_sym_u16] = ACTIONS(1542), + [anon_sym_i16] = ACTIONS(1542), + [anon_sym_u32] = ACTIONS(1542), + [anon_sym_i32] = ACTIONS(1542), + [anon_sym_u64] = ACTIONS(1542), + [anon_sym_i64] = ACTIONS(1542), + [anon_sym_u128] = ACTIONS(1542), + [anon_sym_i128] = ACTIONS(1542), + [anon_sym_isize] = ACTIONS(1542), + [anon_sym_usize] = ACTIONS(1542), + [anon_sym_f32] = ACTIONS(1542), + [anon_sym_f64] = ACTIONS(1542), + [anon_sym_bool] = ACTIONS(1542), + [anon_sym_str] = ACTIONS(1542), + [anon_sym_char] = ACTIONS(1542), + [aux_sym__non_special_token_token1] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_as] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1542), + [anon_sym_const] = ACTIONS(1542), + [anon_sym_continue] = ACTIONS(1542), + [anon_sym_default] = ACTIONS(1542), + [anon_sym_enum] = ACTIONS(1542), + [anon_sym_fn] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_if] = ACTIONS(1542), + [anon_sym_impl] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1542), + [anon_sym_loop] = ACTIONS(1542), + [anon_sym_match] = ACTIONS(1542), + [anon_sym_mod] = ACTIONS(1542), + [anon_sym_pub] = ACTIONS(1542), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_static] = ACTIONS(1542), + [anon_sym_struct] = ACTIONS(1542), + [anon_sym_trait] = ACTIONS(1542), + [anon_sym_type] = ACTIONS(1542), + [anon_sym_union] = ACTIONS(1542), + [anon_sym_unsafe] = ACTIONS(1542), + [anon_sym_use] = ACTIONS(1542), + [anon_sym_where] = ACTIONS(1542), + [anon_sym_while] = ACTIONS(1542), + [sym_mutable_specifier] = ACTIONS(1542), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1116), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [363] = { + [ts_builtin_sym_end] = ACTIONS(1544), + [sym_identifier] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_macro_rules_BANG] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_u8] = ACTIONS(1546), + [anon_sym_i8] = ACTIONS(1546), + [anon_sym_u16] = ACTIONS(1546), + [anon_sym_i16] = ACTIONS(1546), + [anon_sym_u32] = ACTIONS(1546), + [anon_sym_i32] = ACTIONS(1546), + [anon_sym_u64] = ACTIONS(1546), + [anon_sym_i64] = ACTIONS(1546), + [anon_sym_u128] = ACTIONS(1546), + [anon_sym_i128] = ACTIONS(1546), + [anon_sym_isize] = ACTIONS(1546), + [anon_sym_usize] = ACTIONS(1546), + [anon_sym_f32] = ACTIONS(1546), + [anon_sym_f64] = ACTIONS(1546), + [anon_sym_bool] = ACTIONS(1546), + [anon_sym_str] = ACTIONS(1546), + [anon_sym_char] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1546), + [anon_sym_continue] = ACTIONS(1546), + [anon_sym_default] = ACTIONS(1546), + [anon_sym_enum] = ACTIONS(1546), + [anon_sym_fn] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_impl] = ACTIONS(1546), + [anon_sym_let] = ACTIONS(1546), + [anon_sym_loop] = ACTIONS(1546), + [anon_sym_match] = ACTIONS(1546), + [anon_sym_mod] = ACTIONS(1546), + [anon_sym_pub] = ACTIONS(1546), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1546), + [anon_sym_struct] = ACTIONS(1546), + [anon_sym_trait] = ACTIONS(1546), + [anon_sym_type] = ACTIONS(1546), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1546), + [anon_sym_use] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_extern] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_COLON_COLON] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_DOT_DOT] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_move] = ACTIONS(1546), + [sym_integer_literal] = ACTIONS(1544), + [aux_sym_string_literal_token1] = ACTIONS(1544), + [sym_char_literal] = ACTIONS(1544), + [anon_sym_true] = ACTIONS(1546), + [anon_sym_false] = ACTIONS(1546), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1546), + [sym_super] = ACTIONS(1546), + [sym_crate] = ACTIONS(1546), + [sym_metavariable] = ACTIONS(1544), + [sym_raw_string_literal] = ACTIONS(1544), + [sym_float_literal] = ACTIONS(1544), + [sym_block_comment] = ACTIONS(3), + }, + [364] = { + [ts_builtin_sym_end] = ACTIONS(1548), + [sym_identifier] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_macro_rules_BANG] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_u8] = ACTIONS(1550), + [anon_sym_i8] = ACTIONS(1550), + [anon_sym_u16] = ACTIONS(1550), + [anon_sym_i16] = ACTIONS(1550), + [anon_sym_u32] = ACTIONS(1550), + [anon_sym_i32] = ACTIONS(1550), + [anon_sym_u64] = ACTIONS(1550), + [anon_sym_i64] = ACTIONS(1550), + [anon_sym_u128] = ACTIONS(1550), + [anon_sym_i128] = ACTIONS(1550), + [anon_sym_isize] = ACTIONS(1550), + [anon_sym_usize] = ACTIONS(1550), + [anon_sym_f32] = ACTIONS(1550), + [anon_sym_f64] = ACTIONS(1550), + [anon_sym_bool] = ACTIONS(1550), + [anon_sym_str] = ACTIONS(1550), + [anon_sym_char] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_async] = ACTIONS(1550), + [anon_sym_break] = ACTIONS(1550), + [anon_sym_const] = ACTIONS(1550), + [anon_sym_continue] = ACTIONS(1550), + [anon_sym_default] = ACTIONS(1550), + [anon_sym_enum] = ACTIONS(1550), + [anon_sym_fn] = ACTIONS(1550), + [anon_sym_for] = ACTIONS(1550), + [anon_sym_if] = ACTIONS(1550), + [anon_sym_impl] = ACTIONS(1550), + [anon_sym_let] = ACTIONS(1550), + [anon_sym_loop] = ACTIONS(1550), + [anon_sym_match] = ACTIONS(1550), + [anon_sym_mod] = ACTIONS(1550), + [anon_sym_pub] = ACTIONS(1550), + [anon_sym_return] = ACTIONS(1550), + [anon_sym_static] = ACTIONS(1550), + [anon_sym_struct] = ACTIONS(1550), + [anon_sym_trait] = ACTIONS(1550), + [anon_sym_type] = ACTIONS(1550), + [anon_sym_union] = ACTIONS(1550), + [anon_sym_unsafe] = ACTIONS(1550), + [anon_sym_use] = ACTIONS(1550), + [anon_sym_while] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_extern] = ACTIONS(1550), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_COLON_COLON] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_DOT_DOT] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_move] = ACTIONS(1550), + [sym_integer_literal] = ACTIONS(1548), + [aux_sym_string_literal_token1] = ACTIONS(1548), + [sym_char_literal] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1550), + [anon_sym_false] = ACTIONS(1550), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1548), + [sym_raw_string_literal] = ACTIONS(1548), + [sym_float_literal] = ACTIONS(1548), + [sym_block_comment] = ACTIONS(3), + }, + [365] = { + [ts_builtin_sym_end] = ACTIONS(1552), + [sym_identifier] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_macro_rules_BANG] = ACTIONS(1552), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_u8] = ACTIONS(1554), + [anon_sym_i8] = ACTIONS(1554), + [anon_sym_u16] = ACTIONS(1554), + [anon_sym_i16] = ACTIONS(1554), + [anon_sym_u32] = ACTIONS(1554), + [anon_sym_i32] = ACTIONS(1554), + [anon_sym_u64] = ACTIONS(1554), + [anon_sym_i64] = ACTIONS(1554), + [anon_sym_u128] = ACTIONS(1554), + [anon_sym_i128] = ACTIONS(1554), + [anon_sym_isize] = ACTIONS(1554), + [anon_sym_usize] = ACTIONS(1554), + [anon_sym_f32] = ACTIONS(1554), + [anon_sym_f64] = ACTIONS(1554), + [anon_sym_bool] = ACTIONS(1554), + [anon_sym_str] = ACTIONS(1554), + [anon_sym_char] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(1554), + [anon_sym_fn] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_impl] = ACTIONS(1554), + [anon_sym_let] = ACTIONS(1554), + [anon_sym_loop] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1554), + [anon_sym_mod] = ACTIONS(1554), + [anon_sym_pub] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_static] = ACTIONS(1554), + [anon_sym_struct] = ACTIONS(1554), + [anon_sym_trait] = ACTIONS(1554), + [anon_sym_type] = ACTIONS(1554), + [anon_sym_union] = ACTIONS(1554), + [anon_sym_unsafe] = ACTIONS(1554), + [anon_sym_use] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_DOT_DOT] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_move] = ACTIONS(1554), + [sym_integer_literal] = ACTIONS(1552), + [aux_sym_string_literal_token1] = ACTIONS(1552), + [sym_char_literal] = ACTIONS(1552), + [anon_sym_true] = ACTIONS(1554), + [anon_sym_false] = ACTIONS(1554), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1554), + [sym_super] = ACTIONS(1554), + [sym_crate] = ACTIONS(1554), + [sym_metavariable] = ACTIONS(1552), + [sym_raw_string_literal] = ACTIONS(1552), + [sym_float_literal] = ACTIONS(1552), + [sym_block_comment] = ACTIONS(3), + }, + [366] = { + [ts_builtin_sym_end] = ACTIONS(1556), + [sym_identifier] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym_macro_rules_BANG] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_u8] = ACTIONS(1558), + [anon_sym_i8] = ACTIONS(1558), + [anon_sym_u16] = ACTIONS(1558), + [anon_sym_i16] = ACTIONS(1558), + [anon_sym_u32] = ACTIONS(1558), + [anon_sym_i32] = ACTIONS(1558), + [anon_sym_u64] = ACTIONS(1558), + [anon_sym_i64] = ACTIONS(1558), + [anon_sym_u128] = ACTIONS(1558), + [anon_sym_i128] = ACTIONS(1558), + [anon_sym_isize] = ACTIONS(1558), + [anon_sym_usize] = ACTIONS(1558), + [anon_sym_f32] = ACTIONS(1558), + [anon_sym_f64] = ACTIONS(1558), + [anon_sym_bool] = ACTIONS(1558), + [anon_sym_str] = ACTIONS(1558), + [anon_sym_char] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_break] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_enum] = ACTIONS(1558), + [anon_sym_fn] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_impl] = ACTIONS(1558), + [anon_sym_let] = ACTIONS(1558), + [anon_sym_loop] = ACTIONS(1558), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_mod] = ACTIONS(1558), + [anon_sym_pub] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_struct] = ACTIONS(1558), + [anon_sym_trait] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_union] = ACTIONS(1558), + [anon_sym_unsafe] = ACTIONS(1558), + [anon_sym_use] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_extern] = ACTIONS(1558), + [anon_sym_LT] = ACTIONS(1556), + [anon_sym_COLON_COLON] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_DOT_DOT] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1556), + [anon_sym_move] = ACTIONS(1558), + [sym_integer_literal] = ACTIONS(1556), + [aux_sym_string_literal_token1] = ACTIONS(1556), + [sym_char_literal] = ACTIONS(1556), + [anon_sym_true] = ACTIONS(1558), + [anon_sym_false] = ACTIONS(1558), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1558), + [sym_super] = ACTIONS(1558), + [sym_crate] = ACTIONS(1558), + [sym_metavariable] = ACTIONS(1556), + [sym_raw_string_literal] = ACTIONS(1556), + [sym_float_literal] = ACTIONS(1556), + [sym_block_comment] = ACTIONS(3), + }, + [367] = { + [ts_builtin_sym_end] = ACTIONS(1560), + [sym_identifier] = ACTIONS(1562), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_macro_rules_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_u8] = ACTIONS(1562), + [anon_sym_i8] = ACTIONS(1562), + [anon_sym_u16] = ACTIONS(1562), + [anon_sym_i16] = ACTIONS(1562), + [anon_sym_u32] = ACTIONS(1562), + [anon_sym_i32] = ACTIONS(1562), + [anon_sym_u64] = ACTIONS(1562), + [anon_sym_i64] = ACTIONS(1562), + [anon_sym_u128] = ACTIONS(1562), + [anon_sym_i128] = ACTIONS(1562), + [anon_sym_isize] = ACTIONS(1562), + [anon_sym_usize] = ACTIONS(1562), + [anon_sym_f32] = ACTIONS(1562), + [anon_sym_f64] = ACTIONS(1562), + [anon_sym_bool] = ACTIONS(1562), + [anon_sym_str] = ACTIONS(1562), + [anon_sym_char] = ACTIONS(1562), + [anon_sym_SQUOTE] = ACTIONS(1562), + [anon_sym_async] = ACTIONS(1562), + [anon_sym_break] = ACTIONS(1562), + [anon_sym_const] = ACTIONS(1562), + [anon_sym_continue] = ACTIONS(1562), + [anon_sym_default] = ACTIONS(1562), + [anon_sym_enum] = ACTIONS(1562), + [anon_sym_fn] = ACTIONS(1562), + [anon_sym_for] = ACTIONS(1562), + [anon_sym_if] = ACTIONS(1562), + [anon_sym_impl] = ACTIONS(1562), + [anon_sym_let] = ACTIONS(1562), + [anon_sym_loop] = ACTIONS(1562), + [anon_sym_match] = ACTIONS(1562), + [anon_sym_mod] = ACTIONS(1562), + [anon_sym_pub] = ACTIONS(1562), + [anon_sym_return] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_struct] = ACTIONS(1562), + [anon_sym_trait] = ACTIONS(1562), + [anon_sym_type] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1562), + [anon_sym_unsafe] = ACTIONS(1562), + [anon_sym_use] = ACTIONS(1562), + [anon_sym_while] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_extern] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1560), + [anon_sym_COLON_COLON] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_DOT_DOT] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_move] = ACTIONS(1562), + [sym_integer_literal] = ACTIONS(1560), + [aux_sym_string_literal_token1] = ACTIONS(1560), + [sym_char_literal] = ACTIONS(1560), + [anon_sym_true] = ACTIONS(1562), + [anon_sym_false] = ACTIONS(1562), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1562), + [sym_super] = ACTIONS(1562), + [sym_crate] = ACTIONS(1562), + [sym_metavariable] = ACTIONS(1560), + [sym_raw_string_literal] = ACTIONS(1560), + [sym_float_literal] = ACTIONS(1560), + [sym_block_comment] = ACTIONS(3), + }, + [368] = { + [ts_builtin_sym_end] = ACTIONS(1564), + [sym_identifier] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_macro_rules_BANG] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [anon_sym_async] = ACTIONS(1566), + [anon_sym_break] = ACTIONS(1566), + [anon_sym_const] = ACTIONS(1566), + [anon_sym_continue] = ACTIONS(1566), + [anon_sym_default] = ACTIONS(1566), + [anon_sym_enum] = ACTIONS(1566), + [anon_sym_fn] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1566), + [anon_sym_if] = ACTIONS(1566), + [anon_sym_impl] = ACTIONS(1566), + [anon_sym_let] = ACTIONS(1566), + [anon_sym_loop] = ACTIONS(1566), + [anon_sym_match] = ACTIONS(1566), + [anon_sym_mod] = ACTIONS(1566), + [anon_sym_pub] = ACTIONS(1566), + [anon_sym_return] = ACTIONS(1566), + [anon_sym_static] = ACTIONS(1566), + [anon_sym_struct] = ACTIONS(1566), + [anon_sym_trait] = ACTIONS(1566), + [anon_sym_type] = ACTIONS(1566), + [anon_sym_union] = ACTIONS(1566), + [anon_sym_unsafe] = ACTIONS(1566), + [anon_sym_use] = ACTIONS(1566), + [anon_sym_while] = ACTIONS(1566), + [anon_sym_POUND] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_extern] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_COLON_COLON] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_DOT_DOT] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_move] = ACTIONS(1566), + [sym_integer_literal] = ACTIONS(1564), + [aux_sym_string_literal_token1] = ACTIONS(1564), + [sym_char_literal] = ACTIONS(1564), + [anon_sym_true] = ACTIONS(1566), + [anon_sym_false] = ACTIONS(1566), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1566), + [sym_super] = ACTIONS(1566), + [sym_crate] = ACTIONS(1566), + [sym_metavariable] = ACTIONS(1564), + [sym_raw_string_literal] = ACTIONS(1564), + [sym_float_literal] = ACTIONS(1564), + [sym_block_comment] = ACTIONS(3), + }, + [369] = { + [ts_builtin_sym_end] = ACTIONS(1568), + [sym_identifier] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym_macro_rules_BANG] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(1568), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_RBRACE] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(1568), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_u8] = ACTIONS(1570), + [anon_sym_i8] = ACTIONS(1570), + [anon_sym_u16] = ACTIONS(1570), + [anon_sym_i16] = ACTIONS(1570), + [anon_sym_u32] = ACTIONS(1570), + [anon_sym_i32] = ACTIONS(1570), + [anon_sym_u64] = ACTIONS(1570), + [anon_sym_i64] = ACTIONS(1570), + [anon_sym_u128] = ACTIONS(1570), + [anon_sym_i128] = ACTIONS(1570), + [anon_sym_isize] = ACTIONS(1570), + [anon_sym_usize] = ACTIONS(1570), + [anon_sym_f32] = ACTIONS(1570), + [anon_sym_f64] = ACTIONS(1570), + [anon_sym_bool] = ACTIONS(1570), + [anon_sym_str] = ACTIONS(1570), + [anon_sym_char] = ACTIONS(1570), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_async] = ACTIONS(1570), + [anon_sym_break] = ACTIONS(1570), + [anon_sym_const] = ACTIONS(1570), + [anon_sym_continue] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1570), + [anon_sym_enum] = ACTIONS(1570), + [anon_sym_fn] = ACTIONS(1570), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_impl] = ACTIONS(1570), + [anon_sym_let] = ACTIONS(1570), + [anon_sym_loop] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1570), + [anon_sym_mod] = ACTIONS(1570), + [anon_sym_pub] = ACTIONS(1570), + [anon_sym_return] = ACTIONS(1570), + [anon_sym_static] = ACTIONS(1570), + [anon_sym_struct] = ACTIONS(1570), + [anon_sym_trait] = ACTIONS(1570), + [anon_sym_type] = ACTIONS(1570), + [anon_sym_union] = ACTIONS(1570), + [anon_sym_unsafe] = ACTIONS(1570), + [anon_sym_use] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1570), + [anon_sym_POUND] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_extern] = ACTIONS(1570), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_COLON_COLON] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_move] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1568), + [aux_sym_string_literal_token1] = ACTIONS(1568), + [sym_char_literal] = ACTIONS(1568), + [anon_sym_true] = ACTIONS(1570), + [anon_sym_false] = ACTIONS(1570), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1570), + [sym_super] = ACTIONS(1570), + [sym_crate] = ACTIONS(1570), + [sym_metavariable] = ACTIONS(1568), + [sym_raw_string_literal] = ACTIONS(1568), + [sym_float_literal] = ACTIONS(1568), + [sym_block_comment] = ACTIONS(3), + }, + [370] = { + [ts_builtin_sym_end] = ACTIONS(1572), + [sym_identifier] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_macro_rules_BANG] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_u8] = ACTIONS(1574), + [anon_sym_i8] = ACTIONS(1574), + [anon_sym_u16] = ACTIONS(1574), + [anon_sym_i16] = ACTIONS(1574), + [anon_sym_u32] = ACTIONS(1574), + [anon_sym_i32] = ACTIONS(1574), + [anon_sym_u64] = ACTIONS(1574), + [anon_sym_i64] = ACTIONS(1574), + [anon_sym_u128] = ACTIONS(1574), + [anon_sym_i128] = ACTIONS(1574), + [anon_sym_isize] = ACTIONS(1574), + [anon_sym_usize] = ACTIONS(1574), + [anon_sym_f32] = ACTIONS(1574), + [anon_sym_f64] = ACTIONS(1574), + [anon_sym_bool] = ACTIONS(1574), + [anon_sym_str] = ACTIONS(1574), + [anon_sym_char] = ACTIONS(1574), + [anon_sym_SQUOTE] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1574), + [anon_sym_break] = ACTIONS(1574), + [anon_sym_const] = ACTIONS(1574), + [anon_sym_continue] = ACTIONS(1574), + [anon_sym_default] = ACTIONS(1574), + [anon_sym_enum] = ACTIONS(1574), + [anon_sym_fn] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1574), + [anon_sym_if] = ACTIONS(1574), + [anon_sym_impl] = ACTIONS(1574), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_loop] = ACTIONS(1574), + [anon_sym_match] = ACTIONS(1574), + [anon_sym_mod] = ACTIONS(1574), + [anon_sym_pub] = ACTIONS(1574), + [anon_sym_return] = ACTIONS(1574), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_struct] = ACTIONS(1574), + [anon_sym_trait] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_union] = ACTIONS(1574), + [anon_sym_unsafe] = ACTIONS(1574), + [anon_sym_use] = ACTIONS(1574), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(1572), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_extern] = ACTIONS(1574), + [anon_sym_LT] = ACTIONS(1572), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_DOT_DOT] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_move] = ACTIONS(1574), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1572), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1574), + [anon_sym_false] = ACTIONS(1574), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1574), + [sym_super] = ACTIONS(1574), + [sym_crate] = ACTIONS(1574), + [sym_metavariable] = ACTIONS(1572), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), + [sym_block_comment] = ACTIONS(3), + }, + [371] = { + [ts_builtin_sym_end] = ACTIONS(1576), + [sym_identifier] = ACTIONS(1578), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_macro_rules_BANG] = ACTIONS(1576), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_u8] = ACTIONS(1578), + [anon_sym_i8] = ACTIONS(1578), + [anon_sym_u16] = ACTIONS(1578), + [anon_sym_i16] = ACTIONS(1578), + [anon_sym_u32] = ACTIONS(1578), + [anon_sym_i32] = ACTIONS(1578), + [anon_sym_u64] = ACTIONS(1578), + [anon_sym_i64] = ACTIONS(1578), + [anon_sym_u128] = ACTIONS(1578), + [anon_sym_i128] = ACTIONS(1578), + [anon_sym_isize] = ACTIONS(1578), + [anon_sym_usize] = ACTIONS(1578), + [anon_sym_f32] = ACTIONS(1578), + [anon_sym_f64] = ACTIONS(1578), + [anon_sym_bool] = ACTIONS(1578), + [anon_sym_str] = ACTIONS(1578), + [anon_sym_char] = ACTIONS(1578), + [anon_sym_SQUOTE] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_break] = ACTIONS(1578), + [anon_sym_const] = ACTIONS(1578), + [anon_sym_continue] = ACTIONS(1578), + [anon_sym_default] = ACTIONS(1578), + [anon_sym_enum] = ACTIONS(1578), + [anon_sym_fn] = ACTIONS(1578), + [anon_sym_for] = ACTIONS(1578), + [anon_sym_if] = ACTIONS(1578), + [anon_sym_impl] = ACTIONS(1578), + [anon_sym_let] = ACTIONS(1578), + [anon_sym_loop] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_mod] = ACTIONS(1578), + [anon_sym_pub] = ACTIONS(1578), + [anon_sym_return] = ACTIONS(1578), + [anon_sym_static] = ACTIONS(1578), + [anon_sym_struct] = ACTIONS(1578), + [anon_sym_trait] = ACTIONS(1578), + [anon_sym_type] = ACTIONS(1578), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1578), + [anon_sym_use] = ACTIONS(1578), + [anon_sym_while] = ACTIONS(1578), + [anon_sym_POUND] = ACTIONS(1576), + [anon_sym_BANG] = ACTIONS(1576), + [anon_sym_extern] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1576), + [anon_sym_COLON_COLON] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_DOT_DOT] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_move] = ACTIONS(1578), + [sym_integer_literal] = ACTIONS(1576), + [aux_sym_string_literal_token1] = ACTIONS(1576), + [sym_char_literal] = ACTIONS(1576), + [anon_sym_true] = ACTIONS(1578), + [anon_sym_false] = ACTIONS(1578), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1576), + [sym_raw_string_literal] = ACTIONS(1576), + [sym_float_literal] = ACTIONS(1576), + [sym_block_comment] = ACTIONS(3), + }, + [372] = { + [ts_builtin_sym_end] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_macro_rules_BANG] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_u8] = ACTIONS(1582), + [anon_sym_i8] = ACTIONS(1582), + [anon_sym_u16] = ACTIONS(1582), + [anon_sym_i16] = ACTIONS(1582), + [anon_sym_u32] = ACTIONS(1582), + [anon_sym_i32] = ACTIONS(1582), + [anon_sym_u64] = ACTIONS(1582), + [anon_sym_i64] = ACTIONS(1582), + [anon_sym_u128] = ACTIONS(1582), + [anon_sym_i128] = ACTIONS(1582), + [anon_sym_isize] = ACTIONS(1582), + [anon_sym_usize] = ACTIONS(1582), + [anon_sym_f32] = ACTIONS(1582), + [anon_sym_f64] = ACTIONS(1582), + [anon_sym_bool] = ACTIONS(1582), + [anon_sym_str] = ACTIONS(1582), + [anon_sym_char] = ACTIONS(1582), + [anon_sym_SQUOTE] = ACTIONS(1582), + [anon_sym_async] = ACTIONS(1582), + [anon_sym_break] = ACTIONS(1582), + [anon_sym_const] = ACTIONS(1582), + [anon_sym_continue] = ACTIONS(1582), + [anon_sym_default] = ACTIONS(1582), + [anon_sym_enum] = ACTIONS(1582), + [anon_sym_fn] = ACTIONS(1582), + [anon_sym_for] = ACTIONS(1582), + [anon_sym_if] = ACTIONS(1582), + [anon_sym_impl] = ACTIONS(1582), + [anon_sym_let] = ACTIONS(1582), + [anon_sym_loop] = ACTIONS(1582), + [anon_sym_match] = ACTIONS(1582), + [anon_sym_mod] = ACTIONS(1582), + [anon_sym_pub] = ACTIONS(1582), + [anon_sym_return] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1582), + [anon_sym_struct] = ACTIONS(1582), + [anon_sym_trait] = ACTIONS(1582), + [anon_sym_type] = ACTIONS(1582), + [anon_sym_union] = ACTIONS(1582), + [anon_sym_unsafe] = ACTIONS(1582), + [anon_sym_use] = ACTIONS(1582), + [anon_sym_while] = ACTIONS(1582), + [anon_sym_POUND] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_COLON_COLON] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_move] = ACTIONS(1582), + [sym_integer_literal] = ACTIONS(1580), + [aux_sym_string_literal_token1] = ACTIONS(1580), + [sym_char_literal] = ACTIONS(1580), + [anon_sym_true] = ACTIONS(1582), + [anon_sym_false] = ACTIONS(1582), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1580), + [sym_float_literal] = ACTIONS(1580), + [sym_block_comment] = ACTIONS(3), + }, + [373] = { + [ts_builtin_sym_end] = ACTIONS(1584), + [sym_identifier] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_macro_rules_BANG] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1586), + [anon_sym_i8] = ACTIONS(1586), + [anon_sym_u16] = ACTIONS(1586), + [anon_sym_i16] = ACTIONS(1586), + [anon_sym_u32] = ACTIONS(1586), + [anon_sym_i32] = ACTIONS(1586), + [anon_sym_u64] = ACTIONS(1586), + [anon_sym_i64] = ACTIONS(1586), + [anon_sym_u128] = ACTIONS(1586), + [anon_sym_i128] = ACTIONS(1586), + [anon_sym_isize] = ACTIONS(1586), + [anon_sym_usize] = ACTIONS(1586), + [anon_sym_f32] = ACTIONS(1586), + [anon_sym_f64] = ACTIONS(1586), + [anon_sym_bool] = ACTIONS(1586), + [anon_sym_str] = ACTIONS(1586), + [anon_sym_char] = ACTIONS(1586), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_async] = ACTIONS(1586), + [anon_sym_break] = ACTIONS(1586), + [anon_sym_const] = ACTIONS(1586), + [anon_sym_continue] = ACTIONS(1586), + [anon_sym_default] = ACTIONS(1586), + [anon_sym_enum] = ACTIONS(1586), + [anon_sym_fn] = ACTIONS(1586), + [anon_sym_for] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1586), + [anon_sym_impl] = ACTIONS(1586), + [anon_sym_let] = ACTIONS(1586), + [anon_sym_loop] = ACTIONS(1586), + [anon_sym_match] = ACTIONS(1586), + [anon_sym_mod] = ACTIONS(1586), + [anon_sym_pub] = ACTIONS(1586), + [anon_sym_return] = ACTIONS(1586), + [anon_sym_static] = ACTIONS(1586), + [anon_sym_struct] = ACTIONS(1586), + [anon_sym_trait] = ACTIONS(1586), + [anon_sym_type] = ACTIONS(1586), + [anon_sym_union] = ACTIONS(1586), + [anon_sym_unsafe] = ACTIONS(1586), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_while] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_extern] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_COLON_COLON] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_move] = ACTIONS(1586), + [sym_integer_literal] = ACTIONS(1584), + [aux_sym_string_literal_token1] = ACTIONS(1584), + [sym_char_literal] = ACTIONS(1584), + [anon_sym_true] = ACTIONS(1586), + [anon_sym_false] = ACTIONS(1586), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1586), + [sym_super] = ACTIONS(1586), + [sym_crate] = ACTIONS(1586), + [sym_metavariable] = ACTIONS(1584), + [sym_raw_string_literal] = ACTIONS(1584), + [sym_float_literal] = ACTIONS(1584), + [sym_block_comment] = ACTIONS(3), + }, + [374] = { + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_macro_rules_BANG] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_u8] = ACTIONS(1590), + [anon_sym_i8] = ACTIONS(1590), + [anon_sym_u16] = ACTIONS(1590), + [anon_sym_i16] = ACTIONS(1590), + [anon_sym_u32] = ACTIONS(1590), + [anon_sym_i32] = ACTIONS(1590), + [anon_sym_u64] = ACTIONS(1590), + [anon_sym_i64] = ACTIONS(1590), + [anon_sym_u128] = ACTIONS(1590), + [anon_sym_i128] = ACTIONS(1590), + [anon_sym_isize] = ACTIONS(1590), + [anon_sym_usize] = ACTIONS(1590), + [anon_sym_f32] = ACTIONS(1590), + [anon_sym_f64] = ACTIONS(1590), + [anon_sym_bool] = ACTIONS(1590), + [anon_sym_str] = ACTIONS(1590), + [anon_sym_char] = ACTIONS(1590), + [anon_sym_SQUOTE] = ACTIONS(1590), + [anon_sym_async] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_const] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_enum] = ACTIONS(1590), + [anon_sym_fn] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_impl] = ACTIONS(1590), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_loop] = ACTIONS(1590), + [anon_sym_match] = ACTIONS(1590), + [anon_sym_mod] = ACTIONS(1590), + [anon_sym_pub] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_struct] = ACTIONS(1590), + [anon_sym_trait] = ACTIONS(1590), + [anon_sym_type] = ACTIONS(1590), + [anon_sym_union] = ACTIONS(1590), + [anon_sym_unsafe] = ACTIONS(1590), + [anon_sym_use] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_extern] = ACTIONS(1590), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_COLON_COLON] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1588), + [anon_sym_move] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(1588), + [aux_sym_string_literal_token1] = ACTIONS(1588), + [sym_char_literal] = ACTIONS(1588), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1590), + [sym_super] = ACTIONS(1590), + [sym_crate] = ACTIONS(1590), + [sym_metavariable] = ACTIONS(1588), + [sym_raw_string_literal] = ACTIONS(1588), + [sym_float_literal] = ACTIONS(1588), + [sym_block_comment] = ACTIONS(3), + }, + [375] = { + [ts_builtin_sym_end] = ACTIONS(1592), + [sym_identifier] = ACTIONS(1594), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_macro_rules_BANG] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_u8] = ACTIONS(1594), + [anon_sym_i8] = ACTIONS(1594), + [anon_sym_u16] = ACTIONS(1594), + [anon_sym_i16] = ACTIONS(1594), + [anon_sym_u32] = ACTIONS(1594), + [anon_sym_i32] = ACTIONS(1594), + [anon_sym_u64] = ACTIONS(1594), + [anon_sym_i64] = ACTIONS(1594), + [anon_sym_u128] = ACTIONS(1594), + [anon_sym_i128] = ACTIONS(1594), + [anon_sym_isize] = ACTIONS(1594), + [anon_sym_usize] = ACTIONS(1594), + [anon_sym_f32] = ACTIONS(1594), + [anon_sym_f64] = ACTIONS(1594), + [anon_sym_bool] = ACTIONS(1594), + [anon_sym_str] = ACTIONS(1594), + [anon_sym_char] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1594), + [anon_sym_break] = ACTIONS(1594), + [anon_sym_const] = ACTIONS(1594), + [anon_sym_continue] = ACTIONS(1594), + [anon_sym_default] = ACTIONS(1594), + [anon_sym_enum] = ACTIONS(1594), + [anon_sym_fn] = ACTIONS(1594), + [anon_sym_for] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1594), + [anon_sym_impl] = ACTIONS(1594), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_loop] = ACTIONS(1594), + [anon_sym_match] = ACTIONS(1594), + [anon_sym_mod] = ACTIONS(1594), + [anon_sym_pub] = ACTIONS(1594), + [anon_sym_return] = ACTIONS(1594), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_struct] = ACTIONS(1594), + [anon_sym_trait] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_union] = ACTIONS(1594), + [anon_sym_unsafe] = ACTIONS(1594), + [anon_sym_use] = ACTIONS(1594), + [anon_sym_while] = ACTIONS(1594), + [anon_sym_POUND] = ACTIONS(1592), + [anon_sym_BANG] = ACTIONS(1592), + [anon_sym_extern] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1592), + [anon_sym_DOT_DOT] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_move] = ACTIONS(1594), + [sym_integer_literal] = ACTIONS(1592), + [aux_sym_string_literal_token1] = ACTIONS(1592), + [sym_char_literal] = ACTIONS(1592), + [anon_sym_true] = ACTIONS(1594), + [anon_sym_false] = ACTIONS(1594), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1594), + [sym_super] = ACTIONS(1594), + [sym_crate] = ACTIONS(1594), + [sym_metavariable] = ACTIONS(1592), + [sym_raw_string_literal] = ACTIONS(1592), + [sym_float_literal] = ACTIONS(1592), + [sym_block_comment] = ACTIONS(3), + }, + [376] = { + [ts_builtin_sym_end] = ACTIONS(1596), + [sym_identifier] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_macro_rules_BANG] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1596), + [anon_sym_u8] = ACTIONS(1598), + [anon_sym_i8] = ACTIONS(1598), + [anon_sym_u16] = ACTIONS(1598), + [anon_sym_i16] = ACTIONS(1598), + [anon_sym_u32] = ACTIONS(1598), + [anon_sym_i32] = ACTIONS(1598), + [anon_sym_u64] = ACTIONS(1598), + [anon_sym_i64] = ACTIONS(1598), + [anon_sym_u128] = ACTIONS(1598), + [anon_sym_i128] = ACTIONS(1598), + [anon_sym_isize] = ACTIONS(1598), + [anon_sym_usize] = ACTIONS(1598), + [anon_sym_f32] = ACTIONS(1598), + [anon_sym_f64] = ACTIONS(1598), + [anon_sym_bool] = ACTIONS(1598), + [anon_sym_str] = ACTIONS(1598), + [anon_sym_char] = ACTIONS(1598), + [anon_sym_SQUOTE] = ACTIONS(1598), + [anon_sym_async] = ACTIONS(1598), + [anon_sym_break] = ACTIONS(1598), + [anon_sym_const] = ACTIONS(1598), + [anon_sym_continue] = ACTIONS(1598), + [anon_sym_default] = ACTIONS(1598), + [anon_sym_enum] = ACTIONS(1598), + [anon_sym_fn] = ACTIONS(1598), + [anon_sym_for] = ACTIONS(1598), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_impl] = ACTIONS(1598), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_loop] = ACTIONS(1598), + [anon_sym_match] = ACTIONS(1598), + [anon_sym_mod] = ACTIONS(1598), + [anon_sym_pub] = ACTIONS(1598), + [anon_sym_return] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_struct] = ACTIONS(1598), + [anon_sym_trait] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_union] = ACTIONS(1598), + [anon_sym_unsafe] = ACTIONS(1598), + [anon_sym_use] = ACTIONS(1598), + [anon_sym_while] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_extern] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_COLON_COLON] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_move] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(1596), + [aux_sym_string_literal_token1] = ACTIONS(1596), + [sym_char_literal] = ACTIONS(1596), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1598), + [sym_super] = ACTIONS(1598), + [sym_crate] = ACTIONS(1598), + [sym_metavariable] = ACTIONS(1596), + [sym_raw_string_literal] = ACTIONS(1596), + [sym_float_literal] = ACTIONS(1596), + [sym_block_comment] = ACTIONS(3), + }, + [377] = { + [ts_builtin_sym_end] = ACTIONS(1600), + [sym_identifier] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_macro_rules_BANG] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1600), + [anon_sym_STAR] = ACTIONS(1600), + [anon_sym_u8] = ACTIONS(1602), + [anon_sym_i8] = ACTIONS(1602), + [anon_sym_u16] = ACTIONS(1602), + [anon_sym_i16] = ACTIONS(1602), + [anon_sym_u32] = ACTIONS(1602), + [anon_sym_i32] = ACTIONS(1602), + [anon_sym_u64] = ACTIONS(1602), + [anon_sym_i64] = ACTIONS(1602), + [anon_sym_u128] = ACTIONS(1602), + [anon_sym_i128] = ACTIONS(1602), + [anon_sym_isize] = ACTIONS(1602), + [anon_sym_usize] = ACTIONS(1602), + [anon_sym_f32] = ACTIONS(1602), + [anon_sym_f64] = ACTIONS(1602), + [anon_sym_bool] = ACTIONS(1602), + [anon_sym_str] = ACTIONS(1602), + [anon_sym_char] = ACTIONS(1602), + [anon_sym_SQUOTE] = ACTIONS(1602), + [anon_sym_async] = ACTIONS(1602), + [anon_sym_break] = ACTIONS(1602), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_continue] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1602), + [anon_sym_enum] = ACTIONS(1602), + [anon_sym_fn] = ACTIONS(1602), + [anon_sym_for] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_impl] = ACTIONS(1602), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_loop] = ACTIONS(1602), + [anon_sym_match] = ACTIONS(1602), + [anon_sym_mod] = ACTIONS(1602), + [anon_sym_pub] = ACTIONS(1602), + [anon_sym_return] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_struct] = ACTIONS(1602), + [anon_sym_trait] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_union] = ACTIONS(1602), + [anon_sym_unsafe] = ACTIONS(1602), + [anon_sym_use] = ACTIONS(1602), + [anon_sym_while] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(1600), + [anon_sym_BANG] = ACTIONS(1600), + [anon_sym_extern] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1600), + [anon_sym_COLON_COLON] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_DOT_DOT] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_move] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(1600), + [aux_sym_string_literal_token1] = ACTIONS(1600), + [sym_char_literal] = ACTIONS(1600), + [anon_sym_true] = ACTIONS(1602), + [anon_sym_false] = ACTIONS(1602), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1602), + [sym_super] = ACTIONS(1602), + [sym_crate] = ACTIONS(1602), + [sym_metavariable] = ACTIONS(1600), + [sym_raw_string_literal] = ACTIONS(1600), + [sym_float_literal] = ACTIONS(1600), + [sym_block_comment] = ACTIONS(3), + }, + [378] = { + [ts_builtin_sym_end] = ACTIONS(1604), + [sym_identifier] = ACTIONS(1606), + [anon_sym_SEMI] = ACTIONS(1604), + [anon_sym_macro_rules_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_u8] = ACTIONS(1606), + [anon_sym_i8] = ACTIONS(1606), + [anon_sym_u16] = ACTIONS(1606), + [anon_sym_i16] = ACTIONS(1606), + [anon_sym_u32] = ACTIONS(1606), + [anon_sym_i32] = ACTIONS(1606), + [anon_sym_u64] = ACTIONS(1606), + [anon_sym_i64] = ACTIONS(1606), + [anon_sym_u128] = ACTIONS(1606), + [anon_sym_i128] = ACTIONS(1606), + [anon_sym_isize] = ACTIONS(1606), + [anon_sym_usize] = ACTIONS(1606), + [anon_sym_f32] = ACTIONS(1606), + [anon_sym_f64] = ACTIONS(1606), + [anon_sym_bool] = ACTIONS(1606), + [anon_sym_str] = ACTIONS(1606), + [anon_sym_char] = ACTIONS(1606), + [anon_sym_SQUOTE] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_break] = ACTIONS(1606), + [anon_sym_const] = ACTIONS(1606), + [anon_sym_continue] = ACTIONS(1606), + [anon_sym_default] = ACTIONS(1606), + [anon_sym_enum] = ACTIONS(1606), + [anon_sym_fn] = ACTIONS(1606), + [anon_sym_for] = ACTIONS(1606), + [anon_sym_if] = ACTIONS(1606), + [anon_sym_impl] = ACTIONS(1606), + [anon_sym_let] = ACTIONS(1606), + [anon_sym_loop] = ACTIONS(1606), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_mod] = ACTIONS(1606), + [anon_sym_pub] = ACTIONS(1606), + [anon_sym_return] = ACTIONS(1606), + [anon_sym_static] = ACTIONS(1606), + [anon_sym_struct] = ACTIONS(1606), + [anon_sym_trait] = ACTIONS(1606), + [anon_sym_type] = ACTIONS(1606), + [anon_sym_union] = ACTIONS(1606), + [anon_sym_unsafe] = ACTIONS(1606), + [anon_sym_use] = ACTIONS(1606), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(1604), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_extern] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1604), + [anon_sym_COLON_COLON] = ACTIONS(1604), + [anon_sym_AMP] = ACTIONS(1604), + [anon_sym_DOT_DOT] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_move] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(1604), + [aux_sym_string_literal_token1] = ACTIONS(1604), + [sym_char_literal] = ACTIONS(1604), + [anon_sym_true] = ACTIONS(1606), + [anon_sym_false] = ACTIONS(1606), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1606), + [sym_super] = ACTIONS(1606), + [sym_crate] = ACTIONS(1606), + [sym_metavariable] = ACTIONS(1604), + [sym_raw_string_literal] = ACTIONS(1604), + [sym_float_literal] = ACTIONS(1604), + [sym_block_comment] = ACTIONS(3), + }, + [379] = { + [ts_builtin_sym_end] = ACTIONS(1608), + [sym_identifier] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_macro_rules_BANG] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_STAR] = ACTIONS(1608), + [anon_sym_u8] = ACTIONS(1610), + [anon_sym_i8] = ACTIONS(1610), + [anon_sym_u16] = ACTIONS(1610), + [anon_sym_i16] = ACTIONS(1610), + [anon_sym_u32] = ACTIONS(1610), + [anon_sym_i32] = ACTIONS(1610), + [anon_sym_u64] = ACTIONS(1610), + [anon_sym_i64] = ACTIONS(1610), + [anon_sym_u128] = ACTIONS(1610), + [anon_sym_i128] = ACTIONS(1610), + [anon_sym_isize] = ACTIONS(1610), + [anon_sym_usize] = ACTIONS(1610), + [anon_sym_f32] = ACTIONS(1610), + [anon_sym_f64] = ACTIONS(1610), + [anon_sym_bool] = ACTIONS(1610), + [anon_sym_str] = ACTIONS(1610), + [anon_sym_char] = ACTIONS(1610), + [anon_sym_SQUOTE] = ACTIONS(1610), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_break] = ACTIONS(1610), + [anon_sym_const] = ACTIONS(1610), + [anon_sym_continue] = ACTIONS(1610), + [anon_sym_default] = ACTIONS(1610), + [anon_sym_enum] = ACTIONS(1610), + [anon_sym_fn] = ACTIONS(1610), + [anon_sym_for] = ACTIONS(1610), + [anon_sym_if] = ACTIONS(1610), + [anon_sym_impl] = ACTIONS(1610), + [anon_sym_let] = ACTIONS(1610), + [anon_sym_loop] = ACTIONS(1610), + [anon_sym_match] = ACTIONS(1610), + [anon_sym_mod] = ACTIONS(1610), + [anon_sym_pub] = ACTIONS(1610), + [anon_sym_return] = ACTIONS(1610), + [anon_sym_static] = ACTIONS(1610), + [anon_sym_struct] = ACTIONS(1610), + [anon_sym_trait] = ACTIONS(1610), + [anon_sym_type] = ACTIONS(1610), + [anon_sym_union] = ACTIONS(1610), + [anon_sym_unsafe] = ACTIONS(1610), + [anon_sym_use] = ACTIONS(1610), + [anon_sym_while] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1608), + [anon_sym_BANG] = ACTIONS(1608), + [anon_sym_extern] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1608), + [anon_sym_COLON_COLON] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_move] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1608), + [aux_sym_string_literal_token1] = ACTIONS(1608), + [sym_char_literal] = ACTIONS(1608), + [anon_sym_true] = ACTIONS(1610), + [anon_sym_false] = ACTIONS(1610), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1610), + [sym_super] = ACTIONS(1610), + [sym_crate] = ACTIONS(1610), + [sym_metavariable] = ACTIONS(1608), + [sym_raw_string_literal] = ACTIONS(1608), + [sym_float_literal] = ACTIONS(1608), + [sym_block_comment] = ACTIONS(3), + }, + [380] = { + [ts_builtin_sym_end] = ACTIONS(1612), + [sym_identifier] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1612), + [anon_sym_macro_rules_BANG] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1612), + [anon_sym_u8] = ACTIONS(1614), + [anon_sym_i8] = ACTIONS(1614), + [anon_sym_u16] = ACTIONS(1614), + [anon_sym_i16] = ACTIONS(1614), + [anon_sym_u32] = ACTIONS(1614), + [anon_sym_i32] = ACTIONS(1614), + [anon_sym_u64] = ACTIONS(1614), + [anon_sym_i64] = ACTIONS(1614), + [anon_sym_u128] = ACTIONS(1614), + [anon_sym_i128] = ACTIONS(1614), + [anon_sym_isize] = ACTIONS(1614), + [anon_sym_usize] = ACTIONS(1614), + [anon_sym_f32] = ACTIONS(1614), + [anon_sym_f64] = ACTIONS(1614), + [anon_sym_bool] = ACTIONS(1614), + [anon_sym_str] = ACTIONS(1614), + [anon_sym_char] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1614), + [anon_sym_async] = ACTIONS(1614), + [anon_sym_break] = ACTIONS(1614), + [anon_sym_const] = ACTIONS(1614), + [anon_sym_continue] = ACTIONS(1614), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_enum] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1614), + [anon_sym_for] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1614), + [anon_sym_impl] = ACTIONS(1614), + [anon_sym_let] = ACTIONS(1614), + [anon_sym_loop] = ACTIONS(1614), + [anon_sym_match] = ACTIONS(1614), + [anon_sym_mod] = ACTIONS(1614), + [anon_sym_pub] = ACTIONS(1614), + [anon_sym_return] = ACTIONS(1614), + [anon_sym_static] = ACTIONS(1614), + [anon_sym_struct] = ACTIONS(1614), + [anon_sym_trait] = ACTIONS(1614), + [anon_sym_type] = ACTIONS(1614), + [anon_sym_union] = ACTIONS(1614), + [anon_sym_unsafe] = ACTIONS(1614), + [anon_sym_use] = ACTIONS(1614), + [anon_sym_while] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [anon_sym_extern] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_COLON_COLON] = ACTIONS(1612), + [anon_sym_AMP] = ACTIONS(1612), + [anon_sym_DOT_DOT] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [anon_sym_move] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1612), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1614), + [sym_super] = ACTIONS(1614), + [sym_crate] = ACTIONS(1614), + [sym_metavariable] = ACTIONS(1612), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), + [sym_block_comment] = ACTIONS(3), + }, + [381] = { + [ts_builtin_sym_end] = ACTIONS(1616), + [sym_identifier] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_macro_rules_BANG] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_u8] = ACTIONS(1618), + [anon_sym_i8] = ACTIONS(1618), + [anon_sym_u16] = ACTIONS(1618), + [anon_sym_i16] = ACTIONS(1618), + [anon_sym_u32] = ACTIONS(1618), + [anon_sym_i32] = ACTIONS(1618), + [anon_sym_u64] = ACTIONS(1618), + [anon_sym_i64] = ACTIONS(1618), + [anon_sym_u128] = ACTIONS(1618), + [anon_sym_i128] = ACTIONS(1618), + [anon_sym_isize] = ACTIONS(1618), + [anon_sym_usize] = ACTIONS(1618), + [anon_sym_f32] = ACTIONS(1618), + [anon_sym_f64] = ACTIONS(1618), + [anon_sym_bool] = ACTIONS(1618), + [anon_sym_str] = ACTIONS(1618), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_break] = ACTIONS(1618), + [anon_sym_const] = ACTIONS(1618), + [anon_sym_continue] = ACTIONS(1618), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_enum] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1618), + [anon_sym_for] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1618), + [anon_sym_impl] = ACTIONS(1618), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_loop] = ACTIONS(1618), + [anon_sym_match] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1618), + [anon_sym_pub] = ACTIONS(1618), + [anon_sym_return] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1618), + [anon_sym_struct] = ACTIONS(1618), + [anon_sym_trait] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(1618), + [anon_sym_unsafe] = ACTIONS(1618), + [anon_sym_use] = ACTIONS(1618), + [anon_sym_while] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1616), + [anon_sym_BANG] = ACTIONS(1616), + [anon_sym_extern] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_COLON_COLON] = ACTIONS(1616), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_move] = ACTIONS(1618), + [sym_integer_literal] = ACTIONS(1616), + [aux_sym_string_literal_token1] = ACTIONS(1616), + [sym_char_literal] = ACTIONS(1616), + [anon_sym_true] = ACTIONS(1618), + [anon_sym_false] = ACTIONS(1618), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1616), + [sym_raw_string_literal] = ACTIONS(1616), + [sym_float_literal] = ACTIONS(1616), + [sym_block_comment] = ACTIONS(3), + }, + [382] = { + [ts_builtin_sym_end] = ACTIONS(1620), + [sym_identifier] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_macro_rules_BANG] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_u8] = ACTIONS(1622), + [anon_sym_i8] = ACTIONS(1622), + [anon_sym_u16] = ACTIONS(1622), + [anon_sym_i16] = ACTIONS(1622), + [anon_sym_u32] = ACTIONS(1622), + [anon_sym_i32] = ACTIONS(1622), + [anon_sym_u64] = ACTIONS(1622), + [anon_sym_i64] = ACTIONS(1622), + [anon_sym_u128] = ACTIONS(1622), + [anon_sym_i128] = ACTIONS(1622), + [anon_sym_isize] = ACTIONS(1622), + [anon_sym_usize] = ACTIONS(1622), + [anon_sym_f32] = ACTIONS(1622), + [anon_sym_f64] = ACTIONS(1622), + [anon_sym_bool] = ACTIONS(1622), + [anon_sym_str] = ACTIONS(1622), + [anon_sym_char] = ACTIONS(1622), + [anon_sym_SQUOTE] = ACTIONS(1622), + [anon_sym_async] = ACTIONS(1622), + [anon_sym_break] = ACTIONS(1622), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_continue] = ACTIONS(1622), + [anon_sym_default] = ACTIONS(1622), + [anon_sym_enum] = ACTIONS(1622), + [anon_sym_fn] = ACTIONS(1622), + [anon_sym_for] = ACTIONS(1622), + [anon_sym_if] = ACTIONS(1622), + [anon_sym_impl] = ACTIONS(1622), + [anon_sym_let] = ACTIONS(1622), + [anon_sym_loop] = ACTIONS(1622), + [anon_sym_match] = ACTIONS(1622), + [anon_sym_mod] = ACTIONS(1622), + [anon_sym_pub] = ACTIONS(1622), + [anon_sym_return] = ACTIONS(1622), + [anon_sym_static] = ACTIONS(1622), + [anon_sym_struct] = ACTIONS(1622), + [anon_sym_trait] = ACTIONS(1622), + [anon_sym_type] = ACTIONS(1622), + [anon_sym_union] = ACTIONS(1622), + [anon_sym_unsafe] = ACTIONS(1622), + [anon_sym_use] = ACTIONS(1622), + [anon_sym_while] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1620), + [anon_sym_extern] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1620), + [anon_sym_COLON_COLON] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_move] = ACTIONS(1622), + [sym_integer_literal] = ACTIONS(1620), + [aux_sym_string_literal_token1] = ACTIONS(1620), + [sym_char_literal] = ACTIONS(1620), + [anon_sym_true] = ACTIONS(1622), + [anon_sym_false] = ACTIONS(1622), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1622), + [sym_super] = ACTIONS(1622), + [sym_crate] = ACTIONS(1622), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1620), + [sym_float_literal] = ACTIONS(1620), + [sym_block_comment] = ACTIONS(3), + }, + [383] = { + [ts_builtin_sym_end] = ACTIONS(1624), + [sym_identifier] = ACTIONS(1626), + [anon_sym_SEMI] = ACTIONS(1624), + [anon_sym_macro_rules_BANG] = ACTIONS(1624), + [anon_sym_LPAREN] = ACTIONS(1624), + [anon_sym_LBRACE] = ACTIONS(1624), + [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_LBRACK] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_u8] = ACTIONS(1626), + [anon_sym_i8] = ACTIONS(1626), + [anon_sym_u16] = ACTIONS(1626), + [anon_sym_i16] = ACTIONS(1626), + [anon_sym_u32] = ACTIONS(1626), + [anon_sym_i32] = ACTIONS(1626), + [anon_sym_u64] = ACTIONS(1626), + [anon_sym_i64] = ACTIONS(1626), + [anon_sym_u128] = ACTIONS(1626), + [anon_sym_i128] = ACTIONS(1626), + [anon_sym_isize] = ACTIONS(1626), + [anon_sym_usize] = ACTIONS(1626), + [anon_sym_f32] = ACTIONS(1626), + [anon_sym_f64] = ACTIONS(1626), + [anon_sym_bool] = ACTIONS(1626), + [anon_sym_str] = ACTIONS(1626), + [anon_sym_char] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_break] = ACTIONS(1626), + [anon_sym_const] = ACTIONS(1626), + [anon_sym_continue] = ACTIONS(1626), + [anon_sym_default] = ACTIONS(1626), + [anon_sym_enum] = ACTIONS(1626), + [anon_sym_fn] = ACTIONS(1626), + [anon_sym_for] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_impl] = ACTIONS(1626), + [anon_sym_let] = ACTIONS(1626), + [anon_sym_loop] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_mod] = ACTIONS(1626), + [anon_sym_pub] = ACTIONS(1626), + [anon_sym_return] = ACTIONS(1626), + [anon_sym_static] = ACTIONS(1626), + [anon_sym_struct] = ACTIONS(1626), + [anon_sym_trait] = ACTIONS(1626), + [anon_sym_type] = ACTIONS(1626), + [anon_sym_union] = ACTIONS(1626), + [anon_sym_unsafe] = ACTIONS(1626), + [anon_sym_use] = ACTIONS(1626), + [anon_sym_while] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(1624), + [anon_sym_BANG] = ACTIONS(1624), + [anon_sym_extern] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1624), + [anon_sym_COLON_COLON] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1624), + [anon_sym_DOT_DOT] = ACTIONS(1624), + [anon_sym_DASH] = ACTIONS(1624), + [anon_sym_PIPE] = ACTIONS(1624), + [anon_sym_move] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(1624), + [aux_sym_string_literal_token1] = ACTIONS(1624), + [sym_char_literal] = ACTIONS(1624), + [anon_sym_true] = ACTIONS(1626), + [anon_sym_false] = ACTIONS(1626), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1626), + [sym_super] = ACTIONS(1626), + [sym_crate] = ACTIONS(1626), + [sym_metavariable] = ACTIONS(1624), + [sym_raw_string_literal] = ACTIONS(1624), + [sym_float_literal] = ACTIONS(1624), + [sym_block_comment] = ACTIONS(3), + }, + [384] = { + [ts_builtin_sym_end] = ACTIONS(1628), + [sym_identifier] = ACTIONS(1630), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_macro_rules_BANG] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1628), + [anon_sym_u8] = ACTIONS(1630), + [anon_sym_i8] = ACTIONS(1630), + [anon_sym_u16] = ACTIONS(1630), + [anon_sym_i16] = ACTIONS(1630), + [anon_sym_u32] = ACTIONS(1630), + [anon_sym_i32] = ACTIONS(1630), + [anon_sym_u64] = ACTIONS(1630), + [anon_sym_i64] = ACTIONS(1630), + [anon_sym_u128] = ACTIONS(1630), + [anon_sym_i128] = ACTIONS(1630), + [anon_sym_isize] = ACTIONS(1630), + [anon_sym_usize] = ACTIONS(1630), + [anon_sym_f32] = ACTIONS(1630), + [anon_sym_f64] = ACTIONS(1630), + [anon_sym_bool] = ACTIONS(1630), + [anon_sym_str] = ACTIONS(1630), + [anon_sym_char] = ACTIONS(1630), + [anon_sym_SQUOTE] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_const] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(1630), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_enum] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1630), + [anon_sym_for] = ACTIONS(1630), + [anon_sym_if] = ACTIONS(1630), + [anon_sym_impl] = ACTIONS(1630), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_loop] = ACTIONS(1630), + [anon_sym_match] = ACTIONS(1630), + [anon_sym_mod] = ACTIONS(1630), + [anon_sym_pub] = ACTIONS(1630), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_struct] = ACTIONS(1630), + [anon_sym_trait] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_union] = ACTIONS(1630), + [anon_sym_unsafe] = ACTIONS(1630), + [anon_sym_use] = ACTIONS(1630), + [anon_sym_while] = ACTIONS(1630), + [anon_sym_POUND] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1628), + [anon_sym_extern] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1628), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_move] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(1628), + [aux_sym_string_literal_token1] = ACTIONS(1628), + [sym_char_literal] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1630), + [anon_sym_false] = ACTIONS(1630), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1630), + [sym_super] = ACTIONS(1630), + [sym_crate] = ACTIONS(1630), + [sym_metavariable] = ACTIONS(1628), + [sym_raw_string_literal] = ACTIONS(1628), + [sym_float_literal] = ACTIONS(1628), + [sym_block_comment] = ACTIONS(3), + }, + [385] = { + [ts_builtin_sym_end] = ACTIONS(1632), + [sym_identifier] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1632), + [anon_sym_macro_rules_BANG] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_RBRACE] = ACTIONS(1632), + [anon_sym_LBRACK] = ACTIONS(1632), + [anon_sym_STAR] = ACTIONS(1632), + [anon_sym_u8] = ACTIONS(1634), + [anon_sym_i8] = ACTIONS(1634), + [anon_sym_u16] = ACTIONS(1634), + [anon_sym_i16] = ACTIONS(1634), + [anon_sym_u32] = ACTIONS(1634), + [anon_sym_i32] = ACTIONS(1634), + [anon_sym_u64] = ACTIONS(1634), + [anon_sym_i64] = ACTIONS(1634), + [anon_sym_u128] = ACTIONS(1634), + [anon_sym_i128] = ACTIONS(1634), + [anon_sym_isize] = ACTIONS(1634), + [anon_sym_usize] = ACTIONS(1634), + [anon_sym_f32] = ACTIONS(1634), + [anon_sym_f64] = ACTIONS(1634), + [anon_sym_bool] = ACTIONS(1634), + [anon_sym_str] = ACTIONS(1634), + [anon_sym_char] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1634), + [anon_sym_async] = ACTIONS(1634), + [anon_sym_break] = ACTIONS(1634), + [anon_sym_const] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1634), + [anon_sym_enum] = ACTIONS(1634), + [anon_sym_fn] = ACTIONS(1634), + [anon_sym_for] = ACTIONS(1634), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1634), + [anon_sym_let] = ACTIONS(1634), + [anon_sym_loop] = ACTIONS(1634), + [anon_sym_match] = ACTIONS(1634), + [anon_sym_mod] = ACTIONS(1634), + [anon_sym_pub] = ACTIONS(1634), + [anon_sym_return] = ACTIONS(1634), + [anon_sym_static] = ACTIONS(1634), + [anon_sym_struct] = ACTIONS(1634), + [anon_sym_trait] = ACTIONS(1634), + [anon_sym_type] = ACTIONS(1634), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1634), + [anon_sym_use] = ACTIONS(1634), + [anon_sym_while] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1632), + [anon_sym_extern] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1632), + [anon_sym_COLON_COLON] = ACTIONS(1632), + [anon_sym_AMP] = ACTIONS(1632), + [anon_sym_DOT_DOT] = ACTIONS(1632), + [anon_sym_DASH] = ACTIONS(1632), + [anon_sym_PIPE] = ACTIONS(1632), + [anon_sym_move] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1632), + [aux_sym_string_literal_token1] = ACTIONS(1632), + [sym_char_literal] = ACTIONS(1632), + [anon_sym_true] = ACTIONS(1634), + [anon_sym_false] = ACTIONS(1634), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1634), + [sym_super] = ACTIONS(1634), + [sym_crate] = ACTIONS(1634), + [sym_metavariable] = ACTIONS(1632), + [sym_raw_string_literal] = ACTIONS(1632), + [sym_float_literal] = ACTIONS(1632), + [sym_block_comment] = ACTIONS(3), + }, + [386] = { + [ts_builtin_sym_end] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_macro_rules_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_u8] = ACTIONS(1638), + [anon_sym_i8] = ACTIONS(1638), + [anon_sym_u16] = ACTIONS(1638), + [anon_sym_i16] = ACTIONS(1638), + [anon_sym_u32] = ACTIONS(1638), + [anon_sym_i32] = ACTIONS(1638), + [anon_sym_u64] = ACTIONS(1638), + [anon_sym_i64] = ACTIONS(1638), + [anon_sym_u128] = ACTIONS(1638), + [anon_sym_i128] = ACTIONS(1638), + [anon_sym_isize] = ACTIONS(1638), + [anon_sym_usize] = ACTIONS(1638), + [anon_sym_f32] = ACTIONS(1638), + [anon_sym_f64] = ACTIONS(1638), + [anon_sym_bool] = ACTIONS(1638), + [anon_sym_str] = ACTIONS(1638), + [anon_sym_char] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1638), + [anon_sym_async] = ACTIONS(1638), + [anon_sym_break] = ACTIONS(1638), + [anon_sym_const] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(1638), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_enum] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1638), + [anon_sym_for] = ACTIONS(1638), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_impl] = ACTIONS(1638), + [anon_sym_let] = ACTIONS(1638), + [anon_sym_loop] = ACTIONS(1638), + [anon_sym_match] = ACTIONS(1638), + [anon_sym_mod] = ACTIONS(1638), + [anon_sym_pub] = ACTIONS(1638), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_static] = ACTIONS(1638), + [anon_sym_struct] = ACTIONS(1638), + [anon_sym_trait] = ACTIONS(1638), + [anon_sym_type] = ACTIONS(1638), + [anon_sym_union] = ACTIONS(1638), + [anon_sym_unsafe] = ACTIONS(1638), + [anon_sym_use] = ACTIONS(1638), + [anon_sym_while] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_extern] = ACTIONS(1638), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_COLON_COLON] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_DOT_DOT] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_move] = ACTIONS(1638), + [sym_integer_literal] = ACTIONS(1636), + [aux_sym_string_literal_token1] = ACTIONS(1636), + [sym_char_literal] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1638), + [anon_sym_false] = ACTIONS(1638), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1638), + [sym_super] = ACTIONS(1638), + [sym_crate] = ACTIONS(1638), + [sym_metavariable] = ACTIONS(1636), + [sym_raw_string_literal] = ACTIONS(1636), + [sym_float_literal] = ACTIONS(1636), + [sym_block_comment] = ACTIONS(3), + }, + [387] = { + [ts_builtin_sym_end] = ACTIONS(1640), + [sym_identifier] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_macro_rules_BANG] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_u8] = ACTIONS(1642), + [anon_sym_i8] = ACTIONS(1642), + [anon_sym_u16] = ACTIONS(1642), + [anon_sym_i16] = ACTIONS(1642), + [anon_sym_u32] = ACTIONS(1642), + [anon_sym_i32] = ACTIONS(1642), + [anon_sym_u64] = ACTIONS(1642), + [anon_sym_i64] = ACTIONS(1642), + [anon_sym_u128] = ACTIONS(1642), + [anon_sym_i128] = ACTIONS(1642), + [anon_sym_isize] = ACTIONS(1642), + [anon_sym_usize] = ACTIONS(1642), + [anon_sym_f32] = ACTIONS(1642), + [anon_sym_f64] = ACTIONS(1642), + [anon_sym_bool] = ACTIONS(1642), + [anon_sym_str] = ACTIONS(1642), + [anon_sym_char] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_break] = ACTIONS(1642), + [anon_sym_const] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(1642), + [anon_sym_default] = ACTIONS(1642), + [anon_sym_enum] = ACTIONS(1642), + [anon_sym_fn] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1642), + [anon_sym_let] = ACTIONS(1642), + [anon_sym_loop] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_mod] = ACTIONS(1642), + [anon_sym_pub] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_static] = ACTIONS(1642), + [anon_sym_struct] = ACTIONS(1642), + [anon_sym_trait] = ACTIONS(1642), + [anon_sym_type] = ACTIONS(1642), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_use] = ACTIONS(1642), + [anon_sym_while] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_extern] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1640), + [anon_sym_COLON_COLON] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1640), + [anon_sym_DOT_DOT] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_move] = ACTIONS(1642), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1640), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1642), + [anon_sym_false] = ACTIONS(1642), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1640), + [sym_raw_string_literal] = ACTIONS(1640), + [sym_float_literal] = ACTIONS(1640), + [sym_block_comment] = ACTIONS(3), + }, + [388] = { + [ts_builtin_sym_end] = ACTIONS(1644), + [sym_identifier] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_macro_rules_BANG] = ACTIONS(1644), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_STAR] = ACTIONS(1644), + [anon_sym_u8] = ACTIONS(1646), + [anon_sym_i8] = ACTIONS(1646), + [anon_sym_u16] = ACTIONS(1646), + [anon_sym_i16] = ACTIONS(1646), + [anon_sym_u32] = ACTIONS(1646), + [anon_sym_i32] = ACTIONS(1646), + [anon_sym_u64] = ACTIONS(1646), + [anon_sym_i64] = ACTIONS(1646), + [anon_sym_u128] = ACTIONS(1646), + [anon_sym_i128] = ACTIONS(1646), + [anon_sym_isize] = ACTIONS(1646), + [anon_sym_usize] = ACTIONS(1646), + [anon_sym_f32] = ACTIONS(1646), + [anon_sym_f64] = ACTIONS(1646), + [anon_sym_bool] = ACTIONS(1646), + [anon_sym_str] = ACTIONS(1646), + [anon_sym_char] = ACTIONS(1646), + [anon_sym_SQUOTE] = ACTIONS(1646), + [anon_sym_async] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(1646), + [anon_sym_default] = ACTIONS(1646), + [anon_sym_enum] = ACTIONS(1646), + [anon_sym_fn] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_impl] = ACTIONS(1646), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_loop] = ACTIONS(1646), + [anon_sym_match] = ACTIONS(1646), + [anon_sym_mod] = ACTIONS(1646), + [anon_sym_pub] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_struct] = ACTIONS(1646), + [anon_sym_trait] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_union] = ACTIONS(1646), + [anon_sym_unsafe] = ACTIONS(1646), + [anon_sym_use] = ACTIONS(1646), + [anon_sym_while] = ACTIONS(1646), + [anon_sym_POUND] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_extern] = ACTIONS(1646), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_COLON_COLON] = ACTIONS(1644), + [anon_sym_AMP] = ACTIONS(1644), + [anon_sym_DOT_DOT] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_move] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1644), + [aux_sym_string_literal_token1] = ACTIONS(1644), + [sym_char_literal] = ACTIONS(1644), + [anon_sym_true] = ACTIONS(1646), + [anon_sym_false] = ACTIONS(1646), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1646), + [sym_super] = ACTIONS(1646), + [sym_crate] = ACTIONS(1646), + [sym_metavariable] = ACTIONS(1644), + [sym_raw_string_literal] = ACTIONS(1644), + [sym_float_literal] = ACTIONS(1644), + [sym_block_comment] = ACTIONS(3), + }, + [389] = { + [ts_builtin_sym_end] = ACTIONS(1648), + [sym_identifier] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1648), + [anon_sym_macro_rules_BANG] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_LBRACK] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_u8] = ACTIONS(1650), + [anon_sym_i8] = ACTIONS(1650), + [anon_sym_u16] = ACTIONS(1650), + [anon_sym_i16] = ACTIONS(1650), + [anon_sym_u32] = ACTIONS(1650), + [anon_sym_i32] = ACTIONS(1650), + [anon_sym_u64] = ACTIONS(1650), + [anon_sym_i64] = ACTIONS(1650), + [anon_sym_u128] = ACTIONS(1650), + [anon_sym_i128] = ACTIONS(1650), + [anon_sym_isize] = ACTIONS(1650), + [anon_sym_usize] = ACTIONS(1650), + [anon_sym_f32] = ACTIONS(1650), + [anon_sym_f64] = ACTIONS(1650), + [anon_sym_bool] = ACTIONS(1650), + [anon_sym_str] = ACTIONS(1650), + [anon_sym_char] = ACTIONS(1650), + [anon_sym_SQUOTE] = ACTIONS(1650), + [anon_sym_async] = ACTIONS(1650), + [anon_sym_break] = ACTIONS(1650), + [anon_sym_const] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(1650), + [anon_sym_default] = ACTIONS(1650), + [anon_sym_enum] = ACTIONS(1650), + [anon_sym_fn] = ACTIONS(1650), + [anon_sym_for] = ACTIONS(1650), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_impl] = ACTIONS(1650), + [anon_sym_let] = ACTIONS(1650), + [anon_sym_loop] = ACTIONS(1650), + [anon_sym_match] = ACTIONS(1650), + [anon_sym_mod] = ACTIONS(1650), + [anon_sym_pub] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_static] = ACTIONS(1650), + [anon_sym_struct] = ACTIONS(1650), + [anon_sym_trait] = ACTIONS(1650), + [anon_sym_type] = ACTIONS(1650), + [anon_sym_union] = ACTIONS(1650), + [anon_sym_unsafe] = ACTIONS(1650), + [anon_sym_use] = ACTIONS(1650), + [anon_sym_while] = ACTIONS(1650), + [anon_sym_POUND] = ACTIONS(1648), + [anon_sym_BANG] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1648), + [anon_sym_COLON_COLON] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_DOT_DOT] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1648), + [anon_sym_move] = ACTIONS(1650), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1648), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1648), + [sym_raw_string_literal] = ACTIONS(1648), + [sym_float_literal] = ACTIONS(1648), + [sym_block_comment] = ACTIONS(3), + }, + [390] = { + [ts_builtin_sym_end] = ACTIONS(1652), + [sym_identifier] = ACTIONS(1654), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_macro_rules_BANG] = ACTIONS(1652), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACE] = ACTIONS(1652), + [anon_sym_RBRACE] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1652), + [anon_sym_u8] = ACTIONS(1654), + [anon_sym_i8] = ACTIONS(1654), + [anon_sym_u16] = ACTIONS(1654), + [anon_sym_i16] = ACTIONS(1654), + [anon_sym_u32] = ACTIONS(1654), + [anon_sym_i32] = ACTIONS(1654), + [anon_sym_u64] = ACTIONS(1654), + [anon_sym_i64] = ACTIONS(1654), + [anon_sym_u128] = ACTIONS(1654), + [anon_sym_i128] = ACTIONS(1654), + [anon_sym_isize] = ACTIONS(1654), + [anon_sym_usize] = ACTIONS(1654), + [anon_sym_f32] = ACTIONS(1654), + [anon_sym_f64] = ACTIONS(1654), + [anon_sym_bool] = ACTIONS(1654), + [anon_sym_str] = ACTIONS(1654), + [anon_sym_char] = ACTIONS(1654), + [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_async] = ACTIONS(1654), + [anon_sym_break] = ACTIONS(1654), + [anon_sym_const] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(1654), + [anon_sym_default] = ACTIONS(1654), + [anon_sym_enum] = ACTIONS(1654), + [anon_sym_fn] = ACTIONS(1654), + [anon_sym_for] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_impl] = ACTIONS(1654), + [anon_sym_let] = ACTIONS(1654), + [anon_sym_loop] = ACTIONS(1654), + [anon_sym_match] = ACTIONS(1654), + [anon_sym_mod] = ACTIONS(1654), + [anon_sym_pub] = ACTIONS(1654), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_static] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1654), + [anon_sym_trait] = ACTIONS(1654), + [anon_sym_type] = ACTIONS(1654), + [anon_sym_union] = ACTIONS(1654), + [anon_sym_unsafe] = ACTIONS(1654), + [anon_sym_use] = ACTIONS(1654), + [anon_sym_while] = ACTIONS(1654), + [anon_sym_POUND] = ACTIONS(1652), + [anon_sym_BANG] = ACTIONS(1652), + [anon_sym_extern] = ACTIONS(1654), + [anon_sym_LT] = ACTIONS(1652), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1652), + [anon_sym_DOT_DOT] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_PIPE] = ACTIONS(1652), + [anon_sym_move] = ACTIONS(1654), + [sym_integer_literal] = ACTIONS(1652), + [aux_sym_string_literal_token1] = ACTIONS(1652), + [sym_char_literal] = ACTIONS(1652), + [anon_sym_true] = ACTIONS(1654), + [anon_sym_false] = ACTIONS(1654), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1654), + [sym_super] = ACTIONS(1654), + [sym_crate] = ACTIONS(1654), + [sym_metavariable] = ACTIONS(1652), + [sym_raw_string_literal] = ACTIONS(1652), + [sym_float_literal] = ACTIONS(1652), + [sym_block_comment] = ACTIONS(3), + }, + [391] = { + [ts_builtin_sym_end] = ACTIONS(1656), + [sym_identifier] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1656), + [anon_sym_macro_rules_BANG] = ACTIONS(1656), + [anon_sym_LPAREN] = ACTIONS(1656), + [anon_sym_LBRACE] = ACTIONS(1656), + [anon_sym_RBRACE] = ACTIONS(1656), + [anon_sym_LBRACK] = ACTIONS(1656), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_SQUOTE] = ACTIONS(1658), + [anon_sym_async] = ACTIONS(1658), + [anon_sym_break] = ACTIONS(1658), + [anon_sym_const] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(1658), + [anon_sym_default] = ACTIONS(1658), + [anon_sym_enum] = ACTIONS(1658), + [anon_sym_fn] = ACTIONS(1658), + [anon_sym_for] = ACTIONS(1658), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_impl] = ACTIONS(1658), + [anon_sym_let] = ACTIONS(1658), + [anon_sym_loop] = ACTIONS(1658), + [anon_sym_match] = ACTIONS(1658), + [anon_sym_mod] = ACTIONS(1658), + [anon_sym_pub] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_static] = ACTIONS(1658), + [anon_sym_struct] = ACTIONS(1658), + [anon_sym_trait] = ACTIONS(1658), + [anon_sym_type] = ACTIONS(1658), + [anon_sym_union] = ACTIONS(1658), + [anon_sym_unsafe] = ACTIONS(1658), + [anon_sym_use] = ACTIONS(1658), + [anon_sym_while] = ACTIONS(1658), + [anon_sym_POUND] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_extern] = ACTIONS(1658), + [anon_sym_LT] = ACTIONS(1656), + [anon_sym_COLON_COLON] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_DOT_DOT] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1656), + [anon_sym_PIPE] = ACTIONS(1656), + [anon_sym_move] = ACTIONS(1658), + [sym_integer_literal] = ACTIONS(1656), + [aux_sym_string_literal_token1] = ACTIONS(1656), + [sym_char_literal] = ACTIONS(1656), + [anon_sym_true] = ACTIONS(1658), + [anon_sym_false] = ACTIONS(1658), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1658), + [sym_super] = ACTIONS(1658), + [sym_crate] = ACTIONS(1658), + [sym_metavariable] = ACTIONS(1656), + [sym_raw_string_literal] = ACTIONS(1656), + [sym_float_literal] = ACTIONS(1656), + [sym_block_comment] = ACTIONS(3), + }, + [392] = { + [ts_builtin_sym_end] = ACTIONS(1660), + [sym_identifier] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1660), + [anon_sym_macro_rules_BANG] = ACTIONS(1660), + [anon_sym_LPAREN] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_RBRACE] = ACTIONS(1660), + [anon_sym_LBRACK] = ACTIONS(1660), + [anon_sym_STAR] = ACTIONS(1660), + [anon_sym_u8] = ACTIONS(1662), + [anon_sym_i8] = ACTIONS(1662), + [anon_sym_u16] = ACTIONS(1662), + [anon_sym_i16] = ACTIONS(1662), + [anon_sym_u32] = ACTIONS(1662), + [anon_sym_i32] = ACTIONS(1662), + [anon_sym_u64] = ACTIONS(1662), + [anon_sym_i64] = ACTIONS(1662), + [anon_sym_u128] = ACTIONS(1662), + [anon_sym_i128] = ACTIONS(1662), + [anon_sym_isize] = ACTIONS(1662), + [anon_sym_usize] = ACTIONS(1662), + [anon_sym_f32] = ACTIONS(1662), + [anon_sym_f64] = ACTIONS(1662), + [anon_sym_bool] = ACTIONS(1662), + [anon_sym_str] = ACTIONS(1662), + [anon_sym_char] = ACTIONS(1662), + [anon_sym_SQUOTE] = ACTIONS(1662), + [anon_sym_async] = ACTIONS(1662), + [anon_sym_break] = ACTIONS(1662), + [anon_sym_const] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(1662), + [anon_sym_default] = ACTIONS(1662), + [anon_sym_enum] = ACTIONS(1662), + [anon_sym_fn] = ACTIONS(1662), + [anon_sym_for] = ACTIONS(1662), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_impl] = ACTIONS(1662), + [anon_sym_let] = ACTIONS(1662), + [anon_sym_loop] = ACTIONS(1662), + [anon_sym_match] = ACTIONS(1662), + [anon_sym_mod] = ACTIONS(1662), + [anon_sym_pub] = ACTIONS(1662), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_static] = ACTIONS(1662), + [anon_sym_struct] = ACTIONS(1662), + [anon_sym_trait] = ACTIONS(1662), + [anon_sym_type] = ACTIONS(1662), + [anon_sym_union] = ACTIONS(1662), + [anon_sym_unsafe] = ACTIONS(1662), + [anon_sym_use] = ACTIONS(1662), + [anon_sym_while] = ACTIONS(1662), + [anon_sym_POUND] = ACTIONS(1660), + [anon_sym_BANG] = ACTIONS(1660), + [anon_sym_extern] = ACTIONS(1662), + [anon_sym_LT] = ACTIONS(1660), + [anon_sym_COLON_COLON] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1660), + [anon_sym_DOT_DOT] = ACTIONS(1660), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_PIPE] = ACTIONS(1660), + [anon_sym_move] = ACTIONS(1662), + [sym_integer_literal] = ACTIONS(1660), + [aux_sym_string_literal_token1] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), + [anon_sym_true] = ACTIONS(1662), + [anon_sym_false] = ACTIONS(1662), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1662), + [sym_super] = ACTIONS(1662), + [sym_crate] = ACTIONS(1662), + [sym_metavariable] = ACTIONS(1660), + [sym_raw_string_literal] = ACTIONS(1660), + [sym_float_literal] = ACTIONS(1660), + [sym_block_comment] = ACTIONS(3), + }, + [393] = { + [ts_builtin_sym_end] = ACTIONS(1664), + [sym_identifier] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1664), + [anon_sym_macro_rules_BANG] = ACTIONS(1664), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_STAR] = ACTIONS(1664), + [anon_sym_u8] = ACTIONS(1666), + [anon_sym_i8] = ACTIONS(1666), + [anon_sym_u16] = ACTIONS(1666), + [anon_sym_i16] = ACTIONS(1666), + [anon_sym_u32] = ACTIONS(1666), + [anon_sym_i32] = ACTIONS(1666), + [anon_sym_u64] = ACTIONS(1666), + [anon_sym_i64] = ACTIONS(1666), + [anon_sym_u128] = ACTIONS(1666), + [anon_sym_i128] = ACTIONS(1666), + [anon_sym_isize] = ACTIONS(1666), + [anon_sym_usize] = ACTIONS(1666), + [anon_sym_f32] = ACTIONS(1666), + [anon_sym_f64] = ACTIONS(1666), + [anon_sym_bool] = ACTIONS(1666), + [anon_sym_str] = ACTIONS(1666), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_SQUOTE] = ACTIONS(1666), + [anon_sym_async] = ACTIONS(1666), + [anon_sym_break] = ACTIONS(1666), + [anon_sym_const] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(1666), + [anon_sym_default] = ACTIONS(1666), + [anon_sym_enum] = ACTIONS(1666), + [anon_sym_fn] = ACTIONS(1666), + [anon_sym_for] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_impl] = ACTIONS(1666), + [anon_sym_let] = ACTIONS(1666), + [anon_sym_loop] = ACTIONS(1666), + [anon_sym_match] = ACTIONS(1666), + [anon_sym_mod] = ACTIONS(1666), + [anon_sym_pub] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_static] = ACTIONS(1666), + [anon_sym_struct] = ACTIONS(1666), + [anon_sym_trait] = ACTIONS(1666), + [anon_sym_type] = ACTIONS(1666), + [anon_sym_union] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1666), + [anon_sym_use] = ACTIONS(1666), + [anon_sym_while] = ACTIONS(1666), + [anon_sym_POUND] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1664), + [anon_sym_extern] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1664), + [anon_sym_COLON_COLON] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_DOT_DOT] = ACTIONS(1664), + [anon_sym_DASH] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_move] = ACTIONS(1666), + [sym_integer_literal] = ACTIONS(1664), + [aux_sym_string_literal_token1] = ACTIONS(1664), + [sym_char_literal] = ACTIONS(1664), + [anon_sym_true] = ACTIONS(1666), + [anon_sym_false] = ACTIONS(1666), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1666), + [sym_super] = ACTIONS(1666), + [sym_crate] = ACTIONS(1666), + [sym_metavariable] = ACTIONS(1664), + [sym_raw_string_literal] = ACTIONS(1664), + [sym_float_literal] = ACTIONS(1664), + [sym_block_comment] = ACTIONS(3), + }, + [394] = { + [ts_builtin_sym_end] = ACTIONS(1668), + [sym_identifier] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_macro_rules_BANG] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_STAR] = ACTIONS(1668), + [anon_sym_u8] = ACTIONS(1670), + [anon_sym_i8] = ACTIONS(1670), + [anon_sym_u16] = ACTIONS(1670), + [anon_sym_i16] = ACTIONS(1670), + [anon_sym_u32] = ACTIONS(1670), + [anon_sym_i32] = ACTIONS(1670), + [anon_sym_u64] = ACTIONS(1670), + [anon_sym_i64] = ACTIONS(1670), + [anon_sym_u128] = ACTIONS(1670), + [anon_sym_i128] = ACTIONS(1670), + [anon_sym_isize] = ACTIONS(1670), + [anon_sym_usize] = ACTIONS(1670), + [anon_sym_f32] = ACTIONS(1670), + [anon_sym_f64] = ACTIONS(1670), + [anon_sym_bool] = ACTIONS(1670), + [anon_sym_str] = ACTIONS(1670), + [anon_sym_char] = ACTIONS(1670), + [anon_sym_SQUOTE] = ACTIONS(1670), + [anon_sym_async] = ACTIONS(1670), + [anon_sym_break] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1670), + [anon_sym_enum] = ACTIONS(1670), + [anon_sym_fn] = ACTIONS(1670), + [anon_sym_for] = ACTIONS(1670), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_impl] = ACTIONS(1670), + [anon_sym_let] = ACTIONS(1670), + [anon_sym_loop] = ACTIONS(1670), + [anon_sym_match] = ACTIONS(1670), + [anon_sym_mod] = ACTIONS(1670), + [anon_sym_pub] = ACTIONS(1670), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(1670), + [anon_sym_struct] = ACTIONS(1670), + [anon_sym_trait] = ACTIONS(1670), + [anon_sym_type] = ACTIONS(1670), + [anon_sym_union] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1670), + [anon_sym_use] = ACTIONS(1670), + [anon_sym_while] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(1668), + [anon_sym_BANG] = ACTIONS(1668), + [anon_sym_extern] = ACTIONS(1670), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_COLON_COLON] = ACTIONS(1668), + [anon_sym_AMP] = ACTIONS(1668), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DASH] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_move] = ACTIONS(1670), + [sym_integer_literal] = ACTIONS(1668), + [aux_sym_string_literal_token1] = ACTIONS(1668), + [sym_char_literal] = ACTIONS(1668), + [anon_sym_true] = ACTIONS(1670), + [anon_sym_false] = ACTIONS(1670), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1670), + [sym_super] = ACTIONS(1670), + [sym_crate] = ACTIONS(1670), + [sym_metavariable] = ACTIONS(1668), + [sym_raw_string_literal] = ACTIONS(1668), + [sym_float_literal] = ACTIONS(1668), + [sym_block_comment] = ACTIONS(3), + }, + [395] = { + [ts_builtin_sym_end] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_macro_rules_BANG] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1672), + [anon_sym_u8] = ACTIONS(1674), + [anon_sym_i8] = ACTIONS(1674), + [anon_sym_u16] = ACTIONS(1674), + [anon_sym_i16] = ACTIONS(1674), + [anon_sym_u32] = ACTIONS(1674), + [anon_sym_i32] = ACTIONS(1674), + [anon_sym_u64] = ACTIONS(1674), + [anon_sym_i64] = ACTIONS(1674), + [anon_sym_u128] = ACTIONS(1674), + [anon_sym_i128] = ACTIONS(1674), + [anon_sym_isize] = ACTIONS(1674), + [anon_sym_usize] = ACTIONS(1674), + [anon_sym_f32] = ACTIONS(1674), + [anon_sym_f64] = ACTIONS(1674), + [anon_sym_bool] = ACTIONS(1674), + [anon_sym_str] = ACTIONS(1674), + [anon_sym_char] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_async] = ACTIONS(1674), + [anon_sym_break] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1674), + [anon_sym_enum] = ACTIONS(1674), + [anon_sym_fn] = ACTIONS(1674), + [anon_sym_for] = ACTIONS(1674), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_impl] = ACTIONS(1674), + [anon_sym_let] = ACTIONS(1674), + [anon_sym_loop] = ACTIONS(1674), + [anon_sym_match] = ACTIONS(1674), + [anon_sym_mod] = ACTIONS(1674), + [anon_sym_pub] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1674), + [anon_sym_struct] = ACTIONS(1674), + [anon_sym_trait] = ACTIONS(1674), + [anon_sym_type] = ACTIONS(1674), + [anon_sym_union] = ACTIONS(1674), + [anon_sym_unsafe] = ACTIONS(1674), + [anon_sym_use] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_POUND] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1672), + [anon_sym_DOT_DOT] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_move] = ACTIONS(1674), + [sym_integer_literal] = ACTIONS(1672), + [aux_sym_string_literal_token1] = ACTIONS(1672), + [sym_char_literal] = ACTIONS(1672), + [anon_sym_true] = ACTIONS(1674), + [anon_sym_false] = ACTIONS(1674), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1674), + [sym_super] = ACTIONS(1674), + [sym_crate] = ACTIONS(1674), + [sym_metavariable] = ACTIONS(1672), + [sym_raw_string_literal] = ACTIONS(1672), + [sym_float_literal] = ACTIONS(1672), + [sym_block_comment] = ACTIONS(3), + }, + [396] = { + [ts_builtin_sym_end] = ACTIONS(1676), + [sym_identifier] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_macro_rules_BANG] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1676), + [anon_sym_u8] = ACTIONS(1678), + [anon_sym_i8] = ACTIONS(1678), + [anon_sym_u16] = ACTIONS(1678), + [anon_sym_i16] = ACTIONS(1678), + [anon_sym_u32] = ACTIONS(1678), + [anon_sym_i32] = ACTIONS(1678), + [anon_sym_u64] = ACTIONS(1678), + [anon_sym_i64] = ACTIONS(1678), + [anon_sym_u128] = ACTIONS(1678), + [anon_sym_i128] = ACTIONS(1678), + [anon_sym_isize] = ACTIONS(1678), + [anon_sym_usize] = ACTIONS(1678), + [anon_sym_f32] = ACTIONS(1678), + [anon_sym_f64] = ACTIONS(1678), + [anon_sym_bool] = ACTIONS(1678), + [anon_sym_str] = ACTIONS(1678), + [anon_sym_char] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_async] = ACTIONS(1678), + [anon_sym_break] = ACTIONS(1678), + [anon_sym_const] = ACTIONS(1678), + [anon_sym_continue] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_enum] = ACTIONS(1678), + [anon_sym_fn] = ACTIONS(1678), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_impl] = ACTIONS(1678), + [anon_sym_let] = ACTIONS(1678), + [anon_sym_loop] = ACTIONS(1678), + [anon_sym_match] = ACTIONS(1678), + [anon_sym_mod] = ACTIONS(1678), + [anon_sym_pub] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1678), + [anon_sym_struct] = ACTIONS(1678), + [anon_sym_trait] = ACTIONS(1678), + [anon_sym_type] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_unsafe] = ACTIONS(1678), + [anon_sym_use] = ACTIONS(1678), + [anon_sym_while] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1678), + [anon_sym_LT] = ACTIONS(1676), + [anon_sym_COLON_COLON] = ACTIONS(1676), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_DOT_DOT] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_move] = ACTIONS(1678), + [sym_integer_literal] = ACTIONS(1676), + [aux_sym_string_literal_token1] = ACTIONS(1676), + [sym_char_literal] = ACTIONS(1676), + [anon_sym_true] = ACTIONS(1678), + [anon_sym_false] = ACTIONS(1678), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1678), + [sym_super] = ACTIONS(1678), + [sym_crate] = ACTIONS(1678), + [sym_metavariable] = ACTIONS(1676), + [sym_raw_string_literal] = ACTIONS(1676), + [sym_float_literal] = ACTIONS(1676), + [sym_block_comment] = ACTIONS(3), + }, + [397] = { + [ts_builtin_sym_end] = ACTIONS(1680), + [sym_identifier] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_macro_rules_BANG] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1680), + [anon_sym_u8] = ACTIONS(1682), + [anon_sym_i8] = ACTIONS(1682), + [anon_sym_u16] = ACTIONS(1682), + [anon_sym_i16] = ACTIONS(1682), + [anon_sym_u32] = ACTIONS(1682), + [anon_sym_i32] = ACTIONS(1682), + [anon_sym_u64] = ACTIONS(1682), + [anon_sym_i64] = ACTIONS(1682), + [anon_sym_u128] = ACTIONS(1682), + [anon_sym_i128] = ACTIONS(1682), + [anon_sym_isize] = ACTIONS(1682), + [anon_sym_usize] = ACTIONS(1682), + [anon_sym_f32] = ACTIONS(1682), + [anon_sym_f64] = ACTIONS(1682), + [anon_sym_bool] = ACTIONS(1682), + [anon_sym_str] = ACTIONS(1682), + [anon_sym_char] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1682), + [anon_sym_async] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_const] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_default] = ACTIONS(1682), + [anon_sym_enum] = ACTIONS(1682), + [anon_sym_fn] = ACTIONS(1682), + [anon_sym_for] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_impl] = ACTIONS(1682), + [anon_sym_let] = ACTIONS(1682), + [anon_sym_loop] = ACTIONS(1682), + [anon_sym_match] = ACTIONS(1682), + [anon_sym_mod] = ACTIONS(1682), + [anon_sym_pub] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_static] = ACTIONS(1682), + [anon_sym_struct] = ACTIONS(1682), + [anon_sym_trait] = ACTIONS(1682), + [anon_sym_type] = ACTIONS(1682), + [anon_sym_union] = ACTIONS(1682), + [anon_sym_unsafe] = ACTIONS(1682), + [anon_sym_use] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_POUND] = ACTIONS(1680), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_extern] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(1680), + [anon_sym_COLON_COLON] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_DOT_DOT] = ACTIONS(1680), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_move] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1680), + [aux_sym_string_literal_token1] = ACTIONS(1680), + [sym_char_literal] = ACTIONS(1680), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1682), + [sym_super] = ACTIONS(1682), + [sym_crate] = ACTIONS(1682), + [sym_metavariable] = ACTIONS(1680), + [sym_raw_string_literal] = ACTIONS(1680), + [sym_float_literal] = ACTIONS(1680), + [sym_block_comment] = ACTIONS(3), + }, + [398] = { + [ts_builtin_sym_end] = ACTIONS(1684), + [sym_identifier] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_macro_rules_BANG] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_STAR] = ACTIONS(1684), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_SQUOTE] = ACTIONS(1686), + [anon_sym_async] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_default] = ACTIONS(1686), + [anon_sym_enum] = ACTIONS(1686), + [anon_sym_fn] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_impl] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_mod] = ACTIONS(1686), + [anon_sym_pub] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_static] = ACTIONS(1686), + [anon_sym_struct] = ACTIONS(1686), + [anon_sym_trait] = ACTIONS(1686), + [anon_sym_type] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(1686), + [anon_sym_unsafe] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1684), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1684), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_AMP] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PIPE] = ACTIONS(1684), + [anon_sym_move] = ACTIONS(1686), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1684), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1686), + [anon_sym_false] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1686), + [sym_super] = ACTIONS(1686), + [sym_crate] = ACTIONS(1686), + [sym_metavariable] = ACTIONS(1684), + [sym_raw_string_literal] = ACTIONS(1684), + [sym_float_literal] = ACTIONS(1684), + [sym_block_comment] = ACTIONS(3), + }, + [399] = { + [sym__token_pattern] = STATE(239), + [sym_token_tree_pattern] = STATE(239), + [sym_token_binding_pattern] = STATE(239), + [sym_token_repetition_pattern] = STATE(239), + [sym__literal] = STATE(239), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_pattern_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_u8] = ACTIONS(1270), + [anon_sym_i8] = ACTIONS(1270), + [anon_sym_u16] = ACTIONS(1270), + [anon_sym_i16] = ACTIONS(1270), + [anon_sym_u32] = ACTIONS(1270), + [anon_sym_i32] = ACTIONS(1270), + [anon_sym_u64] = ACTIONS(1270), + [anon_sym_i64] = ACTIONS(1270), + [anon_sym_u128] = ACTIONS(1270), + [anon_sym_i128] = ACTIONS(1270), + [anon_sym_isize] = ACTIONS(1270), + [anon_sym_usize] = ACTIONS(1270), + [anon_sym_f32] = ACTIONS(1270), + [anon_sym_f64] = ACTIONS(1270), + [anon_sym_bool] = ACTIONS(1270), + [anon_sym_str] = ACTIONS(1270), + [anon_sym_char] = ACTIONS(1270), + [aux_sym__non_special_token_token1] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_as] = ACTIONS(1270), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_fn] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_impl] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_pub] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_trait] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_where] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [sym_mutable_specifier] = ACTIONS(1270), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(1270), + [sym_super] = ACTIONS(1270), + [sym_crate] = ACTIONS(1270), + [sym_metavariable] = ACTIONS(1116), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [400] = { + [ts_builtin_sym_end] = ACTIONS(1690), + [sym_identifier] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1690), + [anon_sym_macro_rules_BANG] = ACTIONS(1690), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_STAR] = ACTIONS(1690), + [anon_sym_u8] = ACTIONS(1692), + [anon_sym_i8] = ACTIONS(1692), + [anon_sym_u16] = ACTIONS(1692), + [anon_sym_i16] = ACTIONS(1692), + [anon_sym_u32] = ACTIONS(1692), + [anon_sym_i32] = ACTIONS(1692), + [anon_sym_u64] = ACTIONS(1692), + [anon_sym_i64] = ACTIONS(1692), + [anon_sym_u128] = ACTIONS(1692), + [anon_sym_i128] = ACTIONS(1692), + [anon_sym_isize] = ACTIONS(1692), + [anon_sym_usize] = ACTIONS(1692), + [anon_sym_f32] = ACTIONS(1692), + [anon_sym_f64] = ACTIONS(1692), + [anon_sym_bool] = ACTIONS(1692), + [anon_sym_str] = ACTIONS(1692), + [anon_sym_char] = ACTIONS(1692), + [anon_sym_SQUOTE] = ACTIONS(1692), + [anon_sym_async] = ACTIONS(1692), + [anon_sym_break] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1692), + [anon_sym_continue] = ACTIONS(1692), + [anon_sym_default] = ACTIONS(1692), + [anon_sym_enum] = ACTIONS(1692), + [anon_sym_fn] = ACTIONS(1692), + [anon_sym_for] = ACTIONS(1692), + [anon_sym_if] = ACTIONS(1692), + [anon_sym_impl] = ACTIONS(1692), + [anon_sym_let] = ACTIONS(1692), + [anon_sym_loop] = ACTIONS(1692), + [anon_sym_match] = ACTIONS(1692), + [anon_sym_mod] = ACTIONS(1692), + [anon_sym_pub] = ACTIONS(1692), + [anon_sym_return] = ACTIONS(1692), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_struct] = ACTIONS(1692), + [anon_sym_trait] = ACTIONS(1692), + [anon_sym_type] = ACTIONS(1692), + [anon_sym_union] = ACTIONS(1692), + [anon_sym_unsafe] = ACTIONS(1692), + [anon_sym_use] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1692), + [anon_sym_POUND] = ACTIONS(1690), + [anon_sym_BANG] = ACTIONS(1690), + [anon_sym_extern] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1690), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_DOT_DOT] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1690), + [anon_sym_move] = ACTIONS(1692), + [sym_integer_literal] = ACTIONS(1690), + [aux_sym_string_literal_token1] = ACTIONS(1690), + [sym_char_literal] = ACTIONS(1690), + [anon_sym_true] = ACTIONS(1692), + [anon_sym_false] = ACTIONS(1692), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1692), + [sym_super] = ACTIONS(1692), + [sym_crate] = ACTIONS(1692), + [sym_metavariable] = ACTIONS(1690), + [sym_raw_string_literal] = ACTIONS(1690), + [sym_float_literal] = ACTIONS(1690), + [sym_block_comment] = ACTIONS(3), + }, + [401] = { + [sym_token_tree] = STATE(401), + [sym_token_repetition] = STATE(401), + [sym__literal] = STATE(401), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(401), + [sym_identifier] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1697), + [anon_sym_RPAREN] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_LBRACK] = ACTIONS(1705), + [anon_sym_RBRACK] = ACTIONS(1700), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_u8] = ACTIONS(1694), + [anon_sym_i8] = ACTIONS(1694), + [anon_sym_u16] = ACTIONS(1694), + [anon_sym_i16] = ACTIONS(1694), + [anon_sym_u32] = ACTIONS(1694), + [anon_sym_i32] = ACTIONS(1694), + [anon_sym_u64] = ACTIONS(1694), + [anon_sym_i64] = ACTIONS(1694), + [anon_sym_u128] = ACTIONS(1694), + [anon_sym_i128] = ACTIONS(1694), + [anon_sym_isize] = ACTIONS(1694), + [anon_sym_usize] = ACTIONS(1694), + [anon_sym_f32] = ACTIONS(1694), + [anon_sym_f64] = ACTIONS(1694), + [anon_sym_bool] = ACTIONS(1694), + [anon_sym_str] = ACTIONS(1694), + [anon_sym_char] = ACTIONS(1694), + [aux_sym__non_special_token_token1] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_async] = ACTIONS(1694), + [anon_sym_await] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1694), + [anon_sym_enum] = ACTIONS(1694), + [anon_sym_fn] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_impl] = ACTIONS(1694), + [anon_sym_let] = ACTIONS(1694), + [anon_sym_loop] = ACTIONS(1694), + [anon_sym_match] = ACTIONS(1694), + [anon_sym_mod] = ACTIONS(1694), + [anon_sym_pub] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_static] = ACTIONS(1694), + [anon_sym_struct] = ACTIONS(1694), + [anon_sym_trait] = ACTIONS(1694), + [anon_sym_type] = ACTIONS(1694), + [anon_sym_union] = ACTIONS(1694), + [anon_sym_unsafe] = ACTIONS(1694), + [anon_sym_use] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [sym_mutable_specifier] = ACTIONS(1694), + [sym_integer_literal] = ACTIONS(1711), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(1694), + [sym_super] = ACTIONS(1694), + [sym_crate] = ACTIONS(1694), + [sym_metavariable] = ACTIONS(1720), + [sym_raw_string_literal] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), + [sym_block_comment] = ACTIONS(3), + }, + [402] = { + [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_LBRACE] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1723), + [anon_sym_extern] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1723), + [anon_sym_COLON_COLON] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1725), + [sym_super] = ACTIONS(1725), + [sym_crate] = ACTIONS(1725), + [sym_metavariable] = ACTIONS(1723), + [sym_raw_string_literal] = ACTIONS(1723), + [sym_float_literal] = ACTIONS(1723), + [sym_block_comment] = ACTIONS(3), + }, + [403] = { + [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_LBRACE] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_COLON_COLON] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1729), + [sym_super] = ACTIONS(1729), + [sym_crate] = ACTIONS(1729), + [sym_metavariable] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1727), + [sym_float_literal] = ACTIONS(1727), + [sym_block_comment] = ACTIONS(3), + }, + [404] = { + [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_LBRACE] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1731), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_extern] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1731), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_AMP] = ACTIONS(1731), + [anon_sym_DOT_DOT] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_PIPE] = ACTIONS(1731), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1731), + [sym_raw_string_literal] = ACTIONS(1731), + [sym_float_literal] = ACTIONS(1731), + [sym_block_comment] = ACTIONS(3), + }, + [405] = { + [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_LBRACE] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1737), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_COLON_COLON] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1737), + [sym_super] = ACTIONS(1737), + [sym_crate] = ACTIONS(1737), + [sym_metavariable] = ACTIONS(1735), + [sym_raw_string_literal] = ACTIONS(1735), + [sym_float_literal] = ACTIONS(1735), + [sym_block_comment] = ACTIONS(3), + }, + [406] = { + [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_LBRACE] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_LBRACK] = 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_SQUOTE] = ACTIONS(1741), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_break] = ACTIONS(1741), + [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_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_POUND] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1741), + [anon_sym_LT] = ACTIONS(1739), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_AMP] = ACTIONS(1739), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_PIPE] = ACTIONS(1739), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1741), + [sym_super] = ACTIONS(1741), + [sym_crate] = ACTIONS(1741), + [sym_metavariable] = ACTIONS(1739), + [sym_raw_string_literal] = ACTIONS(1739), + [sym_float_literal] = ACTIONS(1739), + [sym_block_comment] = ACTIONS(3), + }, + [407] = { + [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_LBRACE] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(1743), + [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1743), + [anon_sym_BANG] = ACTIONS(1743), + [anon_sym_extern] = ACTIONS(1745), + [anon_sym_LT] = ACTIONS(1743), + [anon_sym_COLON_COLON] = ACTIONS(1743), + [anon_sym_AMP] = ACTIONS(1743), + [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PIPE] = ACTIONS(1743), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1743), + [sym_raw_string_literal] = ACTIONS(1743), + [sym_float_literal] = ACTIONS(1743), + [sym_block_comment] = ACTIONS(3), + }, + [408] = { + [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_LBRACE] = ACTIONS(1747), + [anon_sym_RBRACE] = ACTIONS(1747), + [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1747), + [anon_sym_BANG] = ACTIONS(1747), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_COLON_COLON] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [anon_sym_DOT_DOT] = ACTIONS(1747), + [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_PIPE] = ACTIONS(1747), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_crate] = ACTIONS(1749), + [sym_metavariable] = ACTIONS(1747), + [sym_raw_string_literal] = ACTIONS(1747), + [sym_float_literal] = ACTIONS(1747), + [sym_block_comment] = ACTIONS(3), + }, + [409] = { + [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_LBRACE] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1751), + [anon_sym_BANG] = ACTIONS(1751), + [anon_sym_extern] = ACTIONS(1753), + [anon_sym_LT] = ACTIONS(1751), + [anon_sym_COLON_COLON] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1751), + [anon_sym_DASH] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1753), + [sym_super] = ACTIONS(1753), + [sym_crate] = ACTIONS(1753), + [sym_metavariable] = ACTIONS(1751), + [sym_raw_string_literal] = ACTIONS(1751), + [sym_float_literal] = ACTIONS(1751), + [sym_block_comment] = ACTIONS(3), + }, + [410] = { + [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_LBRACE] = ACTIONS(1755), + [anon_sym_RBRACE] = ACTIONS(1755), + [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1757), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_COLON_COLON] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_DOT_DOT] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_PIPE] = ACTIONS(1755), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1757), + [sym_super] = ACTIONS(1757), + [sym_crate] = ACTIONS(1757), + [sym_metavariable] = ACTIONS(1755), + [sym_raw_string_literal] = ACTIONS(1755), + [sym_float_literal] = ACTIONS(1755), + [sym_block_comment] = ACTIONS(3), + }, + [411] = { + [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_LBRACE] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1759), + [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(1759), + [anon_sym_extern] = ACTIONS(1761), + [anon_sym_LT] = ACTIONS(1759), + [anon_sym_COLON_COLON] = ACTIONS(1759), + [anon_sym_AMP] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1759), + [anon_sym_PIPE] = ACTIONS(1759), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1761), + [sym_super] = ACTIONS(1761), + [sym_crate] = ACTIONS(1761), + [sym_metavariable] = ACTIONS(1759), + [sym_raw_string_literal] = ACTIONS(1759), + [sym_float_literal] = ACTIONS(1759), + [sym_block_comment] = ACTIONS(3), + }, + [412] = { + [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_LBRACE] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_DOT_DOT] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1765), + [sym_super] = ACTIONS(1765), + [sym_crate] = ACTIONS(1765), + [sym_metavariable] = ACTIONS(1763), + [sym_raw_string_literal] = ACTIONS(1763), + [sym_float_literal] = ACTIONS(1763), + [sym_block_comment] = ACTIONS(3), + }, + [413] = { + [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_LBRACE] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1767), + [anon_sym_BANG] = ACTIONS(1767), + [anon_sym_extern] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_COLON_COLON] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1769), + [sym_super] = ACTIONS(1769), + [sym_crate] = ACTIONS(1769), + [sym_metavariable] = ACTIONS(1767), + [sym_raw_string_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_block_comment] = ACTIONS(3), + }, + [414] = { + [ts_builtin_sym_end] = ACTIONS(1771), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_macro_rules_BANG] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_u8] = ACTIONS(1773), + [anon_sym_i8] = ACTIONS(1773), + [anon_sym_u16] = ACTIONS(1773), + [anon_sym_i16] = ACTIONS(1773), + [anon_sym_u32] = ACTIONS(1773), + [anon_sym_i32] = ACTIONS(1773), + [anon_sym_u64] = ACTIONS(1773), + [anon_sym_i64] = ACTIONS(1773), + [anon_sym_u128] = ACTIONS(1773), + [anon_sym_i128] = ACTIONS(1773), + [anon_sym_isize] = ACTIONS(1773), + [anon_sym_usize] = ACTIONS(1773), + [anon_sym_f32] = ACTIONS(1773), + [anon_sym_f64] = ACTIONS(1773), + [anon_sym_bool] = ACTIONS(1773), + [anon_sym_str] = ACTIONS(1773), + [anon_sym_char] = ACTIONS(1773), + [anon_sym_SQUOTE] = ACTIONS(1773), + [anon_sym_async] = ACTIONS(1773), + [anon_sym_break] = ACTIONS(1773), + [anon_sym_const] = ACTIONS(1773), + [anon_sym_continue] = ACTIONS(1773), + [anon_sym_default] = ACTIONS(1773), + [anon_sym_enum] = ACTIONS(1773), + [anon_sym_fn] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1773), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_impl] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_loop] = ACTIONS(1773), + [anon_sym_match] = ACTIONS(1773), + [anon_sym_mod] = ACTIONS(1773), + [anon_sym_pub] = ACTIONS(1773), + [anon_sym_return] = ACTIONS(1773), + [anon_sym_static] = ACTIONS(1773), + [anon_sym_struct] = ACTIONS(1773), + [anon_sym_trait] = ACTIONS(1773), + [anon_sym_type] = ACTIONS(1773), + [anon_sym_union] = ACTIONS(1773), + [anon_sym_unsafe] = ACTIONS(1773), + [anon_sym_use] = ACTIONS(1773), + [anon_sym_while] = ACTIONS(1773), + [anon_sym_POUND] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1771), + [anon_sym_COLON_COLON] = ACTIONS(1771), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_move] = ACTIONS(1773), + [sym_integer_literal] = ACTIONS(1771), + [aux_sym_string_literal_token1] = ACTIONS(1771), + [sym_char_literal] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1773), + [sym_super] = ACTIONS(1773), + [sym_crate] = ACTIONS(1773), + [sym_metavariable] = ACTIONS(1771), + [sym_raw_string_literal] = ACTIONS(1771), + [sym_float_literal] = ACTIONS(1771), + [sym_block_comment] = ACTIONS(3), + }, + [415] = { + [ts_builtin_sym_end] = ACTIONS(1775), + [sym_identifier] = ACTIONS(1777), + [anon_sym_SEMI] = ACTIONS(1775), + [anon_sym_macro_rules_BANG] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_RBRACE] = ACTIONS(1775), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1775), + [anon_sym_u8] = ACTIONS(1777), + [anon_sym_i8] = ACTIONS(1777), + [anon_sym_u16] = ACTIONS(1777), + [anon_sym_i16] = ACTIONS(1777), + [anon_sym_u32] = ACTIONS(1777), + [anon_sym_i32] = ACTIONS(1777), + [anon_sym_u64] = ACTIONS(1777), + [anon_sym_i64] = ACTIONS(1777), + [anon_sym_u128] = ACTIONS(1777), + [anon_sym_i128] = ACTIONS(1777), + [anon_sym_isize] = ACTIONS(1777), + [anon_sym_usize] = ACTIONS(1777), + [anon_sym_f32] = ACTIONS(1777), + [anon_sym_f64] = ACTIONS(1777), + [anon_sym_bool] = ACTIONS(1777), + [anon_sym_str] = ACTIONS(1777), + [anon_sym_char] = ACTIONS(1777), + [anon_sym_SQUOTE] = ACTIONS(1777), + [anon_sym_async] = ACTIONS(1777), + [anon_sym_break] = ACTIONS(1777), + [anon_sym_const] = ACTIONS(1777), + [anon_sym_continue] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(1777), + [anon_sym_enum] = ACTIONS(1777), + [anon_sym_fn] = ACTIONS(1777), + [anon_sym_for] = ACTIONS(1777), + [anon_sym_if] = ACTIONS(1777), + [anon_sym_impl] = ACTIONS(1777), + [anon_sym_let] = ACTIONS(1777), + [anon_sym_loop] = ACTIONS(1777), + [anon_sym_match] = ACTIONS(1777), + [anon_sym_mod] = ACTIONS(1777), + [anon_sym_pub] = ACTIONS(1777), + [anon_sym_return] = ACTIONS(1777), + [anon_sym_static] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1777), + [anon_sym_trait] = ACTIONS(1777), + [anon_sym_type] = ACTIONS(1777), + [anon_sym_union] = ACTIONS(1777), + [anon_sym_unsafe] = ACTIONS(1777), + [anon_sym_use] = ACTIONS(1777), + [anon_sym_while] = ACTIONS(1777), + [anon_sym_POUND] = ACTIONS(1775), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_extern] = ACTIONS(1777), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_COLON_COLON] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(1775), + [anon_sym_move] = ACTIONS(1777), + [sym_integer_literal] = ACTIONS(1775), + [aux_sym_string_literal_token1] = ACTIONS(1775), + [sym_char_literal] = ACTIONS(1775), + [anon_sym_true] = ACTIONS(1777), + [anon_sym_false] = ACTIONS(1777), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1777), + [sym_super] = ACTIONS(1777), + [sym_crate] = ACTIONS(1777), + [sym_metavariable] = ACTIONS(1775), + [sym_raw_string_literal] = ACTIONS(1775), + [sym_float_literal] = ACTIONS(1775), + [sym_block_comment] = ACTIONS(3), + }, + [416] = { + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_macro_rules_BANG] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_LBRACK] = ACTIONS(1779), + [anon_sym_STAR] = ACTIONS(1779), + [anon_sym_u8] = ACTIONS(1781), + [anon_sym_i8] = ACTIONS(1781), + [anon_sym_u16] = ACTIONS(1781), + [anon_sym_i16] = ACTIONS(1781), + [anon_sym_u32] = ACTIONS(1781), + [anon_sym_i32] = ACTIONS(1781), + [anon_sym_u64] = ACTIONS(1781), + [anon_sym_i64] = ACTIONS(1781), + [anon_sym_u128] = ACTIONS(1781), + [anon_sym_i128] = ACTIONS(1781), + [anon_sym_isize] = ACTIONS(1781), + [anon_sym_usize] = ACTIONS(1781), + [anon_sym_f32] = ACTIONS(1781), + [anon_sym_f64] = ACTIONS(1781), + [anon_sym_bool] = ACTIONS(1781), + [anon_sym_str] = ACTIONS(1781), + [anon_sym_char] = ACTIONS(1781), + [anon_sym_SQUOTE] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [anon_sym_fn] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_impl] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_loop] = ACTIONS(1781), + [anon_sym_match] = ACTIONS(1781), + [anon_sym_mod] = ACTIONS(1781), + [anon_sym_pub] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_struct] = ACTIONS(1781), + [anon_sym_trait] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_union] = ACTIONS(1781), + [anon_sym_unsafe] = ACTIONS(1781), + [anon_sym_use] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(1779), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1779), + [anon_sym_COLON_COLON] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_PIPE] = ACTIONS(1779), + [anon_sym_move] = ACTIONS(1781), + [sym_integer_literal] = ACTIONS(1779), + [aux_sym_string_literal_token1] = ACTIONS(1779), + [sym_char_literal] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1781), + [sym_super] = ACTIONS(1781), + [sym_crate] = ACTIONS(1781), + [sym_metavariable] = ACTIONS(1779), + [sym_raw_string_literal] = ACTIONS(1779), + [sym_float_literal] = ACTIONS(1779), + [sym_block_comment] = ACTIONS(3), + }, + [417] = { + [ts_builtin_sym_end] = ACTIONS(1783), + [sym_identifier] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_macro_rules_BANG] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1783), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_u8] = ACTIONS(1785), + [anon_sym_i8] = ACTIONS(1785), + [anon_sym_u16] = ACTIONS(1785), + [anon_sym_i16] = ACTIONS(1785), + [anon_sym_u32] = ACTIONS(1785), + [anon_sym_i32] = ACTIONS(1785), + [anon_sym_u64] = ACTIONS(1785), + [anon_sym_i64] = ACTIONS(1785), + [anon_sym_u128] = ACTIONS(1785), + [anon_sym_i128] = ACTIONS(1785), + [anon_sym_isize] = ACTIONS(1785), + [anon_sym_usize] = ACTIONS(1785), + [anon_sym_f32] = ACTIONS(1785), + [anon_sym_f64] = ACTIONS(1785), + [anon_sym_bool] = ACTIONS(1785), + [anon_sym_str] = ACTIONS(1785), + [anon_sym_char] = ACTIONS(1785), + [anon_sym_SQUOTE] = ACTIONS(1785), + [anon_sym_async] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_default] = ACTIONS(1785), + [anon_sym_enum] = ACTIONS(1785), + [anon_sym_fn] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_impl] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_loop] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_mod] = ACTIONS(1785), + [anon_sym_pub] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_static] = ACTIONS(1785), + [anon_sym_struct] = ACTIONS(1785), + [anon_sym_trait] = ACTIONS(1785), + [anon_sym_type] = ACTIONS(1785), + [anon_sym_union] = ACTIONS(1785), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_use] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(1783), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_COLON_COLON] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1783), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_move] = ACTIONS(1785), + [sym_integer_literal] = ACTIONS(1783), + [aux_sym_string_literal_token1] = ACTIONS(1783), + [sym_char_literal] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1785), + [anon_sym_false] = ACTIONS(1785), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1785), + [sym_super] = ACTIONS(1785), + [sym_crate] = ACTIONS(1785), + [sym_metavariable] = ACTIONS(1783), + [sym_raw_string_literal] = ACTIONS(1783), + [sym_float_literal] = ACTIONS(1783), + [sym_block_comment] = ACTIONS(3), + }, + [418] = { + [ts_builtin_sym_end] = ACTIONS(1787), + [sym_identifier] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_macro_rules_BANG] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_u8] = ACTIONS(1789), + [anon_sym_i8] = ACTIONS(1789), + [anon_sym_u16] = ACTIONS(1789), + [anon_sym_i16] = ACTIONS(1789), + [anon_sym_u32] = ACTIONS(1789), + [anon_sym_i32] = ACTIONS(1789), + [anon_sym_u64] = ACTIONS(1789), + [anon_sym_i64] = ACTIONS(1789), + [anon_sym_u128] = ACTIONS(1789), + [anon_sym_i128] = ACTIONS(1789), + [anon_sym_isize] = ACTIONS(1789), + [anon_sym_usize] = ACTIONS(1789), + [anon_sym_f32] = ACTIONS(1789), + [anon_sym_f64] = ACTIONS(1789), + [anon_sym_bool] = ACTIONS(1789), + [anon_sym_str] = ACTIONS(1789), + [anon_sym_char] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_async] = ACTIONS(1789), + [anon_sym_break] = ACTIONS(1789), + [anon_sym_const] = ACTIONS(1789), + [anon_sym_continue] = ACTIONS(1789), + [anon_sym_default] = ACTIONS(1789), + [anon_sym_enum] = ACTIONS(1789), + [anon_sym_fn] = ACTIONS(1789), + [anon_sym_for] = ACTIONS(1789), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_impl] = ACTIONS(1789), + [anon_sym_let] = ACTIONS(1789), + [anon_sym_loop] = ACTIONS(1789), + [anon_sym_match] = ACTIONS(1789), + [anon_sym_mod] = ACTIONS(1789), + [anon_sym_pub] = ACTIONS(1789), + [anon_sym_return] = ACTIONS(1789), + [anon_sym_static] = ACTIONS(1789), + [anon_sym_struct] = ACTIONS(1789), + [anon_sym_trait] = ACTIONS(1789), + [anon_sym_type] = ACTIONS(1789), + [anon_sym_union] = ACTIONS(1789), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_use] = ACTIONS(1789), + [anon_sym_while] = ACTIONS(1789), + [anon_sym_POUND] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym_COLON_COLON] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_move] = ACTIONS(1789), + [sym_integer_literal] = ACTIONS(1787), + [aux_sym_string_literal_token1] = ACTIONS(1787), + [sym_char_literal] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(1789), + [anon_sym_false] = ACTIONS(1789), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1789), + [sym_super] = ACTIONS(1789), + [sym_crate] = ACTIONS(1789), + [sym_metavariable] = ACTIONS(1787), + [sym_raw_string_literal] = ACTIONS(1787), + [sym_float_literal] = ACTIONS(1787), + [sym_block_comment] = ACTIONS(3), + }, + [419] = { + [ts_builtin_sym_end] = ACTIONS(1791), + [sym_identifier] = ACTIONS(1793), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_macro_rules_BANG] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_RBRACE] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1791), + [anon_sym_u8] = ACTIONS(1793), + [anon_sym_i8] = ACTIONS(1793), + [anon_sym_u16] = ACTIONS(1793), + [anon_sym_i16] = ACTIONS(1793), + [anon_sym_u32] = ACTIONS(1793), + [anon_sym_i32] = ACTIONS(1793), + [anon_sym_u64] = ACTIONS(1793), + [anon_sym_i64] = ACTIONS(1793), + [anon_sym_u128] = ACTIONS(1793), + [anon_sym_i128] = ACTIONS(1793), + [anon_sym_isize] = ACTIONS(1793), + [anon_sym_usize] = ACTIONS(1793), + [anon_sym_f32] = ACTIONS(1793), + [anon_sym_f64] = ACTIONS(1793), + [anon_sym_bool] = ACTIONS(1793), + [anon_sym_str] = ACTIONS(1793), + [anon_sym_char] = ACTIONS(1793), + [anon_sym_SQUOTE] = ACTIONS(1793), + [anon_sym_async] = ACTIONS(1793), + [anon_sym_break] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_continue] = ACTIONS(1793), + [anon_sym_default] = ACTIONS(1793), + [anon_sym_enum] = ACTIONS(1793), + [anon_sym_fn] = ACTIONS(1793), + [anon_sym_for] = ACTIONS(1793), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_impl] = ACTIONS(1793), + [anon_sym_let] = ACTIONS(1793), + [anon_sym_loop] = ACTIONS(1793), + [anon_sym_match] = ACTIONS(1793), + [anon_sym_mod] = ACTIONS(1793), + [anon_sym_pub] = ACTIONS(1793), + [anon_sym_return] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1793), + [anon_sym_struct] = ACTIONS(1793), + [anon_sym_trait] = ACTIONS(1793), + [anon_sym_type] = ACTIONS(1793), + [anon_sym_union] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1793), + [anon_sym_use] = ACTIONS(1793), + [anon_sym_while] = ACTIONS(1793), + [anon_sym_POUND] = ACTIONS(1791), + [anon_sym_BANG] = ACTIONS(1791), + [anon_sym_extern] = ACTIONS(1793), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_COLON_COLON] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(1791), + [anon_sym_move] = ACTIONS(1793), + [sym_integer_literal] = ACTIONS(1791), + [aux_sym_string_literal_token1] = ACTIONS(1791), + [sym_char_literal] = ACTIONS(1791), + [anon_sym_true] = ACTIONS(1793), + [anon_sym_false] = ACTIONS(1793), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1793), + [sym_super] = ACTIONS(1793), + [sym_crate] = ACTIONS(1793), + [sym_metavariable] = ACTIONS(1791), + [sym_raw_string_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_block_comment] = ACTIONS(3), + }, + [420] = { + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SEMI] = ACTIONS(1795), + [anon_sym_macro_rules_BANG] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_STAR] = ACTIONS(1795), + [anon_sym_u8] = ACTIONS(1797), + [anon_sym_i8] = ACTIONS(1797), + [anon_sym_u16] = ACTIONS(1797), + [anon_sym_i16] = ACTIONS(1797), + [anon_sym_u32] = ACTIONS(1797), + [anon_sym_i32] = ACTIONS(1797), + [anon_sym_u64] = ACTIONS(1797), + [anon_sym_i64] = ACTIONS(1797), + [anon_sym_u128] = ACTIONS(1797), + [anon_sym_i128] = ACTIONS(1797), + [anon_sym_isize] = ACTIONS(1797), + [anon_sym_usize] = ACTIONS(1797), + [anon_sym_f32] = ACTIONS(1797), + [anon_sym_f64] = ACTIONS(1797), + [anon_sym_bool] = ACTIONS(1797), + [anon_sym_str] = ACTIONS(1797), + [anon_sym_char] = ACTIONS(1797), + [anon_sym_SQUOTE] = ACTIONS(1797), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_default] = ACTIONS(1797), + [anon_sym_enum] = ACTIONS(1797), + [anon_sym_fn] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_impl] = ACTIONS(1797), + [anon_sym_let] = ACTIONS(1797), + [anon_sym_loop] = ACTIONS(1797), + [anon_sym_match] = ACTIONS(1797), + [anon_sym_mod] = ACTIONS(1797), + [anon_sym_pub] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1797), + [anon_sym_struct] = ACTIONS(1797), + [anon_sym_trait] = ACTIONS(1797), + [anon_sym_type] = ACTIONS(1797), + [anon_sym_union] = ACTIONS(1797), + [anon_sym_unsafe] = ACTIONS(1797), + [anon_sym_use] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(1795), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_extern] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1795), + [anon_sym_COLON_COLON] = ACTIONS(1795), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_DOT_DOT] = ACTIONS(1795), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_PIPE] = ACTIONS(1795), + [anon_sym_move] = ACTIONS(1797), + [sym_integer_literal] = ACTIONS(1795), + [aux_sym_string_literal_token1] = ACTIONS(1795), + [sym_char_literal] = ACTIONS(1795), + [anon_sym_true] = ACTIONS(1797), + [anon_sym_false] = ACTIONS(1797), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1797), + [sym_super] = ACTIONS(1797), + [sym_crate] = ACTIONS(1797), + [sym_metavariable] = ACTIONS(1795), + [sym_raw_string_literal] = ACTIONS(1795), + [sym_float_literal] = ACTIONS(1795), + [sym_block_comment] = ACTIONS(3), + }, + [421] = { + [ts_builtin_sym_end] = ACTIONS(1799), + [sym_identifier] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1799), + [anon_sym_macro_rules_BANG] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1799), + [anon_sym_u8] = ACTIONS(1801), + [anon_sym_i8] = ACTIONS(1801), + [anon_sym_u16] = ACTIONS(1801), + [anon_sym_i16] = ACTIONS(1801), + [anon_sym_u32] = ACTIONS(1801), + [anon_sym_i32] = ACTIONS(1801), + [anon_sym_u64] = ACTIONS(1801), + [anon_sym_i64] = ACTIONS(1801), + [anon_sym_u128] = ACTIONS(1801), + [anon_sym_i128] = ACTIONS(1801), + [anon_sym_isize] = ACTIONS(1801), + [anon_sym_usize] = ACTIONS(1801), + [anon_sym_f32] = ACTIONS(1801), + [anon_sym_f64] = ACTIONS(1801), + [anon_sym_bool] = ACTIONS(1801), + [anon_sym_str] = ACTIONS(1801), + [anon_sym_char] = ACTIONS(1801), + [anon_sym_SQUOTE] = ACTIONS(1801), + [anon_sym_async] = ACTIONS(1801), + [anon_sym_break] = ACTIONS(1801), + [anon_sym_const] = ACTIONS(1801), + [anon_sym_continue] = ACTIONS(1801), + [anon_sym_default] = ACTIONS(1801), + [anon_sym_enum] = ACTIONS(1801), + [anon_sym_fn] = ACTIONS(1801), + [anon_sym_for] = ACTIONS(1801), + [anon_sym_if] = ACTIONS(1801), + [anon_sym_impl] = ACTIONS(1801), + [anon_sym_let] = ACTIONS(1801), + [anon_sym_loop] = ACTIONS(1801), + [anon_sym_match] = ACTIONS(1801), + [anon_sym_mod] = ACTIONS(1801), + [anon_sym_pub] = ACTIONS(1801), + [anon_sym_return] = ACTIONS(1801), + [anon_sym_static] = ACTIONS(1801), + [anon_sym_struct] = ACTIONS(1801), + [anon_sym_trait] = ACTIONS(1801), + [anon_sym_type] = ACTIONS(1801), + [anon_sym_union] = ACTIONS(1801), + [anon_sym_unsafe] = ACTIONS(1801), + [anon_sym_use] = ACTIONS(1801), + [anon_sym_while] = ACTIONS(1801), + [anon_sym_POUND] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1799), + [anon_sym_COLON_COLON] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_move] = ACTIONS(1801), + [sym_integer_literal] = ACTIONS(1799), + [aux_sym_string_literal_token1] = ACTIONS(1799), + [sym_char_literal] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1801), + [sym_super] = ACTIONS(1801), + [sym_crate] = ACTIONS(1801), + [sym_metavariable] = ACTIONS(1799), + [sym_raw_string_literal] = ACTIONS(1799), + [sym_float_literal] = ACTIONS(1799), + [sym_block_comment] = ACTIONS(3), + }, + [422] = { + [ts_builtin_sym_end] = ACTIONS(1803), + [sym_identifier] = ACTIONS(1805), + [anon_sym_SEMI] = ACTIONS(1803), + [anon_sym_macro_rules_BANG] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_RBRACE] = ACTIONS(1803), + [anon_sym_LBRACK] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_u8] = ACTIONS(1805), + [anon_sym_i8] = ACTIONS(1805), + [anon_sym_u16] = ACTIONS(1805), + [anon_sym_i16] = ACTIONS(1805), + [anon_sym_u32] = ACTIONS(1805), + [anon_sym_i32] = ACTIONS(1805), + [anon_sym_u64] = ACTIONS(1805), + [anon_sym_i64] = ACTIONS(1805), + [anon_sym_u128] = ACTIONS(1805), + [anon_sym_i128] = ACTIONS(1805), + [anon_sym_isize] = ACTIONS(1805), + [anon_sym_usize] = ACTIONS(1805), + [anon_sym_f32] = ACTIONS(1805), + [anon_sym_f64] = ACTIONS(1805), + [anon_sym_bool] = ACTIONS(1805), + [anon_sym_str] = ACTIONS(1805), + [anon_sym_char] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1805), + [anon_sym_async] = ACTIONS(1805), + [anon_sym_break] = ACTIONS(1805), + [anon_sym_const] = ACTIONS(1805), + [anon_sym_continue] = ACTIONS(1805), + [anon_sym_default] = ACTIONS(1805), + [anon_sym_enum] = ACTIONS(1805), + [anon_sym_fn] = ACTIONS(1805), + [anon_sym_for] = ACTIONS(1805), + [anon_sym_if] = ACTIONS(1805), + [anon_sym_impl] = ACTIONS(1805), + [anon_sym_let] = ACTIONS(1805), + [anon_sym_loop] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [anon_sym_mod] = ACTIONS(1805), + [anon_sym_pub] = ACTIONS(1805), + [anon_sym_return] = ACTIONS(1805), + [anon_sym_static] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1805), + [anon_sym_trait] = ACTIONS(1805), + [anon_sym_type] = ACTIONS(1805), + [anon_sym_union] = ACTIONS(1805), + [anon_sym_unsafe] = ACTIONS(1805), + [anon_sym_use] = ACTIONS(1805), + [anon_sym_while] = ACTIONS(1805), + [anon_sym_POUND] = ACTIONS(1803), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_extern] = ACTIONS(1805), + [anon_sym_LT] = ACTIONS(1803), + [anon_sym_COLON_COLON] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_PIPE] = ACTIONS(1803), + [anon_sym_move] = ACTIONS(1805), + [sym_integer_literal] = ACTIONS(1803), + [aux_sym_string_literal_token1] = ACTIONS(1803), + [sym_char_literal] = ACTIONS(1803), + [anon_sym_true] = ACTIONS(1805), + [anon_sym_false] = ACTIONS(1805), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1805), + [sym_super] = ACTIONS(1805), + [sym_crate] = ACTIONS(1805), + [sym_metavariable] = ACTIONS(1803), + [sym_raw_string_literal] = ACTIONS(1803), + [sym_float_literal] = ACTIONS(1803), + [sym_block_comment] = ACTIONS(3), + }, + [423] = { + [ts_builtin_sym_end] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_macro_rules_BANG] = ACTIONS(1807), + [anon_sym_LPAREN] = ACTIONS(1807), + [anon_sym_LBRACE] = ACTIONS(1807), + [anon_sym_RBRACE] = ACTIONS(1807), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_u8] = ACTIONS(1809), + [anon_sym_i8] = ACTIONS(1809), + [anon_sym_u16] = ACTIONS(1809), + [anon_sym_i16] = ACTIONS(1809), + [anon_sym_u32] = ACTIONS(1809), + [anon_sym_i32] = ACTIONS(1809), + [anon_sym_u64] = ACTIONS(1809), + [anon_sym_i64] = ACTIONS(1809), + [anon_sym_u128] = ACTIONS(1809), + [anon_sym_i128] = ACTIONS(1809), + [anon_sym_isize] = ACTIONS(1809), + [anon_sym_usize] = ACTIONS(1809), + [anon_sym_f32] = ACTIONS(1809), + [anon_sym_f64] = ACTIONS(1809), + [anon_sym_bool] = ACTIONS(1809), + [anon_sym_str] = ACTIONS(1809), + [anon_sym_char] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_async] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_default] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_impl] = ACTIONS(1809), + [anon_sym_let] = ACTIONS(1809), + [anon_sym_loop] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_mod] = ACTIONS(1809), + [anon_sym_pub] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_static] = ACTIONS(1809), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_trait] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_use] = ACTIONS(1809), + [anon_sym_while] = ACTIONS(1809), + [anon_sym_POUND] = ACTIONS(1807), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_extern] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1807), + [anon_sym_COLON_COLON] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_DASH] = ACTIONS(1807), + [anon_sym_PIPE] = ACTIONS(1807), + [anon_sym_move] = ACTIONS(1809), + [sym_integer_literal] = ACTIONS(1807), + [aux_sym_string_literal_token1] = ACTIONS(1807), + [sym_char_literal] = ACTIONS(1807), + [anon_sym_true] = ACTIONS(1809), + [anon_sym_false] = ACTIONS(1809), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1809), + [sym_super] = ACTIONS(1809), + [sym_crate] = ACTIONS(1809), + [sym_metavariable] = ACTIONS(1807), + [sym_raw_string_literal] = ACTIONS(1807), + [sym_float_literal] = ACTIONS(1807), + [sym_block_comment] = ACTIONS(3), + }, + [424] = { + [ts_builtin_sym_end] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1811), + [anon_sym_macro_rules_BANG] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1811), + [anon_sym_RBRACE] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_u8] = ACTIONS(1813), + [anon_sym_i8] = ACTIONS(1813), + [anon_sym_u16] = ACTIONS(1813), + [anon_sym_i16] = ACTIONS(1813), + [anon_sym_u32] = ACTIONS(1813), + [anon_sym_i32] = ACTIONS(1813), + [anon_sym_u64] = ACTIONS(1813), + [anon_sym_i64] = ACTIONS(1813), + [anon_sym_u128] = ACTIONS(1813), + [anon_sym_i128] = ACTIONS(1813), + [anon_sym_isize] = ACTIONS(1813), + [anon_sym_usize] = ACTIONS(1813), + [anon_sym_f32] = ACTIONS(1813), + [anon_sym_f64] = ACTIONS(1813), + [anon_sym_bool] = ACTIONS(1813), + [anon_sym_str] = ACTIONS(1813), + [anon_sym_char] = ACTIONS(1813), + [anon_sym_SQUOTE] = ACTIONS(1813), + [anon_sym_async] = ACTIONS(1813), + [anon_sym_break] = ACTIONS(1813), + [anon_sym_const] = ACTIONS(1813), + [anon_sym_continue] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(1813), + [anon_sym_enum] = ACTIONS(1813), + [anon_sym_fn] = ACTIONS(1813), + [anon_sym_for] = ACTIONS(1813), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_impl] = ACTIONS(1813), + [anon_sym_let] = ACTIONS(1813), + [anon_sym_loop] = ACTIONS(1813), + [anon_sym_match] = ACTIONS(1813), + [anon_sym_mod] = ACTIONS(1813), + [anon_sym_pub] = ACTIONS(1813), + [anon_sym_return] = ACTIONS(1813), + [anon_sym_static] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1813), + [anon_sym_trait] = ACTIONS(1813), + [anon_sym_type] = ACTIONS(1813), + [anon_sym_union] = ACTIONS(1813), + [anon_sym_unsafe] = ACTIONS(1813), + [anon_sym_use] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(1813), + [anon_sym_POUND] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(1813), + [anon_sym_LT] = ACTIONS(1811), + [anon_sym_COLON_COLON] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_DOT_DOT] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_PIPE] = ACTIONS(1811), + [anon_sym_move] = ACTIONS(1813), + [sym_integer_literal] = ACTIONS(1811), + [aux_sym_string_literal_token1] = ACTIONS(1811), + [sym_char_literal] = ACTIONS(1811), + [anon_sym_true] = ACTIONS(1813), + [anon_sym_false] = ACTIONS(1813), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1813), + [sym_super] = ACTIONS(1813), + [sym_crate] = ACTIONS(1813), + [sym_metavariable] = ACTIONS(1811), + [sym_raw_string_literal] = ACTIONS(1811), + [sym_float_literal] = ACTIONS(1811), + [sym_block_comment] = ACTIONS(3), + }, + [425] = { + [ts_builtin_sym_end] = ACTIONS(1815), + [sym_identifier] = ACTIONS(1817), + [anon_sym_SEMI] = ACTIONS(1815), + [anon_sym_macro_rules_BANG] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_LBRACE] = ACTIONS(1815), + [anon_sym_RBRACE] = ACTIONS(1815), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_u8] = ACTIONS(1817), + [anon_sym_i8] = ACTIONS(1817), + [anon_sym_u16] = ACTIONS(1817), + [anon_sym_i16] = ACTIONS(1817), + [anon_sym_u32] = ACTIONS(1817), + [anon_sym_i32] = ACTIONS(1817), + [anon_sym_u64] = ACTIONS(1817), + [anon_sym_i64] = ACTIONS(1817), + [anon_sym_u128] = ACTIONS(1817), + [anon_sym_i128] = ACTIONS(1817), + [anon_sym_isize] = ACTIONS(1817), + [anon_sym_usize] = ACTIONS(1817), + [anon_sym_f32] = ACTIONS(1817), + [anon_sym_f64] = ACTIONS(1817), + [anon_sym_bool] = ACTIONS(1817), + [anon_sym_str] = ACTIONS(1817), + [anon_sym_char] = ACTIONS(1817), + [anon_sym_SQUOTE] = ACTIONS(1817), + [anon_sym_async] = ACTIONS(1817), + [anon_sym_break] = ACTIONS(1817), + [anon_sym_const] = ACTIONS(1817), + [anon_sym_continue] = ACTIONS(1817), + [anon_sym_default] = ACTIONS(1817), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_fn] = ACTIONS(1817), + [anon_sym_for] = ACTIONS(1817), + [anon_sym_if] = ACTIONS(1817), + [anon_sym_impl] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_loop] = ACTIONS(1817), + [anon_sym_match] = ACTIONS(1817), + [anon_sym_mod] = ACTIONS(1817), + [anon_sym_pub] = ACTIONS(1817), + [anon_sym_return] = ACTIONS(1817), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_struct] = ACTIONS(1817), + [anon_sym_trait] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_union] = ACTIONS(1817), + [anon_sym_unsafe] = ACTIONS(1817), + [anon_sym_use] = ACTIONS(1817), + [anon_sym_while] = ACTIONS(1817), + [anon_sym_POUND] = ACTIONS(1815), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_extern] = ACTIONS(1817), + [anon_sym_LT] = ACTIONS(1815), + [anon_sym_COLON_COLON] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_DOT_DOT] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_PIPE] = ACTIONS(1815), + [anon_sym_move] = ACTIONS(1817), + [sym_integer_literal] = ACTIONS(1815), + [aux_sym_string_literal_token1] = ACTIONS(1815), + [sym_char_literal] = ACTIONS(1815), + [anon_sym_true] = ACTIONS(1817), + [anon_sym_false] = ACTIONS(1817), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1817), + [sym_super] = ACTIONS(1817), + [sym_crate] = ACTIONS(1817), + [sym_metavariable] = ACTIONS(1815), + [sym_raw_string_literal] = ACTIONS(1815), + [sym_float_literal] = ACTIONS(1815), + [sym_block_comment] = ACTIONS(3), + }, + [426] = { + [ts_builtin_sym_end] = ACTIONS(397), + [sym_identifier] = ACTIONS(399), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_macro_rules_BANG] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_isize] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_f32] = ACTIONS(399), + [anon_sym_f64] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_str] = ACTIONS(399), + [anon_sym_char] = ACTIONS(399), + [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_async] = ACTIONS(399), + [anon_sym_break] = ACTIONS(399), + [anon_sym_const] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_default] = ACTIONS(399), + [anon_sym_enum] = ACTIONS(399), + [anon_sym_fn] = ACTIONS(399), + [anon_sym_for] = ACTIONS(399), + [anon_sym_if] = ACTIONS(399), + [anon_sym_impl] = ACTIONS(399), + [anon_sym_let] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_match] = ACTIONS(399), + [anon_sym_mod] = ACTIONS(399), + [anon_sym_pub] = ACTIONS(399), + [anon_sym_return] = ACTIONS(399), + [anon_sym_static] = ACTIONS(399), + [anon_sym_struct] = ACTIONS(399), + [anon_sym_trait] = ACTIONS(399), + [anon_sym_type] = ACTIONS(399), + [anon_sym_union] = ACTIONS(399), + [anon_sym_unsafe] = ACTIONS(399), + [anon_sym_use] = ACTIONS(399), + [anon_sym_while] = ACTIONS(399), + [anon_sym_POUND] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_extern] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_move] = ACTIONS(399), + [sym_integer_literal] = ACTIONS(397), + [aux_sym_string_literal_token1] = ACTIONS(397), + [sym_char_literal] = ACTIONS(397), + [anon_sym_true] = ACTIONS(399), + [anon_sym_false] = ACTIONS(399), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(399), + [sym_super] = ACTIONS(399), + [sym_crate] = ACTIONS(399), + [sym_metavariable] = ACTIONS(397), + [sym_raw_string_literal] = ACTIONS(397), + [sym_float_literal] = ACTIONS(397), + [sym_block_comment] = ACTIONS(3), + }, + [427] = { + [ts_builtin_sym_end] = ACTIONS(1819), + [sym_identifier] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [anon_sym_macro_rules_BANG] = ACTIONS(1819), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1819), + [anon_sym_RBRACE] = ACTIONS(1819), + [anon_sym_LBRACK] = ACTIONS(1819), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_u8] = ACTIONS(1821), + [anon_sym_i8] = ACTIONS(1821), + [anon_sym_u16] = ACTIONS(1821), + [anon_sym_i16] = ACTIONS(1821), + [anon_sym_u32] = ACTIONS(1821), + [anon_sym_i32] = ACTIONS(1821), + [anon_sym_u64] = ACTIONS(1821), + [anon_sym_i64] = ACTIONS(1821), + [anon_sym_u128] = ACTIONS(1821), + [anon_sym_i128] = ACTIONS(1821), + [anon_sym_isize] = ACTIONS(1821), + [anon_sym_usize] = ACTIONS(1821), + [anon_sym_f32] = ACTIONS(1821), + [anon_sym_f64] = ACTIONS(1821), + [anon_sym_bool] = ACTIONS(1821), + [anon_sym_str] = ACTIONS(1821), + [anon_sym_char] = ACTIONS(1821), + [anon_sym_SQUOTE] = ACTIONS(1821), + [anon_sym_async] = ACTIONS(1821), + [anon_sym_break] = ACTIONS(1821), + [anon_sym_const] = ACTIONS(1821), + [anon_sym_continue] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(1821), + [anon_sym_enum] = ACTIONS(1821), + [anon_sym_fn] = ACTIONS(1821), + [anon_sym_for] = ACTIONS(1821), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_impl] = ACTIONS(1821), + [anon_sym_let] = ACTIONS(1821), + [anon_sym_loop] = ACTIONS(1821), + [anon_sym_match] = ACTIONS(1821), + [anon_sym_mod] = ACTIONS(1821), + [anon_sym_pub] = ACTIONS(1821), + [anon_sym_return] = ACTIONS(1821), + [anon_sym_static] = ACTIONS(1821), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_trait] = ACTIONS(1821), + [anon_sym_type] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1821), + [anon_sym_use] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(1821), + [anon_sym_POUND] = ACTIONS(1819), + [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_extern] = ACTIONS(1821), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_COLON_COLON] = ACTIONS(1819), + [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1819), + [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_PIPE] = ACTIONS(1819), + [anon_sym_move] = ACTIONS(1821), + [sym_integer_literal] = ACTIONS(1819), + [aux_sym_string_literal_token1] = ACTIONS(1819), + [sym_char_literal] = ACTIONS(1819), + [anon_sym_true] = ACTIONS(1821), + [anon_sym_false] = ACTIONS(1821), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1821), + [sym_super] = ACTIONS(1821), + [sym_crate] = ACTIONS(1821), + [sym_metavariable] = ACTIONS(1819), + [sym_raw_string_literal] = ACTIONS(1819), + [sym_float_literal] = ACTIONS(1819), + [sym_block_comment] = ACTIONS(3), + }, + [428] = { + [ts_builtin_sym_end] = ACTIONS(1823), + [sym_identifier] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_macro_rules_BANG] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1823), + [anon_sym_RBRACE] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_u8] = ACTIONS(1825), + [anon_sym_i8] = ACTIONS(1825), + [anon_sym_u16] = ACTIONS(1825), + [anon_sym_i16] = ACTIONS(1825), + [anon_sym_u32] = ACTIONS(1825), + [anon_sym_i32] = ACTIONS(1825), + [anon_sym_u64] = ACTIONS(1825), + [anon_sym_i64] = ACTIONS(1825), + [anon_sym_u128] = ACTIONS(1825), + [anon_sym_i128] = ACTIONS(1825), + [anon_sym_isize] = ACTIONS(1825), + [anon_sym_usize] = ACTIONS(1825), + [anon_sym_f32] = ACTIONS(1825), + [anon_sym_f64] = ACTIONS(1825), + [anon_sym_bool] = ACTIONS(1825), + [anon_sym_str] = ACTIONS(1825), + [anon_sym_char] = ACTIONS(1825), + [anon_sym_SQUOTE] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1825), + [anon_sym_break] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [anon_sym_continue] = ACTIONS(1825), + [anon_sym_default] = ACTIONS(1825), + [anon_sym_enum] = ACTIONS(1825), + [anon_sym_fn] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1825), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_impl] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_loop] = ACTIONS(1825), + [anon_sym_match] = ACTIONS(1825), + [anon_sym_mod] = ACTIONS(1825), + [anon_sym_pub] = ACTIONS(1825), + [anon_sym_return] = ACTIONS(1825), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(1825), + [anon_sym_trait] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_union] = ACTIONS(1825), + [anon_sym_unsafe] = ACTIONS(1825), + [anon_sym_use] = ACTIONS(1825), + [anon_sym_while] = ACTIONS(1825), + [anon_sym_POUND] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_extern] = ACTIONS(1825), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_COLON_COLON] = ACTIONS(1823), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_move] = ACTIONS(1825), + [sym_integer_literal] = ACTIONS(1823), + [aux_sym_string_literal_token1] = ACTIONS(1823), + [sym_char_literal] = ACTIONS(1823), + [anon_sym_true] = ACTIONS(1825), + [anon_sym_false] = ACTIONS(1825), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1825), + [sym_super] = ACTIONS(1825), + [sym_crate] = ACTIONS(1825), + [sym_metavariable] = ACTIONS(1823), + [sym_raw_string_literal] = ACTIONS(1823), + [sym_float_literal] = ACTIONS(1823), + [sym_block_comment] = ACTIONS(3), + }, + [429] = { + [ts_builtin_sym_end] = ACTIONS(1827), + [sym_identifier] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [anon_sym_macro_rules_BANG] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1827), + [anon_sym_RBRACE] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1827), + [anon_sym_u8] = ACTIONS(1829), + [anon_sym_i8] = ACTIONS(1829), + [anon_sym_u16] = ACTIONS(1829), + [anon_sym_i16] = ACTIONS(1829), + [anon_sym_u32] = ACTIONS(1829), + [anon_sym_i32] = ACTIONS(1829), + [anon_sym_u64] = ACTIONS(1829), + [anon_sym_i64] = ACTIONS(1829), + [anon_sym_u128] = ACTIONS(1829), + [anon_sym_i128] = ACTIONS(1829), + [anon_sym_isize] = ACTIONS(1829), + [anon_sym_usize] = ACTIONS(1829), + [anon_sym_f32] = ACTIONS(1829), + [anon_sym_f64] = ACTIONS(1829), + [anon_sym_bool] = ACTIONS(1829), + [anon_sym_str] = ACTIONS(1829), + [anon_sym_char] = ACTIONS(1829), + [anon_sym_SQUOTE] = ACTIONS(1829), + [anon_sym_async] = ACTIONS(1829), + [anon_sym_break] = ACTIONS(1829), + [anon_sym_const] = ACTIONS(1829), + [anon_sym_continue] = ACTIONS(1829), + [anon_sym_default] = ACTIONS(1829), + [anon_sym_enum] = ACTIONS(1829), + [anon_sym_fn] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1829), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_impl] = ACTIONS(1829), + [anon_sym_let] = ACTIONS(1829), + [anon_sym_loop] = ACTIONS(1829), + [anon_sym_match] = ACTIONS(1829), + [anon_sym_mod] = ACTIONS(1829), + [anon_sym_pub] = ACTIONS(1829), + [anon_sym_return] = ACTIONS(1829), + [anon_sym_static] = ACTIONS(1829), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_trait] = ACTIONS(1829), + [anon_sym_type] = ACTIONS(1829), + [anon_sym_union] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1829), + [anon_sym_use] = ACTIONS(1829), + [anon_sym_while] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(1827), + [anon_sym_BANG] = ACTIONS(1827), + [anon_sym_extern] = ACTIONS(1829), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_COLON_COLON] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_DOT_DOT] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_move] = ACTIONS(1829), + [sym_integer_literal] = ACTIONS(1827), + [aux_sym_string_literal_token1] = ACTIONS(1827), + [sym_char_literal] = ACTIONS(1827), + [anon_sym_true] = ACTIONS(1829), + [anon_sym_false] = ACTIONS(1829), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1829), + [sym_super] = ACTIONS(1829), + [sym_crate] = ACTIONS(1829), + [sym_metavariable] = ACTIONS(1827), + [sym_raw_string_literal] = ACTIONS(1827), + [sym_float_literal] = ACTIONS(1827), + [sym_block_comment] = ACTIONS(3), + }, + [430] = { + [ts_builtin_sym_end] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_macro_rules_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_u8] = ACTIONS(1833), + [anon_sym_i8] = ACTIONS(1833), + [anon_sym_u16] = ACTIONS(1833), + [anon_sym_i16] = ACTIONS(1833), + [anon_sym_u32] = ACTIONS(1833), + [anon_sym_i32] = ACTIONS(1833), + [anon_sym_u64] = ACTIONS(1833), + [anon_sym_i64] = ACTIONS(1833), + [anon_sym_u128] = ACTIONS(1833), + [anon_sym_i128] = ACTIONS(1833), + [anon_sym_isize] = ACTIONS(1833), + [anon_sym_usize] = ACTIONS(1833), + [anon_sym_f32] = ACTIONS(1833), + [anon_sym_f64] = ACTIONS(1833), + [anon_sym_bool] = ACTIONS(1833), + [anon_sym_str] = ACTIONS(1833), + [anon_sym_char] = ACTIONS(1833), + [anon_sym_SQUOTE] = ACTIONS(1833), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1833), + [anon_sym_enum] = ACTIONS(1833), + [anon_sym_fn] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_impl] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_loop] = ACTIONS(1833), + [anon_sym_match] = ACTIONS(1833), + [anon_sym_mod] = ACTIONS(1833), + [anon_sym_pub] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_static] = ACTIONS(1833), + [anon_sym_struct] = ACTIONS(1833), + [anon_sym_trait] = ACTIONS(1833), + [anon_sym_type] = ACTIONS(1833), + [anon_sym_union] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_use] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_extern] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_DOT_DOT] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_PIPE] = ACTIONS(1831), + [anon_sym_move] = ACTIONS(1833), + [sym_integer_literal] = ACTIONS(1831), + [aux_sym_string_literal_token1] = ACTIONS(1831), + [sym_char_literal] = ACTIONS(1831), + [anon_sym_true] = ACTIONS(1833), + [anon_sym_false] = ACTIONS(1833), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1833), + [sym_super] = ACTIONS(1833), + [sym_crate] = ACTIONS(1833), + [sym_metavariable] = ACTIONS(1831), + [sym_raw_string_literal] = ACTIONS(1831), + [sym_float_literal] = ACTIONS(1831), + [sym_block_comment] = ACTIONS(3), + }, + [431] = { + [sym__token_pattern] = STATE(399), + [sym_token_tree_pattern] = STATE(399), + [sym_token_binding_pattern] = STATE(399), + [sym_token_repetition_pattern] = STATE(399), + [sym__literal] = STATE(399), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_pattern_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u128] = ACTIONS(1835), + [anon_sym_i128] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_str] = ACTIONS(1835), + [anon_sym_char] = ACTIONS(1835), + [aux_sym__non_special_token_token1] = ACTIONS(1835), + [anon_sym_SQUOTE] = ACTIONS(1835), + [anon_sym_as] = ACTIONS(1835), + [anon_sym_async] = ACTIONS(1835), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1835), + [anon_sym_const] = ACTIONS(1835), + [anon_sym_continue] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1835), + [anon_sym_enum] = ACTIONS(1835), + [anon_sym_fn] = ACTIONS(1835), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_impl] = ACTIONS(1835), + [anon_sym_let] = ACTIONS(1835), + [anon_sym_loop] = ACTIONS(1835), + [anon_sym_match] = ACTIONS(1835), + [anon_sym_mod] = ACTIONS(1835), + [anon_sym_pub] = ACTIONS(1835), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_static] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1835), + [anon_sym_trait] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_union] = ACTIONS(1835), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_use] = ACTIONS(1835), + [anon_sym_where] = ACTIONS(1835), + [anon_sym_while] = ACTIONS(1835), + [sym_mutable_specifier] = ACTIONS(1835), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(1835), + [sym_super] = ACTIONS(1835), + [sym_crate] = ACTIONS(1835), + [sym_metavariable] = ACTIONS(1116), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [432] = { + [ts_builtin_sym_end] = ACTIONS(1839), + [sym_identifier] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1839), + [anon_sym_macro_rules_BANG] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_STAR] = ACTIONS(1839), + [anon_sym_u8] = ACTIONS(1841), + [anon_sym_i8] = ACTIONS(1841), + [anon_sym_u16] = ACTIONS(1841), + [anon_sym_i16] = ACTIONS(1841), + [anon_sym_u32] = ACTIONS(1841), + [anon_sym_i32] = ACTIONS(1841), + [anon_sym_u64] = ACTIONS(1841), + [anon_sym_i64] = ACTIONS(1841), + [anon_sym_u128] = ACTIONS(1841), + [anon_sym_i128] = ACTIONS(1841), + [anon_sym_isize] = ACTIONS(1841), + [anon_sym_usize] = ACTIONS(1841), + [anon_sym_f32] = ACTIONS(1841), + [anon_sym_f64] = ACTIONS(1841), + [anon_sym_bool] = ACTIONS(1841), + [anon_sym_str] = ACTIONS(1841), + [anon_sym_char] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_async] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_default] = ACTIONS(1841), + [anon_sym_enum] = ACTIONS(1841), + [anon_sym_fn] = ACTIONS(1841), + [anon_sym_for] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_impl] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1841), + [anon_sym_loop] = ACTIONS(1841), + [anon_sym_match] = ACTIONS(1841), + [anon_sym_mod] = ACTIONS(1841), + [anon_sym_pub] = ACTIONS(1841), + [anon_sym_return] = ACTIONS(1841), + [anon_sym_static] = ACTIONS(1841), + [anon_sym_struct] = ACTIONS(1841), + [anon_sym_trait] = ACTIONS(1841), + [anon_sym_type] = ACTIONS(1841), + [anon_sym_union] = ACTIONS(1841), + [anon_sym_unsafe] = ACTIONS(1841), + [anon_sym_use] = ACTIONS(1841), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_POUND] = ACTIONS(1839), + [anon_sym_BANG] = ACTIONS(1839), + [anon_sym_extern] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1839), + [anon_sym_COLON_COLON] = ACTIONS(1839), + [anon_sym_AMP] = ACTIONS(1839), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_DASH] = ACTIONS(1839), + [anon_sym_PIPE] = ACTIONS(1839), + [anon_sym_move] = ACTIONS(1841), + [sym_integer_literal] = ACTIONS(1839), + [aux_sym_string_literal_token1] = ACTIONS(1839), + [sym_char_literal] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1841), + [sym_super] = ACTIONS(1841), + [sym_crate] = ACTIONS(1841), + [sym_metavariable] = ACTIONS(1839), + [sym_raw_string_literal] = ACTIONS(1839), + [sym_float_literal] = ACTIONS(1839), + [sym_block_comment] = ACTIONS(3), + }, + [433] = { + [ts_builtin_sym_end] = ACTIONS(1843), + [sym_identifier] = ACTIONS(1845), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_macro_rules_BANG] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_u8] = ACTIONS(1845), + [anon_sym_i8] = ACTIONS(1845), + [anon_sym_u16] = ACTIONS(1845), + [anon_sym_i16] = ACTIONS(1845), + [anon_sym_u32] = ACTIONS(1845), + [anon_sym_i32] = ACTIONS(1845), + [anon_sym_u64] = ACTIONS(1845), + [anon_sym_i64] = ACTIONS(1845), + [anon_sym_u128] = ACTIONS(1845), + [anon_sym_i128] = ACTIONS(1845), + [anon_sym_isize] = ACTIONS(1845), + [anon_sym_usize] = ACTIONS(1845), + [anon_sym_f32] = ACTIONS(1845), + [anon_sym_f64] = ACTIONS(1845), + [anon_sym_bool] = ACTIONS(1845), + [anon_sym_str] = ACTIONS(1845), + [anon_sym_char] = ACTIONS(1845), + [anon_sym_SQUOTE] = ACTIONS(1845), + [anon_sym_async] = ACTIONS(1845), + [anon_sym_break] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(1845), + [anon_sym_continue] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1845), + [anon_sym_enum] = ACTIONS(1845), + [anon_sym_fn] = ACTIONS(1845), + [anon_sym_for] = ACTIONS(1845), + [anon_sym_if] = ACTIONS(1845), + [anon_sym_impl] = ACTIONS(1845), + [anon_sym_let] = ACTIONS(1845), + [anon_sym_loop] = ACTIONS(1845), + [anon_sym_match] = ACTIONS(1845), + [anon_sym_mod] = ACTIONS(1845), + [anon_sym_pub] = ACTIONS(1845), + [anon_sym_return] = ACTIONS(1845), + [anon_sym_static] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(1845), + [anon_sym_trait] = ACTIONS(1845), + [anon_sym_type] = ACTIONS(1845), + [anon_sym_union] = ACTIONS(1845), + [anon_sym_unsafe] = ACTIONS(1845), + [anon_sym_use] = ACTIONS(1845), + [anon_sym_while] = ACTIONS(1845), + [anon_sym_POUND] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_extern] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_move] = ACTIONS(1845), + [sym_integer_literal] = ACTIONS(1843), + [aux_sym_string_literal_token1] = ACTIONS(1843), + [sym_char_literal] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1845), + [anon_sym_false] = ACTIONS(1845), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1845), + [sym_super] = ACTIONS(1845), + [sym_crate] = ACTIONS(1845), + [sym_metavariable] = ACTIONS(1843), + [sym_raw_string_literal] = ACTIONS(1843), + [sym_float_literal] = ACTIONS(1843), + [sym_block_comment] = ACTIONS(3), + }, + [434] = { + [ts_builtin_sym_end] = ACTIONS(389), + [sym_identifier] = ACTIONS(391), + [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_macro_rules_BANG] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_u8] = ACTIONS(391), + [anon_sym_i8] = ACTIONS(391), + [anon_sym_u16] = ACTIONS(391), + [anon_sym_i16] = ACTIONS(391), + [anon_sym_u32] = ACTIONS(391), + [anon_sym_i32] = ACTIONS(391), + [anon_sym_u64] = ACTIONS(391), + [anon_sym_i64] = ACTIONS(391), + [anon_sym_u128] = ACTIONS(391), + [anon_sym_i128] = ACTIONS(391), + [anon_sym_isize] = ACTIONS(391), + [anon_sym_usize] = ACTIONS(391), + [anon_sym_f32] = ACTIONS(391), + [anon_sym_f64] = ACTIONS(391), + [anon_sym_bool] = ACTIONS(391), + [anon_sym_str] = ACTIONS(391), + [anon_sym_char] = ACTIONS(391), + [anon_sym_SQUOTE] = ACTIONS(391), + [anon_sym_async] = ACTIONS(391), + [anon_sym_break] = ACTIONS(391), + [anon_sym_const] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_default] = ACTIONS(391), + [anon_sym_enum] = ACTIONS(391), + [anon_sym_fn] = ACTIONS(391), + [anon_sym_for] = ACTIONS(391), + [anon_sym_if] = ACTIONS(391), + [anon_sym_impl] = ACTIONS(391), + [anon_sym_let] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(391), + [anon_sym_match] = ACTIONS(391), + [anon_sym_mod] = ACTIONS(391), + [anon_sym_pub] = ACTIONS(391), + [anon_sym_return] = ACTIONS(391), + [anon_sym_static] = ACTIONS(391), + [anon_sym_struct] = ACTIONS(391), + [anon_sym_trait] = ACTIONS(391), + [anon_sym_type] = ACTIONS(391), + [anon_sym_union] = ACTIONS(391), + [anon_sym_unsafe] = ACTIONS(391), + [anon_sym_use] = ACTIONS(391), + [anon_sym_while] = ACTIONS(391), + [anon_sym_POUND] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_extern] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_move] = ACTIONS(391), + [sym_integer_literal] = ACTIONS(389), + [aux_sym_string_literal_token1] = ACTIONS(389), + [sym_char_literal] = ACTIONS(389), + [anon_sym_true] = ACTIONS(391), + [anon_sym_false] = ACTIONS(391), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(391), + [sym_super] = ACTIONS(391), + [sym_crate] = ACTIONS(391), + [sym_metavariable] = ACTIONS(389), + [sym_raw_string_literal] = ACTIONS(389), + [sym_float_literal] = ACTIONS(389), + [sym_block_comment] = ACTIONS(3), + }, + [435] = { + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1847), + [anon_sym_macro_rules_BANG] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1847), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_u8] = ACTIONS(1849), + [anon_sym_i8] = ACTIONS(1849), + [anon_sym_u16] = ACTIONS(1849), + [anon_sym_i16] = ACTIONS(1849), + [anon_sym_u32] = ACTIONS(1849), + [anon_sym_i32] = ACTIONS(1849), + [anon_sym_u64] = ACTIONS(1849), + [anon_sym_i64] = ACTIONS(1849), + [anon_sym_u128] = ACTIONS(1849), + [anon_sym_i128] = ACTIONS(1849), + [anon_sym_isize] = ACTIONS(1849), + [anon_sym_usize] = ACTIONS(1849), + [anon_sym_f32] = ACTIONS(1849), + [anon_sym_f64] = ACTIONS(1849), + [anon_sym_bool] = ACTIONS(1849), + [anon_sym_str] = ACTIONS(1849), + [anon_sym_char] = ACTIONS(1849), + [anon_sym_SQUOTE] = ACTIONS(1849), + [anon_sym_async] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_default] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_impl] = ACTIONS(1849), + [anon_sym_let] = ACTIONS(1849), + [anon_sym_loop] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_mod] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_static] = ACTIONS(1849), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_trait] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_use] = ACTIONS(1849), + [anon_sym_while] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(1849), + [anon_sym_LT] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1847), + [anon_sym_move] = ACTIONS(1849), + [sym_integer_literal] = ACTIONS(1847), + [aux_sym_string_literal_token1] = ACTIONS(1847), + [sym_char_literal] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(1849), + [anon_sym_false] = ACTIONS(1849), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1849), + [sym_super] = ACTIONS(1849), + [sym_crate] = ACTIONS(1849), + [sym_metavariable] = ACTIONS(1847), + [sym_raw_string_literal] = ACTIONS(1847), + [sym_float_literal] = ACTIONS(1847), + [sym_block_comment] = ACTIONS(3), + }, + [436] = { + [ts_builtin_sym_end] = ACTIONS(1851), + [sym_identifier] = ACTIONS(1853), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_macro_rules_BANG] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1851), + [anon_sym_u8] = ACTIONS(1853), + [anon_sym_i8] = ACTIONS(1853), + [anon_sym_u16] = ACTIONS(1853), + [anon_sym_i16] = ACTIONS(1853), + [anon_sym_u32] = ACTIONS(1853), + [anon_sym_i32] = ACTIONS(1853), + [anon_sym_u64] = ACTIONS(1853), + [anon_sym_i64] = ACTIONS(1853), + [anon_sym_u128] = ACTIONS(1853), + [anon_sym_i128] = ACTIONS(1853), + [anon_sym_isize] = ACTIONS(1853), + [anon_sym_usize] = ACTIONS(1853), + [anon_sym_f32] = ACTIONS(1853), + [anon_sym_f64] = ACTIONS(1853), + [anon_sym_bool] = ACTIONS(1853), + [anon_sym_str] = ACTIONS(1853), + [anon_sym_char] = ACTIONS(1853), + [anon_sym_SQUOTE] = ACTIONS(1853), + [anon_sym_async] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1853), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_fn] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_impl] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_loop] = ACTIONS(1853), + [anon_sym_match] = ACTIONS(1853), + [anon_sym_mod] = ACTIONS(1853), + [anon_sym_pub] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_static] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1853), + [anon_sym_trait] = ACTIONS(1853), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_union] = ACTIONS(1853), + [anon_sym_unsafe] = ACTIONS(1853), + [anon_sym_use] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_POUND] = ACTIONS(1851), + [anon_sym_BANG] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1851), + [anon_sym_COLON_COLON] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_PIPE] = ACTIONS(1851), + [anon_sym_move] = ACTIONS(1853), + [sym_integer_literal] = ACTIONS(1851), + [aux_sym_string_literal_token1] = ACTIONS(1851), + [sym_char_literal] = ACTIONS(1851), + [anon_sym_true] = ACTIONS(1853), + [anon_sym_false] = ACTIONS(1853), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1853), + [sym_super] = ACTIONS(1853), + [sym_crate] = ACTIONS(1853), + [sym_metavariable] = ACTIONS(1851), + [sym_raw_string_literal] = ACTIONS(1851), + [sym_float_literal] = ACTIONS(1851), + [sym_block_comment] = ACTIONS(3), + }, + [437] = { + [ts_builtin_sym_end] = ACTIONS(393), + [sym_identifier] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(393), + [anon_sym_macro_rules_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_async] = ACTIONS(395), + [anon_sym_break] = ACTIONS(395), + [anon_sym_const] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_default] = ACTIONS(395), + [anon_sym_enum] = ACTIONS(395), + [anon_sym_fn] = ACTIONS(395), + [anon_sym_for] = ACTIONS(395), + [anon_sym_if] = ACTIONS(395), + [anon_sym_impl] = ACTIONS(395), + [anon_sym_let] = ACTIONS(395), + [anon_sym_loop] = ACTIONS(395), + [anon_sym_match] = ACTIONS(395), + [anon_sym_mod] = ACTIONS(395), + [anon_sym_pub] = ACTIONS(395), + [anon_sym_return] = ACTIONS(395), + [anon_sym_static] = ACTIONS(395), + [anon_sym_struct] = ACTIONS(395), + [anon_sym_trait] = ACTIONS(395), + [anon_sym_type] = ACTIONS(395), + [anon_sym_union] = ACTIONS(395), + [anon_sym_unsafe] = ACTIONS(395), + [anon_sym_use] = ACTIONS(395), + [anon_sym_while] = ACTIONS(395), + [anon_sym_POUND] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_extern] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(393), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_move] = ACTIONS(395), + [sym_integer_literal] = ACTIONS(393), + [aux_sym_string_literal_token1] = ACTIONS(393), + [sym_char_literal] = ACTIONS(393), + [anon_sym_true] = ACTIONS(395), + [anon_sym_false] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(395), + [sym_super] = ACTIONS(395), + [sym_crate] = ACTIONS(395), + [sym_metavariable] = ACTIONS(393), + [sym_raw_string_literal] = ACTIONS(393), + [sym_float_literal] = ACTIONS(393), + [sym_block_comment] = ACTIONS(3), + }, + [438] = { + [ts_builtin_sym_end] = ACTIONS(1855), + [sym_identifier] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1855), + [anon_sym_macro_rules_BANG] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_u8] = ACTIONS(1857), + [anon_sym_i8] = ACTIONS(1857), + [anon_sym_u16] = ACTIONS(1857), + [anon_sym_i16] = ACTIONS(1857), + [anon_sym_u32] = ACTIONS(1857), + [anon_sym_i32] = ACTIONS(1857), + [anon_sym_u64] = ACTIONS(1857), + [anon_sym_i64] = ACTIONS(1857), + [anon_sym_u128] = ACTIONS(1857), + [anon_sym_i128] = ACTIONS(1857), + [anon_sym_isize] = ACTIONS(1857), + [anon_sym_usize] = ACTIONS(1857), + [anon_sym_f32] = ACTIONS(1857), + [anon_sym_f64] = ACTIONS(1857), + [anon_sym_bool] = ACTIONS(1857), + [anon_sym_str] = ACTIONS(1857), + [anon_sym_char] = ACTIONS(1857), + [anon_sym_SQUOTE] = ACTIONS(1857), + [anon_sym_async] = ACTIONS(1857), + [anon_sym_break] = ACTIONS(1857), + [anon_sym_const] = ACTIONS(1857), + [anon_sym_continue] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1857), + [anon_sym_enum] = ACTIONS(1857), + [anon_sym_fn] = ACTIONS(1857), + [anon_sym_for] = ACTIONS(1857), + [anon_sym_if] = ACTIONS(1857), + [anon_sym_impl] = ACTIONS(1857), + [anon_sym_let] = ACTIONS(1857), + [anon_sym_loop] = ACTIONS(1857), + [anon_sym_match] = ACTIONS(1857), + [anon_sym_mod] = ACTIONS(1857), + [anon_sym_pub] = ACTIONS(1857), + [anon_sym_return] = ACTIONS(1857), + [anon_sym_static] = ACTIONS(1857), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_trait] = ACTIONS(1857), + [anon_sym_type] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1857), + [anon_sym_unsafe] = ACTIONS(1857), + [anon_sym_use] = ACTIONS(1857), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_POUND] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_extern] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(1855), + [anon_sym_COLON_COLON] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1855), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_move] = ACTIONS(1857), + [sym_integer_literal] = ACTIONS(1855), + [aux_sym_string_literal_token1] = ACTIONS(1855), + [sym_char_literal] = ACTIONS(1855), + [anon_sym_true] = ACTIONS(1857), + [anon_sym_false] = ACTIONS(1857), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1857), + [sym_super] = ACTIONS(1857), + [sym_crate] = ACTIONS(1857), + [sym_metavariable] = ACTIONS(1855), + [sym_raw_string_literal] = ACTIONS(1855), + [sym_float_literal] = ACTIONS(1855), + [sym_block_comment] = ACTIONS(3), + }, + [439] = { + [ts_builtin_sym_end] = ACTIONS(1859), + [sym_identifier] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1859), + [anon_sym_macro_rules_BANG] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1861), + [anon_sym_i8] = ACTIONS(1861), + [anon_sym_u16] = ACTIONS(1861), + [anon_sym_i16] = ACTIONS(1861), + [anon_sym_u32] = ACTIONS(1861), + [anon_sym_i32] = ACTIONS(1861), + [anon_sym_u64] = ACTIONS(1861), + [anon_sym_i64] = ACTIONS(1861), + [anon_sym_u128] = ACTIONS(1861), + [anon_sym_i128] = ACTIONS(1861), + [anon_sym_isize] = ACTIONS(1861), + [anon_sym_usize] = ACTIONS(1861), + [anon_sym_f32] = ACTIONS(1861), + [anon_sym_f64] = ACTIONS(1861), + [anon_sym_bool] = ACTIONS(1861), + [anon_sym_str] = ACTIONS(1861), + [anon_sym_char] = ACTIONS(1861), + [anon_sym_SQUOTE] = ACTIONS(1861), + [anon_sym_async] = ACTIONS(1861), + [anon_sym_break] = ACTIONS(1861), + [anon_sym_const] = ACTIONS(1861), + [anon_sym_continue] = ACTIONS(1861), + [anon_sym_default] = ACTIONS(1861), + [anon_sym_enum] = ACTIONS(1861), + [anon_sym_fn] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1861), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_impl] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_loop] = ACTIONS(1861), + [anon_sym_match] = ACTIONS(1861), + [anon_sym_mod] = ACTIONS(1861), + [anon_sym_pub] = ACTIONS(1861), + [anon_sym_return] = ACTIONS(1861), + [anon_sym_static] = ACTIONS(1861), + [anon_sym_struct] = ACTIONS(1861), + [anon_sym_trait] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_union] = ACTIONS(1861), + [anon_sym_unsafe] = ACTIONS(1861), + [anon_sym_use] = ACTIONS(1861), + [anon_sym_while] = ACTIONS(1861), + [anon_sym_POUND] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_extern] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_COLON_COLON] = ACTIONS(1859), + [anon_sym_AMP] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_PIPE] = ACTIONS(1859), + [anon_sym_move] = ACTIONS(1861), + [sym_integer_literal] = ACTIONS(1859), + [aux_sym_string_literal_token1] = ACTIONS(1859), + [sym_char_literal] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1861), + [sym_super] = ACTIONS(1861), + [sym_crate] = ACTIONS(1861), + [sym_metavariable] = ACTIONS(1859), + [sym_raw_string_literal] = ACTIONS(1859), + [sym_float_literal] = ACTIONS(1859), + [sym_block_comment] = ACTIONS(3), + }, + [440] = { + [ts_builtin_sym_end] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1865), + [anon_sym_SEMI] = ACTIONS(1863), + [anon_sym_macro_rules_BANG] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1863), + [anon_sym_u8] = ACTIONS(1865), + [anon_sym_i8] = ACTIONS(1865), + [anon_sym_u16] = ACTIONS(1865), + [anon_sym_i16] = ACTIONS(1865), + [anon_sym_u32] = ACTIONS(1865), + [anon_sym_i32] = ACTIONS(1865), + [anon_sym_u64] = ACTIONS(1865), + [anon_sym_i64] = ACTIONS(1865), + [anon_sym_u128] = ACTIONS(1865), + [anon_sym_i128] = ACTIONS(1865), + [anon_sym_isize] = ACTIONS(1865), + [anon_sym_usize] = ACTIONS(1865), + [anon_sym_f32] = ACTIONS(1865), + [anon_sym_f64] = ACTIONS(1865), + [anon_sym_bool] = ACTIONS(1865), + [anon_sym_str] = ACTIONS(1865), + [anon_sym_char] = ACTIONS(1865), + [anon_sym_SQUOTE] = ACTIONS(1865), + [anon_sym_async] = ACTIONS(1865), + [anon_sym_break] = ACTIONS(1865), + [anon_sym_const] = ACTIONS(1865), + [anon_sym_continue] = ACTIONS(1865), + [anon_sym_default] = ACTIONS(1865), + [anon_sym_enum] = ACTIONS(1865), + [anon_sym_fn] = ACTIONS(1865), + [anon_sym_for] = ACTIONS(1865), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_impl] = ACTIONS(1865), + [anon_sym_let] = ACTIONS(1865), + [anon_sym_loop] = ACTIONS(1865), + [anon_sym_match] = ACTIONS(1865), + [anon_sym_mod] = ACTIONS(1865), + [anon_sym_pub] = ACTIONS(1865), + [anon_sym_return] = ACTIONS(1865), + [anon_sym_static] = ACTIONS(1865), + [anon_sym_struct] = ACTIONS(1865), + [anon_sym_trait] = ACTIONS(1865), + [anon_sym_type] = ACTIONS(1865), + [anon_sym_union] = ACTIONS(1865), + [anon_sym_unsafe] = ACTIONS(1865), + [anon_sym_use] = ACTIONS(1865), + [anon_sym_while] = ACTIONS(1865), + [anon_sym_POUND] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_extern] = ACTIONS(1865), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_COLON_COLON] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_DOT_DOT] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_PIPE] = ACTIONS(1863), + [anon_sym_move] = ACTIONS(1865), + [sym_integer_literal] = ACTIONS(1863), + [aux_sym_string_literal_token1] = ACTIONS(1863), + [sym_char_literal] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(1865), + [anon_sym_false] = ACTIONS(1865), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1865), + [sym_super] = ACTIONS(1865), + [sym_crate] = ACTIONS(1865), + [sym_metavariable] = ACTIONS(1863), + [sym_raw_string_literal] = ACTIONS(1863), + [sym_float_literal] = ACTIONS(1863), + [sym_block_comment] = ACTIONS(3), + }, + [441] = { + [ts_builtin_sym_end] = ACTIONS(1867), + [sym_identifier] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1867), + [anon_sym_macro_rules_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_u8] = ACTIONS(1869), + [anon_sym_i8] = ACTIONS(1869), + [anon_sym_u16] = ACTIONS(1869), + [anon_sym_i16] = ACTIONS(1869), + [anon_sym_u32] = ACTIONS(1869), + [anon_sym_i32] = ACTIONS(1869), + [anon_sym_u64] = ACTIONS(1869), + [anon_sym_i64] = ACTIONS(1869), + [anon_sym_u128] = ACTIONS(1869), + [anon_sym_i128] = ACTIONS(1869), + [anon_sym_isize] = ACTIONS(1869), + [anon_sym_usize] = ACTIONS(1869), + [anon_sym_f32] = ACTIONS(1869), + [anon_sym_f64] = ACTIONS(1869), + [anon_sym_bool] = ACTIONS(1869), + [anon_sym_str] = ACTIONS(1869), + [anon_sym_char] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_async] = ACTIONS(1869), + [anon_sym_break] = ACTIONS(1869), + [anon_sym_const] = ACTIONS(1869), + [anon_sym_continue] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1869), + [anon_sym_enum] = ACTIONS(1869), + [anon_sym_fn] = ACTIONS(1869), + [anon_sym_for] = ACTIONS(1869), + [anon_sym_if] = ACTIONS(1869), + [anon_sym_impl] = ACTIONS(1869), + [anon_sym_let] = ACTIONS(1869), + [anon_sym_loop] = ACTIONS(1869), + [anon_sym_match] = ACTIONS(1869), + [anon_sym_mod] = ACTIONS(1869), + [anon_sym_pub] = ACTIONS(1869), + [anon_sym_return] = ACTIONS(1869), + [anon_sym_static] = ACTIONS(1869), + [anon_sym_struct] = ACTIONS(1869), + [anon_sym_trait] = ACTIONS(1869), + [anon_sym_type] = ACTIONS(1869), + [anon_sym_union] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1869), + [anon_sym_use] = ACTIONS(1869), + [anon_sym_while] = ACTIONS(1869), + [anon_sym_POUND] = ACTIONS(1867), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_extern] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1867), + [anon_sym_COLON_COLON] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1867), + [anon_sym_move] = ACTIONS(1869), + [sym_integer_literal] = ACTIONS(1867), + [aux_sym_string_literal_token1] = ACTIONS(1867), + [sym_char_literal] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1869), + [anon_sym_false] = ACTIONS(1869), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1869), + [sym_super] = ACTIONS(1869), + [sym_crate] = ACTIONS(1869), + [sym_metavariable] = ACTIONS(1867), + [sym_raw_string_literal] = ACTIONS(1867), + [sym_float_literal] = ACTIONS(1867), + [sym_block_comment] = ACTIONS(3), + }, + [442] = { + [ts_builtin_sym_end] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_macro_rules_BANG] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_u8] = ACTIONS(1873), + [anon_sym_i8] = ACTIONS(1873), + [anon_sym_u16] = ACTIONS(1873), + [anon_sym_i16] = ACTIONS(1873), + [anon_sym_u32] = ACTIONS(1873), + [anon_sym_i32] = ACTIONS(1873), + [anon_sym_u64] = ACTIONS(1873), + [anon_sym_i64] = ACTIONS(1873), + [anon_sym_u128] = ACTIONS(1873), + [anon_sym_i128] = ACTIONS(1873), + [anon_sym_isize] = ACTIONS(1873), + [anon_sym_usize] = ACTIONS(1873), + [anon_sym_f32] = ACTIONS(1873), + [anon_sym_f64] = ACTIONS(1873), + [anon_sym_bool] = ACTIONS(1873), + [anon_sym_str] = ACTIONS(1873), + [anon_sym_char] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1873), + [anon_sym_fn] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_impl] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_loop] = ACTIONS(1873), + [anon_sym_match] = ACTIONS(1873), + [anon_sym_mod] = ACTIONS(1873), + [anon_sym_pub] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_static] = ACTIONS(1873), + [anon_sym_struct] = ACTIONS(1873), + [anon_sym_trait] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_union] = ACTIONS(1873), + [anon_sym_unsafe] = ACTIONS(1873), + [anon_sym_use] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_POUND] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_move] = ACTIONS(1873), + [sym_integer_literal] = ACTIONS(1871), + [aux_sym_string_literal_token1] = ACTIONS(1871), + [sym_char_literal] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1873), + [anon_sym_false] = ACTIONS(1873), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1873), + [sym_super] = ACTIONS(1873), + [sym_crate] = ACTIONS(1873), + [sym_metavariable] = ACTIONS(1871), + [sym_raw_string_literal] = ACTIONS(1871), + [sym_float_literal] = ACTIONS(1871), + [sym_block_comment] = ACTIONS(3), + }, + [443] = { + [ts_builtin_sym_end] = ACTIONS(1875), + [sym_identifier] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1875), + [anon_sym_macro_rules_BANG] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_STAR] = ACTIONS(1875), + [anon_sym_u8] = ACTIONS(1877), + [anon_sym_i8] = ACTIONS(1877), + [anon_sym_u16] = ACTIONS(1877), + [anon_sym_i16] = ACTIONS(1877), + [anon_sym_u32] = ACTIONS(1877), + [anon_sym_i32] = ACTIONS(1877), + [anon_sym_u64] = ACTIONS(1877), + [anon_sym_i64] = ACTIONS(1877), + [anon_sym_u128] = ACTIONS(1877), + [anon_sym_i128] = ACTIONS(1877), + [anon_sym_isize] = ACTIONS(1877), + [anon_sym_usize] = ACTIONS(1877), + [anon_sym_f32] = ACTIONS(1877), + [anon_sym_f64] = ACTIONS(1877), + [anon_sym_bool] = ACTIONS(1877), + [anon_sym_str] = ACTIONS(1877), + [anon_sym_char] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_async] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_default] = ACTIONS(1877), + [anon_sym_enum] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_impl] = ACTIONS(1877), + [anon_sym_let] = ACTIONS(1877), + [anon_sym_loop] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_mod] = ACTIONS(1877), + [anon_sym_pub] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_static] = ACTIONS(1877), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_trait] = ACTIONS(1877), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_union] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_use] = ACTIONS(1877), + [anon_sym_while] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(1875), + [anon_sym_BANG] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1875), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(1875), + [anon_sym_move] = ACTIONS(1877), + [sym_integer_literal] = ACTIONS(1875), + [aux_sym_string_literal_token1] = ACTIONS(1875), + [sym_char_literal] = ACTIONS(1875), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1877), + [sym_super] = ACTIONS(1877), + [sym_crate] = ACTIONS(1877), + [sym_metavariable] = ACTIONS(1875), + [sym_raw_string_literal] = ACTIONS(1875), + [sym_float_literal] = ACTIONS(1875), + [sym_block_comment] = ACTIONS(3), + }, + [444] = { + [ts_builtin_sym_end] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym_macro_rules_BANG] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_u8] = ACTIONS(1881), + [anon_sym_i8] = ACTIONS(1881), + [anon_sym_u16] = ACTIONS(1881), + [anon_sym_i16] = ACTIONS(1881), + [anon_sym_u32] = ACTIONS(1881), + [anon_sym_i32] = ACTIONS(1881), + [anon_sym_u64] = ACTIONS(1881), + [anon_sym_i64] = ACTIONS(1881), + [anon_sym_u128] = ACTIONS(1881), + [anon_sym_i128] = ACTIONS(1881), + [anon_sym_isize] = ACTIONS(1881), + [anon_sym_usize] = ACTIONS(1881), + [anon_sym_f32] = ACTIONS(1881), + [anon_sym_f64] = ACTIONS(1881), + [anon_sym_bool] = ACTIONS(1881), + [anon_sym_str] = ACTIONS(1881), + [anon_sym_char] = ACTIONS(1881), + [anon_sym_SQUOTE] = ACTIONS(1881), + [anon_sym_async] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_default] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_impl] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1881), + [anon_sym_loop] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_mod] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_static] = ACTIONS(1881), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_trait] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_use] = ACTIONS(1881), + [anon_sym_while] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_BANG] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1881), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_move] = ACTIONS(1881), + [sym_integer_literal] = ACTIONS(1879), + [aux_sym_string_literal_token1] = ACTIONS(1879), + [sym_char_literal] = ACTIONS(1879), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1881), + [sym_super] = ACTIONS(1881), + [sym_crate] = ACTIONS(1881), + [sym_metavariable] = ACTIONS(1879), + [sym_raw_string_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_block_comment] = ACTIONS(3), + }, + [445] = { + [sym__token_pattern] = STATE(307), + [sym_token_tree_pattern] = STATE(307), + [sym_token_binding_pattern] = STATE(307), + [sym_token_repetition_pattern] = STATE(307), + [sym__literal] = STATE(307), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_pattern_repeat1] = STATE(307), + [sym_identifier] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_RBRACK] = ACTIONS(1885), + [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_u8] = ACTIONS(1883), + [anon_sym_i8] = ACTIONS(1883), + [anon_sym_u16] = ACTIONS(1883), + [anon_sym_i16] = ACTIONS(1883), + [anon_sym_u32] = ACTIONS(1883), + [anon_sym_i32] = ACTIONS(1883), + [anon_sym_u64] = ACTIONS(1883), + [anon_sym_i64] = ACTIONS(1883), + [anon_sym_u128] = ACTIONS(1883), + [anon_sym_i128] = ACTIONS(1883), + [anon_sym_isize] = ACTIONS(1883), + [anon_sym_usize] = ACTIONS(1883), + [anon_sym_f32] = ACTIONS(1883), + [anon_sym_f64] = ACTIONS(1883), + [anon_sym_bool] = ACTIONS(1883), + [anon_sym_str] = ACTIONS(1883), + [anon_sym_char] = ACTIONS(1883), + [aux_sym__non_special_token_token1] = ACTIONS(1883), + [anon_sym_SQUOTE] = ACTIONS(1883), + [anon_sym_as] = ACTIONS(1883), + [anon_sym_async] = ACTIONS(1883), + [anon_sym_await] = ACTIONS(1883), + [anon_sym_break] = ACTIONS(1883), + [anon_sym_const] = ACTIONS(1883), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(1883), + [anon_sym_enum] = ACTIONS(1883), + [anon_sym_fn] = ACTIONS(1883), + [anon_sym_for] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_impl] = ACTIONS(1883), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_loop] = ACTIONS(1883), + [anon_sym_match] = ACTIONS(1883), + [anon_sym_mod] = ACTIONS(1883), + [anon_sym_pub] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(1883), + [anon_sym_static] = ACTIONS(1883), + [anon_sym_struct] = ACTIONS(1883), + [anon_sym_trait] = ACTIONS(1883), + [anon_sym_type] = ACTIONS(1883), + [anon_sym_union] = ACTIONS(1883), + [anon_sym_unsafe] = ACTIONS(1883), + [anon_sym_use] = ACTIONS(1883), + [anon_sym_where] = ACTIONS(1883), + [anon_sym_while] = ACTIONS(1883), + [sym_mutable_specifier] = ACTIONS(1883), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(1883), + [sym_super] = ACTIONS(1883), + [sym_crate] = ACTIONS(1883), + [sym_metavariable] = ACTIONS(1116), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [446] = { + [ts_builtin_sym_end] = ACTIONS(1887), + [sym_identifier] = ACTIONS(1889), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_macro_rules_BANG] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1887), + [anon_sym_u8] = ACTIONS(1889), + [anon_sym_i8] = ACTIONS(1889), + [anon_sym_u16] = ACTIONS(1889), + [anon_sym_i16] = ACTIONS(1889), + [anon_sym_u32] = ACTIONS(1889), + [anon_sym_i32] = ACTIONS(1889), + [anon_sym_u64] = ACTIONS(1889), + [anon_sym_i64] = ACTIONS(1889), + [anon_sym_u128] = ACTIONS(1889), + [anon_sym_i128] = ACTIONS(1889), + [anon_sym_isize] = ACTIONS(1889), + [anon_sym_usize] = ACTIONS(1889), + [anon_sym_f32] = ACTIONS(1889), + [anon_sym_f64] = ACTIONS(1889), + [anon_sym_bool] = ACTIONS(1889), + [anon_sym_str] = ACTIONS(1889), + [anon_sym_char] = ACTIONS(1889), + [anon_sym_SQUOTE] = ACTIONS(1889), + [anon_sym_async] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_default] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_impl] = ACTIONS(1889), + [anon_sym_let] = ACTIONS(1889), + [anon_sym_loop] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_mod] = ACTIONS(1889), + [anon_sym_pub] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_static] = ACTIONS(1889), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_trait] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_union] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_use] = ACTIONS(1889), + [anon_sym_while] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_extern] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_COLON_COLON] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1887), + [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_move] = ACTIONS(1889), + [sym_integer_literal] = ACTIONS(1887), + [aux_sym_string_literal_token1] = ACTIONS(1887), + [sym_char_literal] = ACTIONS(1887), + [anon_sym_true] = ACTIONS(1889), + [anon_sym_false] = ACTIONS(1889), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1889), + [sym_super] = ACTIONS(1889), + [sym_crate] = ACTIONS(1889), + [sym_metavariable] = ACTIONS(1887), + [sym_raw_string_literal] = ACTIONS(1887), + [sym_float_literal] = ACTIONS(1887), + [sym_block_comment] = ACTIONS(3), + }, + [447] = { + [sym__token_pattern] = STATE(305), + [sym_token_tree_pattern] = STATE(305), + [sym_token_binding_pattern] = STATE(305), + [sym_token_repetition_pattern] = STATE(305), + [sym__literal] = STATE(305), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_pattern_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_u8] = ACTIONS(1891), + [anon_sym_i8] = ACTIONS(1891), + [anon_sym_u16] = ACTIONS(1891), + [anon_sym_i16] = ACTIONS(1891), + [anon_sym_u32] = ACTIONS(1891), + [anon_sym_i32] = ACTIONS(1891), + [anon_sym_u64] = ACTIONS(1891), + [anon_sym_i64] = ACTIONS(1891), + [anon_sym_u128] = ACTIONS(1891), + [anon_sym_i128] = ACTIONS(1891), + [anon_sym_isize] = ACTIONS(1891), + [anon_sym_usize] = ACTIONS(1891), + [anon_sym_f32] = ACTIONS(1891), + [anon_sym_f64] = ACTIONS(1891), + [anon_sym_bool] = ACTIONS(1891), + [anon_sym_str] = ACTIONS(1891), + [anon_sym_char] = ACTIONS(1891), + [aux_sym__non_special_token_token1] = ACTIONS(1891), + [anon_sym_SQUOTE] = ACTIONS(1891), + [anon_sym_as] = ACTIONS(1891), + [anon_sym_async] = ACTIONS(1891), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_break] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1891), + [anon_sym_continue] = ACTIONS(1891), + [anon_sym_default] = ACTIONS(1891), + [anon_sym_enum] = ACTIONS(1891), + [anon_sym_fn] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(1891), + [anon_sym_impl] = ACTIONS(1891), + [anon_sym_let] = ACTIONS(1891), + [anon_sym_loop] = ACTIONS(1891), + [anon_sym_match] = ACTIONS(1891), + [anon_sym_mod] = ACTIONS(1891), + [anon_sym_pub] = ACTIONS(1891), + [anon_sym_return] = ACTIONS(1891), + [anon_sym_static] = ACTIONS(1891), + [anon_sym_struct] = ACTIONS(1891), + [anon_sym_trait] = ACTIONS(1891), + [anon_sym_type] = ACTIONS(1891), + [anon_sym_union] = ACTIONS(1891), + [anon_sym_unsafe] = ACTIONS(1891), + [anon_sym_use] = ACTIONS(1891), + [anon_sym_where] = ACTIONS(1891), + [anon_sym_while] = ACTIONS(1891), + [sym_mutable_specifier] = ACTIONS(1891), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(1891), + [sym_super] = ACTIONS(1891), + [sym_crate] = ACTIONS(1891), + [sym_metavariable] = ACTIONS(1116), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [448] = { + [sym__token_pattern] = STATE(287), + [sym_token_tree_pattern] = STATE(287), + [sym_token_binding_pattern] = STATE(287), + [sym_token_repetition_pattern] = STATE(287), + [sym__literal] = STATE(287), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_pattern_repeat1] = STATE(287), + [sym_identifier] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_RPAREN] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_u8] = ACTIONS(1893), + [anon_sym_i8] = ACTIONS(1893), + [anon_sym_u16] = ACTIONS(1893), + [anon_sym_i16] = ACTIONS(1893), + [anon_sym_u32] = ACTIONS(1893), + [anon_sym_i32] = ACTIONS(1893), + [anon_sym_u64] = ACTIONS(1893), + [anon_sym_i64] = ACTIONS(1893), + [anon_sym_u128] = ACTIONS(1893), + [anon_sym_i128] = ACTIONS(1893), + [anon_sym_isize] = ACTIONS(1893), + [anon_sym_usize] = ACTIONS(1893), + [anon_sym_f32] = ACTIONS(1893), + [anon_sym_f64] = ACTIONS(1893), + [anon_sym_bool] = ACTIONS(1893), + [anon_sym_str] = ACTIONS(1893), + [anon_sym_char] = ACTIONS(1893), + [aux_sym__non_special_token_token1] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_as] = ACTIONS(1893), + [anon_sym_async] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_default] = ACTIONS(1893), + [anon_sym_enum] = ACTIONS(1893), + [anon_sym_fn] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_impl] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_loop] = ACTIONS(1893), + [anon_sym_match] = ACTIONS(1893), + [anon_sym_mod] = ACTIONS(1893), + [anon_sym_pub] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_static] = ACTIONS(1893), + [anon_sym_struct] = ACTIONS(1893), + [anon_sym_trait] = ACTIONS(1893), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_union] = ACTIONS(1893), + [anon_sym_unsafe] = ACTIONS(1893), + [anon_sym_use] = ACTIONS(1893), + [anon_sym_where] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [sym_mutable_specifier] = ACTIONS(1893), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(1893), + [sym_super] = ACTIONS(1893), + [sym_crate] = ACTIONS(1893), + [sym_metavariable] = ACTIONS(1116), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [449] = { + [ts_builtin_sym_end] = ACTIONS(1895), + [sym_identifier] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_macro_rules_BANG] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_u8] = ACTIONS(1897), + [anon_sym_i8] = ACTIONS(1897), + [anon_sym_u16] = ACTIONS(1897), + [anon_sym_i16] = ACTIONS(1897), + [anon_sym_u32] = ACTIONS(1897), + [anon_sym_i32] = ACTIONS(1897), + [anon_sym_u64] = ACTIONS(1897), + [anon_sym_i64] = ACTIONS(1897), + [anon_sym_u128] = ACTIONS(1897), + [anon_sym_i128] = ACTIONS(1897), + [anon_sym_isize] = ACTIONS(1897), + [anon_sym_usize] = ACTIONS(1897), + [anon_sym_f32] = ACTIONS(1897), + [anon_sym_f64] = ACTIONS(1897), + [anon_sym_bool] = ACTIONS(1897), + [anon_sym_str] = ACTIONS(1897), + [anon_sym_char] = ACTIONS(1897), + [anon_sym_SQUOTE] = ACTIONS(1897), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_default] = ACTIONS(1897), + [anon_sym_enum] = ACTIONS(1897), + [anon_sym_fn] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_impl] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_loop] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1897), + [anon_sym_mod] = ACTIONS(1897), + [anon_sym_pub] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_static] = ACTIONS(1897), + [anon_sym_struct] = ACTIONS(1897), + [anon_sym_trait] = ACTIONS(1897), + [anon_sym_type] = ACTIONS(1897), + [anon_sym_union] = ACTIONS(1897), + [anon_sym_unsafe] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(1895), + [anon_sym_BANG] = ACTIONS(1895), + [anon_sym_extern] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1895), + [anon_sym_COLON_COLON] = ACTIONS(1895), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1895), + [anon_sym_DASH] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_move] = ACTIONS(1897), + [sym_integer_literal] = ACTIONS(1895), + [aux_sym_string_literal_token1] = ACTIONS(1895), + [sym_char_literal] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1897), + [sym_super] = ACTIONS(1897), + [sym_crate] = ACTIONS(1897), + [sym_metavariable] = ACTIONS(1895), + [sym_raw_string_literal] = ACTIONS(1895), + [sym_float_literal] = ACTIONS(1895), + [sym_block_comment] = ACTIONS(3), + }, + [450] = { + [ts_builtin_sym_end] = ACTIONS(1899), + [sym_identifier] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_macro_rules_BANG] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_u8] = ACTIONS(1901), + [anon_sym_i8] = ACTIONS(1901), + [anon_sym_u16] = ACTIONS(1901), + [anon_sym_i16] = ACTIONS(1901), + [anon_sym_u32] = ACTIONS(1901), + [anon_sym_i32] = ACTIONS(1901), + [anon_sym_u64] = ACTIONS(1901), + [anon_sym_i64] = ACTIONS(1901), + [anon_sym_u128] = ACTIONS(1901), + [anon_sym_i128] = ACTIONS(1901), + [anon_sym_isize] = ACTIONS(1901), + [anon_sym_usize] = ACTIONS(1901), + [anon_sym_f32] = ACTIONS(1901), + [anon_sym_f64] = ACTIONS(1901), + [anon_sym_bool] = ACTIONS(1901), + [anon_sym_str] = ACTIONS(1901), + [anon_sym_char] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1901), + [anon_sym_async] = ACTIONS(1901), + [anon_sym_break] = ACTIONS(1901), + [anon_sym_const] = ACTIONS(1901), + [anon_sym_continue] = ACTIONS(1901), + [anon_sym_default] = ACTIONS(1901), + [anon_sym_enum] = ACTIONS(1901), + [anon_sym_fn] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1901), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_impl] = ACTIONS(1901), + [anon_sym_let] = ACTIONS(1901), + [anon_sym_loop] = ACTIONS(1901), + [anon_sym_match] = ACTIONS(1901), + [anon_sym_mod] = ACTIONS(1901), + [anon_sym_pub] = ACTIONS(1901), + [anon_sym_return] = ACTIONS(1901), + [anon_sym_static] = ACTIONS(1901), + [anon_sym_struct] = ACTIONS(1901), + [anon_sym_trait] = ACTIONS(1901), + [anon_sym_type] = ACTIONS(1901), + [anon_sym_union] = ACTIONS(1901), + [anon_sym_unsafe] = ACTIONS(1901), + [anon_sym_use] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1901), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_COLON_COLON] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_move] = ACTIONS(1901), + [sym_integer_literal] = ACTIONS(1899), + [aux_sym_string_literal_token1] = ACTIONS(1899), + [sym_char_literal] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1901), + [anon_sym_false] = ACTIONS(1901), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1901), + [sym_super] = ACTIONS(1901), + [sym_crate] = ACTIONS(1901), + [sym_metavariable] = ACTIONS(1899), + [sym_raw_string_literal] = ACTIONS(1899), + [sym_float_literal] = ACTIONS(1899), + [sym_block_comment] = ACTIONS(3), + }, + [451] = { + [ts_builtin_sym_end] = ACTIONS(1903), + [sym_identifier] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym_macro_rules_BANG] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_u8] = ACTIONS(1905), + [anon_sym_i8] = ACTIONS(1905), + [anon_sym_u16] = ACTIONS(1905), + [anon_sym_i16] = ACTIONS(1905), + [anon_sym_u32] = ACTIONS(1905), + [anon_sym_i32] = ACTIONS(1905), + [anon_sym_u64] = ACTIONS(1905), + [anon_sym_i64] = ACTIONS(1905), + [anon_sym_u128] = ACTIONS(1905), + [anon_sym_i128] = ACTIONS(1905), + [anon_sym_isize] = ACTIONS(1905), + [anon_sym_usize] = ACTIONS(1905), + [anon_sym_f32] = ACTIONS(1905), + [anon_sym_f64] = ACTIONS(1905), + [anon_sym_bool] = ACTIONS(1905), + [anon_sym_str] = ACTIONS(1905), + [anon_sym_char] = ACTIONS(1905), + [anon_sym_SQUOTE] = ACTIONS(1905), + [anon_sym_async] = ACTIONS(1905), + [anon_sym_break] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1905), + [anon_sym_continue] = ACTIONS(1905), + [anon_sym_default] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1905), + [anon_sym_fn] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1905), + [anon_sym_if] = ACTIONS(1905), + [anon_sym_impl] = ACTIONS(1905), + [anon_sym_let] = ACTIONS(1905), + [anon_sym_loop] = ACTIONS(1905), + [anon_sym_match] = ACTIONS(1905), + [anon_sym_mod] = ACTIONS(1905), + [anon_sym_pub] = ACTIONS(1905), + [anon_sym_return] = ACTIONS(1905), + [anon_sym_static] = ACTIONS(1905), + [anon_sym_struct] = ACTIONS(1905), + [anon_sym_trait] = ACTIONS(1905), + [anon_sym_type] = ACTIONS(1905), + [anon_sym_union] = ACTIONS(1905), + [anon_sym_unsafe] = ACTIONS(1905), + [anon_sym_use] = ACTIONS(1905), + [anon_sym_while] = ACTIONS(1905), + [anon_sym_POUND] = ACTIONS(1903), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_move] = ACTIONS(1905), + [sym_integer_literal] = ACTIONS(1903), + [aux_sym_string_literal_token1] = ACTIONS(1903), + [sym_char_literal] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1905), + [anon_sym_false] = ACTIONS(1905), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1905), + [sym_super] = ACTIONS(1905), + [sym_crate] = ACTIONS(1905), + [sym_metavariable] = ACTIONS(1903), + [sym_raw_string_literal] = ACTIONS(1903), + [sym_float_literal] = ACTIONS(1903), + [sym_block_comment] = ACTIONS(3), + }, + [452] = { + [ts_builtin_sym_end] = ACTIONS(1907), + [sym_identifier] = ACTIONS(1909), + [anon_sym_SEMI] = ACTIONS(1907), + [anon_sym_macro_rules_BANG] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1907), + [anon_sym_u8] = ACTIONS(1909), + [anon_sym_i8] = ACTIONS(1909), + [anon_sym_u16] = ACTIONS(1909), + [anon_sym_i16] = ACTIONS(1909), + [anon_sym_u32] = ACTIONS(1909), + [anon_sym_i32] = ACTIONS(1909), + [anon_sym_u64] = ACTIONS(1909), + [anon_sym_i64] = ACTIONS(1909), + [anon_sym_u128] = ACTIONS(1909), + [anon_sym_i128] = ACTIONS(1909), + [anon_sym_isize] = ACTIONS(1909), + [anon_sym_usize] = ACTIONS(1909), + [anon_sym_f32] = ACTIONS(1909), + [anon_sym_f64] = ACTIONS(1909), + [anon_sym_bool] = ACTIONS(1909), + [anon_sym_str] = ACTIONS(1909), + [anon_sym_char] = ACTIONS(1909), + [anon_sym_SQUOTE] = ACTIONS(1909), + [anon_sym_async] = ACTIONS(1909), + [anon_sym_break] = ACTIONS(1909), + [anon_sym_const] = ACTIONS(1909), + [anon_sym_continue] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(1909), + [anon_sym_enum] = ACTIONS(1909), + [anon_sym_fn] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1909), + [anon_sym_if] = ACTIONS(1909), + [anon_sym_impl] = ACTIONS(1909), + [anon_sym_let] = ACTIONS(1909), + [anon_sym_loop] = ACTIONS(1909), + [anon_sym_match] = ACTIONS(1909), + [anon_sym_mod] = ACTIONS(1909), + [anon_sym_pub] = ACTIONS(1909), + [anon_sym_return] = ACTIONS(1909), + [anon_sym_static] = ACTIONS(1909), + [anon_sym_struct] = ACTIONS(1909), + [anon_sym_trait] = ACTIONS(1909), + [anon_sym_type] = ACTIONS(1909), + [anon_sym_union] = ACTIONS(1909), + [anon_sym_unsafe] = ACTIONS(1909), + [anon_sym_use] = ACTIONS(1909), + [anon_sym_while] = ACTIONS(1909), + [anon_sym_POUND] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1907), + [anon_sym_COLON_COLON] = ACTIONS(1907), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_DOT_DOT] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_PIPE] = ACTIONS(1907), + [anon_sym_move] = ACTIONS(1909), + [sym_integer_literal] = ACTIONS(1907), + [aux_sym_string_literal_token1] = ACTIONS(1907), + [sym_char_literal] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1909), + [anon_sym_false] = ACTIONS(1909), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1909), + [sym_super] = ACTIONS(1909), + [sym_crate] = ACTIONS(1909), + [sym_metavariable] = ACTIONS(1907), + [sym_raw_string_literal] = ACTIONS(1907), + [sym_float_literal] = ACTIONS(1907), + [sym_block_comment] = ACTIONS(3), + }, + [453] = { + [sym_attribute_item] = STATE(494), + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_macro_invocation] = STATE(2288), + [sym_scoped_identifier] = STATE(1493), + [sym_scoped_type_identifier] = STATE(1824), + [sym_match_arm] = STATE(461), + [sym_last_match_arm] = STATE(2413), + [sym_match_pattern] = STATE(2285), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1839), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_enum_variant_list_repeat1] = STATE(494), + [aux_sym_match_block_repeat1] = STATE(461), + [sym_identifier] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [454] = { + [ts_builtin_sym_end] = ACTIONS(1911), + [sym_identifier] = ACTIONS(1913), + [anon_sym_SEMI] = ACTIONS(1911), + [anon_sym_macro_rules_BANG] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_u8] = ACTIONS(1913), + [anon_sym_i8] = ACTIONS(1913), + [anon_sym_u16] = ACTIONS(1913), + [anon_sym_i16] = ACTIONS(1913), + [anon_sym_u32] = ACTIONS(1913), + [anon_sym_i32] = ACTIONS(1913), + [anon_sym_u64] = ACTIONS(1913), + [anon_sym_i64] = ACTIONS(1913), + [anon_sym_u128] = ACTIONS(1913), + [anon_sym_i128] = ACTIONS(1913), + [anon_sym_isize] = ACTIONS(1913), + [anon_sym_usize] = ACTIONS(1913), + [anon_sym_f32] = ACTIONS(1913), + [anon_sym_f64] = ACTIONS(1913), + [anon_sym_bool] = ACTIONS(1913), + [anon_sym_str] = ACTIONS(1913), + [anon_sym_char] = ACTIONS(1913), + [anon_sym_SQUOTE] = ACTIONS(1913), + [anon_sym_async] = ACTIONS(1913), + [anon_sym_break] = ACTIONS(1913), + [anon_sym_const] = ACTIONS(1913), + [anon_sym_continue] = ACTIONS(1913), + [anon_sym_default] = ACTIONS(1913), + [anon_sym_enum] = ACTIONS(1913), + [anon_sym_fn] = ACTIONS(1913), + [anon_sym_for] = ACTIONS(1913), + [anon_sym_if] = ACTIONS(1913), + [anon_sym_impl] = ACTIONS(1913), + [anon_sym_let] = ACTIONS(1913), + [anon_sym_loop] = ACTIONS(1913), + [anon_sym_match] = ACTIONS(1913), + [anon_sym_mod] = ACTIONS(1913), + [anon_sym_pub] = ACTIONS(1913), + [anon_sym_return] = ACTIONS(1913), + [anon_sym_static] = ACTIONS(1913), + [anon_sym_struct] = ACTIONS(1913), + [anon_sym_trait] = ACTIONS(1913), + [anon_sym_type] = ACTIONS(1913), + [anon_sym_union] = ACTIONS(1913), + [anon_sym_unsafe] = ACTIONS(1913), + [anon_sym_use] = ACTIONS(1913), + [anon_sym_while] = ACTIONS(1913), + [anon_sym_POUND] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_extern] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_COLON_COLON] = ACTIONS(1911), + [anon_sym_AMP] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_move] = ACTIONS(1913), + [sym_integer_literal] = ACTIONS(1911), + [aux_sym_string_literal_token1] = ACTIONS(1911), + [sym_char_literal] = ACTIONS(1911), + [anon_sym_true] = ACTIONS(1913), + [anon_sym_false] = ACTIONS(1913), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1913), + [sym_super] = ACTIONS(1913), + [sym_crate] = ACTIONS(1913), + [sym_metavariable] = ACTIONS(1911), + [sym_raw_string_literal] = ACTIONS(1911), + [sym_float_literal] = ACTIONS(1911), + [sym_block_comment] = ACTIONS(3), + }, + [455] = { + [ts_builtin_sym_end] = ACTIONS(1915), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1915), + [anon_sym_macro_rules_BANG] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_RBRACE] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1915), + [anon_sym_u8] = ACTIONS(1917), + [anon_sym_i8] = ACTIONS(1917), + [anon_sym_u16] = ACTIONS(1917), + [anon_sym_i16] = ACTIONS(1917), + [anon_sym_u32] = ACTIONS(1917), + [anon_sym_i32] = ACTIONS(1917), + [anon_sym_u64] = ACTIONS(1917), + [anon_sym_i64] = ACTIONS(1917), + [anon_sym_u128] = ACTIONS(1917), + [anon_sym_i128] = ACTIONS(1917), + [anon_sym_isize] = ACTIONS(1917), + [anon_sym_usize] = ACTIONS(1917), + [anon_sym_f32] = ACTIONS(1917), + [anon_sym_f64] = ACTIONS(1917), + [anon_sym_bool] = ACTIONS(1917), + [anon_sym_str] = ACTIONS(1917), + [anon_sym_char] = ACTIONS(1917), + [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_async] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1917), + [anon_sym_continue] = ACTIONS(1917), + [anon_sym_default] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_fn] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_impl] = ACTIONS(1917), + [anon_sym_let] = ACTIONS(1917), + [anon_sym_loop] = ACTIONS(1917), + [anon_sym_match] = ACTIONS(1917), + [anon_sym_mod] = ACTIONS(1917), + [anon_sym_pub] = ACTIONS(1917), + [anon_sym_return] = ACTIONS(1917), + [anon_sym_static] = ACTIONS(1917), + [anon_sym_struct] = ACTIONS(1917), + [anon_sym_trait] = ACTIONS(1917), + [anon_sym_type] = ACTIONS(1917), + [anon_sym_union] = ACTIONS(1917), + [anon_sym_unsafe] = ACTIONS(1917), + [anon_sym_use] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1917), + [anon_sym_POUND] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1915), + [anon_sym_extern] = ACTIONS(1917), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_COLON_COLON] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_move] = ACTIONS(1917), + [sym_integer_literal] = ACTIONS(1915), + [aux_sym_string_literal_token1] = ACTIONS(1915), + [sym_char_literal] = ACTIONS(1915), + [anon_sym_true] = ACTIONS(1917), + [anon_sym_false] = ACTIONS(1917), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1917), + [sym_super] = ACTIONS(1917), + [sym_crate] = ACTIONS(1917), + [sym_metavariable] = ACTIONS(1915), + [sym_raw_string_literal] = ACTIONS(1915), + [sym_float_literal] = ACTIONS(1915), + [sym_block_comment] = ACTIONS(3), + }, + [456] = { + [ts_builtin_sym_end] = ACTIONS(1919), + [sym_identifier] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_macro_rules_BANG] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_LBRACK] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1919), + [anon_sym_u8] = ACTIONS(1921), + [anon_sym_i8] = ACTIONS(1921), + [anon_sym_u16] = ACTIONS(1921), + [anon_sym_i16] = ACTIONS(1921), + [anon_sym_u32] = ACTIONS(1921), + [anon_sym_i32] = ACTIONS(1921), + [anon_sym_u64] = ACTIONS(1921), + [anon_sym_i64] = ACTIONS(1921), + [anon_sym_u128] = ACTIONS(1921), + [anon_sym_i128] = ACTIONS(1921), + [anon_sym_isize] = ACTIONS(1921), + [anon_sym_usize] = ACTIONS(1921), + [anon_sym_f32] = ACTIONS(1921), + [anon_sym_f64] = ACTIONS(1921), + [anon_sym_bool] = ACTIONS(1921), + [anon_sym_str] = ACTIONS(1921), + [anon_sym_char] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1921), + [anon_sym_async] = ACTIONS(1921), + [anon_sym_break] = ACTIONS(1921), + [anon_sym_const] = ACTIONS(1921), + [anon_sym_continue] = ACTIONS(1921), + [anon_sym_default] = ACTIONS(1921), + [anon_sym_enum] = ACTIONS(1921), + [anon_sym_fn] = ACTIONS(1921), + [anon_sym_for] = ACTIONS(1921), + [anon_sym_if] = ACTIONS(1921), + [anon_sym_impl] = ACTIONS(1921), + [anon_sym_let] = ACTIONS(1921), + [anon_sym_loop] = ACTIONS(1921), + [anon_sym_match] = ACTIONS(1921), + [anon_sym_mod] = ACTIONS(1921), + [anon_sym_pub] = ACTIONS(1921), + [anon_sym_return] = ACTIONS(1921), + [anon_sym_static] = ACTIONS(1921), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_trait] = ACTIONS(1921), + [anon_sym_type] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1921), + [anon_sym_unsafe] = ACTIONS(1921), + [anon_sym_use] = ACTIONS(1921), + [anon_sym_while] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(1919), + [anon_sym_BANG] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(1919), + [anon_sym_COLON_COLON] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1919), + [anon_sym_DOT_DOT] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(1919), + [anon_sym_move] = ACTIONS(1921), + [sym_integer_literal] = ACTIONS(1919), + [aux_sym_string_literal_token1] = ACTIONS(1919), + [sym_char_literal] = ACTIONS(1919), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1921), + [sym_super] = ACTIONS(1921), + [sym_crate] = ACTIONS(1921), + [sym_metavariable] = ACTIONS(1919), + [sym_raw_string_literal] = ACTIONS(1919), + [sym_float_literal] = ACTIONS(1919), + [sym_block_comment] = ACTIONS(3), + }, + [457] = { + [ts_builtin_sym_end] = ACTIONS(1923), + [sym_identifier] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1923), + [anon_sym_macro_rules_BANG] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_u8] = ACTIONS(1925), + [anon_sym_i8] = ACTIONS(1925), + [anon_sym_u16] = ACTIONS(1925), + [anon_sym_i16] = ACTIONS(1925), + [anon_sym_u32] = ACTIONS(1925), + [anon_sym_i32] = ACTIONS(1925), + [anon_sym_u64] = ACTIONS(1925), + [anon_sym_i64] = ACTIONS(1925), + [anon_sym_u128] = ACTIONS(1925), + [anon_sym_i128] = ACTIONS(1925), + [anon_sym_isize] = ACTIONS(1925), + [anon_sym_usize] = ACTIONS(1925), + [anon_sym_f32] = ACTIONS(1925), + [anon_sym_f64] = ACTIONS(1925), + [anon_sym_bool] = ACTIONS(1925), + [anon_sym_str] = ACTIONS(1925), + [anon_sym_char] = ACTIONS(1925), + [anon_sym_SQUOTE] = ACTIONS(1925), + [anon_sym_async] = ACTIONS(1925), + [anon_sym_break] = ACTIONS(1925), + [anon_sym_const] = ACTIONS(1925), + [anon_sym_continue] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(1925), + [anon_sym_enum] = ACTIONS(1925), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(1925), + [anon_sym_if] = ACTIONS(1925), + [anon_sym_impl] = ACTIONS(1925), + [anon_sym_let] = ACTIONS(1925), + [anon_sym_loop] = ACTIONS(1925), + [anon_sym_match] = ACTIONS(1925), + [anon_sym_mod] = ACTIONS(1925), + [anon_sym_pub] = ACTIONS(1925), + [anon_sym_return] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1925), + [anon_sym_struct] = ACTIONS(1925), + [anon_sym_trait] = ACTIONS(1925), + [anon_sym_type] = ACTIONS(1925), + [anon_sym_union] = ACTIONS(1925), + [anon_sym_unsafe] = ACTIONS(1925), + [anon_sym_use] = ACTIONS(1925), + [anon_sym_while] = ACTIONS(1925), + [anon_sym_POUND] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_extern] = ACTIONS(1925), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_COLON_COLON] = ACTIONS(1923), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_move] = ACTIONS(1925), + [sym_integer_literal] = ACTIONS(1923), + [aux_sym_string_literal_token1] = ACTIONS(1923), + [sym_char_literal] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1925), + [anon_sym_false] = ACTIONS(1925), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1925), + [sym_super] = ACTIONS(1925), + [sym_crate] = ACTIONS(1925), + [sym_metavariable] = ACTIONS(1923), + [sym_raw_string_literal] = ACTIONS(1923), + [sym_float_literal] = ACTIONS(1923), + [sym_block_comment] = ACTIONS(3), + }, + [458] = { + [ts_builtin_sym_end] = ACTIONS(1927), + [sym_identifier] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1927), + [anon_sym_macro_rules_BANG] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1927), + [anon_sym_u8] = ACTIONS(1929), + [anon_sym_i8] = ACTIONS(1929), + [anon_sym_u16] = ACTIONS(1929), + [anon_sym_i16] = ACTIONS(1929), + [anon_sym_u32] = ACTIONS(1929), + [anon_sym_i32] = ACTIONS(1929), + [anon_sym_u64] = ACTIONS(1929), + [anon_sym_i64] = ACTIONS(1929), + [anon_sym_u128] = ACTIONS(1929), + [anon_sym_i128] = ACTIONS(1929), + [anon_sym_isize] = ACTIONS(1929), + [anon_sym_usize] = ACTIONS(1929), + [anon_sym_f32] = ACTIONS(1929), + [anon_sym_f64] = ACTIONS(1929), + [anon_sym_bool] = ACTIONS(1929), + [anon_sym_str] = ACTIONS(1929), + [anon_sym_char] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1929), + [anon_sym_async] = ACTIONS(1929), + [anon_sym_break] = ACTIONS(1929), + [anon_sym_const] = ACTIONS(1929), + [anon_sym_continue] = ACTIONS(1929), + [anon_sym_default] = ACTIONS(1929), + [anon_sym_enum] = ACTIONS(1929), + [anon_sym_fn] = ACTIONS(1929), + [anon_sym_for] = ACTIONS(1929), + [anon_sym_if] = ACTIONS(1929), + [anon_sym_impl] = ACTIONS(1929), + [anon_sym_let] = ACTIONS(1929), + [anon_sym_loop] = ACTIONS(1929), + [anon_sym_match] = ACTIONS(1929), + [anon_sym_mod] = ACTIONS(1929), + [anon_sym_pub] = ACTIONS(1929), + [anon_sym_return] = ACTIONS(1929), + [anon_sym_static] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1929), + [anon_sym_trait] = ACTIONS(1929), + [anon_sym_type] = ACTIONS(1929), + [anon_sym_union] = ACTIONS(1929), + [anon_sym_unsafe] = ACTIONS(1929), + [anon_sym_use] = ACTIONS(1929), + [anon_sym_while] = ACTIONS(1929), + [anon_sym_POUND] = ACTIONS(1927), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_extern] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1927), + [anon_sym_COLON_COLON] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1929), + [sym_integer_literal] = ACTIONS(1927), + [aux_sym_string_literal_token1] = ACTIONS(1927), + [sym_char_literal] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1929), + [anon_sym_false] = ACTIONS(1929), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1929), + [sym_super] = ACTIONS(1929), + [sym_crate] = ACTIONS(1929), + [sym_metavariable] = ACTIONS(1927), + [sym_raw_string_literal] = ACTIONS(1927), + [sym_float_literal] = ACTIONS(1927), + [sym_block_comment] = ACTIONS(3), + }, + [459] = { + [ts_builtin_sym_end] = ACTIONS(1931), + [sym_identifier] = ACTIONS(1933), + [anon_sym_SEMI] = ACTIONS(1931), + [anon_sym_macro_rules_BANG] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(1931), + [anon_sym_u8] = ACTIONS(1933), + [anon_sym_i8] = ACTIONS(1933), + [anon_sym_u16] = ACTIONS(1933), + [anon_sym_i16] = ACTIONS(1933), + [anon_sym_u32] = ACTIONS(1933), + [anon_sym_i32] = ACTIONS(1933), + [anon_sym_u64] = ACTIONS(1933), + [anon_sym_i64] = ACTIONS(1933), + [anon_sym_u128] = ACTIONS(1933), + [anon_sym_i128] = ACTIONS(1933), + [anon_sym_isize] = ACTIONS(1933), + [anon_sym_usize] = ACTIONS(1933), + [anon_sym_f32] = ACTIONS(1933), + [anon_sym_f64] = ACTIONS(1933), + [anon_sym_bool] = ACTIONS(1933), + [anon_sym_str] = ACTIONS(1933), + [anon_sym_char] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_async] = ACTIONS(1933), + [anon_sym_break] = ACTIONS(1933), + [anon_sym_const] = ACTIONS(1933), + [anon_sym_continue] = ACTIONS(1933), + [anon_sym_default] = ACTIONS(1933), + [anon_sym_enum] = ACTIONS(1933), + [anon_sym_fn] = ACTIONS(1933), + [anon_sym_for] = ACTIONS(1933), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_impl] = ACTIONS(1933), + [anon_sym_let] = ACTIONS(1933), + [anon_sym_loop] = ACTIONS(1933), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_mod] = ACTIONS(1933), + [anon_sym_pub] = ACTIONS(1933), + [anon_sym_return] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1933), + [anon_sym_struct] = ACTIONS(1933), + [anon_sym_trait] = ACTIONS(1933), + [anon_sym_type] = ACTIONS(1933), + [anon_sym_union] = ACTIONS(1933), + [anon_sym_unsafe] = ACTIONS(1933), + [anon_sym_use] = ACTIONS(1933), + [anon_sym_while] = ACTIONS(1933), + [anon_sym_POUND] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1933), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_COLON_COLON] = ACTIONS(1931), + [anon_sym_AMP] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_PIPE] = ACTIONS(1931), + [anon_sym_move] = ACTIONS(1933), + [sym_integer_literal] = ACTIONS(1931), + [aux_sym_string_literal_token1] = ACTIONS(1931), + [sym_char_literal] = ACTIONS(1931), + [anon_sym_true] = ACTIONS(1933), + [anon_sym_false] = ACTIONS(1933), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1933), + [sym_super] = ACTIONS(1933), + [sym_crate] = ACTIONS(1933), + [sym_metavariable] = ACTIONS(1931), + [sym_raw_string_literal] = ACTIONS(1931), + [sym_float_literal] = ACTIONS(1931), + [sym_block_comment] = ACTIONS(3), + }, + [460] = { + [ts_builtin_sym_end] = ACTIONS(1935), + [sym_identifier] = ACTIONS(1937), + [anon_sym_SEMI] = ACTIONS(1935), + [anon_sym_macro_rules_BANG] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1935), + [anon_sym_RBRACE] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1935), + [anon_sym_STAR] = ACTIONS(1935), + [anon_sym_u8] = ACTIONS(1937), + [anon_sym_i8] = ACTIONS(1937), + [anon_sym_u16] = ACTIONS(1937), + [anon_sym_i16] = ACTIONS(1937), + [anon_sym_u32] = ACTIONS(1937), + [anon_sym_i32] = ACTIONS(1937), + [anon_sym_u64] = ACTIONS(1937), + [anon_sym_i64] = ACTIONS(1937), + [anon_sym_u128] = ACTIONS(1937), + [anon_sym_i128] = ACTIONS(1937), + [anon_sym_isize] = ACTIONS(1937), + [anon_sym_usize] = ACTIONS(1937), + [anon_sym_f32] = ACTIONS(1937), + [anon_sym_f64] = ACTIONS(1937), + [anon_sym_bool] = ACTIONS(1937), + [anon_sym_str] = ACTIONS(1937), + [anon_sym_char] = ACTIONS(1937), + [anon_sym_SQUOTE] = ACTIONS(1937), + [anon_sym_async] = ACTIONS(1937), + [anon_sym_break] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(1937), + [anon_sym_continue] = ACTIONS(1937), + [anon_sym_default] = ACTIONS(1937), + [anon_sym_enum] = ACTIONS(1937), + [anon_sym_fn] = ACTIONS(1937), + [anon_sym_for] = ACTIONS(1937), + [anon_sym_if] = ACTIONS(1937), + [anon_sym_impl] = ACTIONS(1937), + [anon_sym_let] = ACTIONS(1937), + [anon_sym_loop] = ACTIONS(1937), + [anon_sym_match] = ACTIONS(1937), + [anon_sym_mod] = ACTIONS(1937), + [anon_sym_pub] = ACTIONS(1937), + [anon_sym_return] = ACTIONS(1937), + [anon_sym_static] = ACTIONS(1937), + [anon_sym_struct] = ACTIONS(1937), + [anon_sym_trait] = ACTIONS(1937), + [anon_sym_type] = ACTIONS(1937), + [anon_sym_union] = ACTIONS(1937), + [anon_sym_unsafe] = ACTIONS(1937), + [anon_sym_use] = ACTIONS(1937), + [anon_sym_while] = ACTIONS(1937), + [anon_sym_POUND] = ACTIONS(1935), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_extern] = ACTIONS(1937), + [anon_sym_LT] = ACTIONS(1935), + [anon_sym_COLON_COLON] = ACTIONS(1935), + [anon_sym_AMP] = ACTIONS(1935), + [anon_sym_DOT_DOT] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1935), + [anon_sym_move] = ACTIONS(1937), + [sym_integer_literal] = ACTIONS(1935), + [aux_sym_string_literal_token1] = ACTIONS(1935), + [sym_char_literal] = ACTIONS(1935), + [anon_sym_true] = ACTIONS(1937), + [anon_sym_false] = ACTIONS(1937), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1937), + [sym_super] = ACTIONS(1937), + [sym_crate] = ACTIONS(1937), + [sym_metavariable] = ACTIONS(1935), + [sym_raw_string_literal] = ACTIONS(1935), + [sym_float_literal] = ACTIONS(1935), + [sym_block_comment] = ACTIONS(3), + }, + [461] = { + [sym_attribute_item] = STATE(496), + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_macro_invocation] = STATE(2288), + [sym_scoped_identifier] = STATE(1493), + [sym_scoped_type_identifier] = STATE(1824), + [sym_match_arm] = STATE(461), + [sym_match_pattern] = STATE(2288), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1839), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_enum_variant_list_repeat1] = STATE(496), + [aux_sym_match_block_repeat1] = STATE(461), + [sym_identifier] = ACTIONS(1939), + [anon_sym_LPAREN] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_u8] = ACTIONS(1948), + [anon_sym_i8] = ACTIONS(1948), + [anon_sym_u16] = ACTIONS(1948), + [anon_sym_i16] = ACTIONS(1948), + [anon_sym_u32] = ACTIONS(1948), + [anon_sym_i32] = ACTIONS(1948), + [anon_sym_u64] = ACTIONS(1948), + [anon_sym_i64] = ACTIONS(1948), + [anon_sym_u128] = ACTIONS(1948), + [anon_sym_i128] = ACTIONS(1948), + [anon_sym_isize] = ACTIONS(1948), + [anon_sym_usize] = ACTIONS(1948), + [anon_sym_f32] = ACTIONS(1948), + [anon_sym_f64] = ACTIONS(1948), + [anon_sym_bool] = ACTIONS(1948), + [anon_sym_str] = ACTIONS(1948), + [anon_sym_char] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_default] = ACTIONS(1954), + [anon_sym_union] = ACTIONS(1954), + [anon_sym_POUND] = ACTIONS(1957), + [anon_sym_ref] = ACTIONS(1960), + [anon_sym_LT] = ACTIONS(1963), + [anon_sym_COLON_COLON] = ACTIONS(1966), + [anon_sym__] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1972), + [sym_mutable_specifier] = ACTIONS(1975), + [anon_sym_DOT_DOT] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1981), + [sym_integer_literal] = ACTIONS(1984), + [aux_sym_string_literal_token1] = ACTIONS(1987), + [sym_char_literal] = ACTIONS(1984), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1993), + [sym_super] = ACTIONS(1993), + [sym_crate] = ACTIONS(1993), + [sym_metavariable] = ACTIONS(1996), + [sym_raw_string_literal] = ACTIONS(1984), + [sym_float_literal] = ACTIONS(1984), + [sym_block_comment] = ACTIONS(3), + }, + [462] = { + [sym_token_tree] = STATE(492), + [sym_token_repetition] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_RBRACE] = ACTIONS(2005), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(1999), + [anon_sym_SQUOTE] = ACTIONS(1999), + [anon_sym_as] = ACTIONS(1999), + [anon_sym_async] = ACTIONS(1999), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_break] = ACTIONS(1999), + [anon_sym_const] = ACTIONS(1999), + [anon_sym_continue] = ACTIONS(1999), + [anon_sym_default] = ACTIONS(1999), + [anon_sym_enum] = ACTIONS(1999), + [anon_sym_fn] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_impl] = ACTIONS(1999), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_loop] = ACTIONS(1999), + [anon_sym_match] = ACTIONS(1999), + [anon_sym_mod] = ACTIONS(1999), + [anon_sym_pub] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_static] = ACTIONS(1999), + [anon_sym_struct] = ACTIONS(1999), + [anon_sym_trait] = ACTIONS(1999), + [anon_sym_type] = ACTIONS(1999), + [anon_sym_union] = ACTIONS(1999), + [anon_sym_unsafe] = ACTIONS(1999), + [anon_sym_use] = ACTIONS(1999), + [anon_sym_where] = ACTIONS(1999), + [anon_sym_while] = ACTIONS(1999), + [sym_mutable_specifier] = ACTIONS(1999), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(1999), + [sym_super] = ACTIONS(1999), + [sym_crate] = ACTIONS(1999), + [sym_metavariable] = ACTIONS(2011), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [463] = { + [sym_token_tree] = STATE(473), + [sym_token_repetition] = STATE(473), + [sym__literal] = STATE(473), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(473), + [sym_identifier] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2015), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_as] = ACTIONS(2013), + [anon_sym_async] = ACTIONS(2013), + [anon_sym_await] = 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_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_where] = ACTIONS(2013), + [anon_sym_while] = ACTIONS(2013), + [sym_mutable_specifier] = ACTIONS(2013), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2013), + [sym_super] = ACTIONS(2013), + [sym_crate] = ACTIONS(2013), + [sym_metavariable] = ACTIONS(2017), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [464] = { + [sym_token_tree] = STATE(401), + [sym_token_repetition] = STATE(401), + [sym__literal] = STATE(401), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(401), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_RBRACK] = ACTIONS(2021), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_await] = 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_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_where] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [sym_mutable_specifier] = ACTIONS(2019), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2019), + [sym_super] = ACTIONS(2019), + [sym_crate] = ACTIONS(2019), + [sym_metavariable] = ACTIONS(2023), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [465] = { + [sym_token_tree] = STATE(401), + [sym_token_repetition] = STATE(401), + [sym__literal] = STATE(401), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(401), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2025), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_await] = 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_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_where] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [sym_mutable_specifier] = ACTIONS(2019), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2019), + [sym_super] = ACTIONS(2019), + [sym_crate] = ACTIONS(2019), + [sym_metavariable] = ACTIONS(2023), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [466] = { + [sym_token_tree] = STATE(485), + [sym_token_repetition] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2027), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2027), + [anon_sym_SQUOTE] = ACTIONS(2027), + [anon_sym_as] = ACTIONS(2027), + [anon_sym_async] = ACTIONS(2027), + [anon_sym_await] = 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_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_where] = ACTIONS(2027), + [anon_sym_while] = ACTIONS(2027), + [sym_mutable_specifier] = ACTIONS(2027), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2027), + [sym_super] = ACTIONS(2027), + [sym_crate] = ACTIONS(2027), + [sym_metavariable] = ACTIONS(2031), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [467] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2033), + [anon_sym_SQUOTE] = ACTIONS(2033), + [anon_sym_as] = ACTIONS(2033), + [anon_sym_async] = ACTIONS(2033), + [anon_sym_await] = 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_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_where] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [sym_mutable_specifier] = ACTIONS(2033), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2033), + [sym_super] = ACTIONS(2033), + [sym_crate] = ACTIONS(2033), + [sym_metavariable] = ACTIONS(2035), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [468] = { + [sym_token_tree] = STATE(401), + [sym_token_repetition] = STATE(401), + [sym__literal] = STATE(401), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(401), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_RBRACE] = ACTIONS(2021), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_await] = 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_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_where] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [sym_mutable_specifier] = ACTIONS(2019), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2019), + [sym_super] = ACTIONS(2019), + [sym_crate] = ACTIONS(2019), + [sym_metavariable] = ACTIONS(2023), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [469] = { + [sym_token_tree] = STATE(401), + [sym_token_repetition] = STATE(401), + [sym__literal] = STATE(401), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(401), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_RBRACK] = ACTIONS(2037), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_await] = 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_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_where] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [sym_mutable_specifier] = ACTIONS(2019), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2019), + [sym_super] = ACTIONS(2019), + [sym_crate] = ACTIONS(2019), + [sym_metavariable] = ACTIONS(2023), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [470] = { + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_RBRACK] = ACTIONS(2005), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2039), + [anon_sym_SQUOTE] = ACTIONS(2039), + [anon_sym_as] = ACTIONS(2039), + [anon_sym_async] = ACTIONS(2039), + [anon_sym_await] = 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_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_where] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [sym_mutable_specifier] = ACTIONS(2039), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2039), + [sym_super] = ACTIONS(2039), + [sym_crate] = ACTIONS(2039), + [sym_metavariable] = ACTIONS(2041), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [471] = { + [sym_token_tree] = STATE(401), + [sym_token_repetition] = STATE(401), + [sym__literal] = STATE(401), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(401), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_await] = 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_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_where] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [sym_mutable_specifier] = ACTIONS(2019), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2019), + [sym_super] = ACTIONS(2019), + [sym_crate] = ACTIONS(2019), + [sym_metavariable] = ACTIONS(2023), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [472] = { + [sym_token_tree] = STATE(487), + [sym_token_repetition] = STATE(487), + [sym__literal] = STATE(487), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_RBRACK] = ACTIONS(2029), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_await] = 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_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_where] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [sym_mutable_specifier] = ACTIONS(2043), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2043), + [sym_super] = ACTIONS(2043), + [sym_crate] = ACTIONS(2043), + [sym_metavariable] = ACTIONS(2045), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [473] = { + [sym_token_tree] = STATE(401), + [sym_token_repetition] = STATE(401), + [sym__literal] = STATE(401), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(401), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_await] = 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_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_where] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [sym_mutable_specifier] = ACTIONS(2019), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2019), + [sym_super] = ACTIONS(2019), + [sym_crate] = ACTIONS(2019), + [sym_metavariable] = ACTIONS(2023), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [474] = { + [sym_token_tree] = STATE(401), + [sym_token_repetition] = STATE(401), + [sym__literal] = STATE(401), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(401), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_await] = 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_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_where] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [sym_mutable_specifier] = ACTIONS(2019), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2019), + [sym_super] = ACTIONS(2019), + [sym_crate] = ACTIONS(2019), + [sym_metavariable] = ACTIONS(2023), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [475] = { + [sym_token_tree] = STATE(464), + [sym_token_repetition] = STATE(464), + [sym__literal] = STATE(464), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(464), + [sym_identifier] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_RBRACK] = ACTIONS(2049), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2047), + [anon_sym_SQUOTE] = ACTIONS(2047), + [anon_sym_as] = ACTIONS(2047), + [anon_sym_async] = ACTIONS(2047), + [anon_sym_await] = 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_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_where] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [sym_mutable_specifier] = ACTIONS(2047), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2047), + [sym_super] = ACTIONS(2047), + [sym_crate] = ACTIONS(2047), + [sym_metavariable] = ACTIONS(2051), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [476] = { + [sym_token_tree] = STATE(468), + [sym_token_repetition] = STATE(468), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(468), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_await] = 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_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_where] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [sym_mutable_specifier] = ACTIONS(2053), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2053), + [sym_super] = ACTIONS(2053), + [sym_crate] = ACTIONS(2053), + [sym_metavariable] = ACTIONS(2055), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [477] = { + [sym_token_tree] = STATE(401), + [sym_token_repetition] = STATE(401), + [sym__literal] = STATE(401), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(401), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_await] = 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_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_where] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [sym_mutable_specifier] = ACTIONS(2019), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2019), + [sym_super] = ACTIONS(2019), + [sym_crate] = ACTIONS(2019), + [sym_metavariable] = ACTIONS(2023), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [478] = { + [sym_token_tree] = STATE(474), + [sym_token_repetition] = STATE(474), + [sym__literal] = STATE(474), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(474), + [sym_identifier] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_as] = ACTIONS(2059), + [anon_sym_async] = ACTIONS(2059), + [anon_sym_await] = 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_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_where] = ACTIONS(2059), + [anon_sym_while] = ACTIONS(2059), + [sym_mutable_specifier] = ACTIONS(2059), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2059), + [sym_super] = ACTIONS(2059), + [sym_crate] = ACTIONS(2059), + [sym_metavariable] = ACTIONS(2061), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [479] = { + [sym_token_tree] = STATE(465), + [sym_token_repetition] = STATE(465), + [sym__literal] = STATE(465), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(465), + [sym_identifier] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [anon_sym_as] = ACTIONS(2063), + [anon_sym_async] = ACTIONS(2063), + [anon_sym_await] = 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_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_where] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2063), + [sym_mutable_specifier] = ACTIONS(2063), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2063), + [sym_super] = ACTIONS(2063), + [sym_crate] = ACTIONS(2063), + [sym_metavariable] = ACTIONS(2067), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [480] = { + [sym_token_tree] = STATE(477), + [sym_token_repetition] = STATE(477), + [sym__literal] = STATE(477), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(477), + [sym_identifier] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_RBRACE] = ACTIONS(2029), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_u8] = ACTIONS(2069), + [anon_sym_i8] = ACTIONS(2069), + [anon_sym_u16] = ACTIONS(2069), + [anon_sym_i16] = ACTIONS(2069), + [anon_sym_u32] = ACTIONS(2069), + [anon_sym_i32] = ACTIONS(2069), + [anon_sym_u64] = ACTIONS(2069), + [anon_sym_i64] = ACTIONS(2069), + [anon_sym_u128] = ACTIONS(2069), + [anon_sym_i128] = ACTIONS(2069), + [anon_sym_isize] = ACTIONS(2069), + [anon_sym_usize] = ACTIONS(2069), + [anon_sym_f32] = ACTIONS(2069), + [anon_sym_f64] = ACTIONS(2069), + [anon_sym_bool] = ACTIONS(2069), + [anon_sym_str] = ACTIONS(2069), + [anon_sym_char] = ACTIONS(2069), + [aux_sym__non_special_token_token1] = ACTIONS(2069), + [anon_sym_SQUOTE] = ACTIONS(2069), + [anon_sym_as] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_await] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(2069), + [anon_sym_enum] = ACTIONS(2069), + [anon_sym_fn] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_impl] = ACTIONS(2069), + [anon_sym_let] = ACTIONS(2069), + [anon_sym_loop] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_mod] = ACTIONS(2069), + [anon_sym_pub] = ACTIONS(2069), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_static] = ACTIONS(2069), + [anon_sym_struct] = ACTIONS(2069), + [anon_sym_trait] = ACTIONS(2069), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_union] = ACTIONS(2069), + [anon_sym_unsafe] = ACTIONS(2069), + [anon_sym_use] = ACTIONS(2069), + [anon_sym_where] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [sym_mutable_specifier] = ACTIONS(2069), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2069), + [sym_super] = ACTIONS(2069), + [sym_crate] = ACTIONS(2069), + [sym_metavariable] = ACTIONS(2071), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [481] = { + [sym_token_tree] = STATE(484), + [sym_token_repetition] = STATE(484), + [sym__literal] = STATE(484), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(484), + [sym_identifier] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_u8] = ACTIONS(2073), + [anon_sym_i8] = ACTIONS(2073), + [anon_sym_u16] = ACTIONS(2073), + [anon_sym_i16] = ACTIONS(2073), + [anon_sym_u32] = ACTIONS(2073), + [anon_sym_i32] = ACTIONS(2073), + [anon_sym_u64] = ACTIONS(2073), + [anon_sym_i64] = ACTIONS(2073), + [anon_sym_u128] = ACTIONS(2073), + [anon_sym_i128] = ACTIONS(2073), + [anon_sym_isize] = ACTIONS(2073), + [anon_sym_usize] = ACTIONS(2073), + [anon_sym_f32] = ACTIONS(2073), + [anon_sym_f64] = ACTIONS(2073), + [anon_sym_bool] = ACTIONS(2073), + [anon_sym_str] = ACTIONS(2073), + [anon_sym_char] = ACTIONS(2073), + [aux_sym__non_special_token_token1] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_as] = ACTIONS(2073), + [anon_sym_async] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2073), + [anon_sym_break] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2073), + [anon_sym_continue] = ACTIONS(2073), + [anon_sym_default] = ACTIONS(2073), + [anon_sym_enum] = ACTIONS(2073), + [anon_sym_fn] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_if] = ACTIONS(2073), + [anon_sym_impl] = ACTIONS(2073), + [anon_sym_let] = ACTIONS(2073), + [anon_sym_loop] = ACTIONS(2073), + [anon_sym_match] = ACTIONS(2073), + [anon_sym_mod] = ACTIONS(2073), + [anon_sym_pub] = ACTIONS(2073), + [anon_sym_return] = ACTIONS(2073), + [anon_sym_static] = ACTIONS(2073), + [anon_sym_struct] = ACTIONS(2073), + [anon_sym_trait] = ACTIONS(2073), + [anon_sym_type] = ACTIONS(2073), + [anon_sym_union] = ACTIONS(2073), + [anon_sym_unsafe] = ACTIONS(2073), + [anon_sym_use] = ACTIONS(2073), + [anon_sym_where] = ACTIONS(2073), + [anon_sym_while] = ACTIONS(2073), + [sym_mutable_specifier] = ACTIONS(2073), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2073), + [sym_super] = ACTIONS(2073), + [sym_crate] = ACTIONS(2073), + [sym_metavariable] = ACTIONS(2077), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [482] = { + [sym_token_tree] = STATE(488), + [sym_token_repetition] = STATE(488), + [sym__literal] = STATE(488), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(488), + [sym_identifier] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_u8] = ACTIONS(2079), + [anon_sym_i8] = ACTIONS(2079), + [anon_sym_u16] = ACTIONS(2079), + [anon_sym_i16] = ACTIONS(2079), + [anon_sym_u32] = ACTIONS(2079), + [anon_sym_i32] = ACTIONS(2079), + [anon_sym_u64] = ACTIONS(2079), + [anon_sym_i64] = ACTIONS(2079), + [anon_sym_u128] = ACTIONS(2079), + [anon_sym_i128] = ACTIONS(2079), + [anon_sym_isize] = ACTIONS(2079), + [anon_sym_usize] = ACTIONS(2079), + [anon_sym_f32] = ACTIONS(2079), + [anon_sym_f64] = ACTIONS(2079), + [anon_sym_bool] = ACTIONS(2079), + [anon_sym_str] = ACTIONS(2079), + [anon_sym_char] = ACTIONS(2079), + [aux_sym__non_special_token_token1] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2079), + [anon_sym_as] = ACTIONS(2079), + [anon_sym_async] = ACTIONS(2079), + [anon_sym_await] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_default] = ACTIONS(2079), + [anon_sym_enum] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(2079), + [anon_sym_for] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_impl] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2079), + [anon_sym_loop] = ACTIONS(2079), + [anon_sym_match] = ACTIONS(2079), + [anon_sym_mod] = ACTIONS(2079), + [anon_sym_pub] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_static] = ACTIONS(2079), + [anon_sym_struct] = ACTIONS(2079), + [anon_sym_trait] = ACTIONS(2079), + [anon_sym_type] = ACTIONS(2079), + [anon_sym_union] = ACTIONS(2079), + [anon_sym_unsafe] = ACTIONS(2079), + [anon_sym_use] = ACTIONS(2079), + [anon_sym_where] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2079), + [sym_mutable_specifier] = ACTIONS(2079), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2079), + [sym_super] = ACTIONS(2079), + [sym_crate] = ACTIONS(2079), + [sym_metavariable] = ACTIONS(2081), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [483] = { + [sym_token_tree] = STATE(489), + [sym_token_repetition] = STATE(489), + [sym__literal] = STATE(489), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_RBRACK] = ACTIONS(2075), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2083), + [anon_sym_SQUOTE] = ACTIONS(2083), + [anon_sym_as] = ACTIONS(2083), + [anon_sym_async] = ACTIONS(2083), + [anon_sym_await] = 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_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_where] = ACTIONS(2083), + [anon_sym_while] = ACTIONS(2083), + [sym_mutable_specifier] = ACTIONS(2083), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2083), + [sym_super] = ACTIONS(2083), + [sym_crate] = ACTIONS(2083), + [sym_metavariable] = ACTIONS(2085), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [484] = { + [sym_token_tree] = STATE(401), + [sym_token_repetition] = STATE(401), + [sym__literal] = STATE(401), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(401), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_await] = 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_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_where] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [sym_mutable_specifier] = ACTIONS(2019), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2019), + [sym_super] = ACTIONS(2019), + [sym_crate] = ACTIONS(2019), + [sym_metavariable] = ACTIONS(2023), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [485] = { + [sym_token_tree] = STATE(401), + [sym_token_repetition] = STATE(401), + [sym__literal] = STATE(401), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(401), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_await] = 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_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_where] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [sym_mutable_specifier] = ACTIONS(2019), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2019), + [sym_super] = ACTIONS(2019), + [sym_crate] = ACTIONS(2019), + [sym_metavariable] = ACTIONS(2023), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [486] = { + [sym_token_tree] = STATE(471), + [sym_token_repetition] = STATE(471), + [sym__literal] = STATE(471), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(471), + [sym_identifier] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_as] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_await] = 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_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_where] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [sym_mutable_specifier] = ACTIONS(2089), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2089), + [sym_super] = ACTIONS(2089), + [sym_crate] = ACTIONS(2089), + [sym_metavariable] = ACTIONS(2091), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [487] = { + [sym_token_tree] = STATE(401), + [sym_token_repetition] = STATE(401), + [sym__literal] = STATE(401), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(401), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_RBRACK] = ACTIONS(2057), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_await] = 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_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_where] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [sym_mutable_specifier] = ACTIONS(2019), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2019), + [sym_super] = ACTIONS(2019), + [sym_crate] = ACTIONS(2019), + [sym_metavariable] = ACTIONS(2023), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [488] = { + [sym_token_tree] = STATE(401), + [sym_token_repetition] = STATE(401), + [sym__literal] = STATE(401), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(401), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_RBRACE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_await] = 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_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_where] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [sym_mutable_specifier] = ACTIONS(2019), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2019), + [sym_super] = ACTIONS(2019), + [sym_crate] = ACTIONS(2019), + [sym_metavariable] = ACTIONS(2023), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [489] = { + [sym_token_tree] = STATE(401), + [sym_token_repetition] = STATE(401), + [sym__literal] = STATE(401), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(401), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_RBRACK] = ACTIONS(2087), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_await] = 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_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_where] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [sym_mutable_specifier] = ACTIONS(2019), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2019), + [sym_super] = ACTIONS(2019), + [sym_crate] = ACTIONS(2019), + [sym_metavariable] = ACTIONS(2023), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [490] = { + [sym_token_tree] = STATE(401), + [sym_token_repetition] = STATE(401), + [sym__literal] = STATE(401), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(401), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_await] = 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_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_where] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [sym_mutable_specifier] = ACTIONS(2019), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2019), + [sym_super] = ACTIONS(2019), + [sym_crate] = ACTIONS(2019), + [sym_metavariable] = ACTIONS(2023), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [491] = { + [sym_token_tree] = STATE(469), + [sym_token_repetition] = STATE(469), + [sym__literal] = STATE(469), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_RBRACK] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2095), + [anon_sym_as] = ACTIONS(2095), + [anon_sym_async] = ACTIONS(2095), + [anon_sym_await] = 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_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_where] = ACTIONS(2095), + [anon_sym_while] = ACTIONS(2095), + [sym_mutable_specifier] = ACTIONS(2095), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2095), + [sym_super] = ACTIONS(2095), + [sym_crate] = ACTIONS(2095), + [sym_metavariable] = ACTIONS(2097), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [492] = { + [sym_token_tree] = STATE(401), + [sym_token_repetition] = STATE(401), + [sym__literal] = STATE(401), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(401), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_await] = 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_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_where] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [sym_mutable_specifier] = ACTIONS(2019), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2019), + [sym_super] = ACTIONS(2019), + [sym_crate] = ACTIONS(2019), + [sym_metavariable] = ACTIONS(2023), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [493] = { + [sym_token_tree] = STATE(401), + [sym_token_repetition] = STATE(401), + [sym__literal] = STATE(401), + [sym_string_literal] = STATE(514), + [sym_boolean_literal] = STATE(514), + [aux_sym_token_tree_repeat1] = STATE(401), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_RBRACK] = ACTIONS(2093), + [anon_sym_DOLLAR] = ACTIONS(2009), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_await] = 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_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_where] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [sym_mutable_specifier] = ACTIONS(2019), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2019), + [sym_super] = ACTIONS(2019), + [sym_crate] = ACTIONS(2019), + [sym_metavariable] = ACTIONS(2023), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), + [sym_block_comment] = ACTIONS(3), + }, + [494] = { + [sym_attribute_item] = STATE(582), + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_macro_invocation] = STATE(2404), + [sym_scoped_identifier] = STATE(1493), + [sym_scoped_type_identifier] = STATE(1824), + [sym_match_pattern] = STATE(2400), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1839), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_enum_variant_list_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [495] = { + [sym_attribute_item] = STATE(503), + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym_visibility_modifier] = STATE(663), + [sym__type] = STATE(1673), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_enum_variant_list_repeat1] = STATE(503), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(2107), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(2109), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2111), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [496] = { + [sym_attribute_item] = STATE(582), + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_macro_invocation] = STATE(2404), + [sym_scoped_identifier] = STATE(1493), + [sym_scoped_type_identifier] = STATE(1824), + [sym_match_pattern] = STATE(2404), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1839), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [aux_sym_enum_variant_list_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [497] = { + [sym_attribute_item] = STATE(505), + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym_visibility_modifier] = STATE(612), + [sym__type] = STATE(1837), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_enum_variant_list_repeat1] = STATE(505), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2113), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(2107), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2111), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [498] = { + [sym_attribute_item] = STATE(505), + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym_visibility_modifier] = STATE(612), + [sym__type] = STATE(1837), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_enum_variant_list_repeat1] = STATE(505), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2115), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(2107), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2111), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [499] = { + [sym_attribute_item] = STATE(505), + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym_visibility_modifier] = STATE(612), + [sym__type] = STATE(1837), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_enum_variant_list_repeat1] = STATE(505), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(2107), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2111), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [500] = { + [sym_attribute_item] = STATE(505), + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym_visibility_modifier] = STATE(612), + [sym__type] = STATE(1837), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_enum_variant_list_repeat1] = STATE(505), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(2107), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2111), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [501] = { + [sym_attribute_item] = STATE(505), + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym_visibility_modifier] = STATE(612), + [sym__type] = STATE(1837), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_enum_variant_list_repeat1] = STATE(505), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2121), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(2107), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2111), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [502] = { + [sym_attribute_item] = STATE(505), + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym_visibility_modifier] = STATE(612), + [sym__type] = STATE(1837), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_enum_variant_list_repeat1] = STATE(505), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2123), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(2107), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2111), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [503] = { + [sym_attribute_item] = STATE(1055), + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym_visibility_modifier] = STATE(599), + [sym__type] = STATE(1756), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_enum_variant_list_repeat1] = STATE(1055), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(2107), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2111), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [504] = { + [sym_attribute_item] = STATE(505), + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym_visibility_modifier] = STATE(612), + [sym__type] = STATE(1837), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_enum_variant_list_repeat1] = STATE(505), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(2107), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2111), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [505] = { + [sym_attribute_item] = STATE(1055), + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym_visibility_modifier] = STATE(635), + [sym__type] = STATE(1782), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_enum_variant_list_repeat1] = STATE(1055), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(2107), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(2111), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [506] = { + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_RPAREN] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2127), + [anon_sym_RBRACK] = ACTIONS(2127), + [anon_sym_COLON] = ACTIONS(2129), + [anon_sym_DOLLAR] = ACTIONS(2125), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = 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_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_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2127), + [aux_sym_string_literal_token1] = ACTIONS(2127), + [sym_char_literal] = ACTIONS(2127), + [anon_sym_true] = ACTIONS(2125), + [anon_sym_false] = ACTIONS(2125), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2127), + [sym_raw_string_literal] = ACTIONS(2127), + [sym_float_literal] = ACTIONS(2127), + [sym_block_comment] = ACTIONS(3), + }, + [507] = { + [sym_function_modifiers] = STATE(2292), + [sym_const_parameter] = STATE(1980), + [sym_constrained_type_parameter] = STATE(1731), + [sym_optional_type_parameter] = STATE(1980), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1862), + [sym_bracketed_type] = STATE(2252), + [sym_qualified_type] = STATE(2235), + [sym_lifetime] = STATE(1551), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(2133), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(2135), + [sym_block_comment] = ACTIONS(3), + }, + [508] = { + [sym_identifier] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_RPAREN] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_RBRACK] = ACTIONS(2139), + [anon_sym_DOLLAR] = ACTIONS(2137), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2137), + [anon_sym_SQUOTE] = ACTIONS(2137), + [anon_sym_as] = ACTIONS(2137), + [anon_sym_async] = ACTIONS(2137), + [anon_sym_await] = 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_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_where] = ACTIONS(2137), + [anon_sym_while] = ACTIONS(2137), + [sym_mutable_specifier] = ACTIONS(2137), + [sym_integer_literal] = ACTIONS(2139), + [aux_sym_string_literal_token1] = ACTIONS(2139), + [sym_char_literal] = ACTIONS(2139), + [anon_sym_true] = ACTIONS(2137), + [anon_sym_false] = ACTIONS(2137), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2137), + [sym_super] = ACTIONS(2137), + [sym_crate] = ACTIONS(2137), + [sym_metavariable] = ACTIONS(2139), + [sym_raw_string_literal] = ACTIONS(2139), + [sym_float_literal] = ACTIONS(2139), + [sym_block_comment] = ACTIONS(3), + }, + [509] = { + [sym_identifier] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_RPAREN] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_RBRACK] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(584), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [aux_sym__non_special_token_token1] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(582), + [aux_sym_string_literal_token1] = ACTIONS(582), + [sym_char_literal] = ACTIONS(582), + [anon_sym_true] = ACTIONS(584), + [anon_sym_false] = ACTIONS(584), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_metavariable] = ACTIONS(582), + [sym_raw_string_literal] = ACTIONS(582), + [sym_float_literal] = ACTIONS(582), + [sym_block_comment] = ACTIONS(3), + }, + [510] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1670), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(788), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(796), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [511] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1701), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_RPAREN] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [512] = { + [sym_parameter] = STATE(1866), + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1672), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(2145), + [anon_sym_union] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(2147), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(2149), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2151), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [513] = { + [sym_identifier] = ACTIONS(2153), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym_RPAREN] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2155), + [anon_sym_RBRACE] = ACTIONS(2155), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_RBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2153), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2153), + [anon_sym_SQUOTE] = ACTIONS(2153), + [anon_sym_as] = ACTIONS(2153), + [anon_sym_async] = ACTIONS(2153), + [anon_sym_await] = 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_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_where] = ACTIONS(2153), + [anon_sym_while] = ACTIONS(2153), + [sym_mutable_specifier] = ACTIONS(2153), + [sym_integer_literal] = ACTIONS(2155), + [aux_sym_string_literal_token1] = ACTIONS(2155), + [sym_char_literal] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(2153), + [anon_sym_false] = ACTIONS(2153), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2153), + [sym_super] = ACTIONS(2153), + [sym_crate] = ACTIONS(2153), + [sym_metavariable] = ACTIONS(2155), + [sym_raw_string_literal] = ACTIONS(2155), + [sym_float_literal] = ACTIONS(2155), + [sym_block_comment] = ACTIONS(3), + }, + [514] = { + [sym_identifier] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_RPAREN] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2159), + [anon_sym_RBRACK] = ACTIONS(2159), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_u8] = ACTIONS(2157), + [anon_sym_i8] = ACTIONS(2157), + [anon_sym_u16] = ACTIONS(2157), + [anon_sym_i16] = ACTIONS(2157), + [anon_sym_u32] = ACTIONS(2157), + [anon_sym_i32] = ACTIONS(2157), + [anon_sym_u64] = ACTIONS(2157), + [anon_sym_i64] = ACTIONS(2157), + [anon_sym_u128] = ACTIONS(2157), + [anon_sym_i128] = ACTIONS(2157), + [anon_sym_isize] = ACTIONS(2157), + [anon_sym_usize] = ACTIONS(2157), + [anon_sym_f32] = ACTIONS(2157), + [anon_sym_f64] = ACTIONS(2157), + [anon_sym_bool] = ACTIONS(2157), + [anon_sym_str] = ACTIONS(2157), + [anon_sym_char] = ACTIONS(2157), + [aux_sym__non_special_token_token1] = ACTIONS(2157), + [anon_sym_SQUOTE] = ACTIONS(2157), + [anon_sym_as] = ACTIONS(2157), + [anon_sym_async] = ACTIONS(2157), + [anon_sym_await] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2157), + [anon_sym_const] = ACTIONS(2157), + [anon_sym_continue] = ACTIONS(2157), + [anon_sym_default] = ACTIONS(2157), + [anon_sym_enum] = ACTIONS(2157), + [anon_sym_fn] = ACTIONS(2157), + [anon_sym_for] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2157), + [anon_sym_impl] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_loop] = ACTIONS(2157), + [anon_sym_match] = ACTIONS(2157), + [anon_sym_mod] = ACTIONS(2157), + [anon_sym_pub] = ACTIONS(2157), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_static] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(2157), + [anon_sym_trait] = ACTIONS(2157), + [anon_sym_type] = ACTIONS(2157), + [anon_sym_union] = ACTIONS(2157), + [anon_sym_unsafe] = ACTIONS(2157), + [anon_sym_use] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_while] = ACTIONS(2157), + [sym_mutable_specifier] = ACTIONS(2157), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2159), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2157), + [anon_sym_false] = ACTIONS(2157), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2157), + [sym_super] = ACTIONS(2157), + [sym_crate] = ACTIONS(2157), + [sym_metavariable] = ACTIONS(2159), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), + [sym_block_comment] = ACTIONS(3), + }, + [515] = { + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2163), + [anon_sym_RBRACK] = ACTIONS(2163), + [anon_sym_DOLLAR] = ACTIONS(2161), + [anon_sym_u8] = ACTIONS(2161), + [anon_sym_i8] = ACTIONS(2161), + [anon_sym_u16] = ACTIONS(2161), + [anon_sym_i16] = ACTIONS(2161), + [anon_sym_u32] = ACTIONS(2161), + [anon_sym_i32] = ACTIONS(2161), + [anon_sym_u64] = ACTIONS(2161), + [anon_sym_i64] = ACTIONS(2161), + [anon_sym_u128] = ACTIONS(2161), + [anon_sym_i128] = ACTIONS(2161), + [anon_sym_isize] = ACTIONS(2161), + [anon_sym_usize] = ACTIONS(2161), + [anon_sym_f32] = ACTIONS(2161), + [anon_sym_f64] = ACTIONS(2161), + [anon_sym_bool] = ACTIONS(2161), + [anon_sym_str] = ACTIONS(2161), + [anon_sym_char] = ACTIONS(2161), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2163), + [aux_sym_string_literal_token1] = ACTIONS(2163), + [sym_char_literal] = ACTIONS(2163), + [anon_sym_true] = ACTIONS(2161), + [anon_sym_false] = ACTIONS(2161), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2163), + [sym_raw_string_literal] = ACTIONS(2163), + [sym_float_literal] = ACTIONS(2163), + [sym_block_comment] = ACTIONS(3), + }, + [516] = { + [sym_identifier] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_RPAREN] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_RBRACK] = ACTIONS(2167), + [anon_sym_DOLLAR] = ACTIONS(2165), + [anon_sym_u8] = ACTIONS(2165), + [anon_sym_i8] = ACTIONS(2165), + [anon_sym_u16] = ACTIONS(2165), + [anon_sym_i16] = ACTIONS(2165), + [anon_sym_u32] = ACTIONS(2165), + [anon_sym_i32] = ACTIONS(2165), + [anon_sym_u64] = ACTIONS(2165), + [anon_sym_i64] = ACTIONS(2165), + [anon_sym_u128] = ACTIONS(2165), + [anon_sym_i128] = ACTIONS(2165), + [anon_sym_isize] = ACTIONS(2165), + [anon_sym_usize] = ACTIONS(2165), + [anon_sym_f32] = ACTIONS(2165), + [anon_sym_f64] = ACTIONS(2165), + [anon_sym_bool] = ACTIONS(2165), + [anon_sym_str] = ACTIONS(2165), + [anon_sym_char] = ACTIONS(2165), + [aux_sym__non_special_token_token1] = ACTIONS(2165), + [anon_sym_SQUOTE] = ACTIONS(2165), + [anon_sym_as] = ACTIONS(2165), + [anon_sym_async] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(2165), + [anon_sym_break] = ACTIONS(2165), + [anon_sym_const] = ACTIONS(2165), + [anon_sym_continue] = ACTIONS(2165), + [anon_sym_default] = ACTIONS(2165), + [anon_sym_enum] = ACTIONS(2165), + [anon_sym_fn] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2165), + [anon_sym_impl] = ACTIONS(2165), + [anon_sym_let] = ACTIONS(2165), + [anon_sym_loop] = ACTIONS(2165), + [anon_sym_match] = ACTIONS(2165), + [anon_sym_mod] = ACTIONS(2165), + [anon_sym_pub] = ACTIONS(2165), + [anon_sym_return] = ACTIONS(2165), + [anon_sym_static] = ACTIONS(2165), + [anon_sym_struct] = ACTIONS(2165), + [anon_sym_trait] = ACTIONS(2165), + [anon_sym_type] = ACTIONS(2165), + [anon_sym_union] = ACTIONS(2165), + [anon_sym_unsafe] = ACTIONS(2165), + [anon_sym_use] = ACTIONS(2165), + [anon_sym_where] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2165), + [sym_mutable_specifier] = ACTIONS(2165), + [sym_integer_literal] = ACTIONS(2167), + [aux_sym_string_literal_token1] = ACTIONS(2167), + [sym_char_literal] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(2165), + [anon_sym_false] = ACTIONS(2165), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2165), + [sym_super] = ACTIONS(2165), + [sym_crate] = ACTIONS(2165), + [sym_metavariable] = ACTIONS(2167), + [sym_raw_string_literal] = ACTIONS(2167), + [sym_float_literal] = ACTIONS(2167), + [sym_block_comment] = ACTIONS(3), + }, + [517] = { + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(457), + [anon_sym_RPAREN] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(457), + [anon_sym_RBRACE] = ACTIONS(457), + [anon_sym_LBRACK] = ACTIONS(457), + [anon_sym_RBRACK] = ACTIONS(457), + [anon_sym_DOLLAR] = ACTIONS(459), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [aux_sym__non_special_token_token1] = ACTIONS(459), + [anon_sym_SQUOTE] = ACTIONS(459), + [anon_sym_as] = ACTIONS(459), + [anon_sym_async] = ACTIONS(459), + [anon_sym_await] = ACTIONS(459), + [anon_sym_break] = ACTIONS(459), + [anon_sym_const] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(459), + [anon_sym_default] = ACTIONS(459), + [anon_sym_enum] = ACTIONS(459), + [anon_sym_fn] = ACTIONS(459), + [anon_sym_for] = ACTIONS(459), + [anon_sym_if] = ACTIONS(459), + [anon_sym_impl] = ACTIONS(459), + [anon_sym_let] = ACTIONS(459), + [anon_sym_loop] = ACTIONS(459), + [anon_sym_match] = ACTIONS(459), + [anon_sym_mod] = ACTIONS(459), + [anon_sym_pub] = ACTIONS(459), + [anon_sym_return] = ACTIONS(459), + [anon_sym_static] = ACTIONS(459), + [anon_sym_struct] = ACTIONS(459), + [anon_sym_trait] = ACTIONS(459), + [anon_sym_type] = ACTIONS(459), + [anon_sym_union] = ACTIONS(459), + [anon_sym_unsafe] = ACTIONS(459), + [anon_sym_use] = ACTIONS(459), + [anon_sym_where] = ACTIONS(459), + [anon_sym_while] = ACTIONS(459), + [sym_mutable_specifier] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(457), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(457), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(459), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(457), + [sym_raw_string_literal] = ACTIONS(457), + [sym_float_literal] = ACTIONS(457), + [sym_block_comment] = ACTIONS(3), + }, + [518] = { + [sym_identifier] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_RPAREN] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_RBRACK] = ACTIONS(2171), + [anon_sym_DOLLAR] = ACTIONS(2169), + [anon_sym_u8] = ACTIONS(2169), + [anon_sym_i8] = ACTIONS(2169), + [anon_sym_u16] = ACTIONS(2169), + [anon_sym_i16] = ACTIONS(2169), + [anon_sym_u32] = ACTIONS(2169), + [anon_sym_i32] = ACTIONS(2169), + [anon_sym_u64] = ACTIONS(2169), + [anon_sym_i64] = ACTIONS(2169), + [anon_sym_u128] = ACTIONS(2169), + [anon_sym_i128] = ACTIONS(2169), + [anon_sym_isize] = ACTIONS(2169), + [anon_sym_usize] = ACTIONS(2169), + [anon_sym_f32] = ACTIONS(2169), + [anon_sym_f64] = ACTIONS(2169), + [anon_sym_bool] = ACTIONS(2169), + [anon_sym_str] = ACTIONS(2169), + [anon_sym_char] = ACTIONS(2169), + [aux_sym__non_special_token_token1] = ACTIONS(2169), + [anon_sym_SQUOTE] = ACTIONS(2169), + [anon_sym_as] = ACTIONS(2169), + [anon_sym_async] = ACTIONS(2169), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_break] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2169), + [anon_sym_continue] = ACTIONS(2169), + [anon_sym_default] = ACTIONS(2169), + [anon_sym_enum] = ACTIONS(2169), + [anon_sym_fn] = ACTIONS(2169), + [anon_sym_for] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2169), + [anon_sym_impl] = ACTIONS(2169), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_loop] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(2169), + [anon_sym_mod] = ACTIONS(2169), + [anon_sym_pub] = ACTIONS(2169), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_static] = ACTIONS(2169), + [anon_sym_struct] = ACTIONS(2169), + [anon_sym_trait] = ACTIONS(2169), + [anon_sym_type] = ACTIONS(2169), + [anon_sym_union] = ACTIONS(2169), + [anon_sym_unsafe] = ACTIONS(2169), + [anon_sym_use] = ACTIONS(2169), + [anon_sym_where] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2169), + [sym_mutable_specifier] = ACTIONS(2169), + [sym_integer_literal] = ACTIONS(2171), + [aux_sym_string_literal_token1] = ACTIONS(2171), + [sym_char_literal] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(2169), + [anon_sym_false] = ACTIONS(2169), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2169), + [sym_super] = ACTIONS(2169), + [sym_crate] = ACTIONS(2169), + [sym_metavariable] = ACTIONS(2171), + [sym_raw_string_literal] = ACTIONS(2171), + [sym_float_literal] = ACTIONS(2171), + [sym_block_comment] = ACTIONS(3), + }, + [519] = { + [sym_identifier] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_RPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_RBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2173), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2173), + [anon_sym_SQUOTE] = ACTIONS(2173), + [anon_sym_as] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_await] = 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_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_where] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [sym_mutable_specifier] = ACTIONS(2173), + [sym_integer_literal] = ACTIONS(2175), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2175), + [anon_sym_true] = ACTIONS(2173), + [anon_sym_false] = ACTIONS(2173), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_crate] = ACTIONS(2173), + [sym_metavariable] = ACTIONS(2175), + [sym_raw_string_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), + [sym_block_comment] = ACTIONS(3), + }, + [520] = { + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2179), + [anon_sym_RBRACK] = ACTIONS(2179), + [anon_sym_DOLLAR] = ACTIONS(2177), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2179), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_metavariable] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [521] = { + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_RPAREN] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_RBRACK] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(2181), + [anon_sym_u8] = ACTIONS(2181), + [anon_sym_i8] = ACTIONS(2181), + [anon_sym_u16] = ACTIONS(2181), + [anon_sym_i16] = ACTIONS(2181), + [anon_sym_u32] = ACTIONS(2181), + [anon_sym_i32] = ACTIONS(2181), + [anon_sym_u64] = ACTIONS(2181), + [anon_sym_i64] = ACTIONS(2181), + [anon_sym_u128] = ACTIONS(2181), + [anon_sym_i128] = ACTIONS(2181), + [anon_sym_isize] = ACTIONS(2181), + [anon_sym_usize] = ACTIONS(2181), + [anon_sym_f32] = ACTIONS(2181), + [anon_sym_f64] = ACTIONS(2181), + [anon_sym_bool] = ACTIONS(2181), + [anon_sym_str] = ACTIONS(2181), + [anon_sym_char] = ACTIONS(2181), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [sym_mutable_specifier] = ACTIONS(2181), + [sym_integer_literal] = ACTIONS(2183), + [aux_sym_string_literal_token1] = ACTIONS(2183), + [sym_char_literal] = ACTIONS(2183), + [anon_sym_true] = ACTIONS(2181), + [anon_sym_false] = ACTIONS(2181), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2183), + [sym_raw_string_literal] = ACTIONS(2183), + [sym_float_literal] = ACTIONS(2183), + [sym_block_comment] = ACTIONS(3), + }, + [522] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1722), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_RPAREN] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2187), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [523] = { + [sym_identifier] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_RPAREN] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_RBRACK] = ACTIONS(2191), + [anon_sym_DOLLAR] = ACTIONS(2189), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2189), + [anon_sym_SQUOTE] = ACTIONS(2189), + [anon_sym_as] = ACTIONS(2189), + [anon_sym_async] = ACTIONS(2189), + [anon_sym_await] = 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_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_where] = ACTIONS(2189), + [anon_sym_while] = ACTIONS(2189), + [sym_mutable_specifier] = ACTIONS(2189), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2189), + [sym_super] = ACTIONS(2189), + [sym_crate] = ACTIONS(2189), + [sym_metavariable] = ACTIONS(2191), + [sym_raw_string_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), + [sym_block_comment] = ACTIONS(3), + }, + [524] = { + [sym_identifier] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2195), + [anon_sym_RPAREN] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2195), + [anon_sym_RBRACE] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2195), + [anon_sym_RBRACK] = ACTIONS(2195), + [anon_sym_DOLLAR] = ACTIONS(2193), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_as] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_await] = 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_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_where] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [sym_mutable_specifier] = ACTIONS(2193), + [sym_integer_literal] = ACTIONS(2195), + [aux_sym_string_literal_token1] = ACTIONS(2195), + [sym_char_literal] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2193), + [sym_super] = ACTIONS(2193), + [sym_crate] = ACTIONS(2193), + [sym_metavariable] = ACTIONS(2195), + [sym_raw_string_literal] = ACTIONS(2195), + [sym_float_literal] = ACTIONS(2195), + [sym_block_comment] = ACTIONS(3), + }, + [525] = { + [sym_identifier] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_RBRACK] = ACTIONS(2199), + [anon_sym_DOLLAR] = ACTIONS(2197), + [anon_sym_u8] = ACTIONS(2197), + [anon_sym_i8] = ACTIONS(2197), + [anon_sym_u16] = ACTIONS(2197), + [anon_sym_i16] = ACTIONS(2197), + [anon_sym_u32] = ACTIONS(2197), + [anon_sym_i32] = ACTIONS(2197), + [anon_sym_u64] = ACTIONS(2197), + [anon_sym_i64] = ACTIONS(2197), + [anon_sym_u128] = ACTIONS(2197), + [anon_sym_i128] = ACTIONS(2197), + [anon_sym_isize] = ACTIONS(2197), + [anon_sym_usize] = ACTIONS(2197), + [anon_sym_f32] = ACTIONS(2197), + [anon_sym_f64] = ACTIONS(2197), + [anon_sym_bool] = ACTIONS(2197), + [anon_sym_str] = ACTIONS(2197), + [anon_sym_char] = ACTIONS(2197), + [aux_sym__non_special_token_token1] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [anon_sym_fn] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_impl] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_mod] = ACTIONS(2197), + [anon_sym_pub] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_struct] = ACTIONS(2197), + [anon_sym_trait] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_union] = ACTIONS(2197), + [anon_sym_unsafe] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_where] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [sym_mutable_specifier] = ACTIONS(2197), + [sym_integer_literal] = ACTIONS(2199), + [aux_sym_string_literal_token1] = ACTIONS(2199), + [sym_char_literal] = ACTIONS(2199), + [anon_sym_true] = ACTIONS(2197), + [anon_sym_false] = ACTIONS(2197), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_crate] = ACTIONS(2197), + [sym_metavariable] = ACTIONS(2199), + [sym_raw_string_literal] = ACTIONS(2199), + [sym_float_literal] = ACTIONS(2199), + [sym_block_comment] = ACTIONS(3), + }, + [526] = { + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2203), + [anon_sym_RBRACK] = ACTIONS(2203), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_u8] = ACTIONS(2201), + [anon_sym_i8] = ACTIONS(2201), + [anon_sym_u16] = ACTIONS(2201), + [anon_sym_i16] = ACTIONS(2201), + [anon_sym_u32] = ACTIONS(2201), + [anon_sym_i32] = ACTIONS(2201), + [anon_sym_u64] = ACTIONS(2201), + [anon_sym_i64] = ACTIONS(2201), + [anon_sym_u128] = ACTIONS(2201), + [anon_sym_i128] = ACTIONS(2201), + [anon_sym_isize] = ACTIONS(2201), + [anon_sym_usize] = ACTIONS(2201), + [anon_sym_f32] = ACTIONS(2201), + [anon_sym_f64] = ACTIONS(2201), + [anon_sym_bool] = ACTIONS(2201), + [anon_sym_str] = ACTIONS(2201), + [anon_sym_char] = ACTIONS(2201), + [aux_sym__non_special_token_token1] = ACTIONS(2201), + [anon_sym_SQUOTE] = ACTIONS(2201), + [anon_sym_as] = ACTIONS(2201), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_default] = ACTIONS(2201), + [anon_sym_enum] = ACTIONS(2201), + [anon_sym_fn] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_impl] = ACTIONS(2201), + [anon_sym_let] = ACTIONS(2201), + [anon_sym_loop] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_mod] = ACTIONS(2201), + [anon_sym_pub] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_static] = ACTIONS(2201), + [anon_sym_struct] = ACTIONS(2201), + [anon_sym_trait] = ACTIONS(2201), + [anon_sym_type] = ACTIONS(2201), + [anon_sym_union] = ACTIONS(2201), + [anon_sym_unsafe] = ACTIONS(2201), + [anon_sym_use] = ACTIONS(2201), + [anon_sym_where] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [sym_mutable_specifier] = ACTIONS(2201), + [sym_integer_literal] = ACTIONS(2203), + [aux_sym_string_literal_token1] = ACTIONS(2203), + [sym_char_literal] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(2201), + [anon_sym_false] = ACTIONS(2201), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2201), + [sym_super] = ACTIONS(2201), + [sym_crate] = ACTIONS(2201), + [sym_metavariable] = ACTIONS(2203), + [sym_raw_string_literal] = ACTIONS(2203), + [sym_float_literal] = ACTIONS(2203), + [sym_block_comment] = ACTIONS(3), + }, + [527] = { + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_RPAREN] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2207), + [anon_sym_RBRACK] = ACTIONS(2207), + [anon_sym_DOLLAR] = ACTIONS(2205), + [anon_sym_u8] = ACTIONS(2205), + [anon_sym_i8] = ACTIONS(2205), + [anon_sym_u16] = ACTIONS(2205), + [anon_sym_i16] = ACTIONS(2205), + [anon_sym_u32] = ACTIONS(2205), + [anon_sym_i32] = ACTIONS(2205), + [anon_sym_u64] = ACTIONS(2205), + [anon_sym_i64] = ACTIONS(2205), + [anon_sym_u128] = ACTIONS(2205), + [anon_sym_i128] = ACTIONS(2205), + [anon_sym_isize] = ACTIONS(2205), + [anon_sym_usize] = ACTIONS(2205), + [anon_sym_f32] = ACTIONS(2205), + [anon_sym_f64] = ACTIONS(2205), + [anon_sym_bool] = ACTIONS(2205), + [anon_sym_str] = ACTIONS(2205), + [anon_sym_char] = ACTIONS(2205), + [aux_sym__non_special_token_token1] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_impl] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_loop] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_mod] = ACTIONS(2205), + [anon_sym_pub] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_where] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [sym_mutable_specifier] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2207), + [aux_sym_string_literal_token1] = ACTIONS(2207), + [sym_char_literal] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(2205), + [anon_sym_false] = ACTIONS(2205), + [sym_line_comment] = ACTIONS(928), + [sym_self] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_crate] = ACTIONS(2205), + [sym_metavariable] = ACTIONS(2207), + [sym_raw_string_literal] = ACTIONS(2207), + [sym_float_literal] = ACTIONS(2207), + [sym_block_comment] = ACTIONS(3), + }, + [528] = { + [sym_parameter] = STATE(2115), + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1929), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(2145), + [anon_sym_union] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(2147), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2151), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [529] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1709), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_RPAREN] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [530] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1709), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [531] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1709), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(2213), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [532] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1709), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_RPAREN] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [533] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1709), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_RPAREN] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [534] = { + [sym_function_modifiers] = STATE(2292), + [sym_higher_ranked_trait_bound] = STATE(1454), + [sym_removed_trait_bound] = STATE(1454), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1459), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(1460), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_QMARK] = ACTIONS(2219), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [535] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1709), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_RPAREN] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [536] = { + [sym_function_modifiers] = STATE(2292), + [sym_higher_ranked_trait_bound] = STATE(1505), + [sym_removed_trait_bound] = STATE(1505), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1512), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(1509), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_QMARK] = ACTIONS(2219), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [537] = { + [sym_function_modifiers] = STATE(2292), + [sym_higher_ranked_trait_bound] = STATE(1505), + [sym_removed_trait_bound] = STATE(1505), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1507), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(1509), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_QMARK] = ACTIONS(2219), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [538] = { + [sym_function_modifiers] = STATE(2292), + [sym_higher_ranked_trait_bound] = STATE(1505), + [sym_removed_trait_bound] = STATE(1505), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1512), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(1513), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_QMARK] = ACTIONS(2219), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [539] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1692), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(2225), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [540] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1857), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [541] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2045), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [542] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1784), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [543] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1366), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [544] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1709), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [545] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1792), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [546] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1728), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [547] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2047), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [548] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2048), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [549] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2049), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [550] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1377), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [551] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(2109), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(2229), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [552] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1690), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(2231), + [anon_sym_union] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2233), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [553] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [554] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1669), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(2235), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [555] = { + [sym_function_modifiers] = STATE(2255), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(999), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(2226), + [sym_array_type] = STATE(1010), + [sym_for_lifetimes] = STATE(1220), + [sym_function_type] = STATE(1010), + [sym_tuple_type] = STATE(1010), + [sym_unit_type] = STATE(1010), + [sym_generic_type] = STATE(759), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1010), + [sym_reference_type] = STATE(1010), + [sym_pointer_type] = STATE(1010), + [sym_empty_type] = STATE(1010), + [sym_abstract_type] = STATE(1010), + [sym_dynamic_type] = STATE(1010), + [sym_macro_invocation] = STATE(1010), + [sym_scoped_identifier] = STATE(2195), + [sym_scoped_type_identifier] = STATE(714), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_u8] = ACTIONS(2247), + [anon_sym_i8] = ACTIONS(2247), + [anon_sym_u16] = ACTIONS(2247), + [anon_sym_i16] = ACTIONS(2247), + [anon_sym_u32] = ACTIONS(2247), + [anon_sym_i32] = ACTIONS(2247), + [anon_sym_u64] = ACTIONS(2247), + [anon_sym_i64] = ACTIONS(2247), + [anon_sym_u128] = ACTIONS(2247), + [anon_sym_i128] = ACTIONS(2247), + [anon_sym_isize] = ACTIONS(2247), + [anon_sym_usize] = ACTIONS(2247), + [anon_sym_f32] = ACTIONS(2247), + [anon_sym_f64] = ACTIONS(2247), + [anon_sym_bool] = ACTIONS(2247), + [anon_sym_str] = ACTIONS(2247), + [anon_sym_char] = ACTIONS(2247), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_fn] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(2253), + [anon_sym_union] = ACTIONS(2255), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2259), + [anon_sym_AMP] = ACTIONS(2261), + [anon_sym_dyn] = ACTIONS(2263), + [sym_mutable_specifier] = ACTIONS(2265), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2267), + [sym_super] = ACTIONS(2267), + [sym_crate] = ACTIONS(2267), + [sym_metavariable] = ACTIONS(2269), + [sym_block_comment] = ACTIONS(3), + }, + [556] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1389), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [557] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1385), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [558] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2091), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [559] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1690), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(2231), + [anon_sym_union] = ACTIONS(2231), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2271), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [560] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2064), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [561] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2051), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [562] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1368), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(2273), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [563] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2052), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [564] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2153), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [565] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1374), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [566] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2057), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [567] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1329), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(2275), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [568] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2063), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [569] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2078), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [570] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1329), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(2277), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2279), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [571] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2090), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [572] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(2194), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [573] = { + [sym_bracketed_type] = STATE(2311), + [sym_generic_type] = STATE(2310), + [sym_generic_type_with_turbofish] = STATE(2294), + [sym_scoped_identifier] = STATE(1269), + [sym_scoped_type_identifier] = STATE(1824), + [sym_const_block] = STATE(1384), + [sym__pattern] = STATE(1760), + [sym_tuple_pattern] = STATE(1384), + [sym_slice_pattern] = STATE(1384), + [sym_tuple_struct_pattern] = STATE(1384), + [sym_struct_pattern] = STATE(1384), + [sym_remaining_field_pattern] = STATE(1384), + [sym_mut_pattern] = STATE(1384), + [sym_range_pattern] = STATE(1384), + [sym_ref_pattern] = STATE(1384), + [sym_captured_pattern] = STATE(1384), + [sym_reference_pattern] = STATE(1384), + [sym_or_pattern] = STATE(1384), + [sym__literal_pattern] = STATE(1320), + [sym_negative_literal] = STATE(1322), + [sym_string_literal] = STATE(1322), + [sym_boolean_literal] = STATE(1322), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(1088), + [sym_mutable_specifier] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(710), + [sym_integer_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(712), + [anon_sym_true] = ACTIONS(716), + [anon_sym_false] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(712), + [sym_float_literal] = ACTIONS(712), + [sym_block_comment] = ACTIONS(3), + }, + [574] = { + [sym_function_modifiers] = STATE(2292), + [sym_type_parameters] = STATE(675), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1643), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1653), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1490), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(2283), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [575] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1990), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [576] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1990), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [577] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1313), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(567), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(2291), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [578] = { + [sym_function_modifiers] = STATE(2292), + [sym_type_parameters] = STATE(688), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1662), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1622), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1492), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(2283), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [579] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1990), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [580] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1717), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [581] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1990), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [582] = { + [sym_attribute_item] = STATE(582), + [aux_sym_enum_variant_list_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_RBRACK] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2303), + [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_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_for] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2301), + [anon_sym_loop] = ACTIONS(2301), + [anon_sym_match] = ACTIONS(2301), + [anon_sym_return] = ACTIONS(2301), + [anon_sym_union] = ACTIONS(2301), + [anon_sym_unsafe] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2301), + [anon_sym_POUND] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2303), + [anon_sym_COMMA] = ACTIONS(2303), + [anon_sym_ref] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2303), + [anon_sym_COLON_COLON] = ACTIONS(2303), + [anon_sym__] = ACTIONS(2301), + [anon_sym_AMP] = ACTIONS(2303), + [sym_mutable_specifier] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_PIPE] = ACTIONS(2303), + [anon_sym_move] = ACTIONS(2301), + [sym_integer_literal] = ACTIONS(2303), + [aux_sym_string_literal_token1] = ACTIONS(2303), + [sym_char_literal] = ACTIONS(2303), + [anon_sym_true] = ACTIONS(2301), + [anon_sym_false] = ACTIONS(2301), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2301), + [sym_super] = ACTIONS(2301), + [sym_crate] = ACTIONS(2301), + [sym_metavariable] = ACTIONS(2303), + [sym_raw_string_literal] = ACTIONS(2303), + [sym_float_literal] = ACTIONS(2303), + [sym_block_comment] = ACTIONS(3), + }, + [583] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(2062), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(551), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(2308), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [584] = { + [sym_function_modifiers] = STATE(2255), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1018), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(555), + [sym_array_type] = STATE(1010), + [sym_for_lifetimes] = STATE(1220), + [sym_function_type] = STATE(1010), + [sym_tuple_type] = STATE(1010), + [sym_unit_type] = STATE(1010), + [sym_generic_type] = STATE(759), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1010), + [sym_reference_type] = STATE(1010), + [sym_pointer_type] = STATE(1010), + [sym_empty_type] = STATE(1010), + [sym_abstract_type] = STATE(1010), + [sym_dynamic_type] = STATE(1010), + [sym_macro_invocation] = STATE(1010), + [sym_scoped_identifier] = STATE(2195), + [sym_scoped_type_identifier] = STATE(714), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_u8] = ACTIONS(2247), + [anon_sym_i8] = ACTIONS(2247), + [anon_sym_u16] = ACTIONS(2247), + [anon_sym_i16] = ACTIONS(2247), + [anon_sym_u32] = ACTIONS(2247), + [anon_sym_i32] = ACTIONS(2247), + [anon_sym_u64] = ACTIONS(2247), + [anon_sym_i64] = ACTIONS(2247), + [anon_sym_u128] = ACTIONS(2247), + [anon_sym_i128] = ACTIONS(2247), + [anon_sym_isize] = ACTIONS(2247), + [anon_sym_usize] = ACTIONS(2247), + [anon_sym_f32] = ACTIONS(2247), + [anon_sym_f64] = ACTIONS(2247), + [anon_sym_bool] = ACTIONS(2247), + [anon_sym_str] = ACTIONS(2247), + [anon_sym_char] = ACTIONS(2247), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_fn] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(2253), + [anon_sym_union] = ACTIONS(2255), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2259), + [anon_sym_AMP] = ACTIONS(2261), + [anon_sym_dyn] = ACTIONS(2263), + [sym_mutable_specifier] = ACTIONS(2310), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2267), + [sym_super] = ACTIONS(2267), + [sym_crate] = ACTIONS(2267), + [sym_metavariable] = ACTIONS(2269), + [sym_block_comment] = ACTIONS(3), + }, + [585] = { + [sym_function_modifiers] = STATE(2292), + [sym_type_parameters] = STATE(596), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1636), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1640), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1463), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2312), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(2283), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [586] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1759), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [587] = { + [sym_function_modifiers] = STATE(2292), + [sym_type_parameters] = STATE(666), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1621), + [sym_bracketed_type] = STATE(2252), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1609), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1494), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2316), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(2283), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [588] = { + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1466), + [sym__type] = STATE(1862), + [sym_bracketed_type] = STATE(2252), + [sym_qualified_type] = STATE(2235), + [sym_lifetime] = STATE(2281), + [sym_array_type] = STATE(1305), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1305), + [sym_tuple_type] = STATE(1305), + [sym_unit_type] = STATE(1305), + [sym_generic_type] = STATE(1301), + [sym_generic_type_with_turbofish] = STATE(2253), + [sym_bounded_type] = STATE(1305), + [sym_reference_type] = STATE(1305), + [sym_pointer_type] = STATE(1305), + [sym_empty_type] = STATE(1305), + [sym_abstract_type] = STATE(1305), + [sym_dynamic_type] = STATE(1305), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(2176), + [sym_scoped_type_identifier] = STATE(1262), + [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(672), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, +}; + +static uint16_t ts_small_parse_table[] = { + [0] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(666), 1, + anon_sym_STAR, + ACTIONS(678), 1, + anon_sym_fn, + ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, + anon_sym_impl, + ACTIONS(688), 1, + anon_sym_BANG, ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, + anon_sym_extern, + ACTIONS(704), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(1892), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(1900), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(1904), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2139), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(2027), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, + STATE(1301), 1, sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [4924] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, + STATE(1309), 1, + sym__type, + STATE(2176), 1, sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2020), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, + STATE(2252), 1, sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [5045] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2019), 1, - sym__pattern, - STATE(2228), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [5166] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_ref, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(782), 1, - anon_sym__, - ACTIONS(786), 1, - sym_mutable_specifier, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, + STATE(1466), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(672), 3, + anon_sym_async, anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2139), 1, - sym_identifier, - STATE(1271), 1, - sym_scoped_identifier, - STATE(1327), 1, - sym__literal_pattern, - STATE(1839), 1, - sym_scoped_type_identifier, - STATE(2117), 1, - sym__pattern, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2233), 1, - sym_generic_type, - STATE(2234), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, + anon_sym_unsafe, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1370), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 17, + STATE(1305), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65202,71 +64886,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5287] = 30, + [129] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(666), 1, + anon_sym_STAR, ACTIONS(678), 1, + anon_sym_fn, + ACTIONS(680), 1, anon_sym_for, - ACTIONS(690), 1, + ACTIONS(682), 1, + anon_sym_impl, + ACTIONS(688), 1, + anon_sym_BANG, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, + ACTIONS(704), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2197), 1, - anon_sym_STAR, - ACTIONS(2201), 1, - anon_sym_fn, - ACTIONS(2203), 1, - anon_sym_impl, - ACTIONS(2205), 1, - anon_sym_BANG, - ACTIONS(2207), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(712), 1, + ACTIONS(2099), 1, + sym_identifier, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(894), 1, + STATE(1301), 1, sym_generic_type, - STATE(969), 1, + STATE(1954), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2332), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65278,7 +64965,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65296,71 +64983,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5411] = 30, + [258] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1640), 1, + STATE(1541), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65372,50 +65062,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 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, - [5535] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1157), 20, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1159), 41, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65433,95 +65080,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [5605] = 30, + [387] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(666), 1, + anon_sym_STAR, ACTIONS(678), 1, + anon_sym_fn, + ACTIONS(680), 1, anon_sym_for, - ACTIONS(690), 1, + ACTIONS(682), 1, + anon_sym_impl, + ACTIONS(688), 1, + anon_sym_BANG, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, + ACTIONS(704), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2197), 1, - anon_sym_STAR, - ACTIONS(2201), 1, - anon_sym_fn, - ACTIONS(2203), 1, - anon_sym_impl, - ACTIONS(2205), 1, - anon_sym_BANG, - ACTIONS(2207), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(712), 1, + ACTIONS(2099), 1, + sym_identifier, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(894), 1, + STATE(1301), 1, sym_generic_type, - STATE(973), 1, + STATE(1639), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2332), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65533,7 +65159,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65551,71 +65177,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5729] = 30, + [516] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1574), 1, + STATE(1641), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65627,7 +65256,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65645,71 +65274,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5853] = 30, + [645] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(666), 1, + anon_sym_STAR, ACTIONS(678), 1, + anon_sym_fn, + ACTIONS(680), 1, anon_sym_for, - ACTIONS(690), 1, + ACTIONS(682), 1, + anon_sym_impl, + ACTIONS(688), 1, + anon_sym_BANG, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, + ACTIONS(704), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2197), 1, - anon_sym_STAR, - ACTIONS(2201), 1, - anon_sym_fn, - ACTIONS(2203), 1, - anon_sym_impl, - ACTIONS(2205), 1, - anon_sym_BANG, - ACTIONS(2207), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(712), 1, + ACTIONS(2099), 1, + sym_identifier, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(894), 1, + STATE(1301), 1, sym_generic_type, - STATE(968), 1, + STATE(1537), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2332), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65721,7 +65353,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65739,71 +65371,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5977] = 30, + [774] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(666), 1, + anon_sym_STAR, ACTIONS(678), 1, + anon_sym_fn, + ACTIONS(680), 1, anon_sym_for, - ACTIONS(690), 1, + ACTIONS(682), 1, + anon_sym_impl, + ACTIONS(688), 1, + anon_sym_BANG, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, + ACTIONS(704), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2197), 1, - anon_sym_STAR, - ACTIONS(2201), 1, - anon_sym_fn, - ACTIONS(2203), 1, - anon_sym_impl, - ACTIONS(2205), 1, - anon_sym_BANG, - ACTIONS(2207), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(712), 1, + ACTIONS(2099), 1, + sym_identifier, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(894), 1, + STATE(1301), 1, sym_generic_type, - STATE(1001), 1, + STATE(2146), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2332), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65815,7 +65450,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65833,71 +65468,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6101] = 30, + [903] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + ACTIONS(2318), 1, + sym_identifier, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1467), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1644), 1, sym_generic_type, - STATE(1572), 1, + STATE(1645), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65909,7 +65547,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65927,71 +65565,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6225] = 30, + [1032] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1945), 1, + STATE(1835), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66003,7 +65644,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66021,71 +65662,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6349] = 30, + [1161] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(666), 1, + anon_sym_STAR, ACTIONS(678), 1, + anon_sym_fn, + ACTIONS(680), 1, anon_sym_for, - ACTIONS(690), 1, + ACTIONS(682), 1, + anon_sym_impl, + ACTIONS(688), 1, + anon_sym_BANG, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, + ACTIONS(704), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2197), 1, - anon_sym_STAR, - ACTIONS(2201), 1, - anon_sym_fn, - ACTIONS(2203), 1, - anon_sym_impl, - ACTIONS(2205), 1, - anon_sym_BANG, - ACTIONS(2207), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(712), 1, + ACTIONS(2099), 1, + sym_identifier, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(894), 1, + STATE(1301), 1, sym_generic_type, - STATE(984), 1, + STATE(2100), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2332), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66097,7 +65741,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66115,71 +65759,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6473] = 30, + [1290] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1744), 1, + STATE(1703), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66191,7 +65838,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66209,71 +65856,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6597] = 30, + [1419] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1959), 1, + STATE(2109), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66285,7 +65935,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66303,71 +65953,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6721] = 30, + [1548] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1828), 1, + STATE(1840), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66379,7 +66032,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66397,71 +66050,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6845] = 30, + [1677] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1589), 1, + STATE(2102), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66473,7 +66129,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66491,71 +66147,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6969] = 30, + [1806] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1622), 1, + STATE(1600), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66567,7 +66226,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66585,71 +66244,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7093] = 30, + [1935] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1860), 1, + STATE(2175), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66661,7 +66323,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66679,71 +66341,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7217] = 30, + [2064] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1790), 1, + STATE(1599), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66755,7 +66420,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66773,71 +66438,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7341] = 30, + [2193] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2280), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(1222), 1, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + STATE(1200), 1, sym_for_lifetimes, - STATE(1473), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1626), 1, + STATE(1301), 1, sym_generic_type, - STATE(1627), 1, + STATE(1625), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66849,7 +66517,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66867,71 +66535,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7465] = 30, + [2322] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(2143), 1, + STATE(1978), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66943,7 +66614,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66961,71 +66632,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7589] = 30, + [2451] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1745), 1, + STATE(1586), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67037,7 +66711,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67055,71 +66729,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7713] = 30, + [2580] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1326), 1, + STATE(1856), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67131,7 +66808,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67149,71 +66826,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7837] = 30, + [2709] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1720), 1, + STATE(1616), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67225,7 +66905,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67243,71 +66923,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7961] = 30, + [2838] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1903), 1, + STATE(1612), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67319,7 +67002,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67337,71 +67020,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8085] = 30, + [2967] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1944), 1, + STATE(1782), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67413,7 +67099,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67431,71 +67117,171 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8209] = 30, + [3096] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(666), 1, + anon_sym_STAR, ACTIONS(678), 1, + anon_sym_fn, + ACTIONS(680), 1, anon_sym_for, - ACTIONS(690), 1, + ACTIONS(682), 1, + anon_sym_impl, + ACTIONS(688), 1, + anon_sym_BANG, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, + ACTIONS(704), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2197), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(884), 1, + anon_sym_AMP, + ACTIONS(890), 1, + sym_metavariable, + ACTIONS(2099), 1, + sym_identifier, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1262), 1, + sym_scoped_type_identifier, + STATE(1301), 1, + sym_generic_type, + STATE(1314), 1, + sym__type, + STATE(2176), 1, + sym_scoped_identifier, + STATE(2252), 1, + sym_bracketed_type, + STATE(2253), 1, + sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1466), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(672), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(874), 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, + [3225] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(2201), 1, + ACTIONS(678), 1, anon_sym_fn, - ACTIONS(2203), 1, + ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(2205), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(2207), 1, + ACTIONS(692), 1, + anon_sym_extern, + ACTIONS(704), 1, + anon_sym_dyn, + ACTIONS(868), 1, + anon_sym_LPAREN, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(712), 1, + ACTIONS(2099), 1, + sym_identifier, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(894), 1, + STATE(1301), 1, sym_generic_type, - STATE(1046), 1, + STATE(1325), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2332), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67507,7 +67293,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67525,71 +67311,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8333] = 30, + [3354] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1874), 1, + STATE(1323), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67601,7 +67390,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67619,71 +67408,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8457] = 30, + [3483] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1709), 1, + STATE(1982), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67695,7 +67487,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67713,71 +67505,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8581] = 30, + [3612] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1718), 1, + STATE(1327), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67789,7 +67584,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67807,71 +67602,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8705] = 30, + [3741] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + anon_sym_for, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(2237), 1, + sym_identifier, + ACTIONS(2239), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2241), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(2245), 1, + anon_sym_STAR, + ACTIONS(2249), 1, + anon_sym_default, + ACTIONS(2251), 1, + anon_sym_fn, + ACTIONS(2253), 1, + anon_sym_impl, + ACTIONS(2255), 1, + anon_sym_union, + ACTIONS(2257), 1, + anon_sym_BANG, + ACTIONS(2259), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(2261), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2263), 1, + anon_sym_dyn, + ACTIONS(2269), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, + STATE(714), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(759), 1, sym_generic_type, - STATE(1915), 1, + STATE(1051), 1, sym__type, - STATE(2157), 1, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2195), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2226), 1, sym_lifetime, - STATE(2206), 1, + STATE(2255), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2345), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2346), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2267), 3, + sym_self, + sym_super, + sym_crate, + STATE(1010), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67883,7 +67681,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2247), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67901,71 +67699,171 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8829] = 30, + [3870] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + anon_sym_for, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(2237), 1, + sym_identifier, + ACTIONS(2239), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2241), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(2245), 1, + anon_sym_STAR, + ACTIONS(2249), 1, + anon_sym_default, + ACTIONS(2251), 1, + anon_sym_fn, + ACTIONS(2253), 1, + anon_sym_impl, + ACTIONS(2255), 1, + anon_sym_union, + ACTIONS(2257), 1, + anon_sym_BANG, + ACTIONS(2259), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(2261), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2263), 1, + anon_sym_dyn, + ACTIONS(2269), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, + STATE(714), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(759), 1, sym_generic_type, - STATE(1919), 1, + STATE(1054), 1, sym__type, - STATE(2157), 1, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2195), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2226), 1, sym_lifetime, - STATE(2206), 1, + STATE(2255), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2345), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2346), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, + ACTIONS(672), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2267), 3, sym_self, sym_super, sym_crate, - ACTIONS(670), 4, + STATE(1010), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2247), 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, + [3999] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(680), 1, + anon_sym_for, + ACTIONS(692), 1, + anon_sym_extern, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(2237), 1, + sym_identifier, + ACTIONS(2239), 1, + anon_sym_LPAREN, + ACTIONS(2241), 1, + anon_sym_LBRACK, + ACTIONS(2245), 1, + anon_sym_STAR, + ACTIONS(2249), 1, + anon_sym_default, + ACTIONS(2251), 1, + anon_sym_fn, + ACTIONS(2253), 1, + anon_sym_impl, + ACTIONS(2255), 1, + anon_sym_union, + ACTIONS(2257), 1, + anon_sym_BANG, + ACTIONS(2259), 1, + anon_sym_COLON_COLON, + ACTIONS(2261), 1, + anon_sym_AMP, + ACTIONS(2263), 1, + anon_sym_dyn, + ACTIONS(2269), 1, + sym_metavariable, + STATE(714), 1, + sym_scoped_type_identifier, + STATE(759), 1, + sym_generic_type, + STATE(1061), 1, + sym__type, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2195), 1, + sym_scoped_identifier, + STATE(2226), 1, + sym_lifetime, + STATE(2255), 1, + sym_function_modifiers, + STATE(2345), 1, + sym_bracketed_type, + STATE(2346), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1466), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2267), 3, + sym_self, + sym_super, + sym_crate, + STATE(1010), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67977,7 +67875,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2247), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67995,71 +67893,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8953] = 30, + [4128] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1851), 1, + STATE(1834), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68071,7 +67972,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68089,71 +67990,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9077] = 30, + [4257] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1320), 1, + STATE(1973), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68165,7 +68069,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68183,71 +68087,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9201] = 30, + [4386] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(678), 1, + ACTIONS(680), 1, anon_sym_for, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - ACTIONS(2189), 1, + ACTIONS(2237), 1, sym_identifier, - ACTIONS(2191), 1, + ACTIONS(2239), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(2241), 1, anon_sym_LBRACK, - ACTIONS(2197), 1, + ACTIONS(2245), 1, anon_sym_STAR, - ACTIONS(2201), 1, + ACTIONS(2249), 1, + anon_sym_default, + ACTIONS(2251), 1, anon_sym_fn, - ACTIONS(2203), 1, + ACTIONS(2253), 1, anon_sym_impl, - ACTIONS(2205), 1, + ACTIONS(2255), 1, + anon_sym_union, + ACTIONS(2257), 1, anon_sym_BANG, - ACTIONS(2207), 1, + ACTIONS(2259), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(2261), 1, anon_sym_AMP, - ACTIONS(2211), 1, + ACTIONS(2263), 1, anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(2269), 1, sym_metavariable, - STATE(712), 1, + STATE(714), 1, sym_scoped_type_identifier, - STATE(894), 1, + STATE(759), 1, sym_generic_type, - STATE(991), 1, + STATE(1063), 1, sym__type, STATE(1220), 1, sym_for_lifetimes, - STATE(2174), 1, + STATE(2195), 1, sym_scoped_identifier, - STATE(2200), 1, + STATE(2226), 1, sym_lifetime, - STATE(2243), 1, + STATE(2255), 1, sym_function_modifiers, - STATE(2331), 1, + STATE(2345), 1, sym_bracketed_type, - STATE(2332), 1, + STATE(2346), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(2267), 3, + sym_self, + sym_super, + sym_crate, + STATE(1010), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68259,7 +68166,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(2247), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68277,71 +68184,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9325] = 30, + [4515] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1307), 1, + STATE(1306), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68353,7 +68263,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68371,71 +68281,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9449] = 30, + [4644] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(2036), 1, + STATE(1307), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68447,7 +68360,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68465,71 +68378,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9573] = 30, + [4773] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1620), 1, + STATE(1833), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68541,7 +68457,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68559,71 +68475,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9697] = 30, + [4902] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(2042), 1, + STATE(1651), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68635,7 +68554,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68653,71 +68572,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9821] = 30, + [5031] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1666), 1, + STATE(2114), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68729,7 +68651,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68747,71 +68669,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9945] = 30, + [5160] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1587), 1, + STATE(1901), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68823,7 +68748,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68841,71 +68766,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10069] = 30, + [5289] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(2053), 1, + STATE(1623), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68917,7 +68845,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68935,71 +68863,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10193] = 30, + [5418] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(666), 1, + anon_sym_STAR, ACTIONS(678), 1, + anon_sym_fn, + ACTIONS(680), 1, anon_sym_for, - ACTIONS(690), 1, + ACTIONS(682), 1, + anon_sym_impl, + ACTIONS(688), 1, + anon_sym_BANG, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, + ACTIONS(704), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2197), 1, - anon_sym_STAR, - ACTIONS(2201), 1, - anon_sym_fn, - ACTIONS(2203), 1, - anon_sym_impl, - ACTIONS(2205), 1, - anon_sym_BANG, - ACTIONS(2207), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(712), 1, + ACTIONS(2099), 1, + sym_identifier, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(894), 1, + STATE(1301), 1, sym_generic_type, - STATE(971), 1, + STATE(1942), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2332), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69011,7 +68942,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69029,71 +68960,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10317] = 30, + [5547] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(2040), 1, + STATE(1850), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69105,7 +69039,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69123,71 +69057,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10441] = 30, + [5676] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(666), 1, + anon_sym_STAR, ACTIONS(678), 1, + anon_sym_fn, + ACTIONS(680), 1, anon_sym_for, - ACTIONS(690), 1, + ACTIONS(682), 1, + anon_sym_impl, + ACTIONS(688), 1, + anon_sym_BANG, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, + ACTIONS(704), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2197), 1, - anon_sym_STAR, - ACTIONS(2201), 1, - anon_sym_fn, - ACTIONS(2203), 1, - anon_sym_impl, - ACTIONS(2205), 1, - anon_sym_BANG, - ACTIONS(2207), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(712), 1, + ACTIONS(2099), 1, + sym_identifier, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(894), 1, + STATE(1301), 1, sym_generic_type, - STATE(963), 1, + STATE(1660), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2332), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69199,7 +69136,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69217,71 +69154,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10565] = 30, + [5805] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(2061), 1, + STATE(1759), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69293,7 +69233,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69311,71 +69251,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10689] = 30, + [5934] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(666), 1, + anon_sym_STAR, ACTIONS(678), 1, + anon_sym_fn, + ACTIONS(680), 1, anon_sym_for, - ACTIONS(690), 1, + ACTIONS(682), 1, + anon_sym_impl, + ACTIONS(688), 1, + anon_sym_BANG, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, + ACTIONS(704), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2197), 1, - anon_sym_STAR, - ACTIONS(2201), 1, - anon_sym_fn, - ACTIONS(2203), 1, - anon_sym_impl, - ACTIONS(2205), 1, - anon_sym_BANG, - ACTIONS(2207), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(712), 1, + ACTIONS(2099), 1, + sym_identifier, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(894), 1, + STATE(1301), 1, sym_generic_type, - STATE(962), 1, + STATE(1798), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2332), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69387,7 +69330,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69405,71 +69348,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10813] = 30, + [6063] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1506), 1, + STATE(1584), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69481,7 +69427,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69499,165 +69445,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10937] = 30, + [6192] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1313), 1, + STATE(1583), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [11061] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, - anon_sym_LPAREN, - ACTIONS(2193), 1, - anon_sym_LBRACK, - ACTIONS(2197), 1, - anon_sym_STAR, - ACTIONS(2201), 1, - anon_sym_fn, - ACTIONS(2203), 1, - anon_sym_impl, - ACTIONS(2205), 1, - anon_sym_BANG, - ACTIONS(2207), 1, - anon_sym_COLON_COLON, - ACTIONS(2209), 1, - anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, - sym_metavariable, - STATE(712), 1, - sym_scoped_type_identifier, - STATE(894), 1, - sym_generic_type, - STATE(966), 1, - sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, - sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, - sym_bracketed_type, - STATE(2332), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(977), 11, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69669,7 +69524,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69687,71 +69542,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11185] = 30, + [6321] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1946), 1, + STATE(1308), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69763,7 +69621,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69781,71 +69639,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11309] = 30, + [6450] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1573), 1, + STATE(1557), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69857,7 +69718,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69875,71 +69736,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11433] = 30, + [6579] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1312), 1, + STATE(1963), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69951,7 +69815,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69969,71 +69833,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11557] = 30, + [6708] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1305), 1, + STATE(2070), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70045,7 +69912,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70063,71 +69930,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11681] = 30, + [6837] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1533), 1, + STATE(1326), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70139,7 +70009,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70157,71 +70027,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11805] = 30, + [6966] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(666), 1, + anon_sym_STAR, ACTIONS(678), 1, + anon_sym_fn, + ACTIONS(680), 1, anon_sym_for, - ACTIONS(690), 1, + ACTIONS(682), 1, + anon_sym_impl, + ACTIONS(688), 1, + anon_sym_BANG, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - sym_identifier, - ACTIONS(2191), 1, + ACTIONS(704), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2197), 1, - anon_sym_STAR, - ACTIONS(2201), 1, - anon_sym_fn, - ACTIONS(2203), 1, - anon_sym_impl, - ACTIONS(2205), 1, - anon_sym_BANG, - ACTIONS(2207), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2209), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2211), 1, - anon_sym_dyn, - ACTIONS(2217), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(712), 1, + ACTIONS(2099), 1, + sym_identifier, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(894), 1, + STATE(1301), 1, sym_generic_type, - STATE(965), 1, + STATE(1553), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2174), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2200), 1, - sym_lifetime, - STATE(2243), 1, - sym_function_modifiers, - STATE(2331), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2332), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(977), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70233,7 +70106,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2199), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70251,71 +70124,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11929] = 30, + [7095] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1303), 1, + STATE(1324), 1, + sym_lifetime, + STATE(1326), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70327,7 +70203,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70345,165 +70221,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12053] = 30, + [7224] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1571), 1, + STATE(1328), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [12177] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1806), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 11, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70515,7 +70300,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70533,71 +70318,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12301] = 30, + [7353] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1907), 1, + STATE(1777), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70609,7 +70397,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70627,71 +70415,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12425] = 30, + [7482] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1555), 1, + STATE(1565), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70703,7 +70494,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70721,71 +70512,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12549] = 30, + [7611] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1797), 1, + STATE(1529), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70797,7 +70591,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70815,71 +70609,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12673] = 30, + [7740] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1900), 1, + STATE(1556), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70891,7 +70688,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70909,71 +70706,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12797] = 30, + [7869] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1304), 1, + STATE(1956), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70985,7 +70785,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71003,71 +70803,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12921] = 30, + [7998] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1331), 1, + STATE(1619), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71079,7 +70882,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71097,71 +70900,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13045] = 30, + [8127] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1751), 1, + STATE(2118), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71173,7 +70979,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71191,71 +70997,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13169] = 30, + [8256] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1570), 1, + STATE(1561), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71267,7 +71076,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71285,71 +71094,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13293] = 30, + [8385] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1582), 1, + STATE(1657), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71361,7 +71173,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71379,71 +71191,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13417] = 30, + [8514] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1976), 1, + STATE(1736), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71455,7 +71270,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71473,71 +71288,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13541] = 30, + [8643] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + anon_sym_for, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(2237), 1, + sym_identifier, + ACTIONS(2239), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2241), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(2245), 1, + anon_sym_STAR, + ACTIONS(2249), 1, + anon_sym_default, + ACTIONS(2251), 1, + anon_sym_fn, + ACTIONS(2253), 1, + anon_sym_impl, + ACTIONS(2255), 1, + anon_sym_union, + ACTIONS(2257), 1, + anon_sym_BANG, + ACTIONS(2259), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(2261), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2263), 1, + anon_sym_dyn, + ACTIONS(2269), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, + STATE(714), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(759), 1, sym_generic_type, - STATE(2095), 1, + STATE(998), 1, sym__type, - STATE(2157), 1, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2195), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2226), 1, sym_lifetime, - STATE(2206), 1, + STATE(2255), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2345), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2346), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2267), 3, + sym_self, + sym_super, + sym_crate, + STATE(1010), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71549,7 +71367,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2247), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71567,72 +71385,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13665] = 31, + [8772] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - ACTIONS(2282), 1, - sym_self, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1320), 1, + STATE(1985), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(862), 2, - sym_super, - sym_crate, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71644,7 +71464,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71662,71 +71482,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13791] = 30, + [8901] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + anon_sym_for, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(2237), 1, + sym_identifier, + ACTIONS(2239), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2241), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(2245), 1, + anon_sym_STAR, + ACTIONS(2249), 1, + anon_sym_default, + ACTIONS(2251), 1, + anon_sym_fn, + ACTIONS(2253), 1, + anon_sym_impl, + ACTIONS(2255), 1, + anon_sym_union, + ACTIONS(2257), 1, + anon_sym_BANG, + ACTIONS(2259), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(2261), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2263), 1, + anon_sym_dyn, + ACTIONS(2269), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, + STATE(714), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(759), 1, sym_generic_type, - STATE(1596), 1, + STATE(1022), 1, sym__type, - STATE(2157), 1, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2195), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2226), 1, sym_lifetime, - STATE(2206), 1, + STATE(2255), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2345), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2346), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2267), 3, + sym_self, + sym_super, + sym_crate, + STATE(1010), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71738,7 +71561,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2247), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71756,71 +71579,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13915] = 30, + [9030] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1562), 1, + STATE(1730), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71832,7 +71658,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71850,71 +71676,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14039] = 30, + [9159] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1658), 1, - sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2203), 1, + sym__type, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71926,7 +71755,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71944,71 +71773,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14163] = 30, + [9288] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1897), 1, + STATE(1733), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72020,7 +71852,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72038,165 +71870,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14287] = 30, + [9417] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1321), 1, - sym_lifetime, - STATE(1323), 1, + STATE(1624), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [14411] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2284), 1, - sym_identifier, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1453), 1, - sym_scoped_type_identifier, - STATE(1594), 1, - sym__type, - STATE(1649), 1, - sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 11, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72208,7 +71949,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72226,71 +71967,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14535] = 30, + [9546] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1536), 1, + STATE(1756), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72302,7 +72046,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72320,71 +72064,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14659] = 30, + [9675] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1323), 1, + STATE(1329), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72396,7 +72143,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72414,71 +72161,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14783] = 30, + [9804] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1632), 1, + STATE(2026), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72490,7 +72240,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72508,71 +72258,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14907] = 30, + [9933] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + ACTIONS(2320), 1, + sym_identifier, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1471), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1598), 1, sym_generic_type, - STATE(1936), 1, + STATE(1649), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72584,7 +72337,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72602,165 +72355,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15031] = 30, + [10062] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + anon_sym_for, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(2237), 1, + sym_identifier, + ACTIONS(2239), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2241), 1, anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(1886), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1332), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [15155] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(2245), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(2249), 1, + anon_sym_default, + ACTIONS(2251), 1, anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(680), 1, + ACTIONS(2253), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(2255), 1, + anon_sym_union, + ACTIONS(2257), 1, anon_sym_BANG, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(2259), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(2261), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2263), 1, + anon_sym_dyn, + ACTIONS(2269), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, + STATE(714), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(759), 1, sym_generic_type, - STATE(1861), 1, + STATE(1002), 1, sym__type, - STATE(2157), 1, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2195), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2226), 1, sym_lifetime, - STATE(2206), 1, + STATE(2255), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2345), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2346), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2267), 3, + sym_self, + sym_super, + sym_crate, + STATE(1010), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72772,7 +72434,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2247), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72790,71 +72452,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15279] = 30, + [10191] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1941), 1, + STATE(1620), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72866,7 +72531,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72884,71 +72549,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15403] = 30, + [10320] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(2140), 1, + STATE(1740), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72960,7 +72628,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72978,71 +72646,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15527] = 30, + [10449] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + anon_sym_for, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(2237), 1, + sym_identifier, + ACTIONS(2239), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2241), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(2245), 1, + anon_sym_STAR, + ACTIONS(2249), 1, + anon_sym_default, + ACTIONS(2251), 1, + anon_sym_fn, + ACTIONS(2253), 1, + anon_sym_impl, + ACTIONS(2255), 1, + anon_sym_union, + ACTIONS(2257), 1, + anon_sym_BANG, + ACTIONS(2259), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(2261), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2263), 1, + anon_sym_dyn, + ACTIONS(2269), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, + STATE(714), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(759), 1, sym_generic_type, - STATE(1324), 1, + STATE(1024), 1, sym__type, - STATE(2157), 1, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2195), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2226), 1, sym_lifetime, - STATE(2206), 1, + STATE(2255), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2345), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2346), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2267), 3, + sym_self, + sym_super, + sym_crate, + STATE(1010), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73054,7 +72725,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2247), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73072,71 +72743,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15651] = 30, + [10578] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2286), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(1222), 1, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + STATE(1200), 1, sym_for_lifetimes, - STATE(1479), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1613), 1, - sym__type, - STATE(1618), 1, + STATE(1301), 1, sym_generic_type, - STATE(2157), 1, + STATE(1781), 1, + sym__type, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73148,7 +72822,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73166,71 +72840,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15775] = 30, + [10707] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + anon_sym_for, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(2237), 1, + sym_identifier, + ACTIONS(2239), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2241), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(2245), 1, + anon_sym_STAR, + ACTIONS(2249), 1, + anon_sym_default, + ACTIONS(2251), 1, + anon_sym_fn, + ACTIONS(2253), 1, + anon_sym_impl, + ACTIONS(2255), 1, + anon_sym_union, + ACTIONS(2257), 1, + anon_sym_BANG, + ACTIONS(2259), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(2261), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2263), 1, + anon_sym_dyn, + ACTIONS(2269), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, + STATE(714), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(759), 1, sym_generic_type, - STATE(1638), 1, + STATE(985), 1, sym__type, - STATE(2157), 1, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2195), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2226), 1, sym_lifetime, - STATE(2206), 1, + STATE(2255), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2345), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2346), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2267), 3, + sym_self, + sym_super, + sym_crate, + STATE(1010), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73242,7 +72919,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2247), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73260,71 +72937,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15899] = 30, + [10836] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1656), 1, + STATE(1934), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73336,7 +73016,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73354,71 +73034,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16023] = 30, + [10965] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1521), 1, + STATE(1775), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73430,7 +73113,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73448,71 +73131,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16147] = 30, + [11094] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + ACTIONS(2322), 1, + sym_identifier, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1469), 1, sym_scoped_type_identifier, - STATE(1288), 1, - sym_generic_type, - STATE(2031), 1, + STATE(1634), 1, sym__type, - STATE(2157), 1, + STATE(1635), 1, + sym_generic_type, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73524,7 +73210,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73542,71 +73228,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16271] = 30, + [11223] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1971), 1, + STATE(2054), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73618,7 +73307,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73636,71 +73325,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16395] = 30, + [11352] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1978), 1, + STATE(1971), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73712,7 +73404,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73730,71 +73422,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16519] = 30, + [11481] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1992), 1, + STATE(1595), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73806,7 +73501,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73824,71 +73519,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16643] = 30, + [11610] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2288), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(1222), 1, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + STATE(1200), 1, sym_for_lifetimes, - STATE(1472), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1654), 1, + STATE(1301), 1, sym_generic_type, - STATE(1655), 1, + STATE(1503), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73900,7 +73598,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73918,71 +73616,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16767] = 30, + [11739] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1540), 1, + STATE(1946), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73994,7 +73695,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74012,71 +73713,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16891] = 30, + [11868] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1639), 1, + STATE(1969), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74088,7 +73792,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74106,71 +73810,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17015] = 30, + [11997] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1633), 1, + STATE(1948), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74182,7 +73889,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74200,71 +73907,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17139] = 30, + [12126] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + anon_sym_for, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(2237), 1, + sym_identifier, + ACTIONS(2239), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2241), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(2245), 1, + anon_sym_STAR, + ACTIONS(2249), 1, + anon_sym_default, + ACTIONS(2251), 1, + anon_sym_fn, + ACTIONS(2253), 1, + anon_sym_impl, + ACTIONS(2255), 1, + anon_sym_union, + ACTIONS(2257), 1, + anon_sym_BANG, + ACTIONS(2259), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(2261), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2263), 1, + anon_sym_dyn, + ACTIONS(2269), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, + STATE(714), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(759), 1, sym_generic_type, - STATE(1958), 1, + STATE(1028), 1, sym__type, - STATE(2157), 1, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2195), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2226), 1, sym_lifetime, - STATE(2206), 1, + STATE(2255), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2345), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2346), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2267), 3, + sym_self, + sym_super, + sym_crate, + STATE(1010), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74276,7 +73986,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2247), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74294,71 +74004,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17263] = 30, + [12255] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1955), 1, + STATE(1786), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74370,7 +74083,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74388,71 +74101,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17387] = 30, + [12384] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(2047), 1, + STATE(2129), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74464,7 +74180,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74482,71 +74198,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17511] = 30, + [12513] = 33, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + ACTIONS(2324), 1, + sym_self, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1631), 1, + STATE(1306), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, + ACTIONS(888), 2, sym_super, sym_crate, - ACTIONS(670), 4, + STATE(1466), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74558,7 +74278,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74576,71 +74296,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17635] = 30, + [12644] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(2088), 1, + STATE(1904), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74652,7 +74375,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74670,71 +74393,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17759] = 30, + [12773] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + ACTIONS(2326), 1, + sym_identifier, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1475), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1613), 1, sym_generic_type, - STATE(1630), 1, + STATE(1631), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74746,7 +74472,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74764,71 +74490,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17883] = 30, + [12902] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1940), 1, + STATE(1536), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74840,7 +74569,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74858,71 +74587,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18007] = 30, + [13031] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, - anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, ACTIONS(680), 1, - anon_sym_impl, - ACTIONS(686), 1, - anon_sym_BANG, - ACTIONS(690), 1, + anon_sym_for, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(2237), 1, + sym_identifier, + ACTIONS(2239), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2241), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(2245), 1, + anon_sym_STAR, + ACTIONS(2249), 1, + anon_sym_default, + ACTIONS(2251), 1, + anon_sym_fn, + ACTIONS(2253), 1, + anon_sym_impl, + ACTIONS(2255), 1, + anon_sym_union, + ACTIONS(2257), 1, + anon_sym_BANG, + ACTIONS(2259), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(2261), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2263), 1, + anon_sym_dyn, + ACTIONS(2269), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1259), 1, + STATE(714), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(759), 1, sym_generic_type, - STATE(2063), 1, + STATE(999), 1, sym__type, - STATE(2157), 1, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2195), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2226), 1, sym_lifetime, - STATE(2206), 1, + STATE(2255), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2345), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2346), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(2267), 3, + sym_self, + sym_super, + sym_crate, + STATE(1010), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74934,7 +74666,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2247), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74952,71 +74684,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18131] = 30, + [13160] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1604), 1, + STATE(1578), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75028,7 +74763,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75046,71 +74781,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18255] = 30, + [13289] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1615), 1, + STATE(2089), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75122,7 +74860,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75140,71 +74878,171 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18379] = 30, + [13418] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(680), 1, + anon_sym_for, + ACTIONS(692), 1, + anon_sym_extern, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(2237), 1, + sym_identifier, + ACTIONS(2239), 1, + anon_sym_LPAREN, + ACTIONS(2241), 1, + anon_sym_LBRACK, + ACTIONS(2245), 1, anon_sym_STAR, - ACTIONS(676), 1, + ACTIONS(2249), 1, + anon_sym_default, + ACTIONS(2251), 1, anon_sym_fn, + ACTIONS(2253), 1, + anon_sym_impl, + ACTIONS(2255), 1, + anon_sym_union, + ACTIONS(2257), 1, + anon_sym_BANG, + ACTIONS(2259), 1, + anon_sym_COLON_COLON, + ACTIONS(2261), 1, + anon_sym_AMP, + ACTIONS(2263), 1, + anon_sym_dyn, + ACTIONS(2269), 1, + sym_metavariable, + STATE(714), 1, + sym_scoped_type_identifier, + STATE(759), 1, + sym_generic_type, + STATE(1050), 1, + sym__type, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2195), 1, + sym_scoped_identifier, + STATE(2226), 1, + sym_lifetime, + STATE(2255), 1, + sym_function_modifiers, + STATE(2345), 1, + sym_bracketed_type, + STATE(2346), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1466), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(672), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2267), 3, + sym_self, + sym_super, + sym_crate, + STATE(1010), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2247), 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, + [13547] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(666), 1, + anon_sym_STAR, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1553), 1, + STATE(1924), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75216,7 +75054,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75234,71 +75072,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18503] = 30, + [13676] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1927), 1, + STATE(1990), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75310,7 +75151,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75328,71 +75169,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18627] = 30, + [13805] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(664), 1, + ACTIONS(666), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_fn, ACTIONS(678), 1, - anon_sym_for, + anon_sym_fn, ACTIONS(680), 1, + anon_sym_for, + ACTIONS(682), 1, anon_sym_impl, - ACTIONS(686), 1, + ACTIONS(688), 1, anon_sym_BANG, - ACTIONS(690), 1, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1259), 1, + STATE(1262), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1301), 1, sym_generic_type, - STATE(1617), 1, + STATE(1603), 1, sym__type, - STATE(2157), 1, + STATE(2176), 1, sym_scoped_identifier, - STATE(2204), 1, - sym_lifetime, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, + STATE(2281), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - STATE(1332), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1305), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75404,7 +75248,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75422,29 +75266,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18751] = 3, + [13934] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2292), 17, + ACTIONS(1138), 20, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_STAR, + anon_sym_POUND, anon_sym_BANG, - anon_sym_DASH_GT, + anon_sym_COMMA, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2290), 39, + ACTIONS(1140), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75476,7 +75323,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, - anon_sym_DASH, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, anon_sym_move, anon_sym_true, anon_sym_false, @@ -75484,11 +75333,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18816] = 3, + [14004] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(840), 17, + ACTIONS(858), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -75506,7 +75355,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(838), 39, + ACTIONS(856), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75546,30 +75395,29 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18881] = 3, + [14069] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(465), 18, + ACTIONS(2330), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, + anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2294), 38, + ACTIONS(2328), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75601,6 +75449,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, + anon_sym_DASH, anon_sym_move, anon_sym_true, anon_sym_false, @@ -75608,11 +75457,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18946] = 3, + [14134] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2298), 17, + ACTIONS(2334), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -75630,7 +75479,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2296), 39, + ACTIONS(2332), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75670,11 +75519,73 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19011] = 3, + [14199] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1157), 15, + ACTIONS(467), 18, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2336), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14264] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1138), 15, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -75690,7 +75601,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1159), 38, + ACTIONS(1140), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75729,82 +75640,23 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19073] = 9, - ACTIONS(2302), 1, + [14326] = 9, + ACTIONS(2340), 1, anon_sym_LPAREN, - ACTIONS(2306), 1, + ACTIONS(2344), 1, anon_sym_BANG, - ACTIONS(2308), 1, + ACTIONS(2346), 1, anon_sym_COLON_COLON, - ACTIONS(2310), 1, + ACTIONS(2348), 1, anon_sym_LT2, - STATE(825), 1, - sym_parameters, - STATE(854), 1, + STATE(781), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2304), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2300), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [19143] = 8, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2308), 1, - anon_sym_COLON_COLON, - ACTIONS(2310), 1, - anon_sym_LT2, - STATE(825), 1, + STATE(878), 1, sym_parameters, - STATE(854), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2314), 17, + ACTIONS(2342), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -75822,7 +75674,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2312), 26, + ACTIONS(2338), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -75849,74 +75701,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [19210] = 8, - ACTIONS(2302), 1, + [14396] = 8, + ACTIONS(2340), 1, anon_sym_LPAREN, - ACTIONS(2308), 1, + ACTIONS(2346), 1, anon_sym_COLON_COLON, - ACTIONS(2310), 1, + ACTIONS(2348), 1, anon_sym_LT2, - STATE(825), 1, - sym_parameters, - STATE(854), 1, + STATE(781), 1, sym_type_arguments, + STATE(878), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2318), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2316), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [19277] = 5, - ACTIONS(2324), 1, - anon_sym_BANG, - ACTIONS(2326), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2322), 17, + ACTIONS(2352), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -75934,9 +75733,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2320), 28, + ACTIONS(2350), 26, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -75947,7 +75745,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -75963,19 +75760,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [19337] = 7, - ACTIONS(2302), 1, + [14463] = 8, + ACTIONS(2340), 1, anon_sym_LPAREN, - ACTIONS(2310), 1, + ACTIONS(2346), 1, + anon_sym_COLON_COLON, + ACTIONS(2348), 1, anon_sym_LT2, - STATE(819), 1, - sym_parameters, - STATE(851), 1, + STATE(781), 1, sym_type_arguments, + STATE(878), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2330), 17, + ACTIONS(2356), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -75993,7 +75792,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2328), 26, + ACTIONS(2354), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -76020,19 +75819,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [19401] = 7, - ACTIONS(2306), 1, + [14530] = 5, + ACTIONS(2362), 1, anon_sym_BANG, - ACTIONS(2332), 1, - anon_sym_LBRACE, - ACTIONS(2334), 1, + ACTIONS(2364), 1, anon_sym_COLON_COLON, - STATE(983), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2360), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -76043,15 +75838,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(453), 28, + ACTIONS(2358), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -76060,12 +75858,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -76075,21 +75873,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19465] = 7, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2310), 1, - anon_sym_LT2, - STATE(819), 1, - sym_parameters, - STATE(851), 1, - sym_type_arguments, + [14590] = 5, + ACTIONS(2370), 1, + anon_sym_BANG, + ACTIONS(2372), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2338), 17, + ACTIONS(2368), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -76107,8 +75900,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2336), 26, + ACTIONS(2366), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -76119,6 +75913,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -76134,15 +75929,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [19529] = 5, - ACTIONS(2344), 1, + [14650] = 5, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2346), 1, + ACTIONS(2380), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2342), 17, + ACTIONS(2376), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -76160,7 +75955,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2340), 28, + ACTIONS(2374), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -76189,15 +75984,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [19589] = 5, - ACTIONS(2352), 1, + [14710] = 5, + ACTIONS(2386), 1, anon_sym_BANG, - ACTIONS(2354), 1, + ACTIONS(2388), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2350), 17, + ACTIONS(2384), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -76215,7 +76010,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2348), 28, + ACTIONS(2382), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -76244,68 +76039,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [19649] = 7, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2310), 1, - anon_sym_LT2, - STATE(819), 1, - sym_parameters, - STATE(851), 1, - sym_type_arguments, + [14770] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2358), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2356), 26, + ACTIONS(1588), 9, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [19713] = 3, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1590), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14826] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1468), 9, + ACTIONS(1931), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76315,7 +76106,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1470), 38, + ACTIONS(1933), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76354,15 +76145,19 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19769] = 5, - ACTIONS(2364), 1, + [14882] = 7, + ACTIONS(2344), 1, anon_sym_BANG, - ACTIONS(2366), 1, + ACTIONS(2390), 1, + anon_sym_LBRACE, + ACTIONS(2392), 1, anon_sym_COLON_COLON, + STATE(966), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2362), 17, + ACTIONS(455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -76373,18 +76168,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2360), 28, + ACTIONS(453), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -76393,12 +76185,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -76408,12 +76200,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19829] = 3, + [14946] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1612), 9, + ACTIONS(1414), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76423,7 +76216,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1614), 38, + ACTIONS(1416), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76462,11 +76255,125 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19885] = 3, + [15002] = 7, + ACTIONS(2340), 1, + anon_sym_LPAREN, + ACTIONS(2348), 1, + anon_sym_LT2, + STATE(784), 1, + sym_type_arguments, + STATE(889), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2396), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2394), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [15066] = 7, + ACTIONS(2340), 1, + anon_sym_LPAREN, + ACTIONS(2348), 1, + anon_sym_LT2, + STATE(784), 1, + sym_type_arguments, + STATE(889), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2400), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2398), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [15130] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1772), 9, + ACTIONS(1394), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76476,7 +76383,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1774), 38, + ACTIONS(1396), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76515,11 +76422,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19941] = 3, + [15186] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1846), 9, + ACTIONS(1418), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76529,7 +76436,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1848), 38, + ACTIONS(1420), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76568,69 +76475,74 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19997] = 3, + [15242] = 7, + ACTIONS(2340), 1, + anon_sym_LPAREN, + ACTIONS(2348), 1, + anon_sym_LT2, + STATE(784), 1, + sym_type_arguments, + STATE(889), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1105), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2404), 17, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, - anon_sym_COMMA, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1107), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20053] = 4, - ACTIONS(2368), 1, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2402), 26, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [15306] = 5, + ACTIONS(2406), 1, + anon_sym_else, + STATE(992), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 16, + ACTIONS(385), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -76644,10 +76556,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2366), 29, + ACTIONS(383), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -76655,7 +76568,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -76674,17 +76586,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20110] = 5, - ACTIONS(2370), 1, - anon_sym_else, - STATE(988), 1, - sym_else_clause, + [15365] = 5, + ACTIONS(2414), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(379), 15, + ACTIONS(2412), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(2410), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -76698,18 +76616,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(377), 29, + ACTIONS(2408), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -76728,16 +76640,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20169] = 4, - ACTIONS(2372), 1, - anon_sym_LBRACE, + [15424] = 5, + ACTIONS(2420), 1, + anon_sym_SQUOTE, + STATE(1003), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2324), 16, + ACTIONS(2418), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -76751,10 +76664,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2326), 29, + ACTIONS(2416), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -76762,7 +76676,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -76781,13 +76694,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20226] = 4, - ACTIONS(2374), 1, + [15483] = 4, + ACTIONS(2422), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2352), 16, + ACTIONS(2378), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -76804,7 +76717,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2354), 29, + ACTIONS(2380), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -76834,11 +76747,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20283] = 3, + [15540] = 4, + ACTIONS(2424), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2324), 16, + ACTIONS(2362), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -76855,11 +76770,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2326), 30, + ACTIONS(2364), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -76886,17 +76800,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20338] = 5, - ACTIONS(2380), 1, - anon_sym_SQUOTE, - STATE(1028), 1, - sym_loop_label, + [15597] = 4, + ACTIONS(2426), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2378), 15, + ACTIONS(2386), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -76910,11 +76823,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2376), 29, + ACTIONS(2388), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -76922,6 +76834,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -76940,13 +76853,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20397] = 4, - ACTIONS(2382), 1, - anon_sym_LBRACE, + [15654] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2344), 16, + ACTIONS(2386), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -76963,10 +76874,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2346), 29, + ACTIONS(2388), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -76993,17 +76905,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20454] = 5, - ACTIONS(2370), 1, - anon_sym_else, - STATE(987), 1, - sym_else_clause, + [15709] = 4, + ACTIONS(2428), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(373), 15, + ACTIONS(2370), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -77017,11 +76928,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(371), 29, + ACTIONS(2372), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -77029,6 +76939,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -77047,64 +76958,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20513] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1157), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1159), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20567] = 4, - ACTIONS(2384), 1, - anon_sym_COLON_COLON, + [15766] = 5, + ACTIONS(2406), 1, + anon_sym_else, + STATE(968), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2358), 15, + ACTIONS(373), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -77120,7 +76982,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2356), 29, + ACTIONS(371), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -77150,62 +77012,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20623] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1412), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1414), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20677] = 3, + [15825] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1161), 7, + ACTIONS(1584), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77213,7 +77024,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1163), 38, + ACTIONS(1586), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77252,63 +77063,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20731] = 4, - ACTIONS(2390), 1, - anon_sym_DASH_GT, + [15879] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2386), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20787] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1552), 7, + ACTIONS(1775), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77316,7 +77075,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1554), 38, + ACTIONS(1777), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77355,21 +77114,64 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20841] = 4, + [15933] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 6, + ACTIONS(1799), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1801), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, anon_sym_unsafe, + anon_sym_use, anon_sym_extern, - ACTIONS(2394), 16, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15987] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(395), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -77383,12 +77185,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2392), 23, + ACTIONS(393), 30, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -77407,11 +77215,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20897] = 3, + anon_sym_else, + [16041] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1544), 7, + ACTIONS(1783), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77419,7 +77228,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1546), 38, + ACTIONS(1785), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77458,11 +77267,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20951] = 3, + [16095] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1540), 7, + ACTIONS(1771), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77470,7 +77279,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1542), 38, + ACTIONS(1773), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77509,11 +77318,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21005] = 3, + [16149] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1536), 7, + ACTIONS(1767), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77521,7 +77330,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1538), 38, + ACTIONS(1769), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77560,11 +77369,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21059] = 3, + [16203] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1600), 7, + ACTIONS(1138), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77572,7 +77381,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1602), 38, + ACTIONS(1140), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77611,11 +77420,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21113] = 3, + [16257] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1516), 7, + ACTIONS(1763), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77623,7 +77432,109 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1518), 38, + ACTIONS(1765), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16311] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1755), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1757), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16365] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1751), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1753), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77662,11 +77573,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21167] = 3, + [16419] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1384), 7, + ACTIONS(1747), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77674,7 +77585,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1386), 38, + ACTIONS(1749), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77713,11 +77624,65 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21221] = 3, + [16473] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2322), 17, + ACTIONS(586), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(588), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16527] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2432), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2434), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -77728,18 +77693,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2320), 28, + ACTIONS(2430), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -77748,12 +77710,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -77763,12 +77725,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21275] = 3, + [16583] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1356), 7, + ACTIONS(1731), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77776,7 +77739,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1358), 38, + ACTIONS(1733), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77815,11 +77778,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21329] = 3, + [16637] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1364), 7, + ACTIONS(1723), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77827,7 +77790,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1366), 38, + ACTIONS(1725), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77866,11 +77829,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21383] = 3, + [16691] = 4, + ACTIONS(2436), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2396), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2394), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16747] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1372), 7, + ACTIONS(1684), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77878,7 +77893,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1374), 38, + ACTIONS(1686), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77917,11 +77932,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21437] = 3, + [16801] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1266), 7, + ACTIONS(1668), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77929,7 +77944,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1268), 38, + ACTIONS(1670), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77968,62 +77983,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21491] = 3, + [16855] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2400), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2398), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [21545] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1692), 7, + ACTIONS(1652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78031,7 +77995,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1694), 38, + ACTIONS(1654), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78070,11 +78034,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21599] = 3, + [16909] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1704), 7, + ACTIONS(1648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78082,7 +78046,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1706), 38, + ACTIONS(1650), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78121,11 +78085,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21653] = 3, + [16963] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1616), 7, + ACTIONS(1644), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78133,7 +78097,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1618), 38, + ACTIONS(1646), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78172,62 +78136,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21707] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(393), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(391), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_else, - [21761] = 3, + [17017] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1320), 7, + ACTIONS(1640), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78235,7 +78148,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1322), 38, + ACTIONS(1642), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78274,11 +78187,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21815] = 3, + [17071] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1720), 7, + ACTIONS(1636), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78286,7 +78199,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1722), 38, + ACTIONS(1638), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78325,11 +78238,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21869] = 3, + [17125] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1492), 7, + ACTIONS(1632), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78337,7 +78250,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1494), 38, + ACTIONS(1634), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78376,11 +78289,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21923] = 3, + [17179] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1798), 7, + ACTIONS(1616), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78388,7 +78301,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1800), 38, + ACTIONS(1618), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78427,11 +78340,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21977] = 3, + [17233] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1368), 7, + ACTIONS(1612), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78439,7 +78352,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1370), 38, + ACTIONS(1614), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78478,11 +78391,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22031] = 3, + [17287] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1786), 7, + ACTIONS(1608), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78490,7 +78403,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1788), 38, + ACTIONS(1610), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78529,11 +78442,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22085] = 3, + [17341] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1778), 7, + ACTIONS(1600), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78541,7 +78454,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1780), 38, + ACTIONS(1602), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78580,11 +78493,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22139] = 3, + [17395] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1376), 7, + ACTIONS(1596), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78592,7 +78505,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1378), 38, + ACTIONS(1598), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78631,113 +78544,65 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22193] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1069), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + [17449] = 4, + ACTIONS(2438), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1071), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22247] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1153), 7, + ACTIONS(2396), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2394), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17505] = 4, + ACTIONS(2440), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1155), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22301] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2404), 15, + ACTIONS(2396), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -78753,7 +78618,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2402), 30, + ACTIONS(2394), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -78765,7 +78630,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -78784,11 +78648,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22355] = 3, + [17561] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1206), 7, + ACTIONS(1592), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78796,7 +78660,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1208), 38, + ACTIONS(1594), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78835,11 +78699,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22409] = 3, + [17615] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1210), 7, + ACTIONS(1580), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78847,7 +78711,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1212), 38, + ACTIONS(1582), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78886,11 +78750,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22463] = 3, + [17669] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1488), 7, + ACTIONS(1500), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78898,7 +78762,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1490), 38, + ACTIONS(1502), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78937,14 +78801,64 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22517] = 4, + [17723] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2408), 2, - anon_sym_LBRACE, + ACTIONS(1496), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(2410), 15, + sym_metavariable, + ACTIONS(1498), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17777] = 4, + STATE(962), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2444), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -78960,10 +78874,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2406), 28, + ACTIONS(2442), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -78989,11 +78904,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22573] = 3, + [17833] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1484), 7, + ACTIONS(1532), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79001,7 +78916,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1486), 38, + ACTIONS(1534), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79040,11 +78955,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22627] = 3, + [17887] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1480), 7, + ACTIONS(1520), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79052,7 +78967,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1482), 38, + ACTIONS(1522), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79091,62 +79006,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22681] = 3, + [17941] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1448), 7, + ACTIONS(2448), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2446), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1450), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22735] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17995] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1444), 7, + ACTIONS(1516), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79154,7 +79069,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1446), 38, + ACTIONS(1518), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79193,62 +79108,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22789] = 3, + [18049] = 4, + ACTIONS(2454), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1432), 7, + ACTIONS(2452), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2450), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1434), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22843] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18105] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1428), 7, + ACTIONS(1118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79256,7 +79172,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1430), 38, + ACTIONS(1120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79295,11 +79211,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22897] = 3, + [18159] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1246), 7, + ACTIONS(1807), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79307,7 +79223,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1248), 38, + ACTIONS(1809), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79346,11 +79262,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22951] = 3, + [18213] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1420), 7, + ACTIONS(1492), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79358,7 +79274,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1422), 38, + ACTIONS(1494), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79397,64 +79313,65 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23005] = 3, + [18267] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1294), 7, + ACTIONS(2458), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2456), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1296), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23059] = 4, - ACTIONS(2412), 1, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18321] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2460), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2434), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -79470,11 +79387,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 29, + ACTIONS(2430), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -79500,11 +79416,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23115] = 3, + [18377] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1282), 7, + ACTIONS(1843), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79512,7 +79428,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1284), 38, + ACTIONS(1845), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79551,11 +79467,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23169] = 3, + [18431] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1596), 7, + ACTIONS(1488), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79563,7 +79479,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1598), 38, + ACTIONS(1490), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79602,11 +79518,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23223] = 3, + [18485] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1250), 7, + ACTIONS(391), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(389), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [18539] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1512), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79614,7 +79581,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1252), 38, + ACTIONS(1514), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79653,11 +79620,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23277] = 3, + [18593] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1242), 7, + ACTIONS(1859), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79665,7 +79632,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1244), 38, + ACTIONS(1861), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79704,11 +79671,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23331] = 3, + [18647] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1604), 7, + ACTIONS(1190), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79716,7 +79683,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1606), 38, + ACTIONS(1192), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79755,11 +79722,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23385] = 3, + [18701] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1238), 7, + ACTIONS(2464), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2462), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18755] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1468), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79767,7 +79785,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1240), 38, + ACTIONS(1470), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79806,11 +79824,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23439] = 3, + [18809] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1234), 7, + ACTIONS(1604), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79818,7 +79836,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1236), 38, + ACTIONS(1606), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79857,11 +79875,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23493] = 3, + [18863] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2416), 15, + ACTIONS(2468), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -79877,7 +79895,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2414), 30, + ACTIONS(2466), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -79908,11 +79926,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23547] = 3, + [18917] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2472), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2470), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18971] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1870), 7, + ACTIONS(1911), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79920,7 +79989,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1872), 38, + ACTIONS(1913), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79959,11 +80028,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23601] = 3, + [19025] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1592), 7, + ACTIONS(1422), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79971,7 +80040,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1594), 38, + ACTIONS(1424), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80010,11 +80079,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23655] = 3, + [19079] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1230), 7, + ACTIONS(1390), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80022,7 +80091,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1232), 38, + ACTIONS(1392), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80061,11 +80130,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23709] = 3, + [19133] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1226), 7, + ACTIONS(1382), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80073,7 +80142,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1228), 38, + ACTIONS(1384), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80112,11 +80181,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23763] = 3, + [19187] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1222), 7, + ACTIONS(1915), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80124,7 +80193,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1224), 38, + ACTIONS(1917), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80163,11 +80232,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23817] = 3, + [19241] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1290), 7, + ACTIONS(1927), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80175,7 +80244,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1292), 38, + ACTIONS(1929), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80214,11 +80283,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23871] = 3, + [19295] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1218), 7, + ACTIONS(1194), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80226,7 +80295,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1220), 38, + ACTIONS(1196), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80265,11 +80334,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23925] = 3, + [19349] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1882), 7, + ACTIONS(2476), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2474), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19403] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1378), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80277,7 +80397,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1884), 38, + ACTIONS(1380), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80316,11 +80436,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23979] = 3, + [19457] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1214), 7, + ACTIONS(2480), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2478), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19511] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1452), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80328,7 +80499,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1216), 38, + ACTIONS(1454), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80367,11 +80538,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24033] = 3, + [19565] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1588), 7, + ACTIONS(1444), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80379,7 +80550,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1590), 38, + ACTIONS(1446), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80418,11 +80589,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24087] = 3, + [19619] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1810), 7, + ACTIONS(1434), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80430,7 +80601,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1812), 38, + ACTIONS(1436), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80469,63 +80640,113 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24141] = 4, - STATE(1008), 1, - sym_arguments, + [19673] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2420), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1430), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2418), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1432), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19727] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1370), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24197] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1372), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19781] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1202), 7, + ACTIONS(1358), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80533,7 +80754,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1204), 38, + ACTIONS(1360), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80572,11 +80793,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24251] = 3, + [19835] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1584), 7, + ACTIONS(1787), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80584,7 +80805,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1586), 38, + ACTIONS(1789), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80623,11 +80844,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24305] = 3, + [19889] = 4, + ACTIONS(2486), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(812), 15, + ACTIONS(2484), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80643,7 +80866,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(814), 30, + ACTIONS(2482), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -80652,7 +80875,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, @@ -80674,11 +80896,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24359] = 3, + [19945] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1576), 7, + ACTIONS(1346), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80686,7 +80908,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1578), 38, + ACTIONS(1348), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80725,11 +80947,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24413] = 3, + [19999] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1572), 7, + ACTIONS(1743), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80737,7 +80959,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1574), 38, + ACTIONS(1745), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80776,11 +80998,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24467] = 3, + [20053] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1316), 7, + ACTIONS(1330), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80788,7 +81010,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1318), 38, + ACTIONS(1332), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80827,11 +81049,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24521] = 3, + [20107] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1324), 7, + ACTIONS(1318), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80839,7 +81061,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1326), 38, + ACTIONS(1320), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80878,11 +81100,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24575] = 3, + [20161] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1198), 7, + ACTIONS(1739), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80890,7 +81112,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1200), 38, + ACTIONS(1741), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80929,11 +81151,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24629] = 3, + [20215] = 4, + ACTIONS(2488), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1194), 7, + ACTIONS(455), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(453), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20271] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(582), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80941,7 +81215,110 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1196), 38, + ACTIONS(584), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20325] = 4, + ACTIONS(2440), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2404), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2402), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20381] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1690), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1692), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80980,11 +81357,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24683] = 3, + [20435] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1145), 7, + ACTIONS(1680), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80992,7 +81369,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1147), 38, + ACTIONS(1682), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81031,11 +81408,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24737] = 3, + [20489] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1141), 7, + ACTIONS(1664), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81043,7 +81420,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1143), 38, + ACTIONS(1666), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81082,11 +81459,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24791] = 3, + [20543] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1328), 7, + ACTIONS(2492), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2490), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20597] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(457), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81094,7 +81522,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1330), 38, + ACTIONS(459), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81133,11 +81561,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24845] = 3, + [20651] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1133), 7, + ACTIONS(1402), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81145,7 +81573,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1135), 38, + ACTIONS(1404), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81184,11 +81612,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24899] = 3, + [20705] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1640), 7, + ACTIONS(1398), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81196,7 +81624,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1642), 38, + ACTIONS(1400), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81235,11 +81663,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24953] = 3, + [20759] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1564), 7, + ACTIONS(1386), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81247,7 +81675,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1566), 38, + ACTIONS(1388), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81286,11 +81714,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25007] = 3, + [20813] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1548), 7, + ACTIONS(1326), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81298,7 +81726,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1550), 38, + ACTIONS(1328), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20867] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1298), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1300), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81337,11 +81816,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25061] = 3, + [20921] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1532), 7, + ACTIONS(1628), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81349,7 +81828,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1534), 38, + ACTIONS(1630), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81388,11 +81867,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25115] = 3, + [20975] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1512), 7, + ACTIONS(1294), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81400,7 +81879,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1514), 38, + ACTIONS(1296), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81439,11 +81918,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25169] = 3, + [21029] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1500), 7, + ACTIONS(1266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81451,7 +81930,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1502), 38, + ACTIONS(1268), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81490,11 +81969,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25223] = 3, + [21083] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1476), 7, + ACTIONS(1366), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81502,7 +81981,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1478), 38, + ACTIONS(1368), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81541,11 +82020,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25277] = 3, + [21137] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1472), 7, + ACTIONS(1214), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81553,7 +82032,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1474), 38, + ACTIONS(1216), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81592,11 +82071,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25331] = 3, + [21191] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1129), 7, + ACTIONS(1198), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81604,7 +82083,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1131), 38, + ACTIONS(1200), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81643,11 +82122,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25385] = 3, + [21245] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1560), 7, + ACTIONS(1242), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81655,7 +82134,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1562), 38, + ACTIONS(1244), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81694,11 +82173,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25439] = 3, + [21299] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1452), 7, + ACTIONS(1234), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81706,7 +82185,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1454), 38, + ACTIONS(1236), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81745,63 +82224,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25493] = 4, - ACTIONS(2426), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2424), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2422), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25549] = 3, + [21353] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1121), 7, + ACTIONS(1314), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81809,7 +82236,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1123), 38, + ACTIONS(1316), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81848,63 +82275,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25603] = 4, - ACTIONS(2432), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2430), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2428), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25659] = 3, + [21407] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1338), 7, + ACTIONS(1158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81912,7 +82287,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1340), 38, + ACTIONS(1160), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81951,11 +82326,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25713] = 3, + [21461] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1416), 7, + ACTIONS(1310), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81963,7 +82338,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1418), 38, + ACTIONS(1312), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82002,168 +82377,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25767] = 5, - ACTIONS(2306), 1, - anon_sym_BANG, - ACTIONS(2434), 1, - anon_sym_COLON_COLON, + [21515] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(453), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25825] = 4, - ACTIONS(2440), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2438), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2436), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25881] = 4, - ACTIONS(2446), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2444), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2442), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25937] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1608), 7, + ACTIONS(1174), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82171,7 +82389,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1610), 38, + ACTIONS(1176), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82210,11 +82428,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25991] = 3, + [21569] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1109), 7, + ACTIONS(1302), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82222,7 +82440,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1111), 38, + ACTIONS(1304), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82261,63 +82479,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26045] = 4, - ACTIONS(2448), 1, - anon_sym_COLON_COLON, + [21623] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2330), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2328), 29, + ACTIONS(1186), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26101] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1188), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21677] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1620), 7, + ACTIONS(1282), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82325,7 +82542,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1622), 38, + ACTIONS(1284), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82364,11 +82581,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26155] = 3, + [21731] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1097), 7, + ACTIONS(1146), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82376,7 +82593,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1099), 38, + ACTIONS(1148), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82415,11 +82632,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26209] = 3, + [21785] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1348), 7, + ACTIONS(1162), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82427,7 +82644,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1350), 38, + ACTIONS(1164), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82466,11 +82683,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26263] = 3, + [21839] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(566), 7, + ACTIONS(1170), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82478,7 +82695,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(568), 38, + ACTIONS(1172), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82517,11 +82734,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26317] = 3, + [21893] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1093), 7, + ACTIONS(1226), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82529,7 +82746,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1095), 38, + ACTIONS(1228), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82568,11 +82785,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26371] = 3, + [21947] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1073), 7, + ACTIONS(1178), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82580,7 +82797,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1075), 38, + ACTIONS(1180), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82619,11 +82836,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26425] = 3, + [22001] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1308), 7, + ACTIONS(1274), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82631,7 +82848,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1310), 38, + ACTIONS(1276), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82670,11 +82887,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26479] = 3, + [22055] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1822), 7, + ACTIONS(1262), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82682,7 +82899,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1824), 38, + ACTIONS(1264), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82721,11 +82938,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26533] = 3, + [22109] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1380), 7, + ACTIONS(1250), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82733,7 +82950,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1382), 38, + ACTIONS(1252), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82772,114 +82989,113 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26587] = 4, - ACTIONS(2448), 1, - anon_sym_COLON_COLON, + [22163] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2338), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2336), 29, + ACTIONS(1246), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26643] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1248), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22217] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2452), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2450), 30, + ACTIONS(1206), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26697] = 3, + sym_metavariable, + ACTIONS(1208), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22271] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1077), 7, + ACTIONS(393), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82887,7 +83103,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1079), 38, + ACTIONS(395), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82926,11 +83142,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26751] = 3, + [22325] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1081), 7, + ACTIONS(1222), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82938,7 +83154,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1083), 38, + ACTIONS(1224), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82977,11 +83193,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26805] = 3, + [22379] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1085), 7, + ACTIONS(1210), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82989,7 +83205,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1087), 38, + ACTIONS(1212), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83028,166 +83244,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26859] = 3, + [22433] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2456), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2454), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26913] = 4, - ACTIONS(2462), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2460), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2458), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26969] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2464), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2410), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2406), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27025] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1101), 7, + ACTIONS(1218), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83195,7 +83256,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1103), 38, + ACTIONS(1220), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83234,11 +83295,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27079] = 3, + [22487] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1388), 7, + ACTIONS(1903), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83246,7 +83307,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1390), 38, + ACTIONS(1905), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83285,11 +83346,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27133] = 3, + [22541] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1392), 7, + ACTIONS(1254), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83297,7 +83358,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1394), 38, + ACTIONS(1256), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83336,11 +83397,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27187] = 3, + [22595] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1624), 7, + ACTIONS(1258), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83348,7 +83409,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1626), 38, + ACTIONS(1260), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83387,62 +83448,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27241] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2468), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2466), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27295] = 3, + [22649] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1149), 7, + ACTIONS(1150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83450,7 +83460,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1151), 38, + ACTIONS(1152), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83489,11 +83499,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27349] = 3, + [22703] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(578), 7, + ACTIONS(1290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83501,7 +83511,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(580), 38, + ACTIONS(1292), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83540,11 +83550,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27403] = 3, + [22757] = 4, + ACTIONS(2440), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2472), 15, + ACTIONS(2400), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83560,7 +83572,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2470), 30, + ACTIONS(2398), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83572,7 +83584,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -83591,11 +83602,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27457] = 3, + [22813] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1396), 7, + ACTIONS(1334), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83603,7 +83614,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1398), 38, + ACTIONS(1336), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83642,62 +83653,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27511] = 3, + [22867] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1400), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1402), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27565] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1404), 7, + ACTIONS(1338), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83705,7 +83665,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1406), 38, + ACTIONS(1340), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83744,11 +83704,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27619] = 3, + [22921] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1125), 7, + ACTIONS(1350), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83756,7 +83716,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1127), 38, + ACTIONS(1352), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83795,11 +83755,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27673] = 3, + [22975] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1408), 7, + ACTIONS(1354), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83807,7 +83767,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1410), 38, + ACTIONS(1356), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83846,11 +83806,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27727] = 3, + [23029] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(407), 7, + ACTIONS(1142), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83858,7 +83818,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(409), 38, + ACTIONS(1144), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83897,11 +83857,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27781] = 3, + [23083] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1424), 7, + ACTIONS(1362), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83909,7 +83869,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1426), 38, + ACTIONS(1364), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83948,11 +83908,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27835] = 3, + [23137] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1436), 7, + ACTIONS(1374), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83960,7 +83920,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1438), 38, + ACTIONS(1376), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83999,11 +83959,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27889] = 3, + [23191] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1464), 7, + ACTIONS(1182), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84011,7 +83971,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1466), 38, + ACTIONS(1184), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84050,62 +84010,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27943] = 3, + [23245] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(389), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(387), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_else, - [27997] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(395), 7, + ACTIONS(1130), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84113,7 +84022,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(397), 38, + ACTIONS(1132), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84152,11 +84061,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28051] = 3, + [23299] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(387), 7, + ACTIONS(1134), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84164,7 +84073,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(389), 38, + ACTIONS(1136), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84203,11 +84112,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28105] = 3, + [23353] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1274), 7, + ACTIONS(1126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84215,7 +84124,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1276), 38, + ACTIONS(1128), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84254,11 +84163,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28159] = 3, + [23407] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(391), 7, + ACTIONS(1238), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84266,7 +84175,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(393), 38, + ACTIONS(1240), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84305,11 +84214,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28213] = 3, + [23461] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1504), 7, + ACTIONS(1620), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84317,7 +84226,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1506), 38, + ACTIONS(1622), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84356,11 +84265,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28267] = 3, + [23515] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1744), 7, + ACTIONS(1460), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84368,7 +84277,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1746), 38, + ACTIONS(1462), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84407,11 +84316,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28321] = 3, + [23569] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1790), 7, + ACTIONS(1122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84419,7 +84328,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1792), 38, + ACTIONS(1124), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84458,11 +84367,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28375] = 3, + [23623] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1806), 7, + ACTIONS(1803), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84470,7 +84379,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1808), 38, + ACTIONS(1805), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84509,11 +84418,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28429] = 3, + [23677] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(850), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(852), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23731] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1300), 7, + ACTIONS(1564), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84521,7 +84481,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1302), 38, + ACTIONS(1566), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84560,11 +84520,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28483] = 3, + [23785] = 4, + ACTIONS(2498), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1878), 7, + ACTIONS(2496), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2494), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23841] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1202), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84572,7 +84584,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1880), 38, + ACTIONS(1204), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84611,11 +84623,115 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28537] = 3, + [23895] = 4, + ACTIONS(2504), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1568), 7, + ACTIONS(2502), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2500), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23951] = 4, + ACTIONS(2510), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2508), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2506), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24007] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1464), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84623,7 +84739,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1570), 38, + ACTIONS(1466), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84662,62 +84778,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28591] = 3, + [24061] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2476), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2474), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28645] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1862), 7, + ACTIONS(1676), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84725,7 +84790,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1864), 38, + ACTIONS(1678), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84764,11 +84829,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28699] = 3, + [24115] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1858), 7, + ACTIONS(1448), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84776,7 +84841,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1860), 38, + ACTIONS(1450), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84815,11 +84880,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28753] = 3, + [24169] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1854), 7, + ACTIONS(1779), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84827,7 +84892,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1856), 38, + ACTIONS(1781), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84866,11 +84931,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28807] = 3, + [24223] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1850), 7, + ACTIONS(1230), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84878,7 +84943,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1852), 38, + ACTIONS(1232), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84917,11 +84982,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28861] = 3, + [24277] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1304), 7, + ACTIONS(1476), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84929,7 +84994,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1306), 38, + ACTIONS(1478), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84968,11 +85033,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28915] = 3, + [24331] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1344), 7, + ACTIONS(1811), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84980,7 +85045,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1346), 38, + ACTIONS(1813), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85019,11 +85084,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28969] = 3, + [24385] = 4, + ACTIONS(2516), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2480), 15, + ACTIONS(2514), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85039,7 +85106,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2478), 30, + ACTIONS(2512), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85051,7 +85118,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85070,62 +85136,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29023] = 3, + [24441] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1628), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1630), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29077] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1644), 7, + ACTIONS(1278), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85133,7 +85148,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1646), 38, + ACTIONS(1280), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85172,115 +85187,64 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29131] = 3, + [24495] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1648), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2520), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1650), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29185] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1724), 7, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2518), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1726), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29239] = 4, - ACTIONS(2486), 1, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24549] = 4, + ACTIONS(2526), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2484), 15, + ACTIONS(2524), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85296,7 +85260,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2482), 29, + ACTIONS(2522), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85326,11 +85290,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29295] = 3, + [24605] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1113), 7, + ACTIONS(1306), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85338,7 +85302,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1115), 38, + ACTIONS(1308), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85377,11 +85341,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29349] = 3, + [24659] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1834), 7, + ACTIONS(1851), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85389,7 +85353,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1836), 38, + ACTIONS(1853), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85428,11 +85392,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29403] = 3, + [24713] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1117), 7, + ACTIONS(1484), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85440,7 +85404,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1119), 38, + ACTIONS(1486), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85479,11 +85443,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29457] = 3, + [24767] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1728), 7, + ACTIONS(1935), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85491,7 +85455,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1730), 38, + ACTIONS(1937), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85530,11 +85494,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29511] = 3, + [24821] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1830), 7, + ACTIONS(1899), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85542,7 +85506,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1832), 38, + ACTIONS(1901), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85581,63 +85545,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29565] = 4, - ACTIONS(2448), 1, - anon_sym_COLON_COLON, + [24875] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2358), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2356), 29, + ACTIONS(389), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29621] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(391), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24929] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1632), 7, + ACTIONS(1322), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85645,7 +85608,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1634), 38, + ACTIONS(1324), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85684,11 +85647,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29675] = 3, + [24983] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1826), 7, + ACTIONS(1879), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85696,7 +85659,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1828), 38, + ACTIONS(1881), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85735,11 +85698,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29729] = 3, + [25037] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2490), 15, + ACTIONS(2384), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85750,12 +85713,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2488), 30, + ACTIONS(2382), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85767,14 +85732,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -85784,13 +85748,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29783] = 3, + [25091] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1818), 7, + ACTIONS(1342), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85798,7 +85761,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1820), 38, + ACTIONS(1344), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85837,11 +85800,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29837] = 3, + [25145] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1636), 7, + ACTIONS(1871), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85849,7 +85812,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1638), 38, + ACTIONS(1873), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85888,11 +85851,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29891] = 3, + [25199] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1496), 7, + ACTIONS(1504), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85900,7 +85863,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1498), 38, + ACTIONS(1506), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85939,11 +85902,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29945] = 3, + [25253] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1814), 7, + ACTIONS(1508), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85951,7 +85914,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1816), 38, + ACTIONS(1510), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85990,11 +85953,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29999] = 3, + [25307] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1764), 7, + ACTIONS(1406), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86002,7 +85965,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1766), 38, + ACTIONS(1408), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86041,11 +86004,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30053] = 3, + [25361] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1760), 7, + ACTIONS(1528), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86053,7 +86016,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1762), 38, + ACTIONS(1530), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86092,63 +86055,164 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30107] = 4, - ACTIONS(2492), 1, + [25415] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1548), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1550), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25469] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2358), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1624), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2356), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1626), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25523] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1727), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30163] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1729), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25577] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1360), 7, + ACTIONS(1735), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86156,7 +86220,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1362), 38, + ACTIONS(1737), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86195,11 +86259,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30217] = 3, + [25631] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1756), 7, + ACTIONS(397), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86207,7 +86271,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1758), 38, + ACTIONS(399), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86246,11 +86310,64 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30271] = 3, + [25685] = 5, + ACTIONS(2344), 1, + anon_sym_BANG, + ACTIONS(2528), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(455), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(453), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25743] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1752), 7, + ACTIONS(1656), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86258,7 +86375,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1754), 38, + ACTIONS(1658), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86297,11 +86414,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30325] = 3, + [25797] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1556), 7, + ACTIONS(1759), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86309,7 +86426,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1558), 38, + ACTIONS(1761), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86348,11 +86465,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30379] = 3, + [25851] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1508), 7, + ACTIONS(1538), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86360,7 +86477,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1510), 38, + ACTIONS(1540), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86399,11 +86516,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30433] = 3, + [25905] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1528), 7, + ACTIONS(1791), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86411,7 +86528,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1530), 38, + ACTIONS(1793), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86450,11 +86567,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30487] = 3, + [25959] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(397), 15, + ACTIONS(2532), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86470,7 +86587,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(395), 30, + ACTIONS(2530), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86482,6 +86599,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -86500,12 +86618,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_else, - [30541] = 3, + [26013] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1740), 7, + ACTIONS(1556), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86513,7 +86630,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1742), 38, + ACTIONS(1558), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86552,11 +86669,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30595] = 3, + [26067] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1045), 7, + ACTIONS(1887), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86564,7 +86681,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1047), 38, + ACTIONS(1889), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86603,11 +86720,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30649] = 3, + [26121] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1748), 7, + ACTIONS(1895), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86615,7 +86732,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1750), 38, + ACTIONS(1897), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86654,11 +86771,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30703] = 3, + [26175] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2536), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2534), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26229] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1732), 7, + ACTIONS(1815), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86666,7 +86834,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1734), 38, + ACTIONS(1817), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86705,11 +86873,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30757] = 3, + [26283] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1716), 7, + ACTIONS(1426), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86717,7 +86885,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1718), 38, + ACTIONS(1428), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86756,11 +86924,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30811] = 3, + [26337] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1768), 7, + ACTIONS(1572), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86768,7 +86936,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1770), 38, + ACTIONS(1574), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86807,11 +86975,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30865] = 3, + [26391] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1794), 7, + ACTIONS(1863), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86819,7 +86987,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1796), 38, + ACTIONS(1865), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86858,11 +87026,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30919] = 3, + [26445] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1712), 7, + ACTIONS(1907), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86870,7 +87038,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1714), 38, + ACTIONS(1909), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86909,11 +87077,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30973] = 3, + [26499] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1802), 7, + ACTIONS(1819), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86921,7 +87089,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1804), 38, + ACTIONS(1821), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86960,11 +87128,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31027] = 3, + [26553] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1708), 7, + ACTIONS(1831), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86972,7 +87140,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1710), 38, + ACTIONS(1833), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87011,11 +87179,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31081] = 3, + [26607] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1580), 7, + ACTIONS(1660), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87023,7 +87191,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1582), 38, + ACTIONS(1662), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87062,11 +87230,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31135] = 3, + [26661] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(1867), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87074,7 +87242,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1844), 38, + ACTIONS(1869), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87113,11 +87281,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31189] = 3, + [26715] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(399), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(397), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [26769] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1866), 7, + ACTIONS(1875), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87125,7 +87344,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1868), 38, + ACTIONS(1877), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87164,62 +87383,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31243] = 3, + [26823] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(2540), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2538), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1654), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31297] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26877] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1660), 7, + ACTIONS(1154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87227,7 +87446,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1662), 38, + ACTIONS(1156), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87266,11 +87485,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31351] = 3, + [26931] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1700), 7, + ACTIONS(1847), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87278,7 +87497,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1702), 38, + ACTIONS(1849), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87317,11 +87536,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31405] = 3, + [26985] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1520), 7, + ACTIONS(1855), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87329,7 +87548,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1522), 38, + ACTIONS(1857), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87368,11 +87587,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31459] = 3, + [27039] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(1839), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87380,7 +87599,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1666), 38, + ACTIONS(1841), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87419,7 +87638,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31513] = 3, + [27093] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -87470,11 +87689,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31567] = 3, + [27147] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1312), 7, + ACTIONS(1919), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87482,7 +87701,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1314), 38, + ACTIONS(1921), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87521,11 +87740,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31621] = 3, + [27201] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1286), 7, + ACTIONS(1576), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87533,7 +87752,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1288), 38, + ACTIONS(1578), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87572,11 +87791,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31675] = 3, + [27255] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1696), 7, + ACTIONS(1166), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87584,7 +87803,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1698), 38, + ACTIONS(1168), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87623,11 +87842,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31729] = 3, + [27309] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1137), 7, + ACTIONS(1923), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87635,7 +87854,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1139), 38, + ACTIONS(1925), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87674,11 +87893,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31783] = 3, + [27363] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1688), 7, + ACTIONS(1827), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87686,7 +87905,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1690), 38, + ACTIONS(1829), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87725,11 +87944,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31837] = 3, + [27417] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1782), 7, + ACTIONS(1410), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87737,7 +87956,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1784), 38, + ACTIONS(1412), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87776,11 +87995,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31891] = 3, + [27471] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1676), 7, + ACTIONS(1823), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87788,7 +88007,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1678), 38, + ACTIONS(1825), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87827,11 +88046,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31945] = 3, + [27525] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1352), 7, + ACTIONS(1440), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87839,7 +88058,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1354), 38, + ACTIONS(1442), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87878,11 +88097,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31999] = 3, + [27579] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1278), 7, + ACTIONS(1456), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87890,7 +88109,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1280), 38, + ACTIONS(1458), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87929,11 +88148,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32053] = 3, + [27633] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, + ACTIONS(1795), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87941,7 +88160,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1256), 38, + ACTIONS(1797), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87980,11 +88199,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32107] = 3, + [27687] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1874), 7, + ACTIONS(1472), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87992,7 +88211,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1876), 38, + ACTIONS(1474), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88031,11 +88250,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32161] = 3, + [27741] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1680), 7, + ACTIONS(1568), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88043,7 +88262,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1682), 38, + ACTIONS(1570), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88082,11 +88301,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32215] = 3, + [27795] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1838), 7, + ACTIONS(1560), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88094,7 +88313,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1840), 38, + ACTIONS(1562), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88133,11 +88352,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32269] = 3, + [27849] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1736), 7, + ACTIONS(1480), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88145,7 +88364,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1738), 38, + ACTIONS(1482), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88184,11 +88403,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32323] = 3, + [27903] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1668), 7, + ACTIONS(1552), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88196,7 +88415,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1670), 38, + ACTIONS(1554), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88235,11 +88454,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32377] = 3, + [27957] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1656), 7, + ACTIONS(1544), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88247,7 +88466,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1658), 38, + ACTIONS(1546), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88286,58 +88505,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32431] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2496), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2494), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32485] = 3, + [28011] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -88388,11 +88556,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32539] = 3, + [28065] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2500), 15, + ACTIONS(2544), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88408,7 +88576,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2498), 30, + ACTIONS(2542), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88420,7 +88588,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -88439,70 +88606,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32593] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1684), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, + [28118] = 4, + ACTIONS(2550), 1, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1686), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32647] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1460), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(2548), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1462), 38, + ACTIONS(2546), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88520,91 +88645,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [32701] = 3, + [28173] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1456), 7, + ACTIONS(2554), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2552), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1458), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32755] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28226] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1440), 7, + ACTIONS(2558), 12, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_AMP, sym_metavariable, - ACTIONS(1442), 38, + ACTIONS(2556), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88625,29 +88745,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [32809] = 3, + [28279] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2504), 15, + ACTIONS(2562), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88663,7 +88777,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2502), 29, + ACTIONS(2560), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88693,11 +88807,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32862] = 3, + [28332] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 15, + ACTIONS(455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88713,7 +88827,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2392), 29, + ACTIONS(453), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88743,11 +88857,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32915] = 3, + [28385] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2111), 15, + ACTIONS(2566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88763,7 +88877,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2113), 29, + ACTIONS(2564), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88793,11 +88907,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32968] = 3, + [28438] = 22, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2596), 1, + anon_sym_PIPE, + ACTIONS(2598), 1, + anon_sym_CARET, + ACTIONS(2606), 1, + anon_sym_DOT, + STATE(962), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(441), 15, + ACTIONS(2574), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2576), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2600), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2568), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2604), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28529] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88813,7 +88996,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(439), 29, + ACTIONS(2608), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88843,11 +89026,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33021] = 3, + [28582] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(417), 15, + ACTIONS(2614), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88863,7 +89046,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(415), 29, + ACTIONS(2612), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88893,13 +89076,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33074] = 4, - ACTIONS(2506), 1, - anon_sym_COLON_COLON, + [28635] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 15, + ACTIONS(2618), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88915,10 +89096,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2392), 28, + ACTIONS(2616), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -88944,11 +89126,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33129] = 3, + [28688] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(437), 15, + ACTIONS(2622), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88964,7 +89146,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(435), 29, + ACTIONS(2620), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88994,11 +89176,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33182] = 3, + [28741] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 15, + ACTIONS(2626), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89014,7 +89196,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2508), 29, + ACTIONS(2624), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89044,11 +89226,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33235] = 3, + [28794] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2514), 15, + ACTIONS(2161), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89064,7 +89246,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2512), 29, + ACTIONS(2163), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89094,11 +89276,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33288] = 3, + [28847] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2518), 15, + ACTIONS(429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89114,7 +89296,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2516), 29, + ACTIONS(427), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89144,11 +89326,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33341] = 3, + [28900] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(580), 15, + ACTIONS(2630), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89164,7 +89346,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(578), 29, + ACTIONS(2628), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89194,11 +89376,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33394] = 3, + [28953] = 4, + ACTIONS(2414), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2522), 15, + ACTIONS(2410), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89214,11 +89398,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2520), 29, + ACTIONS(2408), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -89244,11 +89427,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33447] = 3, + [29008] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2526), 15, + ACTIONS(588), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89264,7 +89447,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2524), 29, + ACTIONS(586), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89294,62 +89477,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33500] = 19, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - STATE(1008), 1, - sym_arguments, + [29061] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(433), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2528), 18, + anon_sym_DOT, + ACTIONS(431), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -89360,11 +89527,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33585] = 3, + [29114] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 15, + ACTIONS(2153), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89380,7 +89547,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2562), 29, + ACTIONS(2155), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89410,11 +89577,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33638] = 3, + [29167] = 4, + ACTIONS(2636), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2568), 15, + ACTIONS(2634), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2632), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29222] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(411), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89430,7 +89648,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2566), 29, + ACTIONS(409), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89460,11 +89678,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33691] = 3, + [29275] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(564), 15, + ACTIONS(459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89480,7 +89698,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(562), 29, + ACTIONS(457), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89510,11 +89728,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33744] = 3, + [29328] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 15, + ACTIONS(437), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89530,7 +89748,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2570), 29, + ACTIONS(435), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89560,11 +89778,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33797] = 3, + [29381] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(594), 15, + ACTIONS(2640), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89580,7 +89798,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(592), 29, + ACTIONS(2638), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89610,11 +89828,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33850] = 3, + [29434] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2576), 15, + ACTIONS(2644), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89630,7 +89848,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2574), 29, + ACTIONS(2642), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89660,18 +89878,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33903] = 3, + [29487] = 6, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + STATE(962), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 15, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(317), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -89680,11 +89904,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2578), 29, + ACTIONS(315), 26, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -89692,8 +89915,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -89710,18 +89931,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33956] = 3, + [29546] = 9, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2606), 1, + anon_sym_DOT, + STATE(962), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(447), 15, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2648), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -89729,21 +89962,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(445), 29, + ACTIONS(2646), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -89760,11 +89987,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34009] = 3, + [29611] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 15, + ACTIONS(2652), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89780,7 +90007,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2582), 29, + ACTIONS(2650), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89810,11 +90037,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34062] = 3, + [29664] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2358), 15, + ACTIONS(2189), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89830,7 +90057,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2356), 29, + ACTIONS(2191), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89860,11 +90087,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34115] = 3, + [29717] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(598), 15, + ACTIONS(2656), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89880,7 +90107,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(596), 29, + ACTIONS(2654), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89910,11 +90137,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34168] = 3, + [29770] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 15, + ACTIONS(2660), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89930,7 +90157,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2586), 29, + ACTIONS(2658), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89960,11 +90187,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34221] = 3, + [29823] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 15, + ACTIONS(2664), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89980,7 +90207,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2590), 29, + ACTIONS(2662), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90010,11 +90237,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34274] = 3, + [29876] = 19, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2596), 1, + anon_sym_PIPE, + ACTIONS(2598), 1, + anon_sym_CARET, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2668), 1, + anon_sym_EQ, + STATE(962), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(572), 15, + ACTIONS(2574), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2576), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2600), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2666), 18, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29961] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2672), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90030,7 +90323,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(570), 29, + ACTIONS(2670), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90060,11 +90353,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34327] = 3, + [30014] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 15, + ACTIONS(2676), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2674), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30067] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2157), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90080,7 +90423,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2594), 29, + ACTIONS(2159), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90110,11 +90453,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34380] = 3, + [30120] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 15, + ACTIONS(2680), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90130,7 +90473,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2598), 29, + ACTIONS(2678), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90160,11 +90503,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34433] = 3, + [30173] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2604), 15, + ACTIONS(403), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90180,7 +90523,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2602), 29, + ACTIONS(401), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90210,11 +90553,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34486] = 3, + [30226] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 15, + ACTIONS(2684), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90230,7 +90573,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2606), 29, + ACTIONS(2682), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90260,11 +90603,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34539] = 3, + [30279] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 15, + ACTIONS(592), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90280,7 +90623,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2610), 29, + ACTIONS(590), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90310,11 +90653,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34592] = 3, + [30332] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(401), 15, + ACTIONS(2688), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90330,7 +90673,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(399), 29, + ACTIONS(2686), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90360,11 +90703,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34645] = 3, + [30385] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(590), 15, + ACTIONS(600), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90380,7 +90723,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(588), 29, + ACTIONS(598), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90410,11 +90753,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34698] = 3, + [30438] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2692), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2690), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30491] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2526), 15, + ACTIONS(2696), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90430,7 +90823,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2524), 29, + ACTIONS(2694), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90460,11 +90853,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34751] = 3, + [30544] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(584), 15, + ACTIONS(2700), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90480,7 +90873,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(582), 29, + ACTIONS(2698), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90510,11 +90903,111 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34804] = 3, + [30597] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 15, + ACTIONS(2704), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2702), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30650] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2708), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2706), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30703] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2712), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90530,7 +91023,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2614), 29, + ACTIONS(2710), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90560,11 +91053,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34857] = 3, + [30756] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 15, + ACTIONS(2716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90580,7 +91073,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2618), 29, + ACTIONS(2714), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90610,11 +91103,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34910] = 3, + [30809] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 15, + ACTIONS(2712), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90630,7 +91123,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2622), 29, + ACTIONS(2710), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90660,11 +91153,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34963] = 3, + [30862] = 19, + ACTIONS(283), 1, + anon_sym_EQ, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2596), 1, + anon_sym_PIPE, + ACTIONS(2598), 1, + anon_sym_CARET, + ACTIONS(2606), 1, + anon_sym_DOT, + STATE(962), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 15, + ACTIONS(2574), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2576), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2600), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(277), 18, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30947] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90680,7 +91239,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2626), 29, + ACTIONS(594), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90710,18 +91269,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35016] = 3, + [31000] = 9, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2606), 1, + anon_sym_DOT, + STATE(962), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(413), 15, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2720), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -90729,21 +91300,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(411), 29, + ACTIONS(2718), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -90760,11 +91325,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35069] = 3, + [31065] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2632), 15, + ACTIONS(2724), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90780,7 +91345,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2630), 29, + ACTIONS(2722), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90810,11 +91375,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35122] = 3, + [31118] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2636), 15, + ACTIONS(2728), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90830,7 +91395,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2634), 29, + ACTIONS(2726), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90860,77 +91425,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35175] = 19, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2640), 1, - anon_sym_EQ, - STATE(1008), 1, - sym_arguments, + [31171] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2638), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35260] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2644), 15, + ACTIONS(2396), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90946,7 +91445,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2642), 29, + ACTIONS(2394), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90976,11 +91475,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35313] = 3, + [31224] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(421), 15, + ACTIONS(2400), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90996,7 +91495,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(419), 29, + ACTIONS(2398), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91026,11 +91525,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35366] = 3, + [31277] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 15, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91046,7 +91545,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2646), 29, + ACTIONS(566), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91076,11 +91575,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35419] = 3, + [31330] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2135), 15, + ACTIONS(447), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91096,7 +91595,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2137), 29, + ACTIONS(445), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91126,11 +91625,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35472] = 3, + [31383] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2410), 15, + ACTIONS(584), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91146,7 +91645,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2406), 29, + ACTIONS(582), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91176,11 +91675,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35525] = 3, + [31436] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2652), 15, + ACTIONS(455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91196,7 +91695,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2650), 29, + ACTIONS(453), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91226,11 +91725,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35578] = 3, + [31489] = 4, + ACTIONS(2414), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2656), 15, + ACTIONS(2410), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91246,11 +91747,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2654), 29, + ACTIONS(2408), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -91276,11 +91776,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35631] = 3, + [31544] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2660), 15, + ACTIONS(443), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91296,7 +91796,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2658), 29, + ACTIONS(441), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91326,11 +91826,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35684] = 3, + [31597] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(425), 15, + ACTIONS(2732), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91346,7 +91846,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(423), 29, + ACTIONS(2730), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91376,113 +91876,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35737] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2664), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + [31650] = 21, + ACTIONS(77), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2662), 29, - anon_sym_SEMI, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(2734), 1, + sym_identifier, + ACTIONS(2738), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35790] = 3, + ACTIONS(2740), 1, + anon_sym_STAR, + ACTIONS(2744), 1, + anon_sym_for, + ACTIONS(2746), 1, + anon_sym_AMP, + ACTIONS(2748), 1, + sym_metavariable, + STATE(1755), 1, + sym_scoped_type_identifier, + STATE(1769), 1, + sym_generic_type, + STATE(1871), 1, + sym_where_predicate, + STATE(2252), 1, + sym_bracketed_type, + STATE(2253), 1, + sym_generic_type_with_turbofish, + STATE(2364), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2338), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2336), 29, + ACTIONS(878), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(2736), 2, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35843] = 4, - ACTIONS(2666), 1, - anon_sym_COLON_COLON, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(2030), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2742), 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, + [31739] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(417), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91498,10 +91964,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 28, + ACTIONS(415), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -91527,11 +91994,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35898] = 3, + [31792] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2670), 15, + ACTIONS(2752), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91547,7 +92014,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2668), 29, + ACTIONS(2750), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91577,77 +92044,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35951] = 19, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2674), 1, - anon_sym_EQ, - STATE(1008), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2534), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2672), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36036] = 3, + [31845] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2678), 15, + ACTIONS(2756), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91663,7 +92064,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2676), 29, + ACTIONS(2754), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91693,48 +92094,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36089] = 11, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2560), 1, - anon_sym_DOT, - STATE(1008), 1, - sym_arguments, + [31898] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2404), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2536), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2682), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2680), 24, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2402), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -91751,11 +92144,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36158] = 3, + [31951] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2330), 15, + ACTIONS(2760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91771,7 +92164,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2328), 29, + ACTIONS(2758), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91801,30 +92194,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36211] = 9, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2560), 1, - anon_sym_DOT, - STATE(1008), 1, - sym_arguments, + [32004] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2686), 13, + ACTIONS(580), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -91832,15 +92213,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2684), 24, + anon_sym_DOT, + ACTIONS(578), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -91857,42 +92244,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36276] = 13, - ACTIONS(2530), 1, + [32057] = 19, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2560), 1, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2596), 1, + anon_sym_PIPE, + ACTIONS(2598), 1, + anon_sym_CARET, + ACTIONS(2606), 1, anon_sym_DOT, - STATE(1008), 1, + ACTIONS(2764), 1, + anon_sym_EQ, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2544), 2, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2682), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2680), 24, + ACTIONS(2600), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2762), 18, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -91901,12 +92300,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91917,11 +92310,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36349] = 3, + [32142] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2690), 15, + ACTIONS(2768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91937,7 +92330,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2688), 29, + ACTIONS(2766), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91967,11 +92360,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36402] = 3, + [32195] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2694), 15, + ACTIONS(2772), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91987,7 +92380,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2692), 29, + ACTIONS(2770), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92017,40 +92410,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36455] = 3, + [32248] = 10, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2606), 1, + anon_sym_DOT, + STATE(962), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(405), 15, - anon_sym_PLUS, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2576), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2776), 10, + anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(403), 29, + ACTIONS(2774), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -92067,11 +92467,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36508] = 3, + [32315] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(576), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92087,7 +92487,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 29, + ACTIONS(574), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92117,11 +92517,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36561] = 3, + [32368] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2698), 15, + ACTIONS(2780), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92137,7 +92537,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2696), 29, + ACTIONS(2778), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92167,47 +92567,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36614] = 10, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2560), 1, - anon_sym_DOT, - STATE(1008), 1, - sym_arguments, + [32421] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2536), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2682), 10, + ACTIONS(2784), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2680), 24, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2782), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -92224,61 +92617,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36681] = 18, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2682), 1, - anon_sym_EQ, - STATE(1008), 1, - sym_arguments, + [32474] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2788), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2680), 19, + anon_sym_DOT, + ACTIONS(2786), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92289,87 +92667,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36764] = 22, - ACTIONS(2530), 1, + [32527] = 9, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2700), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2708), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36855] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(576), 15, + ACTIONS(2792), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -92377,21 +92698,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(574), 29, + ACTIONS(2790), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -92408,11 +92723,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36908] = 3, + [32592] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2796), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92428,7 +92743,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 29, + ACTIONS(2794), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92458,11 +92773,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36961] = 3, + [32645] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 15, + ACTIONS(572), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92478,7 +92793,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2710), 29, + ACTIONS(570), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92508,11 +92823,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37014] = 3, + [32698] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(560), 15, + ACTIONS(564), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92528,7 +92843,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(558), 29, + ACTIONS(562), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92558,11 +92873,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37067] = 3, + [32751] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2716), 15, + ACTIONS(2800), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92578,7 +92893,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2714), 29, + ACTIONS(2798), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92608,80 +92923,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37120] = 22, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - STATE(1008), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2534), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2718), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2708), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37211] = 3, + [32804] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(409), 15, + ACTIONS(455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92697,7 +92943,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(407), 29, + ACTIONS(453), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92727,11 +92973,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37264] = 3, + [32857] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2722), 15, + ACTIONS(2804), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92747,7 +92993,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2720), 29, + ACTIONS(2802), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92777,30 +93023,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37317] = 9, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2560), 1, - anon_sym_DOT, - STATE(1008), 1, - sym_arguments, + [32910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2682), 13, + ACTIONS(2808), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -92808,15 +93042,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2680), 24, + anon_sym_DOT, + ACTIONS(2806), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -92833,57 +93073,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37382] = 14, - ACTIONS(2530), 1, + [32963] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2554), 1, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2596), 1, + anon_sym_PIPE, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2544), 2, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2682), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(2680), 24, + ACTIONS(2600), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2810), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92894,54 +93142,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37457] = 19, - ACTIONS(283), 1, - anon_sym_EQ, - ACTIONS(2530), 1, + [33054] = 9, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2776), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(277), 18, + ACTIONS(2774), 24, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -92950,6 +93182,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92960,11 +93198,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37542] = 3, + [33119] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2726), 15, + ACTIONS(2814), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92980,7 +93218,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2724), 29, + ACTIONS(2812), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93010,11 +93248,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37595] = 3, + [33172] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2818), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93030,7 +93268,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 29, + ACTIONS(2816), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93060,11 +93298,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37648] = 3, + [33225] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(429), 15, + ACTIONS(455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93080,7 +93318,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(427), 29, + ACTIONS(453), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93110,11 +93348,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37701] = 3, + [33278] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2730), 15, + ACTIONS(2822), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2820), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33331] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2826), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93130,7 +93418,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2728), 29, + ACTIONS(2824), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93160,11 +93448,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37754] = 3, + [33384] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2734), 15, + ACTIONS(2830), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93180,7 +93468,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2732), 29, + ACTIONS(2828), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93210,11 +93498,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37807] = 3, + [33437] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2738), 15, + ACTIONS(2834), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93230,7 +93518,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2736), 29, + ACTIONS(2832), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93260,11 +93548,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37860] = 3, + [33490] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(2838), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93280,7 +93568,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 29, + ACTIONS(2836), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93310,60 +93598,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37913] = 17, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2682), 1, - anon_sym_EQ, - STATE(1008), 1, - sym_arguments, + [33543] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2842), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2680), 20, + anon_sym_DOT, + ACTIONS(2840), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93374,30 +93648,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37994] = 9, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2560), 1, - anon_sym_DOT, - STATE(1008), 1, - sym_arguments, + [33596] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2742), 13, + ACTIONS(425), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -93405,15 +93667,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2740), 24, + anon_sym_DOT, + ACTIONS(423), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -93430,11 +93698,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38059] = 3, + [33649] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2746), 15, + ACTIONS(2846), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93450,7 +93718,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2744), 29, + ACTIONS(2844), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93480,11 +93748,131 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38112] = 3, + [33702] = 5, + ACTIONS(2848), 1, + anon_sym_POUND, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1055), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2303), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2301), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33759] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(2734), 1, + sym_identifier, + ACTIONS(2738), 1, + anon_sym_LPAREN, + ACTIONS(2740), 1, + anon_sym_STAR, + ACTIONS(2744), 1, + anon_sym_for, + ACTIONS(2746), 1, + anon_sym_AMP, + ACTIONS(2748), 1, + sym_metavariable, + STATE(1755), 1, + sym_scoped_type_identifier, + STATE(1769), 1, + sym_generic_type, + STATE(1871), 1, + sym_where_predicate, + STATE(2252), 1, + sym_bracketed_type, + STATE(2253), 1, + sym_generic_type_with_turbofish, + STATE(2364), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(878), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(2851), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(2030), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2742), 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, + [33848] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2750), 15, + ACTIONS(2855), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93500,7 +93888,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2748), 29, + ACTIONS(2853), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93530,11 +93918,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38165] = 3, + [33901] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2131), 15, + ACTIONS(2859), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93550,7 +93938,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2133), 29, + ACTIONS(2857), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93580,91 +93968,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38218] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(455), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(453), 29, - anon_sym_SEMI, + [33954] = 19, + ACTIONS(2570), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(2572), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2592), 1, anon_sym_AMP_AMP, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38271] = 12, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2560), 1, + ACTIONS(2596), 1, + anon_sym_PIPE, + ACTIONS(2598), 1, + anon_sym_CARET, + ACTIONS(2606), 1, anon_sym_DOT, - STATE(1008), 1, + ACTIONS(2863), 1, + anon_sym_EQ, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2544), 2, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2682), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2680), 24, + ACTIONS(2600), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2861), 18, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -93673,12 +94024,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93689,11 +94034,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38342] = 3, + [34039] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2754), 15, + ACTIONS(2434), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93709,7 +94054,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2752), 29, + ACTIONS(2430), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93739,11 +94084,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38395] = 3, + [34092] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2151), 15, + ACTIONS(2867), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93759,7 +94104,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2153), 29, + ACTIONS(2865), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93789,11 +94134,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38448] = 3, + [34145] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2758), 15, + ACTIONS(407), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93809,7 +94154,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2756), 29, + ACTIONS(405), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93839,30 +94184,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38501] = 9, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2560), 1, - anon_sym_DOT, - STATE(1008), 1, - sym_arguments, + [34198] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2762), 13, + ACTIONS(2871), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -93870,15 +94203,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2760), 24, + anon_sym_DOT, + ACTIONS(2869), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -93895,11 +94234,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38566] = 3, + [34251] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2766), 15, + ACTIONS(2875), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93915,7 +94254,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2764), 29, + ACTIONS(2873), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93945,46 +94284,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38619] = 3, + [34304] = 19, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2596), 1, + anon_sym_PIPE, + ACTIONS(2598), 1, + anon_sym_CARET, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2879), 1, + anon_sym_EQ, + STATE(962), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2770), 15, + ACTIONS(2574), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2576), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2768), 29, + ACTIONS(2600), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2877), 18, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93995,39 +94350,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38672] = 6, - ACTIONS(2546), 1, + [34389] = 11, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - STATE(1008), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 2, + ACTIONS(2574), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(325), 14, - anon_sym_PLUS, + ACTIONS(2576), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2776), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(323), 26, + ACTIONS(2774), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, @@ -94048,40 +94408,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38731] = 3, + [34458] = 13, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2606), 1, + anon_sym_DOT, + STATE(962), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2774), 15, + ACTIONS(2574), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2576), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2776), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2772), 29, + ACTIONS(2774), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -94098,40 +94468,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38784] = 3, + [34531] = 14, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2598), 1, + anon_sym_CARET, + ACTIONS(2606), 1, + anon_sym_DOT, + STATE(962), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(433), 15, + ACTIONS(2574), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2576), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(431), 29, + ACTIONS(2776), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(2774), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -94148,54 +94529,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38837] = 19, - ACTIONS(2530), 1, + [34606] = 18, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2778), 1, + ACTIONS(2776), 1, anon_sym_EQ, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2776), 18, + ACTIONS(2774), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -94204,6 +94583,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94214,46 +94594,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38922] = 3, + [34689] = 17, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2596), 1, + anon_sym_PIPE, + ACTIONS(2598), 1, + anon_sym_CARET, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2776), 1, + anon_sym_EQ, + STATE(962), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2782), 15, + ACTIONS(2574), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2576), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2780), 29, + ACTIONS(2600), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2774), 20, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94264,11 +94658,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38975] = 3, + [34770] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2786), 15, + ACTIONS(421), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94284,7 +94678,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2784), 29, + ACTIONS(419), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94314,44 +94708,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39028] = 15, - ACTIONS(2530), 1, + [34823] = 12, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2682), 3, + ACTIONS(2776), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2680), 24, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(2774), 24, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -94376,310 +94767,127 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39105] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2790), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2788), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39157] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2794), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, + [34894] = 4, + ACTIONS(2881), 1, anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2792), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39209] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2798), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(455), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(2796), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39261] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2802), 12, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(453), 28, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2800), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39313] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2806), 12, - anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34949] = 15, + ACTIONS(2570), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(2572), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(2586), 1, anon_sym_AMP, - sym_metavariable, - ACTIONS(2804), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39365] = 5, - ACTIONS(2808), 1, - anon_sym_POUND, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2596), 1, + anon_sym_PIPE, + ACTIONS(2598), 1, + anon_sym_CARET, + ACTIONS(2606), 1, + anon_sym_DOT, + STATE(962), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1069), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2223), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2574), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2576), 3, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2776), 3, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2221), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39421] = 7, - ACTIONS(2332), 1, + anon_sym_GT, + ACTIONS(2774), 24, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35026] = 7, + ACTIONS(2390), 1, anon_sym_LBRACE, - ACTIONS(2334), 1, + ACTIONS(2392), 1, anon_sym_COLON_COLON, - ACTIONS(2811), 1, + ACTIONS(2883), 1, anon_sym_BANG, - STATE(983), 1, + STATE(966), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, @@ -94725,24 +94933,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39481] = 3, + [35086] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2815), 12, - anon_sym_SEMI, + ACTIONS(2548), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2813), 31, + ACTIONS(2546), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94760,27 +94970,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [39533] = 4, - ACTIONS(2821), 1, - anon_sym_RBRACE, + [35138] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2819), 14, + ACTIONS(2634), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -94795,7 +95001,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2817), 27, + ACTIONS(2632), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94814,6 +95020,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_const, + anon_sym_default, + anon_sym_union, anon_sym_ref, anon_sym__, sym_mutable_specifier, @@ -94823,54 +95031,120 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [39586] = 20, + [35190] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(678), 1, + anon_sym_fn, + ACTIONS(680), 1, + anon_sym_for, + ACTIONS(692), 1, + anon_sym_extern, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(2748), 1, + sym_metavariable, + ACTIONS(2885), 1, + sym_identifier, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1258), 1, + sym_scoped_type_identifier, + STATE(1297), 1, + sym_generic_type, + STATE(1312), 1, + sym_function_type, + STATE(2252), 1, + sym_bracketed_type, + STATE(2253), 1, + sym_generic_type_with_turbofish, + STATE(2292), 1, + sym_function_modifiers, + STATE(2364), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1466), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(672), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(878), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [35277] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(856), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2071), 1, + ACTIONS(2103), 1, anon_sym_SQUOTE, - ACTIONS(2823), 1, + ACTIONS(2734), 1, sym_identifier, - ACTIONS(2827), 1, + ACTIONS(2738), 1, anon_sym_LPAREN, - ACTIONS(2829), 1, + ACTIONS(2740), 1, anon_sym_STAR, - ACTIONS(2833), 1, + ACTIONS(2744), 1, anon_sym_for, - ACTIONS(2835), 1, + ACTIONS(2746), 1, anon_sym_AMP, - ACTIONS(2837), 1, + ACTIONS(2748), 1, sym_metavariable, - STATE(1721), 1, + STATE(1755), 1, sym_scoped_type_identifier, - STATE(1773), 1, - sym_where_predicate, - STATE(1849), 1, + STATE(1769), 1, sym_generic_type, - STATE(2241), 1, + STATE(1871), 1, + sym_where_predicate, + STATE(2252), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2253), 1, sym_generic_type_with_turbofish, - STATE(2323), 1, + STATE(2364), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2825), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(862), 3, + ACTIONS(878), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(2176), 5, + STATE(2030), 5, sym_higher_ranked_trait_bound, sym_lifetime, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(2831), 17, + ACTIONS(2742), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94888,136 +95162,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [39671] = 25, - ACTIONS(612), 1, + [35362] = 25, + ACTIONS(363), 1, anon_sym_RBRACK, - ACTIONS(2530), 1, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2706), 1, + ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2839), 1, - anon_sym_SEMI, - ACTIONS(2841), 1, - anon_sym_COMMA, - STATE(1008), 1, - sym_arguments, - STATE(1904), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2534), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2708), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39766] = 25, - ACTIONS(365), 1, - anon_sym_RBRACK, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2843), 1, + ACTIONS(2887), 1, anon_sym_SEMI, - ACTIONS(2845), 1, + ACTIONS(2889), 1, anon_sym_COMMA, - STATE(1008), 1, + STATE(962), 1, sym_arguments, - STATE(1770), 1, + STATE(1892), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95028,54 +95232,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39861] = 20, + [35457] = 17, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(856), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(975), 1, anon_sym_COLON_COLON, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2823), 1, + ACTIONS(2891), 1, sym_identifier, - ACTIONS(2827), 1, - anon_sym_LPAREN, - ACTIONS(2829), 1, - anon_sym_STAR, - ACTIONS(2833), 1, - anon_sym_for, - ACTIONS(2835), 1, - anon_sym_AMP, - ACTIONS(2837), 1, + ACTIONS(2893), 1, + anon_sym_RPAREN, + ACTIONS(2897), 1, + anon_sym_COMMA, + ACTIONS(2901), 1, sym_metavariable, - STATE(1721), 1, - sym_scoped_type_identifier, - STATE(1773), 1, - sym_where_predicate, - STATE(1849), 1, - sym_generic_type, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - STATE(2323), 1, + STATE(1518), 1, sym_scoped_identifier, + STATE(2243), 1, + sym_generic_type_with_turbofish, + STATE(2341), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2847), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(862), 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(990), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1927), 2, + sym_meta_item, + sym__literal, + ACTIONS(2899), 3, sym_self, sym_super, sym_crate, - STATE(2176), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2831), 17, + ACTIONS(89), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(2895), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95093,28 +95292,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [39946] = 4, - ACTIONS(2853), 1, - anon_sym_RBRACE, + anon_sym_default, + anon_sym_union, + [35536] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2851), 14, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(1138), 10, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, anon_sym_POUND, + anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2849), 27, + ACTIONS(1140), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95132,131 +95327,117 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, anon_sym_const, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [39999] = 24, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2855), 1, - anon_sym_RPAREN, - ACTIONS(2857), 1, - anon_sym_COMMA, - STATE(1008), 1, - sym_arguments, - STATE(1807), 1, - aux_sym_arguments_repeat1, + [35587] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2778), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2536), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2708), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40091] = 20, - ACTIONS(77), 1, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_LT, - ACTIONS(676), 1, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2780), 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, - ACTIONS(678), 1, anon_sym_for, - ACTIONS(690), 1, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_mutable_specifier, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35638] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(680), 1, + anon_sym_for, + ACTIONS(692), 1, anon_sym_extern, - ACTIONS(856), 1, + ACTIONS(2249), 1, + anon_sym_default, + ACTIONS(2251), 1, + anon_sym_fn, + ACTIONS(2259), 1, anon_sym_COLON_COLON, - ACTIONS(2837), 1, - sym_metavariable, - ACTIONS(2859), 1, + ACTIONS(2903), 1, sym_identifier, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1260), 1, + ACTIONS(2905), 1, + sym_metavariable, + STATE(718), 1, sym_scoped_type_identifier, - STATE(1297), 1, + STATE(811), 1, sym_generic_type, - STATE(1306), 1, + STATE(1023), 1, sym_function_type, - STATE(2206), 1, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2255), 1, sym_function_modifiers, - STATE(2241), 1, + STATE(2271), 1, + sym_scoped_identifier, + STATE(2345), 1, sym_bracketed_type, - STATE(2242), 1, + STATE(2346), 1, sym_generic_type_with_turbofish, - STATE(2323), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, + STATE(1466), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, + ACTIONS(672), 3, anon_sym_async, anon_sym_const, - anon_sym_default, anon_sym_unsafe, - ACTIONS(2861), 17, + ACTIONS(2267), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2255), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95274,26 +95455,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [40175] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2851), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, + anon_sym_union, + [35725] = 21, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(680), 1, + anon_sym_for, + ACTIONS(692), 1, + anon_sym_extern, + ACTIONS(2249), 1, + anon_sym_default, + ACTIONS(2251), 1, + anon_sym_fn, + ACTIONS(2259), 1, anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(2905), 1, sym_metavariable, - ACTIONS(2849), 27, + ACTIONS(2907), 1, + sym_identifier, + STATE(715), 1, + sym_scoped_type_identifier, + STATE(856), 1, + sym_generic_type, + STATE(1011), 1, + sym_function_type, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2255), 1, + sym_function_modifiers, + STATE(2271), 1, + sym_scoped_identifier, + STATE(2345), 1, + sym_bracketed_type, + STATE(2346), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1466), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(672), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2267), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2255), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95311,32 +95521,191 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_const, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_union, + [35812] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(678), 1, + anon_sym_fn, + ACTIONS(680), 1, + anon_sym_for, + ACTIONS(692), 1, + anon_sym_extern, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(2748), 1, + sym_metavariable, + ACTIONS(2909), 1, sym_identifier, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1261), 1, + sym_scoped_type_identifier, + STATE(1286), 1, + sym_generic_type, + STATE(1315), 1, + sym_function_type, + STATE(2252), 1, + sym_bracketed_type, + STATE(2253), 1, + sym_generic_type_with_turbofish, + STATE(2292), 1, + sym_function_modifiers, + STATE(2364), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1466), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(672), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - [40225] = 3, + ACTIONS(878), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [35899] = 25, + ACTIONS(638), 1, + anon_sym_RBRACK, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2596), 1, + anon_sym_PIPE, + ACTIONS(2598), 1, + anon_sym_CARET, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2911), 1, + anon_sym_SEMI, + ACTIONS(2913), 1, + anon_sym_COMMA, + STATE(962), 1, + sym_arguments, + STATE(1778), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1157), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2574), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2576), 3, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_POUND, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2600), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2604), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35994] = 20, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(882), 1, anon_sym_COLON_COLON, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(2734), 1, + sym_identifier, + ACTIONS(2738), 1, + anon_sym_LPAREN, + ACTIONS(2740), 1, + anon_sym_STAR, + ACTIONS(2744), 1, + anon_sym_for, + ACTIONS(2746), 1, anon_sym_AMP, + ACTIONS(2748), 1, sym_metavariable, - ACTIONS(1159), 31, + STATE(1755), 1, + sym_scoped_type_identifier, + STATE(1758), 1, + sym_where_predicate, + STATE(1769), 1, + sym_generic_type, + STATE(2252), 1, + sym_bracketed_type, + STATE(2253), 1, + sym_generic_type_with_turbofish, + STATE(2364), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(878), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(2030), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2742), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95354,25 +95723,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [40275] = 5, - ACTIONS(2434), 1, - anon_sym_COLON_COLON, - ACTIONS(2811), 1, + [36079] = 6, + ACTIONS(2344), 1, anon_sym_BANG, + ACTIONS(2915), 1, + anon_sym_COLON_COLON, + STATE(966), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -95392,10 +95749,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 24, - anon_sym_SEMI, + ACTIONS(453), 23, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, @@ -95417,111 +95773,113 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40329] = 3, + [36135] = 5, + ACTIONS(2528), 1, + anon_sym_COLON_COLON, + ACTIONS(2883), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2819), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, + ACTIONS(455), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2817), 27, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [40379] = 24, - ACTIONS(385), 1, - anon_sym_RPAREN, - ACTIONS(2530), 1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(453), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36189] = 24, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2863), 1, + ACTIONS(2917), 1, + anon_sym_RPAREN, + ACTIONS(2919), 1, anon_sym_COMMA, - STATE(1008), 1, + STATE(962), 1, sym_arguments, - STATE(1793), 1, + STATE(1959), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95532,53 +95890,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40471] = 20, + [36281] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(2201), 1, - anon_sym_fn, - ACTIONS(2207), 1, + ACTIONS(710), 1, + anon_sym_DASH, + ACTIONS(714), 1, + aux_sym_string_literal_token1, + ACTIONS(975), 1, anon_sym_COLON_COLON, - ACTIONS(2865), 1, + ACTIONS(2921), 1, sym_identifier, - ACTIONS(2869), 1, + ACTIONS(2927), 1, sym_metavariable, - STATE(709), 1, - sym_scoped_type_identifier, - STATE(839), 1, - sym_generic_type, - STATE(1009), 1, - sym_function_type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2243), 1, - sym_function_modifiers, - STATE(2260), 1, + STATE(1355), 1, sym_scoped_identifier, - STATE(2331), 1, - sym_bracketed_type, - STATE(2332), 1, + STATE(1376), 1, + sym__literal_pattern, + STATE(2243), 1, sym_generic_type_with_turbofish, + STATE(2246), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, + ACTIONS(716), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2925), 3, sym_self, sym_super, sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - ACTIONS(2867), 17, + STATE(1322), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(712), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(2923), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95596,53 +95948,109 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [40555] = 20, + anon_sym_default, + anon_sym_union, + [36357] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(2201), 1, - anon_sym_fn, - ACTIONS(2207), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(975), 1, anon_sym_COLON_COLON, - ACTIONS(2869), 1, - sym_metavariable, - ACTIONS(2871), 1, + ACTIONS(2891), 1, sym_identifier, - STATE(707), 1, - sym_scoped_type_identifier, - STATE(829), 1, - sym_generic_type, - STATE(1015), 1, - sym_function_type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2243), 1, - sym_function_modifiers, - STATE(2260), 1, + ACTIONS(2901), 1, + sym_metavariable, + ACTIONS(2929), 1, + anon_sym_RPAREN, + STATE(1518), 1, sym_scoped_identifier, - STATE(2331), 1, - sym_bracketed_type, - STATE(2332), 1, + STATE(2243), 1, sym_generic_type_with_turbofish, + STATE(2341), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(2215), 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(990), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2009), 2, + sym_meta_item, + sym__literal, + ACTIONS(2899), 3, sym_self, sym_super, sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, + ACTIONS(89), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(2895), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, anon_sym_default, - anon_sym_unsafe, - ACTIONS(2867), 17, + anon_sym_union, + [36433] = 16, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(710), 1, + anon_sym_DASH, + ACTIONS(714), 1, + aux_sym_string_literal_token1, + ACTIONS(975), 1, + anon_sym_COLON_COLON, + ACTIONS(2931), 1, + sym_identifier, + ACTIONS(2937), 1, + sym_metavariable, + STATE(1356), 1, + sym_scoped_identifier, + STATE(1390), 1, + sym__literal_pattern, + STATE(2243), 1, + sym_generic_type_with_turbofish, + STATE(2246), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(716), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2935), 3, + sym_self, + sym_super, + sym_crate, + STATE(1322), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(712), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(2933), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95660,19 +96068,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [40639] = 6, - ACTIONS(2306), 1, - anon_sym_BANG, - ACTIONS(2873), 1, + anon_sym_default, + anon_sym_union, + [36509] = 5, + ACTIONS(2414), 1, anon_sym_COLON_COLON, - STATE(983), 1, - sym_field_initializer_list, + ACTIONS(2939), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2410), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95686,12 +96095,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 23, + ACTIONS(2408), 23, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -95710,219 +96119,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40695] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2654), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2656), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_mutable_specifier, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [40745] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(676), 1, - anon_sym_fn, - ACTIONS(678), 1, - anon_sym_for, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(2837), 1, - sym_metavariable, - ACTIONS(2875), 1, - sym_identifier, - STATE(1222), 1, - sym_for_lifetimes, - STATE(1258), 1, - sym_scoped_type_identifier, - STATE(1290), 1, - sym_generic_type, - STATE(1322), 1, - sym_function_type, - STATE(2206), 1, - sym_function_modifiers, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - STATE(2323), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - ACTIONS(2861), 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, - [40829] = 23, - ACTIONS(638), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [36563] = 24, + ACTIONS(381), 1, + anon_sym_RPAREN, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2598), 1, anon_sym_CARET, - STATE(225), 1, - sym_block, - STATE(1008), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2941), 1, + anon_sym_COMMA, + STATE(962), 1, sym_arguments, + STATE(1893), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2899), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2903), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40918] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2364), 16, - anon_sym_PLUS, + ACTIONS(2576), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2366), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95933,40 +96187,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40967] = 17, + [36655] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(943), 1, + ACTIONS(975), 1, anon_sym_COLON_COLON, - ACTIONS(2905), 1, + ACTIONS(2891), 1, sym_identifier, - ACTIONS(2907), 1, - anon_sym_RPAREN, - ACTIONS(2911), 1, - anon_sym_COMMA, - ACTIONS(2915), 1, + ACTIONS(2901), 1, sym_metavariable, - STATE(1512), 1, + ACTIONS(2943), 1, + anon_sym_RPAREN, + STATE(1518), 1, sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 1, + STATE(2243), 1, sym_generic_type_with_turbofish, + STATE(2341), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1052), 2, + STATE(990), 2, sym_string_literal, sym_boolean_literal, - STATE(1864), 2, + STATE(2009), 2, sym_meta_item, sym__literal, - ACTIONS(2913), 3, + ACTIONS(2899), 3, sym_self, sym_super, sym_crate, @@ -95975,7 +96227,7 @@ static uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(2909), 17, + ACTIONS(2895), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95993,62 +96245,129 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [41044] = 23, - ACTIONS(2530), 1, + anon_sym_default, + anon_sym_union, + [36731] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, + anon_sym_EQ, + ACTIONS(2953), 1, + anon_sym_AMP, + ACTIONS(2957), 1, + anon_sym_DOT_DOT, + ACTIONS(2959), 1, + anon_sym_AMP_AMP, + ACTIONS(2961), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2963), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_CARET, + STATE(30), 1, + sym_block, + STATE(962), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2951), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2955), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2969), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2947), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2971), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36820] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2917), 1, - anon_sym_RPAREN, - ACTIONS(2919), 1, - anon_sym_COMMA, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2973), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96059,61 +96378,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41133] = 22, - ACTIONS(2530), 1, + [36907] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2921), 2, + ACTIONS(2975), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96124,61 +96443,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41220] = 22, - ACTIONS(2530), 1, + [36994] = 23, + ACTIONS(439), 1, + anon_sym_RPAREN, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - STATE(1008), 1, + ACTIONS(2977), 1, + anon_sym_COMMA, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2923), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96189,16 +96509,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41307] = 4, - ACTIONS(2925), 1, + [37083] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2981), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2979), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, sym_identifier, + sym_self, + sym_super, + sym_crate, + [37132] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 16, + ACTIONS(2378), 16, anon_sym_PLUS, anon_sym_STAR, - anon_sym_as, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96212,12 +96576,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2392), 23, - anon_sym_SEMI, + ACTIONS(2380), 24, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -96236,51 +96601,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41358] = 19, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(2827), 1, + [37181] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2985), 9, anon_sym_LPAREN, - ACTIONS(2829), 1, + anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(2833), 1, - anon_sym_for, - ACTIONS(2835), 1, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, - ACTIONS(2837), 1, sym_metavariable, - STATE(1721), 1, - sym_scoped_type_identifier, - STATE(1773), 1, - sym_where_predicate, - STATE(1849), 1, - sym_generic_type, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - STATE(2323), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - STATE(2176), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2831), 17, + ACTIONS(2983), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96298,62 +96633,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [41439] = 23, - ACTIONS(2530), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [37230] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, + anon_sym_EQ, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2965), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_SEMI, - ACTIONS(2929), 1, - anon_sym_RBRACE, - STATE(1008), 1, + STATE(44), 1, + sym_block, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96364,17 +96713,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41528] = 5, - ACTIONS(2306), 1, - anon_sym_BANG, - ACTIONS(2931), 1, - anon_sym_COLON_COLON, + [37319] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2362), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96388,12 +96734,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 23, + ACTIONS(2364), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -96412,189 +96759,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41581] = 19, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(856), 1, + [37368] = 5, + ACTIONS(2344), 1, + anon_sym_BANG, + ACTIONS(2987), 1, anon_sym_COLON_COLON, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(2827), 1, - anon_sym_LPAREN, - ACTIONS(2829), 1, - anon_sym_STAR, - ACTIONS(2833), 1, - anon_sym_for, - ACTIONS(2835), 1, - anon_sym_AMP, - ACTIONS(2837), 1, - sym_metavariable, - STATE(1717), 1, - sym_where_predicate, - STATE(1721), 1, - sym_scoped_type_identifier, - STATE(1849), 1, - sym_generic_type, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - STATE(2323), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - STATE(2176), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2831), 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, - [41662] = 22, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(455), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - STATE(1008), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2534), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2933), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2536), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2708), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [41749] = 23, - ACTIONS(2530), 1, + anon_sym_DOT, + ACTIONS(453), 23, anon_sym_LPAREN, - ACTIONS(2532), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2935), 1, - anon_sym_RBRACE, - ACTIONS(2937), 1, - anon_sym_COMMA, - STATE(1008), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2534), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96605,61 +96807,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41838] = 22, - ACTIONS(2530), 1, + [37421] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2704), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2702), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [37470] = 23, + ACTIONS(560), 1, + anon_sym_RPAREN, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - STATE(1008), 1, + ACTIONS(2977), 1, + anon_sym_COMMA, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2939), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96670,62 +96919,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41925] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [37559] = 23, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2965), 1, anon_sym_CARET, - STATE(71), 1, - sym_block, - STATE(1008), 1, + ACTIONS(2989), 1, + anon_sym_LBRACE, + STATE(962), 1, sym_arguments, + STATE(994), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96736,107 +96985,109 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42014] = 3, + [37648] = 4, + ACTIONS(2995), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2344), 16, - anon_sym_PLUS, + ACTIONS(2993), 8, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR, + anon_sym_SQUOTE, anon_sym_BANG, - anon_sym_EQ, anon_sym_LT, - anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2346), 24, + sym_metavariable, + ACTIONS(2991), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [37699] = 23, + ACTIONS(2570), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(2572), 1, anon_sym_LBRACK, + ACTIONS(2578), 1, anon_sym_QMARK, + ACTIONS(2580), 1, anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [42063] = 22, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - STATE(1008), 1, + ACTIONS(2997), 1, + anon_sym_RPAREN, + ACTIONS(2999), 1, + anon_sym_COMMA, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2941), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96847,61 +97098,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42150] = 22, - ACTIONS(2530), 1, + [37788] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2943), 2, - anon_sym_RPAREN, + ACTIONS(3001), 2, + anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96912,62 +97163,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42237] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [37875] = 23, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2598), 1, anon_sym_CARET, - STATE(51), 1, - sym_block, - STATE(1008), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(3003), 1, + anon_sym_RBRACE, + ACTIONS(3005), 1, + anon_sym_COMMA, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96978,62 +97229,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42326] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [37964] = 23, + ACTIONS(263), 1, + anon_sym_RBRACE, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2598), 1, anon_sym_CARET, - STATE(55), 1, - sym_block, - STATE(1008), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(3007), 1, + anon_sym_SEMI, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97044,62 +97295,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42415] = 23, - ACTIONS(2530), 1, + [38053] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2945), 1, - anon_sym_RPAREN, - ACTIONS(2947), 1, - anon_sym_COMMA, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(3009), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97110,61 +97360,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42504] = 22, - ACTIONS(2530), 1, + [38140] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3013), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3011), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38189] = 23, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - STATE(1008), 1, + ACTIONS(2977), 1, + anon_sym_COMMA, + ACTIONS(3015), 1, + anon_sym_RPAREN, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2949), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97175,62 +97472,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42591] = 23, - ACTIONS(638), 1, + [38278] = 23, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2965), 1, anon_sym_CARET, - STATE(237), 1, + STATE(34), 1, sym_block, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97241,62 +97538,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42680] = 23, - ACTIONS(265), 1, - anon_sym_RBRACE, - ACTIONS(2530), 1, + [38367] = 23, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, + anon_sym_EQ, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2965), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(3017), 1, + anon_sym_LBRACE, + STATE(69), 1, + sym_match_block, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97307,62 +97604,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42769] = 23, - ACTIONS(271), 1, - anon_sym_RBRACE, - ACTIONS(2530), 1, + [38456] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, + anon_sym_EQ, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2965), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_SEMI, - STATE(1008), 1, + STATE(65), 1, + sym_block, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97373,42 +97670,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42858] = 3, + [38545] = 22, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2596), 1, + anon_sym_PIPE, + ACTIONS(2598), 1, + anon_sym_CARET, + ACTIONS(2606), 1, + anon_sym_DOT, + STATE(962), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2324), 16, + ACTIONS(2574), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3019), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2576), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2326), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97419,61 +97735,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42907] = 22, - ACTIONS(2530), 1, + [38632] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2951), 2, + ACTIONS(3021), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97484,62 +97800,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42994] = 23, - ACTIONS(586), 1, - anon_sym_RPAREN, - ACTIONS(2530), 1, + [38719] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2919), 1, - anon_sym_COMMA, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(3023), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97550,62 +97865,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43083] = 23, - ACTIONS(2530), 1, + [38806] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, + anon_sym_EQ, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2965), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_SEMI, - ACTIONS(2953), 1, - anon_sym_RBRACE, - STATE(1008), 1, + STATE(64), 1, + sym_block, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97616,62 +97931,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43172] = 23, - ACTIONS(257), 1, - anon_sym_RBRACE, - ACTIONS(2530), 1, + [38895] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_SEMI, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(3025), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97682,62 +97996,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43261] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [38982] = 23, + ACTIONS(111), 1, + anon_sym_RBRACE, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2598), 1, anon_sym_CARET, - STATE(720), 1, - sym_block, - STATE(1008), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(3007), 1, + anon_sym_SEMI, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97748,62 +98062,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43350] = 23, - ACTIONS(2530), 1, + [39071] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2965), 1, anon_sym_CARET, - ACTIONS(2955), 1, - anon_sym_LBRACE, - STATE(1008), 1, + STATE(52), 1, + sym_block, + STATE(962), 1, sym_arguments, - STATE(1026), 1, - sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97814,62 +98128,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43439] = 23, + [39160] = 23, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2965), 1, anon_sym_CARET, - STATE(32), 1, + STATE(71), 1, sym_block, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97880,62 +98194,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43528] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [39249] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2598), 1, anon_sym_CARET, - STATE(50), 1, - sym_block, - STATE(1008), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(3027), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97946,62 +98259,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43617] = 23, - ACTIONS(2530), 1, + [39336] = 23, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2927), 1, + ACTIONS(3007), 1, anon_sym_SEMI, - ACTIONS(2957), 1, + ACTIONS(3029), 1, anon_sym_RBRACE, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98012,62 +98325,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43706] = 23, - ACTIONS(267), 1, - anon_sym_RBRACE, - ACTIONS(2530), 1, + [39425] = 23, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(3031), 1, + anon_sym_RBRACE, + ACTIONS(3033), 1, + anon_sym_COMMA, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98078,62 +98391,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43795] = 23, - ACTIONS(2530), 1, + [39514] = 23, + ACTIONS(109), 1, + anon_sym_RBRACE, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2927), 1, + ACTIONS(3007), 1, anon_sym_SEMI, - ACTIONS(2959), 1, - anon_sym_RBRACE, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98144,62 +98457,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43884] = 23, + [39603] = 23, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2965), 1, anon_sym_CARET, - STATE(1008), 1, - sym_arguments, - STATE(1029), 1, + STATE(719), 1, sym_block, + STATE(962), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98210,62 +98523,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43973] = 23, - ACTIONS(2530), 1, + [39692] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2961), 1, - anon_sym_RBRACE, - ACTIONS(2963), 1, - anon_sym_COMMA, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(3035), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98276,62 +98588,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44062] = 23, - ACTIONS(103), 1, - anon_sym_RBRACE, - ACTIONS(2530), 1, + [39779] = 23, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2927), 1, + ACTIONS(3007), 1, anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(3037), 1, + anon_sym_RBRACE, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98342,62 +98654,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44151] = 23, - ACTIONS(638), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [39868] = 23, + ACTIONS(265), 1, + anon_sym_RBRACE, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2598), 1, anon_sym_CARET, - STATE(227), 1, - sym_block, - STATE(1008), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(3007), 1, + anon_sym_SEMI, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98408,62 +98720,109 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44240] = 23, - ACTIONS(638), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [39957] = 4, + ACTIONS(3039), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2993), 8, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2991), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [40008] = 23, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2598), 1, anon_sym_CARET, - STATE(217), 1, - sym_block, - STATE(1008), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(3007), 1, + anon_sym_SEMI, + ACTIONS(3041), 1, + anon_sym_RBRACE, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98474,62 +98833,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44329] = 23, - ACTIONS(638), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [40097] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2692), 9, anon_sym_LPAREN, - ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2690), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [40146] = 23, + ACTIONS(105), 1, + anon_sym_RBRACE, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2598), 1, anon_sym_CARET, - STATE(206), 1, - sym_block, - STATE(1008), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(3007), 1, + anon_sym_SEMI, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98540,62 +98945,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44418] = 23, - ACTIONS(2530), 1, + [40235] = 23, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, + anon_sym_EQ, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_SEMI, ACTIONS(2965), 1, - anon_sym_RBRACE, - STATE(1008), 1, + anon_sym_CARET, + STATE(962), 1, sym_arguments, + STATE(977), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98606,62 +99011,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44507] = 23, - ACTIONS(638), 1, + [40324] = 23, + ACTIONS(640), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2965), 1, anon_sym_CARET, - STATE(233), 1, + STATE(216), 1, sym_block, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98672,62 +99077,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44596] = 23, - ACTIONS(15), 1, + [40413] = 23, + ACTIONS(640), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2965), 1, anon_sym_CARET, - STATE(53), 1, + STATE(219), 1, sym_block, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98738,108 +99143,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44685] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2352), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2354), 24, - anon_sym_LPAREN, + [40502] = 23, + ACTIONS(640), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [44734] = 23, - ACTIONS(2530), 1, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2965), 1, anon_sym_CARET, - ACTIONS(2967), 1, - anon_sym_LBRACE, - STATE(65), 1, - sym_match_block, - STATE(1008), 1, + STATE(222), 1, + sym_block, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98850,62 +99209,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44823] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [40591] = 23, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2598), 1, anon_sym_CARET, - STATE(957), 1, - sym_block, - STATE(1008), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(3007), 1, + anon_sym_SEMI, + ACTIONS(3043), 1, + anon_sym_RBRACE, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98916,62 +99275,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44912] = 23, - ACTIONS(2530), 1, + [40680] = 23, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, + anon_sym_EQ, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2965), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_SEMI, - ACTIONS(2969), 1, - anon_sym_RBRACE, - STATE(1008), 1, + STATE(962), 1, sym_arguments, + STATE(1036), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98982,62 +99341,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45001] = 23, - ACTIONS(15), 1, + [40769] = 23, + ACTIONS(640), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2965), 1, anon_sym_CARET, - STATE(61), 1, + STATE(207), 1, sym_block, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99048,62 +99407,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45090] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [40858] = 23, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2598), 1, anon_sym_CARET, - STATE(1008), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(3007), 1, + anon_sym_SEMI, + ACTIONS(3045), 1, + anon_sym_RBRACE, + STATE(962), 1, sym_arguments, - STATE(1059), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99114,61 +99473,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45179] = 22, - ACTIONS(2530), 1, + [40947] = 23, + ACTIONS(267), 1, + anon_sym_RBRACE, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - STATE(1008), 1, + ACTIONS(3007), 1, + anon_sym_SEMI, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99179,62 +99539,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45266] = 23, - ACTIONS(15), 1, + [41036] = 23, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2965), 1, anon_sym_CARET, - STATE(31), 1, - sym_block, - STATE(1008), 1, + STATE(962), 1, sym_arguments, + STATE(1062), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99245,62 +99605,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45355] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2885), 1, - anon_sym_AMP, - ACTIONS(2889), 1, - anon_sym_DOT_DOT, - ACTIONS(2891), 1, - anon_sym_AMP_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, - anon_sym_PIPE, - ACTIONS(2897), 1, - anon_sym_CARET, - STATE(726), 1, - sym_block, - STATE(1008), 1, - sym_arguments, + [41125] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2370), 16, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2883), 2, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + anon_sym_DOT, + ACTIONS(2372), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99311,62 +99651,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45444] = 23, - ACTIONS(638), 1, + [41174] = 23, + ACTIONS(640), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2965), 1, anon_sym_CARET, - STATE(243), 1, + STATE(227), 1, sym_block, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99377,62 +99717,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45533] = 23, - ACTIONS(2530), 1, + [41263] = 23, + ACTIONS(640), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2965), 1, anon_sym_CARET, - ACTIONS(2973), 1, - anon_sym_LBRACE, - STATE(221), 1, - sym_match_block, - STATE(1008), 1, + STATE(206), 1, + sym_block, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99443,62 +99783,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45622] = 23, - ACTIONS(443), 1, - anon_sym_RPAREN, - ACTIONS(2530), 1, + [41352] = 23, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, + anon_sym_EQ, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2965), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2919), 1, - anon_sym_COMMA, - STATE(1008), 1, + STATE(962), 1, sym_arguments, + STATE(996), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99509,62 +99849,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45711] = 23, + [41441] = 23, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2965), 1, anon_sym_CARET, - STATE(1008), 1, - sym_arguments, - STATE(1039), 1, + STATE(727), 1, sym_block, + STATE(962), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99575,62 +99915,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45800] = 23, - ACTIONS(638), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [41530] = 23, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2965), 1, anon_sym_CARET, - STATE(207), 1, - sym_block, - STATE(1008), 1, + ACTIONS(3047), 1, + anon_sym_LBRACE, + STATE(212), 1, + sym_match_block, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99641,62 +99981,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45889] = 23, - ACTIONS(263), 1, - anon_sym_RBRACE, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_SEMI, - STATE(1008), 1, - sym_arguments, + [41619] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2386), 16, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + anon_sym_DOT, + ACTIONS(2388), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99707,61 +100027,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45978] = 22, - ACTIONS(2530), 1, + [41668] = 23, + ACTIONS(640), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, + anon_sym_EQ, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2965), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - STATE(1008), 1, + STATE(231), 1, + sym_block, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2975), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2536), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99772,62 +100093,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46065] = 23, - ACTIONS(279), 1, + [41757] = 23, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2530), 1, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2965), 1, anon_sym_CARET, - STATE(978), 1, + STATE(55), 1, sym_block, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99838,62 +100159,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46154] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, + [41846] = 23, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2598), 1, anon_sym_CARET, - STATE(975), 1, - sym_block, - STATE(1008), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(3007), 1, + anon_sym_SEMI, + ACTIONS(3049), 1, + anon_sym_RBRACE, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99904,60 +100225,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46243] = 22, - ACTIONS(2530), 1, + [41935] = 23, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, + anon_sym_EQ, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2965), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2977), 1, - anon_sym_SEMI, - STATE(1008), 1, + STATE(962), 1, sym_arguments, + STATE(1030), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99968,42 +100291,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46329] = 4, - ACTIONS(2979), 1, - anon_sym_COLON_COLON, + [42024] = 23, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, + anon_sym_EQ, + ACTIONS(2953), 1, + anon_sym_AMP, + ACTIONS(2957), 1, + anon_sym_DOT_DOT, + ACTIONS(2959), 1, + anon_sym_AMP_AMP, + ACTIONS(2961), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2963), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_CARET, + STATE(962), 1, + sym_arguments, + STATE(1013), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 15, + ACTIONS(2945), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2955), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2947), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2392), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100014,60 +100357,120 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46379] = 22, - ACTIONS(2530), 1, + [42113] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(975), 1, + anon_sym_COLON_COLON, + ACTIONS(2891), 1, + sym_identifier, + ACTIONS(2901), 1, + sym_metavariable, + STATE(1518), 1, + sym_scoped_identifier, + STATE(2243), 1, + sym_generic_type_with_turbofish, + STATE(2341), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(990), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2009), 2, + sym_meta_item, + sym__literal, + ACTIONS(2899), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(89), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(2895), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [42186] = 23, + ACTIONS(640), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, + anon_sym_EQ, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2965), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2981), 1, - anon_sym_SEMI, - STATE(1008), 1, + STATE(230), 1, + sym_block, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100078,60 +100481,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46465] = 22, - ACTIONS(2530), 1, + [42275] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2983), 1, + ACTIONS(3051), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100142,60 +100545,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46551] = 22, - ACTIONS(2530), 1, + [42361] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(2977), 1, + anon_sym_COMMA, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100206,60 +100609,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46637] = 22, - ACTIONS(2530), 1, + [42447] = 19, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2764), 1, + anon_sym_EQ, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2965), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - anon_sym_SEMI, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2762), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100270,60 +100670,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46723] = 22, - ACTIONS(2530), 1, + [42527] = 22, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2949), 1, + anon_sym_EQ, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2965), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2989), 1, - anon_sym_SEMI, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100334,60 +100734,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46809] = 22, - ACTIONS(2530), 1, + [42613] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2991), 1, + ACTIONS(3053), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100398,60 +100798,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46895] = 22, - ACTIONS(2530), 1, + [42699] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2993), 1, - anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(3055), 1, + anon_sym_RBRACK, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100462,60 +100862,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46981] = 22, - ACTIONS(2530), 1, + [42785] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2919), 1, - anon_sym_COMMA, - STATE(1008), 1, + ACTIONS(3057), 1, + anon_sym_RBRACK, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100526,60 +100926,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47067] = 22, - ACTIONS(2530), 1, + [42871] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2995), 1, - anon_sym_RBRACK, - STATE(1008), 1, + ACTIONS(3007), 1, + anon_sym_SEMI, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100590,60 +100990,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47153] = 22, - ACTIONS(2530), 1, + [42957] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2997), 1, - anon_sym_RBRACK, - STATE(1008), 1, + ACTIONS(3059), 1, + anon_sym_SEMI, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100654,42 +101054,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47239] = 4, - ACTIONS(2464), 1, - anon_sym_COLON_COLON, + [43043] = 22, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2596), 1, + anon_sym_PIPE, + ACTIONS(2598), 1, + anon_sym_CARET, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(3061), 1, + anon_sym_RBRACK, + STATE(962), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2410), 15, + ACTIONS(2574), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2576), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2406), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100700,60 +101118,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47289] = 22, - ACTIONS(2530), 1, + [43129] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2999), 1, + ACTIONS(3063), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100764,57 +101182,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47375] = 19, - ACTIONS(2530), 1, + [43215] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2674), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2598), 1, anon_sym_CARET, - STATE(1008), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(3065), 1, + anon_sym_SEMI, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2672), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100825,60 +101246,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47455] = 22, - ACTIONS(2530), 1, + [43301] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3001), 1, + ACTIONS(3067), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100889,60 +101310,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47541] = 22, - ACTIONS(2530), 1, + [43387] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3003), 1, + ACTIONS(3069), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100953,118 +101374,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47627] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(943), 1, - anon_sym_COLON_COLON, - ACTIONS(2905), 1, - sym_identifier, - ACTIONS(2915), 1, - sym_metavariable, - ACTIONS(3005), 1, - anon_sym_RPAREN, - STATE(1512), 1, - sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(1052), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2079), 2, - sym_meta_item, - sym__literal, - ACTIONS(2913), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2909), 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, - [47701] = 22, - ACTIONS(2530), 1, + [43473] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2700), 1, - anon_sym_LBRACE, - ACTIONS(2702), 1, + ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2704), 1, + ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2881), 1, + ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2598), 1, anon_sym_CARET, - STATE(1008), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(3071), 1, + anon_sym_SEMI, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101075,60 +101438,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47787] = 22, - ACTIONS(2530), 1, + [43559] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3007), 1, - anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(3073), 1, + anon_sym_COMMA, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101139,60 +101502,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47873] = 22, - ACTIONS(2530), 1, + [43645] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_RBRACK, - STATE(1008), 1, + ACTIONS(3075), 1, + anon_sym_SEMI, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101203,49 +101566,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47959] = 11, - ACTIONS(2530), 1, + [43731] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2889), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - STATE(1008), 1, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2596), 1, + anon_sym_PIPE, + ACTIONS(2598), 1, + anon_sym_CARET, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_SEMI, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2887), 2, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2879), 3, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2682), 8, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2680), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101254,108 +101628,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [48023] = 4, - ACTIONS(3013), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3015), 8, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3011), 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_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [48073] = 22, - ACTIONS(2530), 1, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [43817] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3017), 1, + ACTIONS(3079), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101366,60 +101694,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48159] = 22, - ACTIONS(2530), 1, + [43903] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3019), 1, + ACTIONS(3081), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101430,115 +101758,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48245] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(943), 1, - anon_sym_COLON_COLON, - ACTIONS(3021), 1, - sym_identifier, - ACTIONS(3027), 1, - sym_metavariable, - STATE(1341), 1, - sym_scoped_identifier, - STATE(1389), 1, - sym__literal_pattern, - STATE(2237), 1, - sym_bracketed_type, - STATE(2403), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3025), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3023), 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, - [48319] = 19, - ACTIONS(2530), 1, + [43989] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2538), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2598), 1, anon_sym_CARET, - STATE(1008), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(3083), 1, + anon_sym_SEMI, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2528), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101549,60 +101822,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48399] = 22, - ACTIONS(2530), 1, + [44075] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3029), 1, + ACTIONS(3085), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101613,147 +101886,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48485] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(943), 1, - anon_sym_COLON_COLON, - ACTIONS(2905), 1, - sym_identifier, - ACTIONS(2915), 1, - sym_metavariable, - ACTIONS(3031), 1, - anon_sym_RPAREN, - STATE(1512), 1, - sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(1052), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2079), 2, - sym_meta_item, - sym__literal, - ACTIONS(2913), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2909), 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, - [48559] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2798), 9, + [44161] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, + ACTIONS(2572), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - sym_metavariable, - ACTIONS(2796), 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_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [48607] = 6, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - STATE(1008), 1, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2596), 1, + anon_sym_PIPE, + ACTIONS(2598), 1, + anon_sym_CARET, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(3087), 1, + anon_sym_RBRACK, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2887), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(325), 14, + ACTIONS(2574), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2576), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(323), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101764,75 +101950,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48661] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3035), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, + [44247] = 4, + ACTIONS(2432), 1, anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3033), 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_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [48709] = 9, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2889), 1, - anon_sym_DOT_DOT, - STATE(1008), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2887), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2762), 13, + ACTIONS(2434), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -101840,10 +101971,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2760), 19, + anon_sym_DOT, + ACTIONS(2430), 23, + anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -101860,60 +101996,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48769] = 22, - ACTIONS(2530), 1, + [44297] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3037), 1, - anon_sym_EQ_GT, - STATE(1008), 1, + ACTIONS(3089), 1, + anon_sym_SEMI, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101924,106 +102060,93 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48855] = 4, - ACTIONS(3039), 1, + [44383] = 4, + ACTIONS(3091), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3015), 8, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(455), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(3011), 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_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [48905] = 22, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2560), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(453), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3041), 1, - anon_sym_COMMA, - STATE(1008), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44433] = 9, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2957), 1, + anon_sym_DOT_DOT, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2955), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2720), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2718), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102034,60 +102157,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48991] = 22, - ACTIONS(2530), 1, + [44493] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3043), 1, - anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(3093), 1, + anon_sym_COMMA, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102098,42 +102221,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49077] = 13, - ACTIONS(2530), 1, + [44579] = 10, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2885), 1, - anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2682), 5, + ACTIONS(2776), 10, + anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2680), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2774), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -102153,54 +102273,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49145] = 19, - ACTIONS(2530), 1, + [44641] = 9, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2640), 1, + ACTIONS(2957), 1, + anon_sym_DOT_DOT, + STATE(962), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2955), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2776), 13, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2885), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2889), 1, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2774), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44701] = 19, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2863), 1, + anon_sym_EQ, + ACTIONS(2953), 1, + anon_sym_AMP, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2965), 1, anon_sym_CARET, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2638), 13, + ACTIONS(2861), 13, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -102214,60 +102385,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49225] = 22, - ACTIONS(2530), 1, + [44781] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3045), 1, - anon_sym_COMMA, - STATE(1008), 1, + ACTIONS(3095), 1, + anon_sym_RBRACK, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102278,60 +102449,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49311] = 22, - ACTIONS(2530), 1, + [44867] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3047), 1, - anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(3097), 1, + anon_sym_COMMA, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102342,52 +102513,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49397] = 14, - ACTIONS(2530), 1, + [44953] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2885), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2897), 1, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2596), 1, + anon_sym_PIPE, + ACTIONS(2598), 1, anon_sym_CARET, - STATE(1008), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(3099), 1, + anon_sym_SEMI, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2887), 2, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2682), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(2680), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102398,13 +102577,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49467] = 4, - ACTIONS(3049), 1, + [45039] = 18, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(692), 1, + anon_sym_extern, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(882), 1, anon_sym_COLON_COLON, + ACTIONS(2748), 1, + sym_metavariable, + ACTIONS(3101), 1, + sym_identifier, + ACTIONS(3103), 1, + anon_sym_fn, + STATE(1677), 1, + sym_scoped_type_identifier, + STATE(2252), 1, + sym_bracketed_type, + STATE(2253), 1, + sym_generic_type_with_turbofish, + STATE(2310), 1, + sym_generic_type, + STATE(2336), 1, + sym_function_modifiers, + STATE(2364), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + STATE(1466), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(672), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(878), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [45117] = 4, + ACTIONS(3105), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2410), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102420,7 +102659,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 23, + ACTIONS(2408), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -102444,56 +102683,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49517] = 18, - ACTIONS(2530), 1, + [45167] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2682), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2895), 1, + ACTIONS(2594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2598), 1, anon_sym_CARET, - STATE(1008), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(3107), 1, + anon_sym_SEMI, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2680), 14, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_PIPE_PIPE, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102504,105 +102747,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49595] = 3, + [45253] = 6, + ACTIONS(2957), 1, + anon_sym_DOT_DOT, + STATE(962), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2794), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2955), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(317), 14, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(2792), 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_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [49643] = 22, - ACTIONS(2530), 1, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(315), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [45307] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2810), 1, + anon_sym_LBRACE, + ACTIONS(2949), 1, + anon_sym_EQ, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2965), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3051), 1, - anon_sym_RBRACK, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2971), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102613,38 +102859,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49729] = 9, - ACTIONS(2530), 1, + [45393] = 15, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2889), 1, + ACTIONS(2953), 1, + anon_sym_AMP, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - STATE(1008), 1, + ACTIONS(2963), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_CARET, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2887), 2, + ACTIONS(2945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2686), 13, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(2969), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2776), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2947), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2684), 19, + ACTIONS(2774), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -102664,57 +102916,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49789] = 19, - ACTIONS(283), 1, - anon_sym_EQ, - ACTIONS(2530), 1, + [45465] = 12, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2885), 1, - anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, - anon_sym_AMP_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, - anon_sym_PIPE, - ACTIONS(2897), 1, - anon_sym_CARET, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2776), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(2774), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(277), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102725,60 +102970,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49869] = 22, - ACTIONS(2530), 1, + [45531] = 17, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2718), 1, - anon_sym_LBRACE, - ACTIONS(2881), 1, + ACTIONS(2776), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, - anon_sym_AMP_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2965), 1, anon_sym_CARET, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2903), 10, + ACTIONS(2774), 15, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102789,24 +103029,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49955] = 9, - ACTIONS(2530), 1, + [45607] = 9, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2742), 13, + ACTIONS(2648), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102820,7 +103060,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2740), 19, + ACTIONS(2646), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -102840,42 +103080,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50015] = 4, - ACTIONS(2408), 1, - anon_sym_COLON_COLON, + [45667] = 18, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2776), 1, + anon_sym_EQ, + ACTIONS(2953), 1, + anon_sym_AMP, + ACTIONS(2957), 1, + anon_sym_DOT_DOT, + ACTIONS(2959), 1, + anon_sym_AMP_AMP, + ACTIONS(2963), 1, + anon_sym_PIPE, + ACTIONS(2965), 1, + anon_sym_CARET, + STATE(962), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2410), 15, + ACTIONS(2945), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2955), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2947), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2406), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2774), 14, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102886,118 +103140,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50065] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(708), 1, - anon_sym_DASH, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(943), 1, - anon_sym_COLON_COLON, - ACTIONS(3053), 1, - sym_identifier, - ACTIONS(3059), 1, - sym_metavariable, - STATE(1354), 1, - sym_scoped_identifier, - STATE(1359), 1, - sym__literal_pattern, - STATE(2237), 1, - sym_bracketed_type, - STATE(2403), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3057), 3, - sym_self, - sym_super, - sym_crate, - STATE(1309), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(710), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3055), 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, - [50139] = 22, - ACTIONS(2530), 1, + [45745] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3061), 1, + ACTIONS(3109), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103008,150 +103204,113 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50225] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3065), 9, + [45831] = 14, + ACTIONS(2570), 1, anon_sym_LPAREN, + ACTIONS(2572), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2953), 1, anon_sym_AMP, - sym_metavariable, - ACTIONS(3063), 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_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [50273] = 3, + ACTIONS(2957), 1, + anon_sym_DOT_DOT, + ACTIONS(2965), 1, + anon_sym_CARET, + STATE(962), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3069), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2955), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2969), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2947), 3, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2776), 4, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3067), 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_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [50321] = 22, - ACTIONS(2530), 1, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(2774), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [45901] = 19, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2668), 1, + anon_sym_EQ, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2965), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3071), 1, - anon_sym_SEMI, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2666), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103162,60 +103321,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50407] = 22, - ACTIONS(2530), 1, + [45981] = 19, + ACTIONS(283), 1, + anon_sym_EQ, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2965), 1, anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3073), 1, - anon_sym_COMMA, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(277), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103226,55 +103382,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50493] = 17, - ACTIONS(2530), 1, + [46061] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2682), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2895), 1, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2598), 1, anon_sym_CARET, - STATE(1008), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(3111), 1, + anon_sym_SEMI, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2680), 15, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103285,60 +103446,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50569] = 22, - ACTIONS(2530), 1, + [46147] = 9, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_SEMI, - STATE(1008), 1, + ACTIONS(2957), 1, + anon_sym_DOT_DOT, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2955), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2792), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2790), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103349,39 +103497,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50655] = 10, - ACTIONS(2530), 1, + [46207] = 13, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2889), 1, + ACTIONS(2953), 1, + anon_sym_AMP, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2887), 2, + ACTIONS(2945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2879), 3, + ACTIONS(2969), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2682), 10, - anon_sym_PLUS, + ACTIONS(2776), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2680), 19, + ACTIONS(2774), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -103401,38 +103552,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50717] = 9, - ACTIONS(2530), 1, + [46275] = 11, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2887), 2, + ACTIONS(2945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2682), 13, - anon_sym_PLUS, + ACTIONS(2947), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2776), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2680), 19, + ACTIONS(2774), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -103452,60 +103605,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50777] = 22, - ACTIONS(2530), 1, + [46339] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2542), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2554), 1, + ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3075), 1, - anon_sym_RBRACK, - STATE(1008), 1, + ACTIONS(3113), 1, + anon_sym_SEMI, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2540), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103516,54 +103669,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50863] = 19, - ACTIONS(2530), 1, + [46425] = 19, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, + ACTIONS(2606), 1, anon_sym_DOT, - ACTIONS(2778), 1, + ACTIONS(2879), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2891), 1, + ACTIONS(2959), 1, anon_sym_AMP_AMP, - ACTIONS(2893), 1, + ACTIONS(2961), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(2963), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2965), 1, anon_sym_CARET, - STATE(1008), 1, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2883), 2, + ACTIONS(2951), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 2, + ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2879), 3, + ACTIONS(2947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2899), 4, + ACTIONS(2967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2776), 13, + ACTIONS(2877), 13, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -103577,53 +103730,120 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50943] = 15, - ACTIONS(2530), 1, + [46505] = 18, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(692), 1, + anon_sym_extern, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(2748), 1, + sym_metavariable, + ACTIONS(3115), 1, + sym_identifier, + ACTIONS(3117), 1, + anon_sym_fn, + STATE(1727), 1, + sym_scoped_type_identifier, + STATE(2252), 1, + sym_bracketed_type, + STATE(2253), 1, + sym_generic_type_with_turbofish, + STATE(2273), 1, + sym_function_modifiers, + STATE(2310), 1, + sym_generic_type, + STATE(2364), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1466), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(672), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(878), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [46583] = 22, + ACTIONS(2570), 1, anon_sym_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2885), 1, + ACTIONS(2578), 1, + anon_sym_QMARK, + ACTIONS(2580), 1, + anon_sym_as, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2889), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2895), 1, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2897), 1, + ACTIONS(2598), 1, anon_sym_CARET, - STATE(1008), 1, + ACTIONS(2606), 1, + anon_sym_DOT, + ACTIONS(3119), 1, + anon_sym_EQ_GT, + STATE(962), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2574), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2887), 2, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2682), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2879), 3, + ACTIONS(2576), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2680), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2600), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103634,44 +103854,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51015] = 12, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2889), 1, - anon_sym_DOT_DOT, - STATE(1008), 1, - sym_arguments, + [46669] = 4, + ACTIONS(2460), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2877), 2, + ACTIONS(2434), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2887), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2901), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2879), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2682), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2680), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2430), 23, + anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -103688,60 +103900,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51081] = 22, - ACTIONS(2530), 1, - anon_sym_LPAREN, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - anon_sym_AMP_AMP, - ACTIONS(2550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2552), 1, - anon_sym_PIPE, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - ACTIONS(2704), 1, - anon_sym_as, - ACTIONS(2706), 1, - anon_sym_EQ, - ACTIONS(3077), 1, - anon_sym_SEMI, - STATE(1008), 1, - sym_arguments, + [46719] = 4, + ACTIONS(3105), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2410), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2540), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2544), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2536), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 4, + anon_sym_DOT, + ACTIONS(2408), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103752,215 +103946,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51167] = 17, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(2837), 1, - sym_metavariable, - ACTIONS(3079), 1, - sym_identifier, - ACTIONS(3081), 1, - anon_sym_fn, - STATE(1690), 1, - sym_scoped_type_identifier, - STATE(2233), 1, - sym_generic_type, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - STATE(2262), 1, - sym_function_modifiers, - STATE(2323), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - ACTIONS(2861), 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, - [51242] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(943), 1, - anon_sym_COLON_COLON, - ACTIONS(2905), 1, - sym_identifier, - ACTIONS(2915), 1, - sym_metavariable, - STATE(1512), 1, - sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(1052), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2079), 2, - sym_meta_item, - sym__literal, - ACTIONS(2913), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2909), 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, - [51313] = 17, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(690), 1, - anon_sym_extern, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(2837), 1, - sym_metavariable, - ACTIONS(3083), 1, - sym_identifier, - ACTIONS(3085), 1, - anon_sym_fn, - STATE(1733), 1, - sym_scoped_type_identifier, - STATE(2233), 1, - sym_generic_type, - STATE(2241), 1, - sym_bracketed_type, - STATE(2242), 1, - sym_generic_type_with_turbofish, - STATE(2288), 1, - sym_function_modifiers, - STATE(2323), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1482), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(670), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - ACTIONS(2861), 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, - [51388] = 15, + [46769] = 15, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3087), 1, + ACTIONS(3121), 1, sym_identifier, - ACTIONS(3089), 1, + ACTIONS(3123), 1, anon_sym_LBRACE, - ACTIONS(3091), 1, + ACTIONS(3125), 1, anon_sym_RBRACE, - ACTIONS(3093), 1, + ACTIONS(3127), 1, anon_sym_STAR, - ACTIONS(3097), 1, + ACTIONS(3131), 1, anon_sym_COMMA, - ACTIONS(3099), 1, + ACTIONS(3133), 1, anon_sym_COLON_COLON, - ACTIONS(3103), 1, + ACTIONS(3137), 1, sym_metavariable, - STATE(1652), 1, + STATE(1661), 1, sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 1, + STATE(2243), 1, sym_generic_type_with_turbofish, + STATE(2341), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 3, + ACTIONS(3135), 3, sym_self, sym_super, sym_crate, - STATE(1853), 5, + STATE(1877), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3095), 17, + ACTIONS(3129), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103978,41 +104000,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51457] = 14, + anon_sym_default, + anon_sym_union, + [46840] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3087), 1, + ACTIONS(3121), 1, sym_identifier, - ACTIONS(3089), 1, + ACTIONS(3123), 1, anon_sym_LBRACE, - ACTIONS(3093), 1, + ACTIONS(3127), 1, anon_sym_STAR, - ACTIONS(3099), 1, + ACTIONS(3133), 1, anon_sym_COLON_COLON, - ACTIONS(3103), 1, + ACTIONS(3137), 1, sym_metavariable, - ACTIONS(3105), 1, + ACTIONS(3139), 1, anon_sym_RBRACE, - STATE(1652), 1, + STATE(1661), 1, sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 1, + STATE(2243), 1, sym_generic_type_with_turbofish, + STATE(2341), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 3, + ACTIONS(3135), 3, sym_self, sym_super, sym_crate, - STATE(2160), 5, + STATE(2105), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3095), 17, + ACTIONS(3129), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104030,41 +104054,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51523] = 14, + anon_sym_default, + anon_sym_union, + [46908] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3087), 1, + ACTIONS(3121), 1, sym_identifier, - ACTIONS(3089), 1, + ACTIONS(3123), 1, anon_sym_LBRACE, - ACTIONS(3093), 1, + ACTIONS(3127), 1, anon_sym_STAR, - ACTIONS(3099), 1, + ACTIONS(3133), 1, anon_sym_COLON_COLON, - ACTIONS(3103), 1, + ACTIONS(3137), 1, sym_metavariable, - ACTIONS(3107), 1, + ACTIONS(3141), 1, anon_sym_RBRACE, - STATE(1652), 1, + STATE(1661), 1, sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 1, + STATE(2243), 1, sym_generic_type_with_turbofish, + STATE(2341), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 3, + ACTIONS(3135), 3, sym_self, sym_super, sym_crate, - STATE(2160), 5, + STATE(2105), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3095), 17, + ACTIONS(3129), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104082,39 +104108,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51589] = 13, + anon_sym_default, + anon_sym_union, + [46976] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3087), 1, + ACTIONS(3121), 1, sym_identifier, - ACTIONS(3089), 1, + ACTIONS(3123), 1, anon_sym_LBRACE, - ACTIONS(3093), 1, + ACTIONS(3127), 1, anon_sym_STAR, - ACTIONS(3099), 1, + ACTIONS(3133), 1, anon_sym_COLON_COLON, - ACTIONS(3103), 1, + ACTIONS(3137), 1, sym_metavariable, - STATE(1652), 1, + STATE(1661), 1, sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 1, + STATE(2243), 1, sym_generic_type_with_turbofish, + STATE(2341), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 3, + ACTIONS(3135), 3, sym_self, sym_super, sym_crate, - STATE(2401), 5, + STATE(2360), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3095), 17, + ACTIONS(3129), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104132,39 +104160,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51652] = 13, + anon_sym_default, + anon_sym_union, + [47041] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3087), 1, + ACTIONS(3121), 1, sym_identifier, - ACTIONS(3089), 1, + ACTIONS(3123), 1, anon_sym_LBRACE, - ACTIONS(3093), 1, + ACTIONS(3127), 1, anon_sym_STAR, - ACTIONS(3099), 1, + ACTIONS(3133), 1, anon_sym_COLON_COLON, - ACTIONS(3103), 1, + ACTIONS(3137), 1, sym_metavariable, - STATE(1652), 1, + STATE(1661), 1, sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 1, + STATE(2243), 1, sym_generic_type_with_turbofish, + STATE(2341), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 3, + ACTIONS(3135), 3, sym_self, sym_super, sym_crate, - STATE(2414), 5, + STATE(2377), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3095), 17, + ACTIONS(3129), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104182,39 +104212,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51715] = 13, + anon_sym_default, + anon_sym_union, + [47106] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3087), 1, + ACTIONS(3121), 1, sym_identifier, - ACTIONS(3089), 1, + ACTIONS(3123), 1, anon_sym_LBRACE, - ACTIONS(3093), 1, + ACTIONS(3127), 1, anon_sym_STAR, - ACTIONS(3099), 1, + ACTIONS(3133), 1, anon_sym_COLON_COLON, - ACTIONS(3103), 1, + ACTIONS(3137), 1, sym_metavariable, - STATE(1652), 1, + STATE(1661), 1, sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 1, + STATE(2243), 1, sym_generic_type_with_turbofish, + STATE(2341), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 3, + ACTIONS(3135), 3, sym_self, sym_super, sym_crate, - STATE(2324), 5, + STATE(2105), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3095), 17, + ACTIONS(3129), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104232,39 +104264,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51778] = 13, + anon_sym_default, + anon_sym_union, + [47171] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3087), 1, + ACTIONS(3121), 1, sym_identifier, - ACTIONS(3089), 1, + ACTIONS(3123), 1, anon_sym_LBRACE, - ACTIONS(3093), 1, + ACTIONS(3127), 1, anon_sym_STAR, - ACTIONS(3099), 1, + ACTIONS(3133), 1, anon_sym_COLON_COLON, - ACTIONS(3103), 1, + ACTIONS(3137), 1, sym_metavariable, - STATE(1652), 1, + STATE(1661), 1, sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 1, + STATE(2243), 1, sym_generic_type_with_turbofish, + STATE(2341), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 3, + ACTIONS(3135), 3, sym_self, sym_super, sym_crate, - STATE(2189), 5, + STATE(2245), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3095), 17, + ACTIONS(3129), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104282,39 +104316,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51841] = 13, + anon_sym_default, + anon_sym_union, + [47236] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3087), 1, + ACTIONS(3121), 1, sym_identifier, - ACTIONS(3089), 1, + ACTIONS(3123), 1, anon_sym_LBRACE, - ACTIONS(3093), 1, + ACTIONS(3127), 1, anon_sym_STAR, - ACTIONS(3099), 1, + ACTIONS(3133), 1, anon_sym_COLON_COLON, - ACTIONS(3103), 1, + ACTIONS(3137), 1, sym_metavariable, - STATE(1652), 1, + STATE(1661), 1, sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 1, + STATE(2243), 1, sym_generic_type_with_turbofish, + STATE(2341), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 3, + ACTIONS(3135), 3, sym_self, sym_super, sym_crate, - STATE(2160), 5, + STATE(2216), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3095), 17, + ACTIONS(3129), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104332,15 +104368,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51904] = 3, + anon_sym_default, + anon_sym_union, + [47301] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3111), 3, + ACTIONS(3145), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3109), 27, + ACTIONS(3143), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104362,21 +104400,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_default, anon_sym_fn, + anon_sym_union, anon_sym_unsafe, anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [51943] = 3, + [47341] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3115), 3, + ACTIONS(3149), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3113), 27, + ACTIONS(3147), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104398,21 +104437,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_default, anon_sym_fn, + anon_sym_union, anon_sym_unsafe, anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [51982] = 3, + [47381] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3119), 3, + ACTIONS(3153), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3117), 27, + ACTIONS(3151), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104434,37 +104474,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_default, anon_sym_fn, + anon_sym_union, anon_sym_unsafe, anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [52021] = 11, + [47421] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(943), 1, + ACTIONS(975), 1, anon_sym_COLON_COLON, - ACTIONS(2905), 1, + ACTIONS(2891), 1, sym_identifier, - ACTIONS(2915), 1, + ACTIONS(2901), 1, sym_metavariable, - STATE(1512), 1, + STATE(1518), 1, sym_scoped_identifier, - STATE(2300), 1, + STATE(2243), 1, + sym_generic_type_with_turbofish, + STATE(2290), 1, sym_meta_item, - STATE(2310), 1, + STATE(2341), 1, sym_bracketed_type, - STATE(2403), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2913), 3, + ACTIONS(2899), 3, sym_self, sym_super, sym_crate, - ACTIONS(2909), 17, + ACTIONS(2895), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104482,31 +104523,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52074] = 11, + anon_sym_default, + anon_sym_union, + [47476] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(943), 1, + ACTIONS(975), 1, anon_sym_COLON_COLON, - ACTIONS(2905), 1, + ACTIONS(2891), 1, sym_identifier, - ACTIONS(2915), 1, + ACTIONS(2901), 1, sym_metavariable, - STATE(1512), 1, + STATE(1518), 1, sym_scoped_identifier, - STATE(2264), 1, + STATE(2219), 1, sym_meta_item, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 1, + STATE(2243), 1, sym_generic_type_with_turbofish, + STATE(2341), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2913), 3, + ACTIONS(2899), 3, sym_self, sym_super, sym_crate, - ACTIONS(2909), 17, + ACTIONS(2895), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104524,31 +104567,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52127] = 11, + anon_sym_default, + anon_sym_union, + [47531] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(943), 1, + ACTIONS(975), 1, anon_sym_COLON_COLON, - ACTIONS(2905), 1, + ACTIONS(2891), 1, sym_identifier, - ACTIONS(2915), 1, + ACTIONS(2901), 1, sym_metavariable, - STATE(1512), 1, + STATE(1518), 1, sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2313), 1, - sym_meta_item, - STATE(2403), 1, + STATE(2243), 1, sym_generic_type_with_turbofish, + STATE(2275), 1, + sym_meta_item, + STATE(2341), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2913), 3, + ACTIONS(2899), 3, sym_self, sym_super, sym_crate, - ACTIONS(2909), 17, + ACTIONS(2895), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104566,31 +104611,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52180] = 11, + anon_sym_default, + anon_sym_union, + [47586] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(943), 1, + ACTIONS(975), 1, anon_sym_COLON_COLON, - ACTIONS(2905), 1, + ACTIONS(2891), 1, sym_identifier, - ACTIONS(2915), 1, + ACTIONS(2901), 1, sym_metavariable, - STATE(1512), 1, + STATE(1518), 1, sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 1, + STATE(2243), 1, sym_generic_type_with_turbofish, - STATE(2416), 1, + STATE(2266), 1, sym_meta_item, + STATE(2341), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2913), 3, + ACTIONS(2899), 3, sym_self, sym_super, sym_crate, - ACTIONS(2909), 17, + ACTIONS(2895), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104608,31 +104655,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52233] = 11, + anon_sym_default, + anon_sym_union, + [47641] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(943), 1, + ACTIONS(975), 1, anon_sym_COLON_COLON, - ACTIONS(2905), 1, + ACTIONS(2891), 1, sym_identifier, - ACTIONS(2915), 1, + ACTIONS(2901), 1, sym_metavariable, - STATE(1512), 1, + STATE(1518), 1, sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2370), 1, + STATE(2234), 1, sym_meta_item, - STATE(2403), 1, + STATE(2243), 1, sym_generic_type_with_turbofish, + STATE(2341), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2913), 3, + ACTIONS(2899), 3, sym_self, sym_super, sym_crate, - ACTIONS(2909), 17, + ACTIONS(2895), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104650,31 +104699,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52286] = 11, + anon_sym_default, + anon_sym_union, + [47696] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(943), 1, + ACTIONS(975), 1, anon_sym_COLON_COLON, - ACTIONS(2905), 1, + ACTIONS(2891), 1, sym_identifier, - ACTIONS(2915), 1, + ACTIONS(2901), 1, sym_metavariable, - STATE(1512), 1, + STATE(1518), 1, sym_scoped_identifier, - STATE(2217), 1, + STATE(2243), 1, + sym_generic_type_with_turbofish, + STATE(2306), 1, sym_meta_item, - STATE(2310), 1, + STATE(2341), 1, sym_bracketed_type, - STATE(2403), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2913), 3, + ACTIONS(2899), 3, sym_self, sym_super, sym_crate, - ACTIONS(2909), 17, + ACTIONS(2895), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104692,31 +104743,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52339] = 11, + anon_sym_default, + anon_sym_union, + [47751] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(943), 1, + ACTIONS(975), 1, anon_sym_COLON_COLON, - ACTIONS(2905), 1, + ACTIONS(2891), 1, sym_identifier, - ACTIONS(2915), 1, + ACTIONS(2901), 1, sym_metavariable, - STATE(1512), 1, + STATE(1518), 1, sym_scoped_identifier, - STATE(2203), 1, - sym_meta_item, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 1, + STATE(2243), 1, sym_generic_type_with_turbofish, + STATE(2341), 1, + sym_bracketed_type, + STATE(2359), 1, + sym_meta_item, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2913), 3, + ACTIONS(2899), 3, sym_self, sym_super, sym_crate, - ACTIONS(2909), 17, + ACTIONS(2895), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104734,29 +104787,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52392] = 10, + anon_sym_default, + anon_sym_union, + [47806] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(943), 1, + ACTIONS(975), 1, anon_sym_COLON_COLON, - ACTIONS(3121), 1, + ACTIONS(3155), 1, sym_identifier, - ACTIONS(3127), 1, + ACTIONS(3161), 1, sym_metavariable, - STATE(2156), 1, + STATE(2198), 1, sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 1, + STATE(2243), 1, sym_generic_type_with_turbofish, + STATE(2341), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3125), 3, + ACTIONS(3159), 3, sym_self, sym_super, sym_crate, - ACTIONS(3123), 17, + ACTIONS(3157), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104774,29 +104829,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52442] = 10, + anon_sym_default, + anon_sym_union, + [47858] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(943), 1, + ACTIONS(975), 1, anon_sym_COLON_COLON, - ACTIONS(3129), 1, + ACTIONS(3163), 1, sym_identifier, - ACTIONS(3135), 1, + ACTIONS(3169), 1, sym_metavariable, - STATE(2014), 1, + STATE(2033), 1, sym_scoped_identifier, - STATE(2310), 1, - sym_bracketed_type, - STATE(2403), 1, + STATE(2243), 1, sym_generic_type_with_turbofish, + STATE(2341), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3133), 3, + ACTIONS(3167), 3, sym_self, sym_super, sym_crate, - ACTIONS(3131), 17, + ACTIONS(3165), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104814,13 +104871,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52492] = 3, - ACTIONS(2111), 1, + anon_sym_default, + anon_sym_union, + [47910] = 3, + ACTIONS(2189), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2113), 20, + ACTIONS(2191), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -104841,13 +104900,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52522] = 3, - ACTIONS(2131), 1, + [47940] = 3, + ACTIONS(2161), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2133), 20, + ACTIONS(2163), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -104868,29 +104927,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52552] = 10, - ACTIONS(3139), 1, + [47970] = 10, + ACTIONS(3173), 1, anon_sym_LPAREN, - ACTIONS(3141), 1, + ACTIONS(3175), 1, anon_sym_LBRACE, - ACTIONS(3145), 1, + ACTIONS(3179), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(3151), 1, + ACTIONS(3185), 1, anon_sym_AT, - STATE(1266), 1, + STATE(1276), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3143), 2, + ACTIONS(3177), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3147), 2, + ACTIONS(3181), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3137), 9, + ACTIONS(3171), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -104900,25 +104959,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52594] = 9, - ACTIONS(2304), 1, + [48012] = 9, + ACTIONS(2342), 1, anon_sym_COLON, - ACTIONS(3149), 1, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3187), 1, anon_sym_LPAREN, - ACTIONS(3155), 1, + ACTIONS(3189), 1, anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3191), 1, anon_sym_COLON_COLON, - STATE(1266), 1, + STATE(1276), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1303), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 12, + ACTIONS(2338), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -104931,67 +104990,96 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [52634] = 4, - ACTIONS(2362), 1, - anon_sym_COLON, + [48052] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2366), 2, + ACTIONS(2374), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2378), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2380), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(2360), 15, - anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [48081] = 8, + ACTIONS(2356), 1, + anon_sym_COLON, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3187), 1, anon_sym_LPAREN, + ACTIONS(3191), 1, + anon_sym_COLON_COLON, + STATE(1276), 1, + sym_type_arguments, + STATE(1303), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2354), 12, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_LT2, anon_sym_PIPE, - [52663] = 4, + [48118] = 4, + ACTIONS(2360), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2348), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2352), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2354), 14, + ACTIONS(2364), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2358), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [52692] = 4, + [48147] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2340), 2, + ACTIONS(2366), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2344), 2, + ACTIONS(2370), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2346), 14, + ACTIONS(2372), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105006,45 +105094,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52721] = 8, - ACTIONS(2318), 1, + [48176] = 4, + ACTIONS(2376), 1, anon_sym_COLON, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, - anon_sym_COLON_COLON, - STATE(1266), 1, - sym_type_arguments, - STATE(1286), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2316), 12, + ACTIONS(2380), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2374), 15, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [52758] = 4, - ACTIONS(2350), 1, + [48205] = 4, + ACTIONS(2384), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2354), 2, + ACTIONS(2388), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2348), 15, + ACTIONS(2382), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105060,17 +105144,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [52787] = 4, + [48234] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2320), 2, + ACTIONS(2358), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2324), 2, + ACTIONS(2362), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2326), 14, + ACTIONS(2364), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105085,23 +105169,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52816] = 8, - ACTIONS(2314), 1, + [48263] = 8, + ACTIONS(2352), 1, anon_sym_COLON, - ACTIONS(3149), 1, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3187), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(3191), 1, anon_sym_COLON_COLON, - STATE(1266), 1, + STATE(1276), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1303), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2312), 12, + ACTIONS(2350), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105114,17 +105198,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [52853] = 4, + [48300] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 2, + ACTIONS(2382), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2364), 2, + ACTIONS(2386), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2366), 14, + ACTIONS(2388), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105139,16 +105223,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52882] = 4, - ACTIONS(2322), 1, + [48329] = 4, + ACTIONS(2368), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2326), 2, + ACTIONS(2372), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2320), 15, + ACTIONS(2366), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105164,107 +105248,119 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [52911] = 4, - ACTIONS(2342), 1, - anon_sym_COLON, + [48358] = 6, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3187), 1, + anon_sym_LPAREN, + STATE(1277), 1, + sym_type_arguments, + STATE(1299), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2346), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2340), 15, + ACTIONS(2398), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_LT2, anon_sym_PIPE, - [52940] = 17, - ACTIONS(3161), 1, + [48390] = 17, + ACTIONS(3195), 1, anon_sym_const, - ACTIONS(3163), 1, + ACTIONS(3197), 1, anon_sym_enum, - ACTIONS(3165), 1, + ACTIONS(3199), 1, anon_sym_fn, - ACTIONS(3167), 1, + ACTIONS(3201), 1, anon_sym_mod, - ACTIONS(3169), 1, + ACTIONS(3203), 1, anon_sym_static, - ACTIONS(3171), 1, + ACTIONS(3205), 1, anon_sym_struct, - ACTIONS(3173), 1, + ACTIONS(3207), 1, anon_sym_trait, - ACTIONS(3175), 1, + ACTIONS(3209), 1, anon_sym_type, - ACTIONS(3177), 1, + ACTIONS(3211), 1, anon_sym_union, - ACTIONS(3179), 1, + ACTIONS(3213), 1, anon_sym_unsafe, - ACTIONS(3181), 1, + ACTIONS(3215), 1, anon_sym_use, - ACTIONS(3183), 1, + ACTIONS(3217), 1, anon_sym_extern, - STATE(1415), 1, + STATE(1446), 1, sym_extern_modifier, - STATE(1482), 1, + STATE(1466), 1, aux_sym_function_modifiers_repeat1, - STATE(2330), 1, + STATE(2424), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3159), 2, + ACTIONS(3193), 2, anon_sym_async, anon_sym_default, - [52994] = 6, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1273), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + [48444] = 17, + ACTIONS(3219), 1, + anon_sym_const, + ACTIONS(3221), 1, + anon_sym_enum, + ACTIONS(3223), 1, + anon_sym_fn, + ACTIONS(3225), 1, + anon_sym_mod, + ACTIONS(3227), 1, + anon_sym_static, + ACTIONS(3229), 1, + anon_sym_struct, + ACTIONS(3231), 1, + anon_sym_trait, + ACTIONS(3233), 1, + anon_sym_type, + ACTIONS(3235), 1, + anon_sym_union, + ACTIONS(3237), 1, + anon_sym_unsafe, + ACTIONS(3239), 1, + anon_sym_use, + ACTIONS(3241), 1, + anon_sym_extern, + STATE(1448), 1, + sym_extern_modifier, + STATE(1466), 1, + aux_sym_function_modifiers_repeat1, + STATE(2321), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2336), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [53026] = 6, - ACTIONS(3149), 1, + ACTIONS(3193), 2, + anon_sym_async, + anon_sym_default, + [48498] = 6, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3187), 1, anon_sym_LPAREN, - STATE(1273), 1, + STATE(1277), 1, sym_type_arguments, - STATE(1300), 1, + STATE(1299), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 13, + ACTIONS(2402), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105278,19 +105374,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53058] = 6, - ACTIONS(3149), 1, + [48530] = 6, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3187), 1, anon_sym_LPAREN, - STATE(1273), 1, + STATE(1277), 1, sym_type_arguments, - STATE(1300), 1, + STATE(1299), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2328), 13, + ACTIONS(2394), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105304,50 +105400,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53090] = 17, - ACTIONS(3185), 1, - anon_sym_const, - ACTIONS(3187), 1, - anon_sym_enum, - ACTIONS(3189), 1, - anon_sym_fn, - ACTIONS(3191), 1, - anon_sym_mod, - ACTIONS(3193), 1, - anon_sym_static, - ACTIONS(3195), 1, - anon_sym_struct, - ACTIONS(3197), 1, - anon_sym_trait, - ACTIONS(3199), 1, - anon_sym_type, - ACTIONS(3201), 1, - anon_sym_union, - ACTIONS(3203), 1, - anon_sym_unsafe, - ACTIONS(3205), 1, - anon_sym_use, - ACTIONS(3207), 1, - anon_sym_extern, - STATE(1428), 1, - sym_extern_modifier, - STATE(1482), 1, - aux_sym_function_modifiers_repeat1, - STATE(2407), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3159), 2, - anon_sym_async, - anon_sym_default, - [53144] = 3, - ACTIONS(3209), 1, + [48562] = 3, + ACTIONS(3243), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 15, + ACTIONS(2991), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105363,11 +105422,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [53169] = 2, + [48587] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2320), 16, + ACTIONS(2382), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105384,11 +105443,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [53192] = 2, + [48610] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 15, + ACTIONS(2362), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2364), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_as, + anon_sym_if, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_PIPE, + [48634] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3011), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105404,11 +105484,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [53214] = 2, + [48656] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3033), 15, + ACTIONS(2378), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2380), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_as, + anon_sym_if, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_PIPE, + [48680] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2983), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105424,66 +105525,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [53236] = 3, - ACTIONS(2472), 1, - anon_sym_COLON, + [48702] = 6, + ACTIONS(3173), 1, + anon_sym_LPAREN, + ACTIONS(3245), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2470), 14, + ACTIONS(3177), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3181), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3171), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [53260] = 13, - ACTIONS(3141), 1, + [48732] = 13, + ACTIONS(3171), 1, + anon_sym_PIPE, + ACTIONS(3175), 1, anon_sym_LBRACE, - ACTIONS(3149), 1, + ACTIONS(3177), 1, + anon_sym_COLON, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(3151), 1, + ACTIONS(3185), 1, anon_sym_AT, - ACTIONS(3155), 1, + ACTIONS(3189), 1, anon_sym_BANG, - ACTIONS(3211), 1, + ACTIONS(3247), 1, anon_sym_LPAREN, - ACTIONS(3213), 1, - anon_sym_RBRACK, - ACTIONS(3216), 1, + ACTIONS(3249), 1, anon_sym_COLON_COLON, - STATE(1266), 1, + STATE(1276), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1303), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3137), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3147), 2, + ACTIONS(3181), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [53304] = 3, + ACTIONS(2338), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [48776] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 2, + ACTIONS(2979), 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, + [48798] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2370), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2366), 13, + ACTIONS(2372), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105497,104 +105621,91 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [53328] = 3, + [48822] = 3, + ACTIONS(2480), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2352), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2354), 13, + ACTIONS(2478), 14, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_PLUS, anon_sym_as, - anon_sym_if, - anon_sym_BANG, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_COLON_COLON, - anon_sym_in, anon_sym_PIPE, - [53352] = 13, - ACTIONS(3137), 1, - anon_sym_PIPE, - ACTIONS(3141), 1, - anon_sym_LBRACE, - ACTIONS(3143), 1, - anon_sym_COLON, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3151), 1, - anon_sym_AT, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3218), 1, - anon_sym_LPAREN, - ACTIONS(3220), 1, + [48846] = 3, + ACTIONS(3251), 1, anon_sym_COLON_COLON, - STATE(1266), 1, - sym_type_arguments, - STATE(1286), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2300), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [53396] = 6, - ACTIONS(3139), 1, - anon_sym_LPAREN, - ACTIONS(3222), 1, - anon_sym_COLON_COLON, + ACTIONS(2993), 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, + [48870] = 3, + ACTIONS(2540), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3143), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3137), 9, + ACTIONS(2538), 14, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, + anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_PIPE, - [53426] = 3, + [48894] = 3, + ACTIONS(2464), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2344), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2346), 13, + ACTIONS(2462), 14, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_PLUS, anon_sym_as, - anon_sym_if, - anon_sym_BANG, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_COLON_COLON, - anon_sym_in, anon_sym_PIPE, - [53450] = 3, + [48918] = 3, ACTIONS(2468), 1, anon_sym_COLON, ACTIONS(3), 2, @@ -105615,13 +105726,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [53474] = 3, - ACTIONS(3224), 1, + [48942] = 3, + ACTIONS(2881), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3015), 14, + ACTIONS(2993), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105636,66 +105747,96 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [53498] = 3, - ACTIONS(2416), 1, - anon_sym_COLON, + [48966] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2414), 14, + ACTIONS(2778), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_COLON_COLON, + sym_mutable_specifier, anon_sym_PIPE, - [53522] = 14, - ACTIONS(2300), 1, + sym_self, + [48988] = 14, + ACTIONS(2338), 1, anon_sym_PLUS, - ACTIONS(3137), 1, + ACTIONS(3171), 1, anon_sym_PIPE, - ACTIONS(3141), 1, + ACTIONS(3175), 1, anon_sym_LBRACE, - ACTIONS(3143), 1, + ACTIONS(3177), 1, anon_sym_COLON, - ACTIONS(3149), 1, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(3151), 1, + ACTIONS(3185), 1, anon_sym_AT, - ACTIONS(3155), 1, + ACTIONS(3189), 1, anon_sym_BANG, - ACTIONS(3226), 1, + ACTIONS(3253), 1, anon_sym_LPAREN, - ACTIONS(3228), 1, + ACTIONS(3258), 1, anon_sym_COLON_COLON, - STATE(1266), 1, + STATE(1276), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1303), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3181), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3213), 2, + ACTIONS(3255), 2, anon_sym_RPAREN, anon_sym_COMMA, - [53568] = 3, - ACTIONS(2480), 1, + [49034] = 13, + ACTIONS(3175), 1, + anon_sym_LBRACE, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3185), 1, + anon_sym_AT, + ACTIONS(3189), 1, + anon_sym_BANG, + ACTIONS(3255), 1, + anon_sym_RBRACK, + ACTIONS(3260), 1, + anon_sym_LPAREN, + ACTIONS(3262), 1, + anon_sym_COLON_COLON, + STATE(1276), 1, + sym_type_arguments, + STATE(1303), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2338), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3171), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3181), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [49078] = 3, + ACTIONS(2476), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2478), 14, + ACTIONS(2474), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105710,52 +105851,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [53592] = 3, - ACTIONS(2666), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3015), 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, - [53616] = 2, + [49102] = 3, + ACTIONS(3264), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3067), 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, - [53638] = 2, + ACTIONS(2494), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [49125] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2654), 15, + ACTIONS(2490), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105767,40 +105887,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, - sym_mutable_specifier, anon_sym_PIPE, - sym_self, - [53660] = 3, - ACTIONS(2500), 1, - anon_sym_COLON, + [49146] = 3, + ACTIONS(3266), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2498), 14, + ACTIONS(2450), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_COLON_COLON, anon_sym_PIPE, - [53684] = 4, - ACTIONS(2358), 1, + [49169] = 4, + ACTIONS(2404), 1, anon_sym_COLON, - ACTIONS(3230), 1, + ACTIONS(3268), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 12, + ACTIONS(2402), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105813,11 +105931,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53709] = 2, + [49194] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2398), 14, + ACTIONS(2470), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105832,33 +105950,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [53730] = 3, - ACTIONS(2135), 1, - anon_sym_EQ, + [49215] = 5, + ACTIONS(3274), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2137), 13, + ACTIONS(3272), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3276), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3270), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [53753] = 3, - ACTIONS(3232), 1, + [49242] = 4, + ACTIONS(3280), 1, + anon_sym_pat, + STATE(521), 1, + sym_fragment_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3278), 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, + [49267] = 3, + ACTIONS(3282), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 13, + ACTIONS(2482), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105872,13 +106013,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53776] = 3, - ACTIONS(3234), 1, - anon_sym_DASH_GT, + [49290] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2436), 13, + ACTIONS(2530), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105890,21 +106029,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [53799] = 3, - ACTIONS(3236), 1, - anon_sym_DASH_GT, + [49311] = 4, + ACTIONS(2396), 1, + anon_sym_COLON, + ACTIONS(2995), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2458), 13, + ACTIONS(2394), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -105912,57 +106053,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53822] = 4, - ACTIONS(2358), 1, - anon_sym_COLON, - ACTIONS(3238), 1, - anon_sym_COLON_COLON, + [49336] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 12, + ACTIONS(2534), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [53847] = 4, - ACTIONS(2358), 1, - anon_sym_COLON, - ACTIONS(3039), 1, + [49357] = 14, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3187), 1, + anon_sym_LPAREN, + ACTIONS(3189), 1, + anon_sym_BANG, + ACTIONS(3191), 1, anon_sym_COLON_COLON, + ACTIONS(3284), 1, + anon_sym_COLON, + ACTIONS(3286), 1, + anon_sym_EQ, + ACTIONS(3288), 1, + anon_sym_COMMA, + ACTIONS(3290), 1, + anon_sym_GT, + STATE(1276), 1, + sym_type_arguments, + STATE(1303), 1, + sym_parameters, + STATE(1794), 1, + aux_sym_type_parameters_repeat1, + STATE(1825), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2338), 2, anon_sym_PLUS, anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [53872] = 4, - ACTIONS(2338), 1, + [49402] = 4, + ACTIONS(2396), 1, anon_sym_COLON, - ACTIONS(3238), 1, + ACTIONS(3292), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2336), 12, + ACTIONS(2394), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105975,11 +106124,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53897] = 2, + [49427] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2474), 14, + ACTIONS(2518), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105994,63 +106143,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [53918] = 14, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3157), 1, - anon_sym_COLON_COLON, - ACTIONS(3240), 1, + [49448] = 4, + ACTIONS(2400), 1, anon_sym_COLON, - ACTIONS(3242), 1, - anon_sym_EQ, - ACTIONS(3244), 1, - anon_sym_COMMA, - ACTIONS(3246), 1, - anon_sym_GT, - STATE(1266), 1, - sym_type_arguments, - STATE(1286), 1, - sym_parameters, - STATE(1947), 1, - sym_trait_bounds, - STATE(1964), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2300), 2, - anon_sym_PLUS, - anon_sym_as, - [53963] = 2, + ACTIONS(3268), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2488), 14, + ACTIONS(2398), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [53984] = 3, - ACTIONS(3248), 1, + [49473] = 3, + ACTIONS(3294), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2428), 13, + ACTIONS(2500), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106064,11 +106184,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54007] = 2, + [49496] = 3, + ACTIONS(3296), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2402), 14, + ACTIONS(2522), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106080,38 +106202,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [54028] = 3, - ACTIONS(3250), 1, - anon_sym_DASH_GT, + [49519] = 3, + ACTIONS(2153), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2442), 13, + ACTIONS(2155), 13, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54051] = 4, - ACTIONS(2330), 1, + [49542] = 4, + ACTIONS(2396), 1, anon_sym_COLON, - ACTIONS(3238), 1, + ACTIONS(3268), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2328), 12, + ACTIONS(2394), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106124,56 +106245,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54076] = 4, - ACTIONS(3254), 1, - anon_sym_pat, - STATE(512), 1, - sym_fragment_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3252), 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, - [54101] = 5, - ACTIONS(3260), 1, - anon_sym_COLON_COLON, + [49567] = 3, + ACTIONS(3298), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3258), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3262), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3256), 9, + ACTIONS(2512), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, + anon_sym_GT, anon_sym_PIPE, - [54128] = 3, - ACTIONS(3264), 1, + [49590] = 3, + ACTIONS(3300), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2422), 13, + ACTIONS(2506), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106187,13 +106285,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54151] = 3, - ACTIONS(3266), 1, - anon_sym_DASH_GT, + [49613] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 13, + ACTIONS(2686), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106207,11 +106303,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54174] = 2, + [49633] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2494), 14, + ACTIONS(2394), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106223,14 +106319,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [54195] = 2, + [49653] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 13, + ACTIONS(2844), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106244,11 +106339,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54215] = 2, + [49673] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2566), 13, + ACTIONS(2865), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106262,11 +106357,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54235] = 2, + [49693] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2562), 13, + ACTIONS(2869), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106280,11 +106375,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54255] = 2, + [49713] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2328), 13, + ACTIONS(2694), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106298,11 +106393,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54275] = 2, + [49733] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 13, + ACTIONS(2802), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106316,11 +106411,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54295] = 2, + [49753] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 13, + ACTIONS(586), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106334,30 +106429,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54315] = 3, - ACTIONS(3270), 1, - anon_sym_EQ, + [49773] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3268), 12, + ACTIONS(2398), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [54337] = 2, + [49793] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(578), 13, + ACTIONS(2730), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106371,11 +106465,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54357] = 2, + [49813] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2676), 13, + ACTIONS(2836), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106389,11 +106483,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54377] = 2, + [49833] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2646), 13, + ACTIONS(2402), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106407,11 +106501,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54397] = 2, + [49853] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 13, + ACTIONS(2798), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106425,47 +106519,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54417] = 2, + [49873] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 13, + ACTIONS(2386), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2388), 11, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [54437] = 2, + [49895] = 3, + ACTIONS(3304), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(407), 13, + ACTIONS(3302), 12, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54457] = 2, + [49917] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(566), 13, + ACTIONS(2786), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106479,30 +106575,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54477] = 3, + [49937] = 4, + ACTIONS(3177), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2324), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2326), 11, + ACTIONS(3181), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3171), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, - anon_sym_BANG, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [54499] = 2, + [49961] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 13, + ACTIONS(2682), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106516,29 +106613,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54519] = 2, + [49981] = 3, + ACTIONS(3308), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 13, + ACTIONS(3306), 12, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54539] = 2, + [50003] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2516), 13, + ACTIONS(2658), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106552,11 +106650,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54559] = 2, + [50023] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2524), 13, + ACTIONS(2710), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106570,11 +106668,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54579] = 2, + [50043] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2336), 13, + ACTIONS(2754), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106588,11 +106686,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54599] = 2, + [50063] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2524), 13, + ACTIONS(2710), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106606,11 +106704,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54619] = 2, + [50083] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 13, + ACTIONS(2770), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106624,11 +106722,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54639] = 2, + [50103] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 13, + ACTIONS(2758), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106642,11 +106740,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54659] = 2, + [50123] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2512), 13, + ACTIONS(2698), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106660,31 +106758,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54679] = 4, - ACTIONS(3143), 1, - anon_sym_EQ, + [50143] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3137), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [54703] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2582), 13, + ACTIONS(457), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106698,11 +106776,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54723] = 2, + [50163] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2508), 13, + ACTIONS(2638), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106716,30 +106794,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54743] = 3, - ACTIONS(3274), 1, - anon_sym_EQ, + [50183] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3272), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [54765] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2520), 13, + ACTIONS(582), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106753,11 +106812,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54785] = 2, + [50203] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 13, + ACTIONS(2794), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106771,426 +106830,401 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54805] = 10, - ACTIONS(3139), 1, - anon_sym_LPAREN, - ACTIONS(3141), 1, - anon_sym_LBRACE, - ACTIONS(3145), 1, - anon_sym_COLON_COLON, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3151), 1, - anon_sym_AT, - ACTIONS(3276), 1, - anon_sym_BANG, - STATE(1266), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3137), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - [54840] = 5, - ACTIONS(2352), 1, + [50223] = 5, + ACTIONS(2386), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2348), 3, + ACTIONS(2382), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3278), 3, + ACTIONS(3310), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2354), 5, + ACTIONS(2388), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54865] = 5, - ACTIONS(2324), 1, + [50248] = 5, + ACTIONS(2378), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2320), 3, + ACTIONS(2374), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3281), 3, + ACTIONS(3313), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2326), 5, + ACTIONS(2380), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54890] = 4, - ACTIONS(3288), 1, - anon_sym_COLON_COLON, + [50273] = 3, + ACTIONS(399), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3286), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3284), 9, + ACTIONS(397), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [54913] = 4, - ACTIONS(3294), 1, - anon_sym_COLON_COLON, + [50294] = 3, + ACTIONS(391), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3292), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3290), 9, + ACTIONS(389), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [54936] = 5, - ACTIONS(2344), 1, + [50315] = 5, + ACTIONS(2370), 1, anon_sym_COLON, + ACTIONS(3316), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2340), 3, + ACTIONS(2366), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3296), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2346), 5, + anon_sym_LT2, + ACTIONS(2372), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54961] = 4, + [50340] = 5, + ACTIONS(2370), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3299), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2360), 4, - anon_sym_SEMI, + ACTIONS(2366), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2366), 6, - anon_sym_BANG, + ACTIONS(3316), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2372), 5, + anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54984] = 4, - ACTIONS(3224), 1, - anon_sym_COLON_COLON, + [50365] = 3, + ACTIONS(395), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3292), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3290), 9, + ACTIONS(393), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [55007] = 4, - ACTIONS(3302), 1, - anon_sym_COLON_COLON, + [50386] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3292), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3290), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3319), 2, + anon_sym_LPAREN, anon_sym_RBRACK, - anon_sym_if, + ACTIONS(2358), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2364), 6, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [55030] = 4, - ACTIONS(3288), 1, anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50409] = 5, + ACTIONS(2378), 1, + anon_sym_COLON, + ACTIONS(3313), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3306), 2, + ACTIONS(2374), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2380), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50434] = 5, + ACTIONS(2362), 1, anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3304), 9, - anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2358), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3319), 3, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, anon_sym_COMMA, - anon_sym_in, + ACTIONS(2364), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [55053] = 4, + [50459] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3278), 2, + ACTIONS(3313), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2348), 4, + ACTIONS(2374), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2354), 6, + ACTIONS(2380), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [55076] = 5, - ACTIONS(2364), 1, + [50482] = 5, + ACTIONS(2386), 1, anon_sym_COLON, + ACTIONS(3310), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 3, + ACTIONS(2382), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3299), 3, + ACTIONS(2388), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50507] = 4, + ACTIONS(3326), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3324), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3322), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [50530] = 5, + ACTIONS(2362), 1, + anon_sym_COLON, + ACTIONS(3319), 1, anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2358), 5, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_COMMA, - ACTIONS(2366), 5, + anon_sym_LT2, + ACTIONS(2364), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [55101] = 4, + [50555] = 4, + ACTIONS(3332), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3330), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3328), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [50578] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3281), 2, + ACTIONS(3310), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2320), 4, + ACTIONS(2382), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2326), 6, + ACTIONS(2388), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [55124] = 4, + [50601] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3296), 2, + ACTIONS(3316), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2340), 4, + ACTIONS(2366), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2346), 6, + ACTIONS(2372), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [55147] = 5, - ACTIONS(2344), 1, - anon_sym_COLON, - ACTIONS(3296), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2340), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2346), 5, - anon_sym_BANG, + [50624] = 4, + ACTIONS(3251), 1, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [55172] = 5, - ACTIONS(2324), 1, - anon_sym_COLON, - ACTIONS(3281), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2320), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2326), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [55197] = 5, - ACTIONS(2352), 1, + ACTIONS(3330), 2, anon_sym_COLON, - ACTIONS(3278), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2348), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2354), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [55222] = 3, - ACTIONS(397), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(395), 11, + ACTIONS(3328), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [55243] = 5, - ACTIONS(2364), 1, - anon_sym_COLON, - ACTIONS(3299), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2360), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2366), 5, - anon_sym_BANG, + [50647] = 4, + ACTIONS(3326), 1, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [55268] = 3, - ACTIONS(389), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(387), 11, + ACTIONS(3336), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3334), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [55289] = 3, - ACTIONS(393), 1, - anon_sym_EQ, + [50670] = 4, + ACTIONS(3332), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(391), 11, + ACTIONS(3340), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3338), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [55310] = 4, - ACTIONS(3302), 1, + [50693] = 4, + ACTIONS(3251), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3310), 2, + ACTIONS(3340), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3308), 9, + ACTIONS(3338), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107200,16 +107234,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55333] = 4, - ACTIONS(3224), 1, + [50716] = 4, + ACTIONS(3342), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3310), 2, + ACTIONS(3340), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3308), 9, + ACTIONS(3338), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107219,16 +107253,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55356] = 4, - ACTIONS(3294), 1, + [50739] = 4, + ACTIONS(3342), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3310), 2, + ACTIONS(3330), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3308), 9, + ACTIONS(3328), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107238,13 +107272,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55379] = 3, - ACTIONS(3314), 1, + [50762] = 10, + ACTIONS(3173), 1, + anon_sym_LPAREN, + ACTIONS(3175), 1, + anon_sym_LBRACE, + ACTIONS(3179), 1, + anon_sym_COLON_COLON, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3185), 1, + anon_sym_AT, + ACTIONS(3344), 1, + anon_sym_BANG, + STATE(1276), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3181), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3171), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + [50797] = 3, + ACTIONS(3348), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3312), 10, + ACTIONS(3346), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107255,13 +107314,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55399] = 3, - ACTIONS(3318), 1, + [50817] = 3, + ACTIONS(3352), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3316), 10, + ACTIONS(3350), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107272,13 +107331,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55419] = 3, - ACTIONS(3310), 1, + [50837] = 3, + ACTIONS(3356), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3308), 10, + ACTIONS(3354), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107289,17 +107348,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55439] = 5, - ACTIONS(712), 1, + [50857] = 5, + ACTIONS(714), 1, aux_sym_string_literal_token1, - ACTIONS(3322), 1, + ACTIONS(3360), 1, sym_crate, - STATE(1450), 1, + STATE(1474), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 8, + ACTIONS(3358), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -107308,13 +107367,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55463] = 3, - ACTIONS(3326), 1, + [50881] = 3, + ACTIONS(3364), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3362), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [50901] = 3, + ACTIONS(3368), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3324), 10, + ACTIONS(3366), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107325,17 +107401,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55483] = 5, - ACTIONS(712), 1, + [50921] = 5, + ACTIONS(714), 1, aux_sym_string_literal_token1, - ACTIONS(3328), 1, + ACTIONS(3370), 1, sym_crate, - STATE(1450), 1, + STATE(1474), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 8, + ACTIONS(3358), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -107344,13 +107420,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55507] = 3, - ACTIONS(3332), 1, + [50945] = 3, + ACTIONS(3374), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3330), 10, + ACTIONS(3372), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107361,13 +107437,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55527] = 3, - ACTIONS(3336), 1, + [50965] = 3, + ACTIONS(3378), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3334), 10, + ACTIONS(3376), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107378,30 +107454,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55547] = 3, - ACTIONS(3340), 1, - anon_sym_EQ, + [50985] = 5, + ACTIONS(714), 1, + aux_sym_string_literal_token1, + ACTIONS(3380), 1, + sym_crate, + STATE(1474), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3338), 10, + ACTIONS(3358), 8, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [55567] = 3, - ACTIONS(3344), 1, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [51009] = 3, + ACTIONS(3384), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3342), 10, + ACTIONS(3382), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107412,13 +107490,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55587] = 3, - ACTIONS(3348), 1, + [51029] = 3, + ACTIONS(3388), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3346), 10, + ACTIONS(3386), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107429,13 +107507,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55607] = 3, - ACTIONS(3352), 1, + [51049] = 3, + ACTIONS(3392), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3350), 10, + ACTIONS(3390), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107446,13 +107524,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55627] = 3, - ACTIONS(3356), 1, + [51069] = 3, + ACTIONS(3396), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3354), 10, + ACTIONS(3394), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107463,13 +107541,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55647] = 3, - ACTIONS(3143), 1, + [51089] = 3, + ACTIONS(3400), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3137), 10, + ACTIONS(3398), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107480,13 +107558,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55667] = 3, - ACTIONS(3360), 1, + [51109] = 3, + ACTIONS(3404), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3358), 10, + ACTIONS(3402), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107497,13 +107575,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55687] = 3, - ACTIONS(3364), 1, + [51129] = 3, + ACTIONS(3408), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3362), 10, + ACTIONS(3406), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107514,13 +107592,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55707] = 3, - ACTIONS(3368), 1, + [51149] = 3, + ACTIONS(3412), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3366), 10, + ACTIONS(3410), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107531,13 +107609,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55727] = 3, - ACTIONS(3372), 1, + [51169] = 3, + ACTIONS(3340), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3370), 10, + ACTIONS(3338), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107548,13 +107626,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55747] = 3, - ACTIONS(3376), 1, + [51189] = 3, + ACTIONS(3416), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3374), 10, + ACTIONS(3414), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107565,13 +107643,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55767] = 3, - ACTIONS(3380), 1, + [51209] = 5, + ACTIONS(714), 1, + aux_sym_string_literal_token1, + ACTIONS(3418), 1, + sym_crate, + STATE(1474), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3358), 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, + [51233] = 3, + ACTIONS(3422), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3378), 10, + ACTIONS(3420), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107582,13 +107679,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55787] = 3, - ACTIONS(3384), 1, + [51253] = 3, + ACTIONS(3426), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3382), 10, + ACTIONS(3424), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107599,13 +107696,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55807] = 3, - ACTIONS(3388), 1, + [51273] = 3, + ACTIONS(3430), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3386), 10, + ACTIONS(3428), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107616,13 +107713,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55827] = 3, - ACTIONS(3392), 1, + [51293] = 3, + ACTIONS(3434), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3390), 10, + ACTIONS(3432), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107633,13 +107730,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55847] = 3, - ACTIONS(3396), 1, + [51313] = 3, + ACTIONS(3438), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3394), 10, + ACTIONS(3436), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107650,32 +107747,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55867] = 5, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(3398), 1, - sym_crate, - STATE(1450), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3320), 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, - [55891] = 3, - ACTIONS(3402), 1, + [51333] = 3, + ACTIONS(3177), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3400), 10, + ACTIONS(3171), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107686,13 +107764,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55911] = 3, - ACTIONS(3406), 1, + [51353] = 3, + ACTIONS(3442), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3404), 10, + ACTIONS(3440), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107703,13 +107781,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55931] = 3, - ACTIONS(3410), 1, + [51373] = 3, + ACTIONS(3446), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3408), 10, + ACTIONS(3444), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107720,32 +107798,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55951] = 5, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - ACTIONS(3412), 1, - sym_crate, - STATE(1450), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3320), 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, - [55975] = 3, - ACTIONS(3416), 1, + [51393] = 3, + ACTIONS(411), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3414), 10, + ACTIONS(409), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107756,13 +107815,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55995] = 3, - ACTIONS(3420), 1, + [51413] = 3, + ACTIONS(3450), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3418), 10, + ACTIONS(3448), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107773,13 +107832,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56015] = 3, - ACTIONS(3424), 1, + [51433] = 3, + ACTIONS(3454), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3422), 10, + ACTIONS(3452), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107790,13 +107849,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56035] = 3, - ACTIONS(3292), 1, + [51453] = 3, + ACTIONS(3330), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3290), 10, + ACTIONS(3328), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107807,13 +107866,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56055] = 3, - ACTIONS(3428), 1, + [51473] = 3, + ACTIONS(3458), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3426), 10, + ACTIONS(3456), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107824,13 +107883,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56075] = 3, - ACTIONS(594), 1, + [51493] = 3, + ACTIONS(3462), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(592), 10, + ACTIONS(3460), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107841,2011 +107900,2107 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56095] = 7, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3430), 1, - anon_sym_LBRACE, - STATE(1273), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + [51513] = 5, + ACTIONS(3464), 1, + anon_sym_COLON, + ACTIONS(3466), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_COMMA, - [56122] = 9, - ACTIONS(3149), 1, + ACTIONS(3276), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2412), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [51536] = 9, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3187), 1, anon_sym_LPAREN, - ACTIONS(3155), 1, + ACTIONS(3189), 1, anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3191), 1, anon_sym_COLON_COLON, - ACTIONS(3432), 1, - anon_sym_EQ, - STATE(1266), 1, + ACTIONS(3468), 1, + anon_sym_for, + STATE(1276), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1303), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 3, + ACTIONS(2338), 3, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - [56153] = 10, + anon_sym_where, + [51567] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(3434), 1, + ACTIONS(3470), 1, sym_identifier, - ACTIONS(3436), 1, + ACTIONS(3472), 1, anon_sym_RBRACE, - ACTIONS(3438), 1, + ACTIONS(3474), 1, anon_sym_COMMA, - ACTIONS(3440), 1, + ACTIONS(3476), 1, sym_crate, - STATE(1887), 1, + STATE(1774), 1, sym_enum_variant, - STATE(2188), 1, + STATE(2291), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1474), 2, + STATE(1452), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [56186] = 9, - ACTIONS(3149), 1, + [51600] = 9, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3187), 1, anon_sym_LPAREN, - ACTIONS(3155), 1, + ACTIONS(3189), 1, anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3191), 1, anon_sym_COLON_COLON, - ACTIONS(3442), 1, + ACTIONS(3478), 1, anon_sym_for, - STATE(1266), 1, + STATE(1276), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1303), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 3, + ACTIONS(2338), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56217] = 9, - ACTIONS(3149), 1, + [51631] = 9, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3187), 1, anon_sym_LPAREN, - ACTIONS(3155), 1, + ACTIONS(3189), 1, anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3191), 1, anon_sym_COLON_COLON, - ACTIONS(3444), 1, + ACTIONS(3480), 1, anon_sym_for, - STATE(1266), 1, + STATE(1276), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1303), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 3, + ACTIONS(2338), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56248] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3446), 1, - sym_identifier, - ACTIONS(3448), 1, - anon_sym_RBRACE, - ACTIONS(3450), 1, - anon_sym_COMMA, - STATE(1846), 1, - sym_field_declaration, - STATE(2226), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1459), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [56281] = 9, - ACTIONS(3149), 1, + [51662] = 9, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3187), 1, anon_sym_LPAREN, - ACTIONS(3155), 1, + ACTIONS(3189), 1, anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3191), 1, anon_sym_COLON_COLON, - ACTIONS(3452), 1, + ACTIONS(3482), 1, anon_sym_for, - STATE(1266), 1, + STATE(1276), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1303), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 3, + ACTIONS(2338), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56312] = 6, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - STATE(1858), 1, - sym__literal, + [51693] = 7, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3187), 1, + anon_sym_LPAREN, + ACTIONS(3484), 1, + anon_sym_LBRACE, + STATE(1277), 1, + sym_type_arguments, + STATE(1299), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3454), 2, - anon_sym_true, - anon_sym_false, - STATE(1052), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [56337] = 6, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - STATE(1862), 1, - sym__literal, + ACTIONS(2394), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_COMMA, + [51720] = 9, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3187), 1, + anon_sym_LPAREN, + ACTIONS(3189), 1, + anon_sym_BANG, + ACTIONS(3191), 1, + anon_sym_COLON_COLON, + ACTIONS(3486), 1, + anon_sym_EQ, + STATE(1276), 1, + sym_type_arguments, + STATE(1303), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3454), 2, - anon_sym_true, - anon_sym_false, - STATE(1052), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [56362] = 8, - ACTIONS(2075), 1, + ACTIONS(2338), 3, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_GT, + [51751] = 8, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(3456), 1, + ACTIONS(3488), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3490), 1, anon_sym_RBRACE, - ACTIONS(3460), 1, + ACTIONS(3492), 1, anon_sym_COMMA, - ACTIONS(3462), 1, + ACTIONS(3494), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1671), 2, + STATE(1702), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1948), 3, + STATE(1819), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [56391] = 9, - ACTIONS(3149), 1, + [51780] = 9, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3187), 1, anon_sym_LPAREN, - ACTIONS(3155), 1, + ACTIONS(3189), 1, anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3191), 1, anon_sym_COLON_COLON, - ACTIONS(3464), 1, + ACTIONS(3496), 1, anon_sym_for, - STATE(1266), 1, + STATE(1276), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1303), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 3, + ACTIONS(2338), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56422] = 9, - ACTIONS(3149), 1, + [51811] = 6, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3231), 1, + anon_sym_trait, + ACTIONS(3498), 1, + anon_sym_impl, + STATE(66), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2412), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [51836] = 10, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2107), 1, + anon_sym_POUND, + ACTIONS(3470), 1, + sym_identifier, + ACTIONS(3476), 1, + sym_crate, + ACTIONS(3500), 1, + anon_sym_RBRACE, + ACTIONS(3502), 1, + anon_sym_COMMA, + STATE(1950), 1, + sym_enum_variant, + STATE(2291), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1485), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [51869] = 9, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3187), 1, anon_sym_LPAREN, - ACTIONS(3155), 1, + ACTIONS(3189), 1, anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3191), 1, anon_sym_COLON_COLON, - ACTIONS(3466), 1, + ACTIONS(3504), 1, anon_sym_for, - STATE(1266), 1, + STATE(1276), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1303), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 3, + ACTIONS(2338), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56453] = 9, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3157), 1, + [51900] = 5, + ACTIONS(3464), 1, + anon_sym_COLON, + ACTIONS(3506), 1, anon_sym_COLON_COLON, - ACTIONS(3468), 1, - anon_sym_for, - STATE(1266), 1, - sym_type_arguments, - STATE(1286), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [56484] = 9, - ACTIONS(3149), 1, + ACTIONS(3276), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2412), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [51923] = 9, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3187), 1, anon_sym_LPAREN, - ACTIONS(3155), 1, + ACTIONS(3189), 1, anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3191), 1, anon_sym_COLON_COLON, - ACTIONS(3470), 1, + ACTIONS(3508), 1, anon_sym_for, - STATE(1266), 1, + STATE(1276), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1303), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 3, + ACTIONS(2338), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56515] = 9, - ACTIONS(3149), 1, + [51954] = 6, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + STATE(1926), 1, + sym__literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3510), 2, + anon_sym_true, + anon_sym_false, + STATE(990), 2, + sym_string_literal, + sym_boolean_literal, + ACTIONS(89), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + [51979] = 6, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + STATE(1920), 1, + sym__literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3510), 2, + anon_sym_true, + anon_sym_false, + STATE(990), 2, + sym_string_literal, + sym_boolean_literal, + ACTIONS(89), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + [52004] = 9, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3187), 1, anon_sym_LPAREN, - ACTIONS(3155), 1, + ACTIONS(3189), 1, anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3191), 1, anon_sym_COLON_COLON, - ACTIONS(3472), 1, + ACTIONS(3512), 1, anon_sym_for, - STATE(1266), 1, + STATE(1276), 1, sym_type_arguments, - STATE(1286), 1, + STATE(1303), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 3, + ACTIONS(2338), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56546] = 6, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3173), 1, - anon_sym_trait, - ACTIONS(3474), 1, - anon_sym_impl, - STATE(64), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2396), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56571] = 10, + [52035] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(3440), 1, + ACTIONS(3476), 1, sym_crate, - ACTIONS(3446), 1, + ACTIONS(3514), 1, sym_identifier, - ACTIONS(3476), 1, + ACTIONS(3516), 1, anon_sym_RBRACE, - ACTIONS(3478), 1, + ACTIONS(3518), 1, anon_sym_COMMA, - STATE(1980), 1, + STATE(1987), 1, sym_field_declaration, - STATE(2226), 1, + STATE(2224), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1481), 2, + STATE(1477), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [56604] = 10, + [52068] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(3434), 1, - sym_identifier, - ACTIONS(3440), 1, + ACTIONS(3476), 1, sym_crate, - ACTIONS(3480), 1, + ACTIONS(3514), 1, + sym_identifier, + ACTIONS(3520), 1, anon_sym_RBRACE, - ACTIONS(3482), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - STATE(1943), 1, - sym_enum_variant, - STATE(2188), 1, + STATE(1868), 1, + sym_field_declaration, + STATE(2224), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1477), 2, + STATE(1465), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [56637] = 9, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(3484), 1, - sym_identifier, - ACTIONS(3486), 1, - anon_sym_const, - ACTIONS(3488), 1, - anon_sym_GT, - ACTIONS(3490), 1, - sym_metavariable, - STATE(1681), 1, - sym_lifetime, - STATE(1910), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2108), 2, - sym_const_parameter, - sym_optional_type_parameter, - [56667] = 7, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3456), 1, + [52101] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3524), 1, sym_identifier, - ACTIONS(3462), 1, - anon_sym_DOT_DOT, - ACTIONS(3492), 1, - anon_sym_RBRACE, + STATE(45), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1671), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2177), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [56693] = 9, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(3484), 1, - sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3526), 6, + anon_sym_async, anon_sym_const, - ACTIONS(3490), 1, - sym_metavariable, - ACTIONS(3494), 1, - anon_sym_GT, - STATE(1681), 1, - sym_lifetime, - STATE(1910), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2108), 2, - sym_const_parameter, - sym_optional_type_parameter, - [56723] = 7, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3456), 1, - sym_identifier, - ACTIONS(3462), 1, - anon_sym_DOT_DOT, - ACTIONS(3496), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1671), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2177), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [56749] = 9, - ACTIONS(2071), 1, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52123] = 9, + ACTIONS(2103), 1, anon_sym_SQUOTE, - ACTIONS(3484), 1, + ACTIONS(3528), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3530), 1, anon_sym_const, - ACTIONS(3490), 1, - sym_metavariable, - ACTIONS(3498), 1, + ACTIONS(3532), 1, anon_sym_GT, - STATE(1681), 1, + ACTIONS(3534), 1, + sym_metavariable, + STATE(1732), 1, sym_lifetime, - STATE(1910), 1, + STATE(1977), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2108), 2, + STATE(2036), 2, sym_const_parameter, sym_optional_type_parameter, - [56779] = 5, - ACTIONS(3500), 1, + [52153] = 10, + ACTIONS(3536), 1, anon_sym_SEMI, - ACTIONS(3502), 1, + ACTIONS(3538), 1, + anon_sym_LPAREN, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(451), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2396), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56801] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3446), 1, - sym_identifier, - ACTIONS(3504), 1, - anon_sym_RBRACE, - STATE(2149), 1, - sym_field_declaration, - STATE(2226), 1, - sym_visibility_modifier, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3544), 1, + anon_sym_LT, + STATE(361), 1, + sym_field_declaration_list, + STATE(1502), 1, + sym_type_parameters, + STATE(1945), 1, + sym_ordered_field_declaration_list, + STATE(2085), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1449), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [56831] = 9, + [52185] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(3434), 1, + ACTIONS(3470), 1, sym_identifier, - ACTIONS(3440), 1, + ACTIONS(3476), 1, sym_crate, - ACTIONS(3506), 1, + ACTIONS(3546), 1, anon_sym_RBRACE, - STATE(2035), 1, + STATE(2055), 1, sym_enum_variant, - STATE(2188), 1, + STATE(2291), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1480), 2, + STATE(1453), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [56861] = 5, - ACTIONS(3502), 1, + [52215] = 5, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_declaration_list, + ACTIONS(3548), 1, + anon_sym_move, + STATE(51), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 6, + ACTIONS(2412), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56883] = 10, - ACTIONS(3510), 1, - anon_sym_SEMI, - ACTIONS(3512), 1, - anon_sym_LPAREN, - ACTIONS(3514), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3518), 1, - anon_sym_LT, - STATE(297), 1, - sym_field_declaration_list, - STATE(1494), 1, - sym_type_parameters, - STATE(1803), 1, - sym_ordered_field_declaration_list, - STATE(2078), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56915] = 7, - ACTIONS(3139), 1, - anon_sym_LPAREN, - ACTIONS(3143), 1, - anon_sym_COLON, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3520), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3137), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [56941] = 9, + [52237] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(3440), 1, + ACTIONS(3476), 1, sym_crate, - ACTIONS(3446), 1, + ACTIONS(3514), 1, sym_identifier, - ACTIONS(3522), 1, + ACTIONS(3550), 1, anon_sym_RBRACE, - STATE(2149), 1, + STATE(2167), 1, sym_field_declaration, - STATE(2226), 1, + STATE(2224), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1449), 2, + STATE(1478), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [56971] = 9, + [52267] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(3434), 1, - sym_identifier, - ACTIONS(3440), 1, + ACTIONS(3476), 1, sym_crate, - ACTIONS(3524), 1, + ACTIONS(3514), 1, + sym_identifier, + ACTIONS(3552), 1, anon_sym_RBRACE, - STATE(2035), 1, - sym_enum_variant, - STATE(2188), 1, + STATE(2167), 1, + sym_field_declaration, + STATE(2224), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1480), 2, + STATE(1478), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57001] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, + [52297] = 10, + ACTIONS(3538), 1, + anon_sym_LPAREN, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3544), 1, + anon_sym_LT, + ACTIONS(3554), 1, + anon_sym_SEMI, + ACTIONS(3556), 1, + anon_sym_LBRACE, + STATE(831), 1, + sym_field_declaration_list, + STATE(1534), 1, + sym_type_parameters, + STATE(2001), 1, + sym_ordered_field_declaration_list, + STATE(2013), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [52329] = 7, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(3434), 1, + ACTIONS(3488), 1, sym_identifier, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3526), 1, + ACTIONS(3494), 1, + anon_sym_DOT_DOT, + ACTIONS(3558), 1, anon_sym_RBRACE, - STATE(2035), 1, - sym_enum_variant, - STATE(2188), 1, - sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1480), 2, + STATE(1702), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57031] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, - sym_identifier, - STATE(70), 1, - sym_block, + STATE(2128), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [52355] = 4, + ACTIONS(3560), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 6, + ACTIONS(3276), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2412), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [57053] = 9, + [52375] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2107), 1, + anon_sym_POUND, + ACTIONS(3470), 1, + sym_identifier, + ACTIONS(3476), 1, + sym_crate, + ACTIONS(3562), 1, + anon_sym_RBRACE, + STATE(2055), 1, + sym_enum_variant, + STATE(2291), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1453), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52405] = 7, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3446), 1, + ACTIONS(3488), 1, sym_identifier, - ACTIONS(3532), 1, + ACTIONS(3494), 1, + anon_sym_DOT_DOT, + ACTIONS(3564), 1, anon_sym_RBRACE, - STATE(2149), 1, - sym_field_declaration, - STATE(2226), 1, - sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1449), 2, + STATE(1702), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57083] = 9, + STATE(2128), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [52431] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(3434), 1, - sym_identifier, - ACTIONS(3440), 1, + ACTIONS(3476), 1, sym_crate, - ACTIONS(3534), 1, + ACTIONS(3514), 1, + sym_identifier, + ACTIONS(3566), 1, anon_sym_RBRACE, - STATE(2035), 1, - sym_enum_variant, - STATE(2188), 1, + STATE(2167), 1, + sym_field_declaration, + STATE(2224), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1480), 2, + STATE(1478), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57113] = 9, - ACTIONS(2071), 1, + [52461] = 9, + ACTIONS(2103), 1, anon_sym_SQUOTE, - ACTIONS(3484), 1, + ACTIONS(3528), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3530), 1, anon_sym_const, - ACTIONS(3490), 1, + ACTIONS(3534), 1, sym_metavariable, - ACTIONS(3536), 1, + ACTIONS(3568), 1, anon_sym_GT, - STATE(1681), 1, + STATE(1732), 1, sym_lifetime, - STATE(1910), 1, + STATE(1977), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2108), 2, + STATE(2036), 2, sym_const_parameter, sym_optional_type_parameter, - [57143] = 5, - ACTIONS(3538), 1, + [52491] = 5, + ACTIONS(3570), 1, anon_sym_SEMI, - ACTIONS(3540), 1, + ACTIONS(3572), 1, anon_sym_LBRACE, - STATE(783), 1, + STATE(349), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 6, + ACTIONS(2412), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [57165] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - sym_identifier, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3542), 1, - anon_sym_RBRACE, - STATE(2035), 1, - sym_enum_variant, - STATE(2188), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1480), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [57195] = 9, - ACTIONS(2071), 1, + [52513] = 9, + ACTIONS(2103), 1, anon_sym_SQUOTE, - ACTIONS(3484), 1, + ACTIONS(3528), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3530), 1, anon_sym_const, - ACTIONS(3490), 1, + ACTIONS(3534), 1, sym_metavariable, - ACTIONS(3544), 1, + ACTIONS(3574), 1, anon_sym_GT, - STATE(1701), 1, + STATE(1732), 1, sym_lifetime, - STATE(1910), 1, + STATE(1977), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2108), 2, + STATE(2036), 2, sym_const_parameter, sym_optional_type_parameter, - [57225] = 10, - ACTIONS(3512), 1, + [52543] = 10, + ACTIONS(3538), 1, anon_sym_LPAREN, - ACTIONS(3514), 1, + ACTIONS(3540), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3518), 1, + ACTIONS(3544), 1, anon_sym_LT, - ACTIONS(3546), 1, + ACTIONS(3576), 1, anon_sym_SEMI, - STATE(359), 1, + STATE(259), 1, sym_field_declaration_list, - STATE(1522), 1, + STATE(1499), 1, sym_type_parameters, - STATE(1816), 1, + STATE(1952), 1, sym_ordered_field_declaration_list, - STATE(2134), 1, + STATE(2074), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57257] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3446), 1, - sym_identifier, - ACTIONS(3548), 1, - anon_sym_RBRACE, - STATE(2149), 1, - sym_field_declaration, - STATE(2226), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1449), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [57287] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3434), 1, + [52575] = 9, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(3528), 1, sym_identifier, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3550), 1, - anon_sym_RBRACE, - STATE(2035), 1, - sym_enum_variant, - STATE(2188), 1, - sym_visibility_modifier, + ACTIONS(3530), 1, + anon_sym_const, + ACTIONS(3534), 1, + sym_metavariable, + ACTIONS(3578), 1, + anon_sym_GT, + STATE(1732), 1, + sym_lifetime, + STATE(1977), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1480), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [57317] = 10, - ACTIONS(3512), 1, - anon_sym_LPAREN, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3518), 1, - anon_sym_LT, - ACTIONS(3552), 1, - anon_sym_SEMI, - ACTIONS(3554), 1, - anon_sym_LBRACE, - STATE(812), 1, - sym_field_declaration_list, - STATE(1505), 1, - sym_type_parameters, - STATE(1912), 1, - sym_ordered_field_declaration_list, - STATE(2105), 1, - sym_where_clause, + STATE(2036), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52605] = 4, + ACTIONS(3506), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57349] = 9, + ACTIONS(3276), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2412), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52625] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(3440), 1, + ACTIONS(3476), 1, sym_crate, - ACTIONS(3446), 1, + ACTIONS(3514), 1, sym_identifier, - ACTIONS(3556), 1, + ACTIONS(3580), 1, anon_sym_RBRACE, - STATE(2149), 1, + STATE(2167), 1, sym_field_declaration, - STATE(2226), 1, + STATE(2224), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1449), 2, + STATE(1478), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57379] = 5, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3558), 1, - anon_sym_SEMI, - STATE(889), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2396), 6, - anon_sym_async, + [52655] = 9, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(3528), 1, + sym_identifier, + ACTIONS(3530), 1, anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [57401] = 10, - ACTIONS(3512), 1, - anon_sym_LPAREN, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3518), 1, - anon_sym_LT, - ACTIONS(3554), 1, - anon_sym_LBRACE, - ACTIONS(3560), 1, - anon_sym_SEMI, - STATE(939), 1, - sym_field_declaration_list, - STATE(1519), 1, - sym_type_parameters, - STATE(1983), 1, - sym_ordered_field_declaration_list, - STATE(2002), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57433] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3562), 1, - anon_sym_move, - STATE(62), 1, - sym_block, + ACTIONS(3534), 1, + sym_metavariable, + ACTIONS(3582), 1, + anon_sym_GT, + STATE(1725), 1, + sym_lifetime, + STATE(1977), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [57455] = 9, - ACTIONS(2071), 1, + STATE(2036), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52685] = 9, + ACTIONS(2103), 1, anon_sym_SQUOTE, - ACTIONS(3484), 1, + ACTIONS(3528), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3530), 1, anon_sym_const, - ACTIONS(3490), 1, + ACTIONS(3534), 1, sym_metavariable, - ACTIONS(3564), 1, + ACTIONS(3584), 1, anon_sym_GT, - STATE(1681), 1, + STATE(1732), 1, sym_lifetime, - STATE(1910), 1, + STATE(1977), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2108), 2, + STATE(2036), 2, sym_const_parameter, sym_optional_type_parameter, - [57485] = 9, + [52715] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3446), 1, + ACTIONS(3470), 1, sym_identifier, - ACTIONS(3566), 1, + ACTIONS(3476), 1, + sym_crate, + ACTIONS(3586), 1, anon_sym_RBRACE, - STATE(2149), 1, - sym_field_declaration, - STATE(2226), 1, + STATE(2055), 1, + sym_enum_variant, + STATE(2291), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1449), 2, + STATE(1453), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57515] = 9, - ACTIONS(2071), 1, + [52745] = 9, + ACTIONS(2103), 1, anon_sym_SQUOTE, - ACTIONS(3484), 1, + ACTIONS(3528), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3530), 1, anon_sym_const, - ACTIONS(3490), 1, + ACTIONS(3534), 1, sym_metavariable, - ACTIONS(3568), 1, + ACTIONS(3588), 1, anon_sym_GT, - STATE(1681), 1, + STATE(1732), 1, sym_lifetime, - STATE(1910), 1, + STATE(1977), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2108), 2, + STATE(2036), 2, sym_const_parameter, sym_optional_type_parameter, - [57545] = 9, - ACTIONS(2071), 1, + [52775] = 9, + ACTIONS(2103), 1, anon_sym_SQUOTE, - ACTIONS(3484), 1, + ACTIONS(3528), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3530), 1, anon_sym_const, - ACTIONS(3490), 1, + ACTIONS(3534), 1, sym_metavariable, - ACTIONS(3570), 1, + ACTIONS(3590), 1, anon_sym_GT, - STATE(1681), 1, + STATE(1732), 1, sym_lifetime, - STATE(1910), 1, + STATE(1977), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2108), 2, + STATE(2036), 2, sym_const_parameter, sym_optional_type_parameter, - [57575] = 9, - ACTIONS(2071), 1, + [52805] = 9, + ACTIONS(2103), 1, anon_sym_SQUOTE, - ACTIONS(3484), 1, + ACTIONS(3528), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3530), 1, anon_sym_const, - ACTIONS(3490), 1, + ACTIONS(3534), 1, sym_metavariable, - ACTIONS(3572), 1, + ACTIONS(3592), 1, anon_sym_GT, - STATE(1681), 1, + STATE(1732), 1, sym_lifetime, - STATE(1910), 1, + STATE(1977), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2108), 2, + STATE(2036), 2, sym_const_parameter, sym_optional_type_parameter, - [57605] = 6, - ACTIONS(3139), 1, - anon_sym_LPAREN, - ACTIONS(3222), 1, - anon_sym_COLON_COLON, - ACTIONS(3276), 1, - anon_sym_BANG, + [52835] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2107), 1, + anon_sym_POUND, + ACTIONS(3470), 1, + sym_identifier, + ACTIONS(3476), 1, + sym_crate, + ACTIONS(3594), 1, + anon_sym_RBRACE, + STATE(2055), 1, + sym_enum_variant, + STATE(2291), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3137), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - [57628] = 8, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(3486), 1, - anon_sym_const, - ACTIONS(3574), 1, - sym_identifier, - ACTIONS(3576), 1, - sym_metavariable, - STATE(1619), 1, - sym_lifetime, - STATE(1697), 1, - sym_constrained_type_parameter, + STATE(1453), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52865] = 5, + ACTIONS(3596), 1, + anon_sym_SEMI, + ACTIONS(3598), 1, + anon_sym_LBRACE, + STATE(763), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1899), 2, - sym_const_parameter, - sym_optional_type_parameter, - [57655] = 7, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3578), 1, - anon_sym_for, - STATE(1273), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + ACTIONS(2412), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52887] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2107), 1, + anon_sym_POUND, + ACTIONS(3470), 1, + sym_identifier, + ACTIONS(3476), 1, + sym_crate, + ACTIONS(3600), 1, + anon_sym_RBRACE, + STATE(2055), 1, + sym_enum_variant, + STATE(2291), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57680] = 7, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3580), 1, - anon_sym_for, - STATE(1273), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + STATE(1453), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52917] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2107), 1, + anon_sym_POUND, + ACTIONS(3476), 1, + sym_crate, + ACTIONS(3514), 1, + sym_identifier, + ACTIONS(3602), 1, + anon_sym_RBRACE, + STATE(2167), 1, + sym_field_declaration, + STATE(2224), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57705] = 7, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, + STATE(1478), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52947] = 7, + ACTIONS(3173), 1, anon_sym_LPAREN, - ACTIONS(3582), 1, - anon_sym_for, - STATE(1273), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + ACTIONS(3177), 1, + anon_sym_COLON, + ACTIONS(3189), 1, + anon_sym_BANG, + ACTIONS(3604), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57730] = 8, + ACTIONS(3181), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3171), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [52973] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3446), 1, + ACTIONS(3470), 1, sym_identifier, - STATE(2048), 1, - sym_field_declaration, - STATE(2226), 1, + ACTIONS(3476), 1, + sym_crate, + ACTIONS(3606), 1, + anon_sym_RBRACE, + STATE(2055), 1, + sym_enum_variant, + STATE(2291), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1069), 2, + STATE(1453), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57757] = 2, + [53003] = 10, + ACTIONS(3538), 1, + anon_sym_LPAREN, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3544), 1, + anon_sym_LT, + ACTIONS(3556), 1, + anon_sym_LBRACE, + ACTIONS(3608), 1, + anon_sym_SEMI, + STATE(913), 1, + sym_field_declaration_list, + STATE(1515), 1, + sym_type_parameters, + STATE(1919), 1, + sym_ordered_field_declaration_list, + STATE(2125), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3584), 8, - anon_sym_SEMI, + [53035] = 5, + ACTIONS(3598), 1, anon_sym_LBRACE, + ACTIONS(3610), 1, + anon_sym_SEMI, + STATE(940), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2412), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [57772] = 8, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(3486), 1, - anon_sym_const, - ACTIONS(3586), 1, - sym_identifier, - ACTIONS(3588), 1, - sym_metavariable, - STATE(1585), 1, - sym_lifetime, - STATE(1737), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1804), 2, - sym_const_parameter, - sym_optional_type_parameter, - [57799] = 8, + [53057] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(3434), 1, - sym_identifier, - ACTIONS(3440), 1, + ACTIONS(3476), 1, sym_crate, - STATE(2035), 1, - sym_enum_variant, - STATE(2188), 1, + ACTIONS(3514), 1, + sym_identifier, + ACTIONS(3612), 1, + anon_sym_RBRACE, + STATE(2167), 1, + sym_field_declaration, + STATE(2224), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1480), 2, + STATE(1478), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57826] = 7, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_for, - STATE(1273), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + [53087] = 5, + ACTIONS(3572), 1, + anon_sym_LBRACE, + ACTIONS(3614), 1, + anon_sym_SEMI, + STATE(457), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57851] = 4, - ACTIONS(712), 1, - aux_sym_string_literal_token1, - STATE(1450), 1, - sym_string_literal, + ACTIONS(2412), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53109] = 4, + ACTIONS(3466), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 6, + ACTIONS(3276), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2412), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [57870] = 6, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3456), 1, - sym_identifier, - ACTIONS(3462), 1, - anon_sym_DOT_DOT, + [53129] = 9, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3572), 1, + anon_sym_LBRACE, + ACTIONS(3616), 1, + anon_sym_COLON, + ACTIONS(3618), 1, + anon_sym_LT, + STATE(422), 1, + sym_declaration_list, + STATE(1588), 1, + sym_type_parameters, + STATE(1700), 1, + sym_trait_bounds, + STATE(2155), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1671), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2177), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [57893] = 4, - ACTIONS(3197), 1, - anon_sym_trait, - ACTIONS(3592), 1, - anon_sym_impl, + [53158] = 4, + ACTIONS(870), 1, + anon_sym_LBRACE, + STATE(1387), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 6, + ACTIONS(2412), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [57912] = 8, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(3594), 1, + [53177] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2107), 1, + anon_sym_POUND, + ACTIONS(3470), 1, sym_identifier, - ACTIONS(3596), 1, - anon_sym_RBRACE, - ACTIONS(3598), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, - anon_sym_ref, - ACTIONS(3602), 1, - sym_mutable_specifier, + ACTIONS(3476), 1, + sym_crate, + STATE(1996), 1, + sym_enum_variant, + STATE(2291), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1055), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53204] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2107), 1, + anon_sym_POUND, + ACTIONS(3470), 1, + sym_identifier, + ACTIONS(3476), 1, + sym_crate, + STATE(2112), 1, + sym_enum_variant, + STATE(2291), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1914), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [57939] = 4, - ACTIONS(3606), 1, + STATE(1055), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53231] = 4, + ACTIONS(3622), 1, anon_sym_PLUS, - STATE(1485), 1, + STATE(1488), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3604), 6, + ACTIONS(3620), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [57958] = 8, + [53250] = 5, + ACTIONS(3627), 1, + anon_sym_fn, + ACTIONS(3629), 1, + anon_sym_extern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1455), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3624), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [53271] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(3440), 1, - sym_crate, - ACTIONS(3446), 1, + ACTIONS(3470), 1, sym_identifier, - STATE(1952), 1, - sym_field_declaration, - STATE(2226), 1, + ACTIONS(3476), 1, + sym_crate, + STATE(2055), 1, + sym_enum_variant, + STATE(2291), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1069), 2, + STATE(1453), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57985] = 9, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3608), 1, - anon_sym_COLON, - ACTIONS(3610), 1, - anon_sym_LT, - STATE(778), 1, - sym_declaration_list, - STATE(1549), 1, - sym_type_parameters, - STATE(1675), 1, - sym_trait_bounds, - STATE(2065), 1, - sym_where_clause, + [53298] = 6, + ACTIONS(3173), 1, + anon_sym_LPAREN, + ACTIONS(3189), 1, + anon_sym_BANG, + ACTIONS(3632), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58014] = 8, - ACTIONS(2071), 1, + ACTIONS(3181), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3171), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [53321] = 8, + ACTIONS(2103), 1, anon_sym_SQUOTE, - ACTIONS(3484), 1, - sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3530), 1, anon_sym_const, - ACTIONS(3490), 1, + ACTIONS(3634), 1, + sym_identifier, + ACTIONS(3636), 1, sym_metavariable, - STATE(1681), 1, + STATE(1607), 1, sym_lifetime, - STATE(1910), 1, + STATE(1731), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2108), 2, + STATE(1980), 2, sym_const_parameter, sym_optional_type_parameter, - [58041] = 8, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(3594), 1, - sym_identifier, - ACTIONS(3600), 1, - anon_sym_ref, - ACTIONS(3602), 1, - sym_mutable_specifier, - ACTIONS(3612), 1, - anon_sym_RBRACE, - ACTIONS(3614), 1, - anon_sym_COMMA, + [53348] = 4, + ACTIONS(3638), 1, + anon_sym_PLUS, + STATE(1488), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1823), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [58068] = 4, - ACTIONS(848), 1, + ACTIONS(3620), 6, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1391), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2396), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [58087] = 4, - ACTIONS(3606), 1, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [53367] = 4, + ACTIONS(3640), 1, anon_sym_PLUS, - STATE(1458), 1, + STATE(1488), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3616), 6, + ACTIONS(3620), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [58106] = 9, - ACTIONS(3516), 1, + [53386] = 9, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3540), 1, + ACTIONS(3572), 1, anon_sym_LBRACE, - ACTIONS(3608), 1, + ACTIONS(3616), 1, anon_sym_COLON, - ACTIONS(3610), 1, + ACTIONS(3618), 1, anon_sym_LT, - STATE(811), 1, + STATE(271), 1, sym_declaration_list, - STATE(1577), 1, + STATE(1582), 1, sym_type_parameters, - STATE(1687), 1, + STATE(1713), 1, sym_trait_bounds, - STATE(2104), 1, + STATE(2169), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53415] = 6, + ACTIONS(3560), 1, + anon_sym_COLON_COLON, + ACTIONS(3642), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2394), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3270), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3276), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53438] = 7, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3187), 1, + anon_sym_LPAREN, + ACTIONS(3645), 1, + anon_sym_for, + STATE(1277), 1, + sym_type_arguments, + STATE(1299), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2394), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53463] = 9, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3598), 1, + anon_sym_LBRACE, + ACTIONS(3616), 1, + anon_sym_COLON, + ACTIONS(3618), 1, + anon_sym_LT, + STATE(916), 1, + sym_declaration_list, + STATE(1587), 1, + sym_type_parameters, + STATE(1735), 1, + sym_trait_bounds, + STATE(2124), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58135] = 8, + [53492] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(3440), 1, + ACTIONS(3476), 1, sym_crate, - ACTIONS(3446), 1, + ACTIONS(3514), 1, sym_identifier, - STATE(2149), 1, + STATE(1949), 1, sym_field_declaration, - STATE(2226), 1, + STATE(2224), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1449), 2, + STATE(1055), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [58162] = 8, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(3486), 1, - anon_sym_const, - ACTIONS(3586), 1, - sym_identifier, - ACTIONS(3588), 1, - sym_metavariable, - STATE(1611), 1, - sym_lifetime, - STATE(1737), 1, - sym_constrained_type_parameter, + [53519] = 5, + ACTIONS(3649), 1, + anon_sym_fn, + ACTIONS(3651), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1804), 2, - sym_const_parameter, - sym_optional_type_parameter, - [58189] = 4, - ACTIONS(3618), 1, - anon_sym_PLUS, - STATE(1458), 1, - aux_sym_trait_bounds_repeat1, + STATE(1455), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3647), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [53540] = 7, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3187), 1, + anon_sym_LPAREN, + ACTIONS(3653), 1, + anon_sym_for, + STATE(1277), 1, + sym_type_arguments, + STATE(1299), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3616), 6, - anon_sym_SEMI, + ACTIONS(2394), 3, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [58208] = 4, - ACTIONS(3620), 1, anon_sym_PLUS, - STATE(1458), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3616), 6, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [58227] = 7, - ACTIONS(2356), 1, - anon_sym_PLUS, - ACTIONS(3256), 1, - anon_sym_PIPE, - ACTIONS(3258), 1, - anon_sym_COLON, - ACTIONS(3625), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3262), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3622), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58252] = 6, - ACTIONS(3256), 1, + [53565] = 6, + ACTIONS(3270), 1, anon_sym_PIPE, - ACTIONS(3258), 1, + ACTIONS(3272), 1, anon_sym_COLON, - ACTIONS(3627), 1, + ACTIONS(3506), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3262), 2, + ACTIONS(3276), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2356), 3, + ACTIONS(2394), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [58275] = 7, - ACTIONS(3149), 1, + [53588] = 7, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3187), 1, anon_sym_LPAREN, - ACTIONS(3629), 1, + ACTIONS(3655), 1, anon_sym_for, - STATE(1273), 1, + STATE(1277), 1, sym_type_arguments, - STATE(1300), 1, + STATE(1299), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, + ACTIONS(2394), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58300] = 7, - ACTIONS(3149), 1, + [53613] = 4, + ACTIONS(3207), 1, + anon_sym_trait, + ACTIONS(3657), 1, + anon_sym_impl, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2412), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53632] = 7, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3187), 1, anon_sym_LPAREN, - ACTIONS(3631), 1, + ACTIONS(3659), 1, anon_sym_for, - STATE(1273), 1, + STATE(1277), 1, sym_type_arguments, - STATE(1300), 1, + STATE(1299), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, + ACTIONS(2394), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58325] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, + [53657] = 6, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(3434), 1, + ACTIONS(3488), 1, sym_identifier, - ACTIONS(3440), 1, - sym_crate, - STATE(1825), 1, - sym_enum_variant, - STATE(2188), 1, - sym_visibility_modifier, + ACTIONS(3494), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1069), 2, + STATE(1702), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [58352] = 9, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3608), 1, - anon_sym_COLON, - ACTIONS(3610), 1, - anon_sym_LT, - STATE(924), 1, - sym_declaration_list, - STATE(1527), 1, - sym_type_parameters, - STATE(1659), 1, - sym_trait_bounds, - STATE(1996), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58381] = 8, - ACTIONS(3633), 1, - anon_sym_LPAREN, - ACTIONS(3638), 1, - anon_sym_LBRACE, - ACTIONS(3641), 1, - anon_sym_LBRACK, - STATE(1476), 1, - aux_sym_macro_definition_repeat1, - STATE(2311), 1, - sym_token_tree_pattern, - STATE(2375), 1, - sym_macro_rule, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3636), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [58408] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3434), 1, + STATE(2128), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53680] = 8, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(3528), 1, sym_identifier, - ACTIONS(3440), 1, - sym_crate, - STATE(1974), 1, - sym_enum_variant, - STATE(2188), 1, - sym_visibility_modifier, + ACTIONS(3530), 1, + anon_sym_const, + ACTIONS(3534), 1, + sym_metavariable, + STATE(1732), 1, + sym_lifetime, + STATE(1977), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1069), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [58435] = 6, - ACTIONS(3622), 1, - anon_sym_RBRACK, - ACTIONS(3644), 1, - anon_sym_COLON_COLON, + STATE(2036), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53707] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 2, + ACTIONS(3661), 8, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3256), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3262), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58458] = 7, - ACTIONS(3149), 1, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53722] = 7, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3187), 1, anon_sym_LPAREN, - ACTIONS(3646), 1, + ACTIONS(3663), 1, anon_sym_for, - STATE(1273), 1, + STATE(1277), 1, sym_type_arguments, - STATE(1300), 1, + STATE(1299), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, + ACTIONS(2394), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58483] = 8, + [53747] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(3434), 1, + ACTIONS(3476), 1, + sym_crate, + ACTIONS(3514), 1, sym_identifier, - ACTIONS(3440), 1, + STATE(2167), 1, + sym_field_declaration, + STATE(2224), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1478), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53774] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2107), 1, + anon_sym_POUND, + ACTIONS(3476), 1, sym_crate, - STATE(2025), 1, - sym_enum_variant, - STATE(2188), 1, + ACTIONS(3514), 1, + sym_identifier, + STATE(1965), 1, + sym_field_declaration, + STATE(2224), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1069), 2, + STATE(1055), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [58510] = 8, + [53801] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2075), 1, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(3440), 1, + ACTIONS(3476), 1, sym_crate, - ACTIONS(3446), 1, + ACTIONS(3514), 1, sym_identifier, - STATE(1949), 1, + STATE(2149), 1, sym_field_declaration, - STATE(2226), 1, + STATE(2224), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1069), 2, + STATE(1055), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [58537] = 5, - ACTIONS(3650), 1, - anon_sym_fn, - ACTIONS(3652), 1, - anon_sym_extern, + [53828] = 7, + ACTIONS(2394), 1, + anon_sym_PLUS, + ACTIONS(3270), 1, + anon_sym_PIPE, + ACTIONS(3272), 1, + anon_sym_COLON, + ACTIONS(3466), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1488), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3648), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [58558] = 9, - ACTIONS(3502), 1, + ACTIONS(3276), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3642), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [53853] = 8, + ACTIONS(806), 1, + anon_sym_DOT_DOT, + ACTIONS(3665), 1, + sym_identifier, + ACTIONS(3667), 1, + anon_sym_RBRACE, + ACTIONS(3669), 1, + anon_sym_COMMA, + ACTIONS(3671), 1, + anon_sym_ref, + ACTIONS(3673), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1811), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [53880] = 4, + ACTIONS(3677), 1, + anon_sym_PLUS, + STATE(1481), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3675), 6, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3608), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [53899] = 9, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3598), 1, + anon_sym_LBRACE, + ACTIONS(3616), 1, anon_sym_COLON, - ACTIONS(3610), 1, + ACTIONS(3618), 1, anon_sym_LT, - STATE(287), 1, + STATE(846), 1, sym_declaration_list, - STATE(1557), 1, + STATE(1570), 1, sym_type_parameters, - STATE(1729), 1, + STATE(1694), 1, sym_trait_bounds, - STATE(2103), 1, + STATE(2022), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58587] = 9, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, + [53928] = 9, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3608), 1, + ACTIONS(3598), 1, + anon_sym_LBRACE, + ACTIONS(3616), 1, anon_sym_COLON, - ACTIONS(3610), 1, + ACTIONS(3618), 1, anon_sym_LT, - STATE(364), 1, + STATE(872), 1, sym_declaration_list, - STATE(1569), 1, + STATE(1577), 1, sym_type_parameters, - STATE(1724), 1, + STATE(1751), 1, sym_trait_bounds, - STATE(2141), 1, + STATE(2072), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58616] = 4, - ACTIONS(3656), 1, + [53957] = 4, + ACTIONS(714), 1, + aux_sym_string_literal_token1, + STATE(1474), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3358), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53976] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2107), 1, + anon_sym_POUND, + ACTIONS(3470), 1, + sym_identifier, + ACTIONS(3476), 1, + sym_crate, + STATE(1995), 1, + sym_enum_variant, + STATE(2291), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1055), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54003] = 8, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(3530), 1, + anon_sym_const, + ACTIONS(3634), 1, + sym_identifier, + ACTIONS(3636), 1, + sym_metavariable, + STATE(1558), 1, + sym_lifetime, + STATE(1731), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1980), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54030] = 8, + ACTIONS(806), 1, + anon_sym_DOT_DOT, + ACTIONS(3665), 1, + sym_identifier, + ACTIONS(3671), 1, + anon_sym_ref, + ACTIONS(3673), 1, + sym_mutable_specifier, + ACTIONS(3680), 1, + anon_sym_RBRACE, + ACTIONS(3682), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1817), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [54057] = 4, + ACTIONS(3622), 1, anon_sym_PLUS, - STATE(1485), 1, + STATE(1481), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3654), 6, + ACTIONS(3684), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [58635] = 7, - ACTIONS(3149), 1, + [54076] = 8, + ACTIONS(3686), 1, + anon_sym_LPAREN, + ACTIONS(3691), 1, + anon_sym_LBRACE, + ACTIONS(3694), 1, + anon_sym_LBRACK, + STATE(1489), 1, + aux_sym_macro_definition_repeat1, + STATE(2278), 1, + sym_macro_rule, + STATE(2394), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3689), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [54103] = 7, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(3187), 1, anon_sym_LPAREN, - ACTIONS(3659), 1, + ACTIONS(3697), 1, anon_sym_for, - STATE(1273), 1, + STATE(1277), 1, sym_type_arguments, - STATE(1300), 1, + STATE(1299), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, + ACTIONS(2394), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58660] = 9, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, + [54128] = 9, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3608), 1, + ACTIONS(3572), 1, + anon_sym_LBRACE, + ACTIONS(3616), 1, anon_sym_COLON, - ACTIONS(3610), 1, + ACTIONS(3618), 1, anon_sym_LT, - STATE(450), 1, + STATE(366), 1, sym_declaration_list, - STATE(1552), 1, + STATE(1576), 1, sym_type_parameters, - STATE(1734), 1, + STATE(1743), 1, sym_trait_bounds, - STATE(2127), 1, + STATE(2108), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58689] = 5, - ACTIONS(3664), 1, - anon_sym_fn, - ACTIONS(3666), 1, - anon_sym_extern, + [54157] = 7, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3187), 1, + anon_sym_LPAREN, + ACTIONS(3699), 1, + anon_sym_for, + STATE(1277), 1, + sym_type_arguments, + STATE(1299), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1488), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3661), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [58710] = 6, - ACTIONS(3139), 1, + ACTIONS(2394), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54182] = 6, + ACTIONS(3173), 1, anon_sym_LPAREN, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3669), 1, + ACTIONS(3245), 1, anon_sym_COLON_COLON, + ACTIONS(3344), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3181), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3137), 3, - anon_sym_RBRACK, - anon_sym_COMMA, + ACTIONS(3171), 3, + anon_sym_EQ_GT, + anon_sym_if, anon_sym_PIPE, - [58733] = 2, + [54205] = 7, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3187), 1, + anon_sym_LPAREN, + ACTIONS(3701), 1, + anon_sym_for, + STATE(1277), 1, + sym_type_arguments, + STATE(1299), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3654), 7, - anon_sym_SEMI, + ACTIONS(2394), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [58747] = 3, - ACTIONS(3671), 1, + [54230] = 8, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(3530), 1, + anon_sym_const, + ACTIONS(3703), 1, sym_identifier, + ACTIONS(3705), 1, + sym_metavariable, + STATE(1617), 1, + sym_lifetime, + STATE(1723), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [58763] = 2, + STATE(1906), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54257] = 6, + ACTIONS(3707), 1, + anon_sym_LPAREN, + ACTIONS(3711), 1, + anon_sym_EQ, + ACTIONS(3713), 1, + anon_sym_COLON_COLON, + STATE(1918), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3654), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3709), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_GT, - [58777] = 8, - ACTIONS(3673), 1, + [54279] = 8, + ACTIONS(3715), 1, anon_sym_LPAREN, - ACTIONS(3675), 1, + ACTIONS(3717), 1, anon_sym_RPAREN, - ACTIONS(3677), 1, + ACTIONS(3719), 1, anon_sym_LBRACE, - ACTIONS(3679), 1, + ACTIONS(3721), 1, anon_sym_LBRACK, - STATE(1476), 1, + STATE(1500), 1, aux_sym_macro_definition_repeat1, - STATE(2106), 1, + STATE(2168), 1, sym_macro_rule, - STATE(2311), 1, + STATE(2394), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58803] = 8, - ACTIONS(3512), 1, + [54305] = 3, + ACTIONS(3723), 1, + anon_sym_trait, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2412), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54321] = 8, + ACTIONS(3538), 1, anon_sym_LPAREN, - ACTIONS(3514), 1, + ACTIONS(3540), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3681), 1, + ACTIONS(3725), 1, anon_sym_SEMI, - STATE(284), 1, + STATE(414), 1, sym_field_declaration_list, - STATE(1821), 1, + STATE(1900), 1, sym_ordered_field_declaration_list, - STATE(2146), 1, + STATE(2145), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58829] = 8, - ACTIONS(3673), 1, + [54347] = 8, + ACTIONS(3715), 1, anon_sym_LPAREN, - ACTIONS(3677), 1, + ACTIONS(3719), 1, anon_sym_LBRACE, - ACTIONS(3679), 1, + ACTIONS(3721), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3727), 1, anon_sym_RPAREN, - STATE(1493), 1, + STATE(1489), 1, aux_sym_macro_definition_repeat1, - STATE(2133), 1, + STATE(2148), 1, sym_macro_rule, - STATE(2311), 1, + STATE(2394), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58855] = 6, - ACTIONS(3512), 1, + [54373] = 8, + ACTIONS(3715), 1, anon_sym_LPAREN, - ACTIONS(3554), 1, + ACTIONS(3719), 1, anon_sym_LBRACE, - ACTIONS(3687), 1, - anon_sym_EQ, + ACTIONS(3721), 1, + anon_sym_LBRACK, + ACTIONS(3729), 1, + anon_sym_RBRACE, + STATE(1489), 1, + aux_sym_macro_definition_repeat1, + STATE(2020), 1, + sym_macro_rule, + STATE(2394), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3685), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1776), 2, + [54399] = 8, + ACTIONS(3538), 1, + anon_sym_LPAREN, + ACTIONS(3540), 1, + anon_sym_LBRACE, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3731), 1, + anon_sym_SEMI, + STATE(309), 1, sym_field_declaration_list, + STATE(1873), 1, sym_ordered_field_declaration_list, - [58877] = 2, + STATE(2008), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54425] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3654), 7, + ACTIONS(3733), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -109853,58 +110008,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [58891] = 7, - ACTIONS(788), 1, + [54439] = 7, + ACTIONS(806), 1, anon_sym_DOT_DOT, - ACTIONS(3594), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(3671), 1, anon_sym_ref, - ACTIONS(3602), 1, + ACTIONS(3673), 1, sym_mutable_specifier, - ACTIONS(3689), 1, + ACTIONS(3735), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1994), 2, + STATE(2202), 2, sym_field_pattern, sym_remaining_field_pattern, - [58915] = 3, - ACTIONS(3691), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2396), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [58931] = 7, - ACTIONS(3137), 1, - anon_sym_PIPE, - ACTIONS(3139), 1, - anon_sym_LPAREN, - ACTIONS(3143), 1, - anon_sym_COLON, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3693), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58955] = 2, + [54463] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3654), 7, + ACTIONS(3675), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -109912,11 +110037,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [58969] = 2, + [54477] = 6, + ACTIONS(3538), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + anon_sym_LBRACE, + ACTIONS(3739), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3737), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1883), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [54499] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3654), 7, + ACTIONS(3675), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -109924,64 +110065,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [58983] = 8, - ACTIONS(3673), 1, + [54513] = 8, + ACTIONS(3715), 1, anon_sym_LPAREN, - ACTIONS(3677), 1, + ACTIONS(3719), 1, anon_sym_LBRACE, - ACTIONS(3679), 1, + ACTIONS(3721), 1, anon_sym_LBRACK, - ACTIONS(3695), 1, - anon_sym_RPAREN, - STATE(1476), 1, + ACTIONS(3741), 1, + anon_sym_RBRACE, + STATE(1489), 1, aux_sym_macro_definition_repeat1, - STATE(2130), 1, + STATE(2039), 1, sym_macro_rule, - STATE(2311), 1, + STATE(2394), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59009] = 7, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(3594), 1, - sym_identifier, - ACTIONS(3600), 1, - anon_sym_ref, - ACTIONS(3602), 1, - sym_mutable_specifier, - ACTIONS(3697), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1994), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [59033] = 8, - ACTIONS(3512), 1, - anon_sym_LPAREN, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3554), 1, - anon_sym_LBRACE, - ACTIONS(3699), 1, - anon_sym_SEMI, - STATE(886), 1, - sym_field_declaration_list, - STATE(1982), 1, - sym_ordered_field_declaration_list, - STATE(2175), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59059] = 2, + [54539] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3701), 7, + ACTIONS(3675), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -109989,235 +110095,291 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [59073] = 3, - ACTIONS(3703), 1, + [54553] = 3, + ACTIONS(3743), 1, anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 6, + ACTIONS(2412), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [59089] = 7, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(3594), 1, - sym_identifier, - ACTIONS(3600), 1, - anon_sym_ref, - ACTIONS(3602), 1, - sym_mutable_specifier, - ACTIONS(3705), 1, - anon_sym_RBRACE, + [54569] = 3, + ACTIONS(2436), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1994), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [59113] = 3, - ACTIONS(3707), 1, - sym_identifier, + ACTIONS(2412), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54585] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3675), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54599] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3675), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54613] = 3, + ACTIONS(3292), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 6, + ACTIONS(2412), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [59129] = 8, - ACTIONS(3673), 1, + [54629] = 8, + ACTIONS(3538), 1, anon_sym_LPAREN, - ACTIONS(3677), 1, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3556), 1, anon_sym_LBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3709), 1, - anon_sym_RBRACE, - STATE(1515), 1, - aux_sym_macro_definition_repeat1, - STATE(2098), 1, - sym_macro_rule, - STATE(2311), 1, - sym_token_tree_pattern, + ACTIONS(3745), 1, + anon_sym_SEMI, + STATE(859), 1, + sym_field_declaration_list, + STATE(1989), 1, + sym_ordered_field_declaration_list, + STATE(2029), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59155] = 8, + [54655] = 7, + ACTIONS(806), 1, + anon_sym_DOT_DOT, + ACTIONS(3665), 1, + sym_identifier, + ACTIONS(3671), 1, + anon_sym_ref, ACTIONS(3673), 1, + sym_mutable_specifier, + ACTIONS(3747), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2202), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [54679] = 8, + ACTIONS(3715), 1, anon_sym_LPAREN, - ACTIONS(3677), 1, + ACTIONS(3719), 1, anon_sym_LBRACE, - ACTIONS(3679), 1, + ACTIONS(3721), 1, anon_sym_LBRACK, - ACTIONS(3711), 1, + ACTIONS(3749), 1, anon_sym_RPAREN, - STATE(1503), 1, + STATE(1489), 1, aux_sym_macro_definition_repeat1, - STATE(2086), 1, + STATE(2043), 1, sym_macro_rule, - STATE(2311), 1, + STATE(2394), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59181] = 6, - ACTIONS(3713), 1, + [54705] = 6, + ACTIONS(3707), 1, anon_sym_LPAREN, - ACTIONS(3717), 1, + ACTIONS(3711), 1, anon_sym_EQ, - ACTIONS(3719), 1, + ACTIONS(3751), 1, anon_sym_COLON_COLON, - STATE(1780), 1, + STATE(1918), 1, sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3715), 3, + ACTIONS(3709), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [59203] = 3, - ACTIONS(3721), 1, - anon_sym_trait, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2396), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [59219] = 6, - ACTIONS(3713), 1, + [54727] = 6, + ACTIONS(3538), 1, anon_sym_LPAREN, - ACTIONS(3717), 1, + ACTIONS(3556), 1, + anon_sym_LBRACE, + ACTIONS(3755), 1, anon_sym_EQ, - ACTIONS(3723), 1, - anon_sym_COLON_COLON, - STATE(1780), 1, - sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3715), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [59241] = 8, - ACTIONS(3673), 1, - anon_sym_LPAREN, - ACTIONS(3677), 1, - anon_sym_LBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3725), 1, + ACTIONS(3753), 2, anon_sym_RBRACE, - STATE(1476), 1, - aux_sym_macro_definition_repeat1, - STATE(2132), 1, - sym_macro_rule, - STATE(2311), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59267] = 6, - ACTIONS(3713), 1, + anon_sym_COMMA, + STATE(1979), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [54749] = 6, + ACTIONS(3707), 1, anon_sym_LPAREN, - ACTIONS(3717), 1, + ACTIONS(3711), 1, anon_sym_EQ, - ACTIONS(3727), 1, + ACTIONS(3757), 1, anon_sym_COLON_COLON, - STATE(1780), 1, + STATE(1918), 1, sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3715), 3, + ACTIONS(3709), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [59289] = 7, - ACTIONS(788), 1, + [54771] = 3, + ACTIONS(3759), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3526), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54787] = 7, + ACTIONS(806), 1, anon_sym_DOT_DOT, - ACTIONS(3594), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(3671), 1, anon_sym_ref, - ACTIONS(3602), 1, + ACTIONS(3673), 1, sym_mutable_specifier, - ACTIONS(3729), 1, + ACTIONS(3761), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1994), 2, + STATE(2202), 2, sym_field_pattern, sym_remaining_field_pattern, - [59313] = 3, - ACTIONS(3731), 1, + [54811] = 3, + ACTIONS(3763), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 6, + ACTIONS(3526), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [59329] = 8, - ACTIONS(3512), 1, + [54827] = 3, + ACTIONS(3765), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3526), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54843] = 3, + ACTIONS(3326), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2412), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54859] = 3, + ACTIONS(3767), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3526), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54875] = 6, + ACTIONS(3326), 1, + anon_sym_COLON_COLON, + ACTIONS(3707), 1, anon_sym_LPAREN, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3554), 1, - anon_sym_LBRACE, - ACTIONS(3733), 1, - anon_sym_SEMI, - STATE(785), 1, - sym_field_declaration_list, - STATE(1939), 1, - sym_ordered_field_declaration_list, - STATE(2062), 1, - sym_where_clause, + ACTIONS(3771), 1, + anon_sym_EQ, + STATE(1914), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59355] = 8, - ACTIONS(3673), 1, + ACTIONS(3769), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [54897] = 8, + ACTIONS(3715), 1, anon_sym_LPAREN, - ACTIONS(3677), 1, + ACTIONS(3719), 1, anon_sym_LBRACE, - ACTIONS(3679), 1, + ACTIONS(3721), 1, anon_sym_LBRACK, - ACTIONS(3735), 1, + ACTIONS(3773), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1501), 1, aux_sym_macro_definition_repeat1, - STATE(2013), 1, + STATE(2083), 1, sym_macro_rule, - STATE(2311), 1, + STATE(2394), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59381] = 2, + [54923] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3737), 7, + ACTIONS(3775), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -110225,8179 +110387,8286 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [59395] = 8, - ACTIONS(3512), 1, + [54937] = 8, + ACTIONS(3715), 1, anon_sym_LPAREN, - ACTIONS(3514), 1, + ACTIONS(3719), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3739), 1, - anon_sym_SEMI, - STATE(393), 1, - sym_field_declaration_list, - STATE(1834), 1, - sym_ordered_field_declaration_list, - STATE(2164), 1, - sym_where_clause, + ACTIONS(3721), 1, + anon_sym_LBRACK, + ACTIONS(3777), 1, + anon_sym_RBRACE, + STATE(1508), 1, + aux_sym_macro_definition_repeat1, + STATE(2060), 1, + sym_macro_rule, + STATE(2394), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59421] = 8, - ACTIONS(3673), 1, + [54963] = 8, + ACTIONS(3715), 1, anon_sym_LPAREN, - ACTIONS(3677), 1, + ACTIONS(3719), 1, anon_sym_LBRACE, - ACTIONS(3679), 1, + ACTIONS(3721), 1, anon_sym_LBRACK, - ACTIONS(3741), 1, - anon_sym_RBRACE, - STATE(1520), 1, + ACTIONS(3779), 1, + anon_sym_RPAREN, + STATE(1517), 1, aux_sym_macro_definition_repeat1, - STATE(2066), 1, + STATE(2068), 1, sym_macro_rule, - STATE(2311), 1, + STATE(2394), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59447] = 3, - ACTIONS(3743), 1, - sym_identifier, + [54989] = 7, + ACTIONS(3171), 1, + anon_sym_PIPE, + ACTIONS(3173), 1, + anon_sym_LPAREN, + ACTIONS(3177), 1, + anon_sym_COLON, + ACTIONS(3189), 1, + anon_sym_BANG, + ACTIONS(3781), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [59463] = 6, - ACTIONS(3288), 1, - anon_sym_COLON_COLON, - ACTIONS(3713), 1, - anon_sym_LPAREN, - ACTIONS(3747), 1, - anon_sym_EQ, - STATE(1772), 1, - sym_meta_arguments, + ACTIONS(3181), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55013] = 7, + ACTIONS(806), 1, + anon_sym_DOT_DOT, + ACTIONS(3665), 1, + sym_identifier, + ACTIONS(3671), 1, + anon_sym_ref, + ACTIONS(3673), 1, + sym_mutable_specifier, + ACTIONS(3783), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3745), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [59485] = 6, - ACTIONS(3512), 1, + STATE(2202), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55037] = 8, + ACTIONS(3538), 1, anon_sym_LPAREN, - ACTIONS(3554), 1, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3556), 1, anon_sym_LBRACE, - ACTIONS(3751), 1, - anon_sym_EQ, + ACTIONS(3785), 1, + anon_sym_SEMI, + STATE(733), 1, + sym_field_declaration_list, + STATE(1955), 1, + sym_ordered_field_declaration_list, + STATE(2069), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3749), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1820), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [59507] = 7, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3608), 1, + [55063] = 7, + ACTIONS(3544), 1, + anon_sym_LT, + ACTIONS(3616), 1, anon_sym_COLON, - STATE(805), 1, - sym_declaration_list, - STATE(1672), 1, + ACTIONS(3787), 1, + anon_sym_SEMI, + ACTIONS(3789), 1, + anon_sym_EQ, + STATE(2231), 1, sym_trait_bounds, - STATE(2052), 1, - sym_where_clause, + STATE(2339), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59530] = 7, - ACTIONS(3516), 1, + [55086] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3753), 1, + ACTIONS(3791), 1, anon_sym_SEMI, - ACTIONS(3755), 1, + ACTIONS(3793), 1, anon_sym_LBRACE, - ACTIONS(3757), 1, - anon_sym_DASH_GT, - STATE(870), 1, + ACTIONS(3795), 1, + anon_sym_PLUS, + STATE(848), 1, sym_block, - STATE(1918), 1, + STATE(1916), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59553] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3408), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2494), 4, - anon_sym_RPAREN, + [55109] = 7, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3795), 1, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [59568] = 7, - ACTIONS(3514), 1, + ACTIONS(3797), 1, + anon_sym_SEMI, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3518), 1, - anon_sym_LT, - STATE(290), 1, - sym_field_declaration_list, - STATE(1738), 1, - sym_type_parameters, - STATE(2083), 1, + STATE(275), 1, + sym_block, + STATE(1812), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59591] = 7, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(3759), 1, - anon_sym_SEMI, - ACTIONS(3761), 1, - anon_sym_DASH_GT, - STATE(802), 1, - sym_block, - STATE(1942), 1, - sym_where_clause, + [55132] = 7, + ACTIONS(3286), 1, + anon_sym_EQ, + ACTIONS(3288), 1, + anon_sym_COMMA, + ACTIONS(3290), 1, + anon_sym_GT, + ACTIONS(3616), 1, + anon_sym_COLON, + STATE(1794), 1, + aux_sym_type_parameters_repeat1, + STATE(1825), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59614] = 6, - ACTIONS(788), 1, + [55155] = 6, + ACTIONS(806), 1, anon_sym_DOT_DOT, - ACTIONS(3594), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3600), 1, + ACTIONS(3671), 1, anon_sym_ref, - ACTIONS(3602), 1, + ACTIONS(3673), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1994), 2, + STATE(2202), 2, sym_field_pattern, sym_remaining_field_pattern, - [59635] = 7, - ACTIONS(3516), 1, + [55176] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3763), 1, - anon_sym_SEMI, - ACTIONS(3765), 1, + ACTIONS(3793), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(351), 1, + ACTIONS(3801), 1, + anon_sym_SEMI, + ACTIONS(3803), 1, + anon_sym_DASH_GT, + STATE(861), 1, sym_block, - STATE(1814), 1, + STATE(1940), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59658] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3358), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2398), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [59673] = 7, - ACTIONS(3516), 1, + [55199] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3518), 1, - anon_sym_LT, - ACTIONS(3769), 1, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(3799), 1, anon_sym_LBRACE, - STATE(299), 1, - sym_enum_variant_list, - STATE(1743), 1, - sym_type_parameters, - STATE(2073), 1, + ACTIONS(3805), 1, + anon_sym_SEMI, + STATE(308), 1, + sym_block, + STATE(1826), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59696] = 7, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3771), 1, - anon_sym_SEMI, - STATE(448), 1, - sym_block, - STATE(1873), 1, - sym_where_clause, + [55222] = 5, + ACTIONS(3809), 1, + anon_sym_COLON, + ACTIONS(3811), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59719] = 4, - ACTIONS(3773), 1, + ACTIONS(3181), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3807), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55241] = 4, + ACTIONS(3811), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3181), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2356), 3, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(2394), 3, + anon_sym_RPAREN, anon_sym_PLUS, - [59736] = 7, - ACTIONS(3516), 1, + anon_sym_COMMA, + [55258] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3350), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2490), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [55273] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3765), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3775), 1, + ACTIONS(3813), 1, anon_sym_SEMI, - ACTIONS(3777), 1, + ACTIONS(3815), 1, anon_sym_DASH_GT, - STATE(346), 1, + STATE(331), 1, sym_block, - STATE(1850), 1, + STATE(1923), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59759] = 7, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3765), 1, + [55296] = 7, + ACTIONS(3540), 1, anon_sym_LBRACE, - ACTIONS(3779), 1, - anon_sym_SEMI, - ACTIONS(3781), 1, - anon_sym_DASH_GT, - STATE(276), 1, - sym_block, - STATE(1829), 1, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3544), 1, + anon_sym_LT, + STATE(269), 1, + sym_field_declaration_list, + STATE(1748), 1, + sym_type_parameters, + STATE(2031), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59782] = 7, - ACTIONS(3516), 1, + [55319] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3755), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3783), 1, + ACTIONS(3817), 1, anon_sym_SEMI, - STATE(729), 1, + ACTIONS(3819), 1, + anon_sym_DASH_GT, + STATE(444), 1, sym_block, - STATE(1932), 1, + STATE(1783), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59805] = 4, - ACTIONS(3785), 1, + [55342] = 6, + ACTIONS(2995), 1, + anon_sym_COLON_COLON, + ACTIONS(3821), 1, + anon_sym_COMMA, + ACTIONS(3823), 1, + anon_sym_GT, + STATE(1827), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2394), 2, + anon_sym_PLUS, + anon_sym_as, + [55363] = 4, + ACTIONS(3825), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3181), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2356), 3, - anon_sym_RPAREN, + ACTIONS(2394), 3, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_COMMA, - [59822] = 4, + [55380] = 7, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3544), 1, + anon_sym_LT, + ACTIONS(3827), 1, + anon_sym_LBRACE, + STATE(267), 1, + sym_enum_variant_list, + STATE(1696), 1, + sym_type_parameters, + STATE(2162), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2398), 2, + [55403] = 7, + ACTIONS(2227), 1, anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3358), 2, + ACTIONS(3616), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3787), 2, - anon_sym_RPAREN, + ACTIONS(3821), 1, anon_sym_COMMA, - [59839] = 6, - ACTIONS(3039), 1, - anon_sym_COLON_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3792), 1, + ACTIONS(3823), 1, anon_sym_GT, - STATE(1984), 1, + STATE(1827), 1, aux_sym_type_parameters_repeat1, + STATE(1828), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55426] = 4, + ACTIONS(3829), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 2, + ACTIONS(3424), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2534), 3, + anon_sym_SEMI, anon_sym_PLUS, - anon_sym_as, - [59860] = 7, - ACTIONS(3516), 1, + anon_sym_DASH_GT, + [55443] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3765), 1, + ACTIONS(3793), 1, anon_sym_LBRACE, - ACTIONS(3794), 1, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(3832), 1, anon_sym_SEMI, - ACTIONS(3796), 1, - anon_sym_DASH_GT, - STATE(397), 1, + STATE(770), 1, sym_block, - STATE(1896), 1, + STATE(1943), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59883] = 5, - ACTIONS(3785), 1, - anon_sym_COLON_COLON, - ACTIONS(3800), 1, - anon_sym_COLON, + [55466] = 7, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3544), 1, + anon_sym_LT, + ACTIONS(3827), 1, + anon_sym_LBRACE, + STATE(260), 1, + sym_enum_variant_list, + STATE(1746), 1, + sym_type_parameters, + STATE(2081), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3798), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59902] = 7, - ACTIONS(2185), 1, - anon_sym_PLUS, - ACTIONS(3608), 1, - anon_sym_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3792), 1, - anon_sym_GT, - STATE(1977), 1, - sym_trait_bounds, - STATE(1984), 1, - aux_sym_type_parameters_repeat1, + [55489] = 4, + ACTIONS(3834), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59925] = 7, - ACTIONS(3516), 1, + ACTIONS(3350), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2490), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [55506] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3755), 1, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3802), 1, + ACTIONS(3837), 1, anon_sym_SEMI, - ACTIONS(3804), 1, - anon_sym_DASH_GT, - STATE(806), 1, + STATE(335), 1, sym_block, - STATE(1922), 1, + STATE(1776), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59948] = 7, - ACTIONS(3516), 1, + [55529] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3755), 1, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3806), 1, + ACTIONS(3839), 1, anon_sym_SEMI, - ACTIONS(3808), 1, - anon_sym_DASH_GT, - STATE(951), 1, + STATE(319), 1, sym_block, - STATE(1966), 1, + STATE(1832), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59971] = 7, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3608), 1, + [55552] = 7, + ACTIONS(3616), 1, anon_sym_COLON, - STATE(863), 1, - sym_declaration_list, - STATE(1680), 1, + ACTIONS(3841), 1, + anon_sym_COMMA, + ACTIONS(3843), 1, + anon_sym_GT, + STATE(1827), 1, + aux_sym_type_parameters_repeat1, + STATE(1828), 1, sym_trait_bounds, - STATE(2097), 1, - sym_where_clause, + STATE(1983), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59994] = 7, - ACTIONS(3518), 1, - anon_sym_LT, - ACTIONS(3608), 1, - anon_sym_COLON, - ACTIONS(3810), 1, - anon_sym_SEMI, - ACTIONS(3812), 1, - anon_sym_EQ, - STATE(2245), 1, - sym_type_parameters, - STATE(2270), 1, - sym_trait_bounds, + [55575] = 4, + ACTIONS(3845), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60017] = 4, - ACTIONS(3787), 1, - anon_sym_RBRACK, + ACTIONS(3181), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2394), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [55592] = 5, + ACTIONS(3809), 1, + anon_sym_COLON, + ACTIONS(3845), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3358), 2, + ACTIONS(3181), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3807), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2398), 3, - anon_sym_SEMI, + [55611] = 7, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3795), 1, anon_sym_PLUS, - anon_sym_DASH_GT, - [60034] = 7, - ACTIONS(3502), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3608), 1, - anon_sym_COLON, - STATE(268), 1, - sym_declaration_list, - STATE(1706), 1, - sym_trait_bounds, - STATE(2153), 1, + ACTIONS(3847), 1, + anon_sym_SEMI, + STATE(249), 1, + sym_block, + STATE(1859), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60057] = 7, - ACTIONS(3516), 1, + [55634] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2490), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3350), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3834), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55651] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3755), 1, + ACTIONS(3793), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3814), 1, + ACTIONS(3849), 1, anon_sym_SEMI, - STATE(878), 1, + ACTIONS(3851), 1, + anon_sym_DASH_GT, + STATE(742), 1, sym_block, - STATE(1911), 1, + STATE(1958), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60080] = 7, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3765), 1, + [55674] = 7, + ACTIONS(3540), 1, anon_sym_LBRACE, - ACTIONS(3816), 1, - anon_sym_SEMI, - ACTIONS(3818), 1, - anon_sym_DASH_GT, - STATE(417), 1, - sym_block, - STATE(1956), 1, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3544), 1, + anon_sym_LT, + STATE(373), 1, + sym_field_declaration_list, + STATE(1724), 1, + sym_type_parameters, + STATE(2134), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60103] = 7, - ACTIONS(3516), 1, + [55697] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(3820), 1, + ACTIONS(3799), 1, + anon_sym_LBRACE, + ACTIONS(3853), 1, anon_sym_SEMI, - STATE(379), 1, + STATE(449), 1, sym_block, - STATE(1833), 1, + STATE(1785), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60126] = 4, - ACTIONS(3822), 1, - anon_sym_RBRACK, + [55720] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3408), 2, - anon_sym_COMMA, + ACTIONS(3424), 2, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2494), 3, - anon_sym_SEMI, + ACTIONS(2534), 4, + anon_sym_RPAREN, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_DASH_GT, - [60143] = 7, - ACTIONS(3502), 1, + [55735] = 7, + ACTIONS(3123), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3608), 1, - anon_sym_COLON, - STATE(347), 1, - sym_declaration_list, - STATE(1673), 1, - sym_trait_bounds, - STATE(2043), 1, - sym_where_clause, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3855), 1, + sym_identifier, + ACTIONS(3857), 1, + anon_sym_STAR, + STATE(1911), 1, + sym_use_list, + STATE(2318), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60166] = 7, - ACTIONS(3242), 1, - anon_sym_EQ, - ACTIONS(3608), 1, + [55758] = 5, + ACTIONS(3861), 1, anon_sym_COLON, - ACTIONS(3825), 1, - anon_sym_COMMA, - ACTIONS(3827), 1, - anon_sym_GT, - STATE(1947), 1, - sym_trait_bounds, - STATE(1963), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3863), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60189] = 7, - ACTIONS(3516), 1, + ACTIONS(3181), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3859), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55777] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3518), 1, + ACTIONS(3544), 1, anon_sym_LT, - ACTIONS(3554), 1, + ACTIONS(3865), 1, anon_sym_LBRACE, - STATE(940), 1, - sym_field_declaration_list, - STATE(1663), 1, + STATE(780), 1, + sym_enum_variant_list, + STATE(1678), 1, sym_type_parameters, - STATE(2004), 1, + STATE(2050), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60212] = 4, - ACTIONS(3829), 1, - anon_sym_COLON_COLON, + [55800] = 7, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3598), 1, + anon_sym_LBRACE, + ACTIONS(3616), 1, + anon_sym_COLON, + STATE(746), 1, + sym_declaration_list, + STATE(1745), 1, + sym_trait_bounds, + STATE(2059), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2356), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [60229] = 5, - ACTIONS(3800), 1, - anon_sym_COLON, - ACTIONS(3829), 1, - anon_sym_COLON_COLON, + [55823] = 7, + ACTIONS(3123), 1, + anon_sym_LBRACE, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3855), 1, + sym_identifier, + ACTIONS(3857), 1, + anon_sym_STAR, + STATE(1911), 1, + sym_use_list, + STATE(2319), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3798), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60248] = 7, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3831), 1, + [55846] = 7, + ACTIONS(3544), 1, + anon_sym_LT, + ACTIONS(3616), 1, + anon_sym_COLON, + ACTIONS(3867), 1, anon_sym_SEMI, - STATE(921), 1, - sym_block, - STATE(1908), 1, - sym_where_clause, + ACTIONS(3869), 1, + anon_sym_EQ, + STATE(2352), 1, + sym_trait_bounds, + STATE(2391), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60271] = 7, - ACTIONS(3516), 1, + [55869] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3518), 1, + ACTIONS(3544), 1, anon_sym_LT, - ACTIONS(3833), 1, + ACTIONS(3556), 1, anon_sym_LBRACE, - STATE(932), 1, - sym_enum_variant_list, - STATE(1660), 1, + STATE(728), 1, + sym_field_declaration_list, + STATE(1742), 1, sym_type_parameters, - STATE(2001), 1, + STATE(2119), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60294] = 7, - ACTIONS(3516), 1, + [55892] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3765), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3835), 1, + ACTIONS(3871), 1, anon_sym_SEMI, - ACTIONS(3837), 1, + ACTIONS(3873), 1, anon_sym_DASH_GT, - STATE(312), 1, + STATE(391), 1, sym_block, - STATE(1921), 1, + STATE(1793), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60317] = 7, - ACTIONS(3516), 1, + [55915] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3755), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3839), 1, + ACTIONS(3875), 1, anon_sym_SEMI, - ACTIONS(3841), 1, + ACTIONS(3877), 1, anon_sym_DASH_GT, - STATE(929), 1, + STATE(403), 1, sym_block, - STATE(1905), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60340] = 7, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3518), 1, - anon_sym_LT, - ACTIONS(3769), 1, - anon_sym_LBRACE, - STATE(264), 1, - sym_enum_variant_list, - STATE(1740), 1, - sym_type_parameters, - STATE(1999), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60363] = 7, - ACTIONS(3242), 1, - anon_sym_EQ, - ACTIONS(3244), 1, - anon_sym_COMMA, - ACTIONS(3246), 1, - anon_sym_GT, - ACTIONS(3608), 1, - anon_sym_COLON, - STATE(1947), 1, - sym_trait_bounds, - STATE(1964), 1, - aux_sym_type_parameters_repeat1, + STATE(1795), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60386] = 7, - ACTIONS(3516), 1, + [55938] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3518), 1, - anon_sym_LT, - ACTIONS(3833), 1, + ACTIONS(3572), 1, anon_sym_LBRACE, - STATE(858), 1, - sym_enum_variant_list, - STATE(1702), 1, - sym_type_parameters, - STATE(2138), 1, + ACTIONS(3616), 1, + anon_sym_COLON, + STATE(292), 1, + sym_declaration_list, + STATE(1699), 1, + sym_trait_bounds, + STATE(2186), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60409] = 7, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, + [55961] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3608), 1, + ACTIONS(3598), 1, + anon_sym_LBRACE, + ACTIONS(3616), 1, anon_sym_COLON, - STATE(416), 1, + STATE(905), 1, sym_declaration_list, - STATE(1727), 1, + STATE(1744), 1, sym_trait_bounds, - STATE(2142), 1, + STATE(2104), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60432] = 7, - ACTIONS(3516), 1, + [55984] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3755), 1, + ACTIONS(3793), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(3843), 1, + ACTIONS(3879), 1, anon_sym_SEMI, - STATE(784), 1, + STATE(804), 1, sym_block, - STATE(1898), 1, + STATE(1913), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60455] = 7, - ACTIONS(3516), 1, + [56007] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3755), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3845), 1, + ACTIONS(3881), 1, anon_sym_SEMI, - STATE(736), 1, + ACTIONS(3883), 1, + anon_sym_DASH_GT, + STATE(255), 1, sym_block, - STATE(1894), 1, + STATE(1807), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60478] = 7, - ACTIONS(3516), 1, + [56030] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3765), 1, + ACTIONS(3793), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3847), 1, + ACTIONS(3885), 1, anon_sym_SEMI, - STATE(365), 1, + ACTIONS(3887), 1, + anon_sym_DASH_GT, + STATE(911), 1, sym_block, - STATE(1818), 1, + STATE(1932), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60501] = 7, - ACTIONS(3516), 1, + [56053] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3755), 1, + ACTIONS(3793), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3849), 1, + ACTIONS(3889), 1, anon_sym_SEMI, - STATE(766), 1, + ACTIONS(3891), 1, + anon_sym_DASH_GT, + STATE(907), 1, sym_block, - STATE(1892), 1, + STATE(1961), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60524] = 7, - ACTIONS(3516), 1, + [56076] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3765), 1, + ACTIONS(3572), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3616), 1, + anon_sym_COLON, + STATE(394), 1, + sym_declaration_list, + STATE(1747), 1, + sym_trait_bounds, + STATE(2096), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56099] = 7, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3793), 1, + anon_sym_LBRACE, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(3851), 1, + ACTIONS(3893), 1, anon_sym_SEMI, - STATE(408), 1, + STATE(918), 1, sym_block, - STATE(1920), 1, + STATE(1928), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60547] = 7, - ACTIONS(3518), 1, - anon_sym_LT, - ACTIONS(3608), 1, - anon_sym_COLON, - ACTIONS(3853), 1, + [56122] = 7, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3793), 1, + anon_sym_LBRACE, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(3895), 1, anon_sym_SEMI, - ACTIONS(3855), 1, + STATE(788), 1, + sym_block, + STATE(1910), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56145] = 7, + ACTIONS(3286), 1, anon_sym_EQ, - STATE(2303), 1, + ACTIONS(3616), 1, + anon_sym_COLON, + ACTIONS(3897), 1, + anon_sym_COMMA, + ACTIONS(3899), 1, + anon_sym_GT, + STATE(1825), 1, sym_trait_bounds, - STATE(2374), 1, - sym_type_parameters, + STATE(1970), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60570] = 7, - ACTIONS(3089), 1, + [56168] = 7, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3793), 1, anon_sym_LBRACE, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3857), 1, - sym_identifier, - ACTIONS(3859), 1, - anon_sym_STAR, - STATE(1763), 1, - sym_use_list, - STATE(2268), 1, - sym_type_arguments, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(3901), 1, + anon_sym_SEMI, + STATE(944), 1, + sym_block, + STATE(1925), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60593] = 7, - ACTIONS(3516), 1, + [56191] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3540), 1, + ACTIONS(3598), 1, anon_sym_LBRACE, - ACTIONS(3608), 1, + ACTIONS(3616), 1, anon_sym_COLON, - STATE(912), 1, + STATE(855), 1, sym_declaration_list, - STATE(1662), 1, + STATE(1719), 1, sym_trait_bounds, - STATE(1991), 1, + STATE(2027), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60616] = 7, - ACTIONS(3514), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, + [56214] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3518), 1, - anon_sym_LT, - STATE(372), 1, - sym_field_declaration_list, - STATE(1713), 1, - sym_type_parameters, - STATE(2171), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60639] = 5, - ACTIONS(3863), 1, + ACTIONS(3572), 1, + anon_sym_LBRACE, + ACTIONS(3616), 1, anon_sym_COLON, - ACTIONS(3865), 1, - anon_sym_COLON_COLON, + STATE(364), 1, + sym_declaration_list, + STATE(1726), 1, + sym_trait_bounds, + STATE(2121), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3861), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60658] = 7, - ACTIONS(3089), 1, + [56237] = 7, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3857), 1, - sym_identifier, - ACTIONS(3859), 1, - anon_sym_STAR, - STATE(1763), 1, - sym_use_list, - STATE(2255), 1, - sym_type_arguments, + ACTIONS(3903), 1, + anon_sym_SEMI, + ACTIONS(3905), 1, + anon_sym_DASH_GT, + STATE(404), 1, + sym_block, + STATE(1909), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60681] = 7, - ACTIONS(3516), 1, + [56260] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3518), 1, + ACTIONS(3544), 1, anon_sym_LT, - ACTIONS(3554), 1, + ACTIONS(3556), 1, anon_sym_LBRACE, - STATE(809), 1, + STATE(827), 1, sym_field_declaration_list, - STATE(1684), 1, + STATE(1706), 1, sym_type_parameters, - STATE(2101), 1, + STATE(2015), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60704] = 7, - ACTIONS(3516), 1, + [56283] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3765), 1, + ACTIONS(3793), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3867), 1, + ACTIONS(3907), 1, anon_sym_SEMI, - STATE(334), 1, + ACTIONS(3909), 1, + anon_sym_DASH_GT, + STATE(798), 1, sym_block, - STATE(1758), 1, + STATE(1984), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60727] = 7, - ACTIONS(3516), 1, + [56306] = 7, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3765), 1, + ACTIONS(3793), 1, anon_sym_LBRACE, - ACTIONS(3869), 1, + ACTIONS(3911), 1, anon_sym_SEMI, - ACTIONS(3871), 1, + ACTIONS(3913), 1, anon_sym_DASH_GT, - STATE(320), 1, + STATE(897), 1, sym_block, - STATE(1765), 1, + STATE(1922), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56329] = 7, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3544), 1, + anon_sym_LT, + ACTIONS(3865), 1, + anon_sym_LBRACE, + STATE(838), 1, + sym_enum_variant_list, + STATE(1705), 1, + sym_type_parameters, + STATE(2011), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60750] = 4, + [56352] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2494), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH_GT, - ACTIONS(3408), 2, + ACTIONS(3424), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(3822), 2, + ACTIONS(3829), 2, anon_sym_RPAREN, anon_sym_COMMA, - [60767] = 7, - ACTIONS(3608), 1, - anon_sym_COLON, - ACTIONS(3873), 1, - anon_sym_COMMA, - ACTIONS(3875), 1, - anon_sym_GT, - STATE(1893), 1, - aux_sym_for_lifetimes_repeat1, - STATE(1977), 1, - sym_trait_bounds, - STATE(1984), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60790] = 7, - ACTIONS(3516), 1, + [56369] = 6, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3755), 1, + ACTIONS(3572), 1, anon_sym_LBRACE, - ACTIONS(3877), 1, - anon_sym_SEMI, - ACTIONS(3879), 1, - anon_sym_DASH_GT, - STATE(741), 1, - sym_block, - STATE(1954), 1, + ACTIONS(3795), 1, + anon_sym_PLUS, + STATE(288), 1, + sym_declaration_list, + STATE(2154), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60813] = 6, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3767), 1, + [56389] = 5, + ACTIONS(764), 1, + anon_sym_RPAREN, + ACTIONS(3915), 1, + anon_sym_COMMA, + STATE(1944), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3171), 2, + anon_sym_COLON, + anon_sym_PIPE, + [56407] = 4, + ACTIONS(2798), 1, anon_sym_PLUS, - STATE(363), 1, - sym_declaration_list, - STATE(2178), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60833] = 6, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3157), 1, + ACTIONS(3366), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3917), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56423] = 4, + ACTIONS(3268), 1, anon_sym_COLON_COLON, - STATE(821), 1, - sym_parameters, - STATE(1266), 1, - sym_type_arguments, + ACTIONS(3659), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60853] = 6, - ACTIONS(3502), 1, + ACTIONS(2394), 3, anon_sym_LBRACE, - ACTIONS(3516), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3767), 1, + [56439] = 6, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3598), 1, + anon_sym_LBRACE, + ACTIONS(3795), 1, anon_sym_PLUS, - STATE(420), 1, + STATE(768), 1, sym_declaration_list, - STATE(2074), 1, + STATE(2044), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56459] = 6, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3598), 1, + anon_sym_LBRACE, + ACTIONS(3795), 1, + anon_sym_PLUS, + STATE(776), 1, + sym_declaration_list, + STATE(2041), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60873] = 2, + [56479] = 6, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3191), 1, + anon_sym_COLON_COLON, + ACTIONS(3284), 1, + anon_sym_COLON, + STATE(1276), 1, + sym_type_arguments, + STATE(2000), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3881), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [60885] = 2, + [56499] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3883), 5, + ACTIONS(3920), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [60897] = 6, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, + [56511] = 6, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3767), 1, + ACTIONS(3572), 1, + anon_sym_LBRACE, + ACTIONS(3795), 1, anon_sym_PLUS, - STATE(335), 1, + STATE(295), 1, sym_declaration_list, - STATE(2170), 1, + STATE(2156), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60917] = 4, - ACTIONS(3238), 1, - anon_sym_COLON_COLON, - ACTIONS(3582), 1, - anon_sym_for, + [56531] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [60933] = 6, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, + ACTIONS(3689), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(730), 1, - sym_declaration_list, - STATE(2023), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60953] = 4, - ACTIONS(638), 1, + anon_sym_RBRACE, + anon_sym_LBRACK, + [56543] = 4, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(3885), 1, + ACTIONS(3922), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(235), 3, + STATE(1037), 3, sym_if_expression, sym_if_let_expression, sym_block, - [60969] = 6, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(278), 1, - sym_declaration_list, - STATE(2116), 1, - sym_where_clause, + [56559] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60989] = 5, - ACTIONS(770), 1, - anon_sym_RPAREN, - ACTIONS(3887), 1, + ACTIONS(3924), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - STATE(1761), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3137), 2, + [56571] = 6, + ACTIONS(3616), 1, anon_sym_COLON, - anon_sym_PIPE, - [61007] = 6, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, - anon_sym_COLON_COLON, - STATE(1266), 1, - sym_type_arguments, - STATE(1294), 1, - sym_parameters, + ACTIONS(3821), 1, + anon_sym_COMMA, + ACTIONS(3823), 1, + anon_sym_GT, + STATE(1827), 1, + aux_sym_type_parameters_repeat1, + STATE(1828), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61027] = 4, - ACTIONS(3785), 1, - anon_sym_COLON_COLON, + [56591] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3861), 2, - anon_sym_RPAREN, + ACTIONS(3926), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [61043] = 4, - ACTIONS(3238), 1, + [56603] = 4, + ACTIONS(3268), 1, anon_sym_COLON_COLON, - ACTIONS(3659), 1, + ACTIONS(3701), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, + ACTIONS(2394), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [61059] = 6, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(443), 1, - sym_declaration_list, - STATE(2129), 1, - sym_where_clause, + [56619] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61079] = 6, - ACTIONS(3516), 1, + ACTIONS(3928), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(923), 1, - sym_declaration_list, - STATE(1995), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + [56631] = 5, + ACTIONS(3930), 1, + anon_sym_RPAREN, + ACTIONS(3932), 1, + anon_sym_COMMA, + STATE(1991), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61099] = 6, - ACTIONS(3516), 1, + ACTIONS(3171), 2, + anon_sym_COLON, + anon_sym_PIPE, + [56649] = 6, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(823), 1, - sym_declaration_list, - STATE(2118), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61119] = 6, - ACTIONS(3502), 1, + ACTIONS(3598), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3767), 1, + ACTIONS(3795), 1, anon_sym_PLUS, - STATE(247), 1, + STATE(949), 1, sym_declaration_list, - STATE(2120), 1, + STATE(2116), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61139] = 3, + [56669] = 4, + ACTIONS(3268), 1, + anon_sym_COLON_COLON, + ACTIONS(3663), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3338), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2650), 3, - anon_sym_RPAREN, + ACTIONS(2394), 3, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - [61153] = 2, + anon_sym_where, + [56685] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3889), 5, + ACTIONS(3934), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [61165] = 4, - ACTIONS(2650), 1, - anon_sym_PLUS, + [56697] = 5, + ACTIONS(3936), 1, + anon_sym_RPAREN, + ACTIONS(3939), 1, + anon_sym_COMMA, + STATE(2002), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3338), 2, + ACTIONS(3171), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(3891), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61181] = 5, - ACTIONS(3242), 1, - anon_sym_EQ, - ACTIONS(3608), 1, - anon_sym_COLON, - STATE(1947), 1, - sym_trait_bounds, + [56715] = 6, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3598), 1, + anon_sym_LBRACE, + ACTIONS(3795), 1, + anon_sym_PLUS, + STATE(951), 1, + sym_declaration_list, + STATE(2117), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3894), 2, + [56735] = 6, + ACTIONS(3616), 1, + anon_sym_COLON, + ACTIONS(3942), 1, anon_sym_COMMA, + ACTIONS(3944), 1, anon_sym_GT, - [61199] = 2, + STATE(1828), 1, + sym_trait_bounds, + STATE(1972), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3896), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + [56755] = 5, + ACTIONS(3946), 1, + anon_sym_RPAREN, + ACTIONS(3948), 1, anon_sym_COMMA, - [61211] = 4, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3898), 1, - anon_sym_if, + STATE(2002), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(52), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [61227] = 6, - ACTIONS(3608), 1, + ACTIONS(3171), 2, anon_sym_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3792), 1, - anon_sym_GT, - STATE(1977), 1, - sym_trait_bounds, - STATE(1984), 1, - aux_sym_type_parameters_repeat1, + anon_sym_PIPE, + [56773] = 6, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3598), 1, + anon_sym_LBRACE, + ACTIONS(3795), 1, + anon_sym_PLUS, + STATE(842), 1, + sym_declaration_list, + STATE(2097), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61247] = 2, + [56793] = 6, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3598), 1, + anon_sym_LBRACE, + ACTIONS(3795), 1, + anon_sym_PLUS, + STATE(834), 1, + sym_declaration_list, + STATE(2094), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3900), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [61259] = 6, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, + [56813] = 6, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3767), 1, + ACTIONS(3598), 1, + anon_sym_LBRACE, + ACTIONS(3795), 1, anon_sym_PLUS, - STATE(260), 1, + STATE(849), 1, sym_declaration_list, - STATE(2181), 1, + STATE(2023), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61279] = 6, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3157), 1, + [56833] = 4, + ACTIONS(3268), 1, anon_sym_COLON_COLON, - ACTIONS(3240), 1, - anon_sym_COLON, - STATE(1266), 1, - sym_type_arguments, - STATE(1830), 1, - sym_trait_bounds, + ACTIONS(3699), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61299] = 6, - ACTIONS(3516), 1, + ACTIONS(2394), 3, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3540), 1, + [56849] = 6, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3572), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3795), 1, anon_sym_PLUS, - STATE(906), 1, + STATE(406), 1, sym_declaration_list, - STATE(2110), 1, + STATE(2177), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61319] = 2, + [56869] = 6, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3598), 1, + anon_sym_LBRACE, + ACTIONS(3795), 1, + anon_sym_PLUS, + STATE(808), 1, + sym_declaration_list, + STATE(2088), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3636), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - [61331] = 6, - ACTIONS(3516), 1, + [56889] = 6, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3540), 1, + ACTIONS(3598), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3795), 1, anon_sym_PLUS, - STATE(903), 1, + STATE(805), 1, sym_declaration_list, - STATE(2109), 1, + STATE(2087), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61351] = 4, - ACTIONS(3238), 1, - anon_sym_COLON_COLON, - ACTIONS(3646), 1, - anon_sym_for, + [56909] = 4, + ACTIONS(3917), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, - anon_sym_LBRACE, + ACTIONS(2798), 2, + anon_sym_SEMI, anon_sym_PLUS, - anon_sym_where, - [61367] = 6, - ACTIONS(3608), 1, - anon_sym_COLON, - ACTIONS(3902), 1, + ACTIONS(3366), 2, anon_sym_COMMA, - ACTIONS(3904), 1, - anon_sym_GT, - STATE(1965), 1, - aux_sym_type_parameters_repeat1, - STATE(1977), 1, - sym_trait_bounds, + anon_sym_PIPE, + [56925] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61387] = 6, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3950), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(358), 1, - sym_declaration_list, - STATE(2154), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + [56937] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61407] = 2, + ACTIONS(3952), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [56949] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3906), 5, + ACTIONS(3954), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [61419] = 6, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, + [56961] = 6, + ACTIONS(2340), 1, + anon_sym_LPAREN, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3191), 1, + anon_sym_COLON_COLON, + STATE(877), 1, + sym_parameters, + STATE(1276), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56981] = 6, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3767), 1, + ACTIONS(3598), 1, + anon_sym_LBRACE, + ACTIONS(3795), 1, anon_sym_PLUS, - STATE(421), 1, + STATE(884), 1, sym_declaration_list, - STATE(2068), 1, + STATE(2042), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61439] = 4, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(3908), 1, - anon_sym_if, + [57001] = 4, + ACTIONS(3845), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(960), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [61455] = 5, - ACTIONS(3910), 1, + ACTIONS(3181), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3956), 2, anon_sym_RPAREN, - ACTIONS(3912), 1, anon_sym_COMMA, - STATE(1970), 1, - aux_sym_parameters_repeat1, + [57017] = 5, + ACTIONS(3286), 1, + anon_sym_EQ, + ACTIONS(3616), 1, + anon_sym_COLON, + STATE(1825), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3137), 2, - anon_sym_COLON, - anon_sym_PIPE, - [61473] = 5, - ACTIONS(3914), 1, - anon_sym_RPAREN, - ACTIONS(3916), 1, + ACTIONS(3958), 2, anon_sym_COMMA, - STATE(1836), 1, - aux_sym_parameters_repeat1, + anon_sym_GT, + [57035] = 6, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3572), 1, + anon_sym_LBRACE, + ACTIONS(3795), 1, + anon_sym_PLUS, + STATE(344), 1, + sym_declaration_list, + STATE(2161), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3137), 2, - anon_sym_COLON, - anon_sym_PIPE, - [61491] = 4, - ACTIONS(3238), 1, + [57055] = 4, + ACTIONS(3268), 1, anon_sym_COLON_COLON, - ACTIONS(3631), 1, + ACTIONS(3655), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, + ACTIONS(2394), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [61507] = 6, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, + [57071] = 6, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3767), 1, + ACTIONS(3572), 1, + anon_sym_LBRACE, + ACTIONS(3795), 1, anon_sym_PLUS, - STATE(273), 1, + STATE(272), 1, sym_declaration_list, - STATE(2107), 1, + STATE(2173), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61527] = 4, - ACTIONS(3891), 1, - anon_sym_RBRACK, + [57091] = 4, + ACTIONS(3845), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3338), 2, + ACTIONS(3181), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3859), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_PIPE, - [61543] = 6, - ACTIONS(3918), 1, + [57107] = 6, + ACTIONS(3960), 1, anon_sym_RPAREN, - ACTIONS(3920), 1, + ACTIONS(3962), 1, anon_sym_COLON, - ACTIONS(3922), 1, + ACTIONS(3964), 1, anon_sym_COMMA, - ACTIONS(3924), 1, + ACTIONS(3966), 1, anon_sym_PIPE, - STATE(1865), 1, + STATE(2005), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61563] = 6, - ACTIONS(3516), 1, + [57127] = 6, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3540), 1, + ACTIONS(3572), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3795), 1, anon_sym_PLUS, - STATE(761), 1, + STATE(365), 1, sym_declaration_list, - STATE(2090), 1, + STATE(2073), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61583] = 6, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(758), 1, - sym_declaration_list, - STATE(2087), 1, - sym_where_clause, + [57147] = 4, + ACTIONS(3268), 1, + anon_sym_COLON_COLON, + ACTIONS(3645), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61603] = 6, - ACTIONS(3502), 1, + ACTIONS(2394), 3, anon_sym_LBRACE, - ACTIONS(3516), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3767), 1, + [57163] = 6, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3572), 1, + anon_sym_LBRACE, + ACTIONS(3795), 1, anon_sym_PLUS, - STATE(306), 1, + STATE(367), 1, sym_declaration_list, - STATE(2070), 1, + STATE(2067), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61623] = 6, - ACTIONS(3516), 1, + [57183] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3968), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3540), 1, + anon_sym_EQ, + anon_sym_COMMA, + [57195] = 6, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3572), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3795), 1, anon_sym_PLUS, - STATE(910), 1, + STATE(337), 1, sym_declaration_list, - STATE(1988), 1, + STATE(2017), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61643] = 4, - ACTIONS(3829), 1, + [57215] = 4, + ACTIONS(3268), 1, anon_sym_COLON_COLON, + ACTIONS(3653), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3861), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61659] = 2, + ACTIONS(2394), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [57231] = 6, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3572), 1, + anon_sym_LBRACE, + ACTIONS(3795), 1, + anon_sym_PLUS, + STATE(387), 1, + sym_declaration_list, + STATE(2092), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3926), 5, + [57251] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3970), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [61671] = 2, + [57263] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3928), 5, + ACTIONS(3972), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [61683] = 4, - ACTIONS(3829), 1, + [57275] = 6, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3187), 1, + anon_sym_LPAREN, + ACTIONS(3191), 1, anon_sym_COLON_COLON, + STATE(1276), 1, + sym_type_arguments, + STATE(1298), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3930), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61699] = 6, - ACTIONS(3516), 1, + [57295] = 6, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3540), 1, + ACTIONS(3598), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3795), 1, anon_sym_PLUS, - STATE(913), 1, + STATE(750), 1, sym_declaration_list, - STATE(2034), 1, + STATE(2056), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61719] = 6, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, + [57315] = 4, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(909), 1, - sym_declaration_list, - STATE(2080), 1, - sym_where_clause, + ACTIONS(3974), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61739] = 6, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, + STATE(62), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [57331] = 6, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3767), 1, + ACTIONS(3572), 1, + anon_sym_LBRACE, + ACTIONS(3795), 1, anon_sym_PLUS, - STATE(245), 1, + STATE(407), 1, sym_declaration_list, - STATE(2102), 1, + STATE(2178), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61759] = 2, + [57351] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3932), 5, + ACTIONS(3976), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [61771] = 4, - ACTIONS(3785), 1, + [57363] = 4, + ACTIONS(3268), 1, anon_sym_COLON_COLON, + ACTIONS(3697), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3930), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61787] = 5, - ACTIONS(758), 1, - anon_sym_RPAREN, - ACTIONS(3934), 1, - anon_sym_COMMA, - STATE(1934), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3137), 2, - anon_sym_COLON, - anon_sym_PIPE, - [61805] = 4, - ACTIONS(3938), 1, - anon_sym_as, - ACTIONS(3940), 1, - anon_sym_COLON_COLON, + ACTIONS(2394), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [57379] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3936), 3, + ACTIONS(3978), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [61821] = 4, - ACTIONS(3944), 1, - anon_sym_as, - ACTIONS(3946), 1, - anon_sym_COLON_COLON, + [57391] = 4, + ACTIONS(640), 1, + anon_sym_LBRACE, + ACTIONS(3980), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3942), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61837] = 4, - ACTIONS(3944), 1, + STATE(229), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [57407] = 4, + ACTIONS(3984), 1, anon_sym_as, - ACTIONS(3948), 1, + ACTIONS(3986), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3942), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61853] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3950), 5, + ACTIONS(3982), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [61865] = 4, - ACTIONS(3238), 1, - anon_sym_COLON_COLON, - ACTIONS(3580), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2356), 3, - anon_sym_LBRACE, - anon_sym_PLUS, + [57423] = 6, + ACTIONS(3542), 1, anon_sym_where, - [61881] = 4, - ACTIONS(3238), 1, - anon_sym_COLON_COLON, - ACTIONS(3590), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2356), 3, + ACTIONS(3572), 1, anon_sym_LBRACE, + ACTIONS(3795), 1, anon_sym_PLUS, - anon_sym_where, - [61897] = 5, - ACTIONS(3952), 1, - anon_sym_RPAREN, - ACTIONS(3955), 1, - anon_sym_COMMA, - STATE(1836), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3137), 2, - anon_sym_COLON, - anon_sym_PIPE, - [61915] = 4, - ACTIONS(3238), 1, - anon_sym_COLON_COLON, - ACTIONS(3578), 1, - anon_sym_for, + STATE(347), 1, + sym_declaration_list, + STATE(2046), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [61931] = 4, - ACTIONS(3944), 1, + [57443] = 4, + ACTIONS(3990), 1, anon_sym_as, - ACTIONS(3958), 1, + ACTIONS(3992), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3942), 3, + ACTIONS(3988), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [61947] = 2, + [57459] = 4, + ACTIONS(3990), 1, + anon_sym_as, + ACTIONS(3994), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3960), 5, + ACTIONS(3988), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [61959] = 4, - ACTIONS(3238), 1, - anon_sym_COLON_COLON, - ACTIONS(3629), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2356), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [61975] = 6, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(828), 1, - sym_declaration_list, - STATE(2049), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61995] = 6, - ACTIONS(3516), 1, + [57475] = 6, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3540), 1, + ACTIONS(3572), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3795), 1, anon_sym_PLUS, - STATE(881), 1, + STATE(354), 1, sym_declaration_list, - STATE(2037), 1, + STATE(2014), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62015] = 5, - ACTIONS(770), 1, - anon_sym_RPAREN, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3887), 1, - anon_sym_COMMA, - STATE(1761), 1, - aux_sym_parameters_repeat1, + [57495] = 4, + ACTIONS(3990), 1, + anon_sym_as, + ACTIONS(3996), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62032] = 5, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3962), 1, - anon_sym_RPAREN, - ACTIONS(3964), 1, + ACTIONS(3988), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1859), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62049] = 5, - ACTIONS(3516), 1, + [57511] = 6, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3540), 1, + ACTIONS(3598), 1, anon_sym_LBRACE, - STATE(807), 1, + ACTIONS(3795), 1, + anon_sym_PLUS, + STATE(881), 1, sym_declaration_list, - STATE(2051), 1, + STATE(2131), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62066] = 5, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3833), 1, - anon_sym_LBRACE, - STATE(791), 1, - sym_enum_variant_list, - STATE(2059), 1, - sym_where_clause, + [57531] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62083] = 5, - ACTIONS(758), 1, + ACTIONS(3366), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2798), 3, anon_sym_RPAREN, - ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(3934), 1, anon_sym_COMMA, - STATE(1934), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62100] = 5, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(835), 1, - sym_declaration_list, - STATE(2046), 1, - sym_where_clause, + [57545] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62117] = 5, - ACTIONS(3516), 1, + ACTIONS(3998), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3554), 1, - anon_sym_LBRACE, - STATE(780), 1, - sym_field_declaration_list, - STATE(2064), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62134] = 5, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(3966), 1, + anon_sym_EQ, + anon_sym_COMMA, + [57557] = 5, + ACTIONS(770), 1, anon_sym_RPAREN, - ACTIONS(3968), 1, + ACTIONS(4000), 1, anon_sym_COMMA, - STATE(1771), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1861), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62151] = 3, + ACTIONS(3171), 2, + anon_sym_COLON, + anon_sym_PIPE, + [57575] = 4, + ACTIONS(3811), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3137), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3970), 2, + ACTIONS(3181), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3956), 2, anon_sym_RPAREN, anon_sym_COMMA, - [62164] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + [57591] = 4, + ACTIONS(3811), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3972), 3, + ACTIONS(3181), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3859), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_PIPE, - [62177] = 5, - ACTIONS(3153), 1, + [57607] = 5, + ACTIONS(3187), 1, anon_sym_LPAREN, - ACTIONS(3518), 1, + ACTIONS(3544), 1, anon_sym_LT, - STATE(1539), 1, + STATE(1580), 1, sym_parameters, - STATE(2071), 1, + STATE(2142), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62194] = 5, - ACTIONS(2185), 1, - anon_sym_PLUS, - ACTIONS(3974), 1, - anon_sym_COMMA, - ACTIONS(3976), 1, - anon_sym_GT, - STATE(1960), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62211] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(898), 1, - sym_line_comment, - ACTIONS(3978), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(3980), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [62226] = 5, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3974), 1, - anon_sym_COMMA, - ACTIONS(3976), 1, - anon_sym_GT, - STATE(1960), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62243] = 4, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3982), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1069), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [62258] = 5, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(788), 1, - sym_declaration_list, - STATE(2091), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62275] = 5, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - STATE(401), 1, - sym_declaration_list, - STATE(2113), 1, - sym_where_clause, + [57624] = 5, + ACTIONS(3966), 1, + anon_sym_PIPE, + ACTIONS(4002), 1, + anon_sym_SEMI, + ACTIONS(4004), 1, + anon_sym_COLON, + ACTIONS(4006), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62292] = 5, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(3910), 1, - anon_sym_RPAREN, - ACTIONS(3912), 1, + [57641] = 5, + ACTIONS(3966), 1, + anon_sym_PIPE, + ACTIONS(4008), 1, + anon_sym_RBRACK, + ACTIONS(4010), 1, anon_sym_COMMA, - STATE(1970), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62309] = 5, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(862), 1, - sym_declaration_list, - STATE(2096), 1, - sym_where_clause, + STATE(1800), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62326] = 4, - ACTIONS(3984), 1, + [57658] = 4, + ACTIONS(4012), 1, anon_sym_DQUOTE, - STATE(1676), 1, + STATE(1695), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3986), 2, + ACTIONS(4014), 2, sym__string_content, sym_escape_sequence, - [62341] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(898), 1, - sym_line_comment, - ACTIONS(3989), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(3991), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [62356] = 3, - ACTIONS(3993), 1, + [57673] = 5, + ACTIONS(3962), 1, anon_sym_COLON, + ACTIONS(4016), 1, + anon_sym_COMMA, + ACTIONS(4018), 1, + anon_sym_PIPE, + STATE(1823), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3370), 3, + [57690] = 5, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4020), 1, anon_sym_RPAREN, + ACTIONS(4022), 1, anon_sym_COMMA, - anon_sym_PIPE, - [62369] = 4, - ACTIONS(3863), 1, + STATE(1953), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57707] = 4, + ACTIONS(3809), 1, anon_sym_COLON, - ACTIONS(3865), 1, + ACTIONS(3863), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3181), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [62384] = 5, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, + [57722] = 5, + ACTIONS(3123), 1, anon_sym_LBRACE, - STATE(942), 1, - sym_declaration_list, - STATE(2115), 1, - sym_where_clause, + ACTIONS(3855), 1, + sym_identifier, + ACTIONS(3857), 1, + anon_sym_STAR, + STATE(1911), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62401] = 4, - ACTIONS(3608), 1, + [57739] = 4, + ACTIONS(3274), 1, + anon_sym_COLON_COLON, + ACTIONS(3464), 1, anon_sym_COLON, - STATE(1977), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3995), 2, - anon_sym_COMMA, - anon_sym_GT, - [62416] = 4, - ACTIONS(3997), 1, - anon_sym_DQUOTE, - STATE(1683), 1, - aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3999), 2, - sym__string_content, - sym_escape_sequence, - [62431] = 4, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - STATE(1676), 1, - aux_sym_string_literal_repeat1, + ACTIONS(3276), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [57754] = 5, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3187), 1, + anon_sym_LPAREN, + STATE(1277), 1, + sym_type_arguments, + STATE(1283), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4003), 2, - sym__string_content, - sym_escape_sequence, - [62446] = 5, - ACTIONS(3516), 1, + [57771] = 5, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3554), 1, + ACTIONS(3865), 1, anon_sym_LBRACE, STATE(920), 1, - sym_field_declaration_list, - STATE(1993), 1, + sym_enum_variant_list, + STATE(2075), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62463] = 5, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4005), 1, - anon_sym_RBRACK, - ACTIONS(4007), 1, - anon_sym_COMMA, - STATE(1810), 1, - aux_sym_tuple_pattern_repeat1, + [57788] = 4, + ACTIONS(3274), 1, + anon_sym_COLON_COLON, + ACTIONS(4024), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62480] = 4, - ACTIONS(3), 1, + ACTIONS(3276), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [57803] = 3, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(898), 1, sym_line_comment, - ACTIONS(4009), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4011), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [62495] = 5, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(892), 1, - sym_declaration_list, - STATE(1990), 1, - sym_where_clause, + ACTIONS(3171), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4026), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57816] = 4, + ACTIONS(3861), 1, + anon_sym_COLON, + ACTIONS(3863), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62512] = 4, - ACTIONS(3), 1, + ACTIONS(3181), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [57831] = 5, + ACTIONS(3123), 1, + anon_sym_LBRACE, + ACTIONS(4028), 1, + sym_identifier, + ACTIONS(4030), 1, + anon_sym_STAR, + STATE(1905), 1, + sym_use_list, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(898), 1, sym_line_comment, - ACTIONS(4013), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4015), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [62527] = 5, - ACTIONS(3370), 1, - anon_sym_PIPE, - ACTIONS(4017), 1, - anon_sym_SEMI, - ACTIONS(4019), 1, - anon_sym_COLON, - ACTIONS(4021), 1, - anon_sym_EQ, + [57848] = 4, + ACTIONS(4034), 1, + anon_sym_COMMA, + STATE(1683), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62544] = 5, - ACTIONS(2302), 1, + ACTIONS(4032), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [57863] = 5, + ACTIONS(3187), 1, anon_sym_LPAREN, - ACTIONS(3149), 1, - anon_sym_LT2, - STATE(826), 1, + ACTIONS(3544), 1, + anon_sym_LT, + STATE(1581), 1, sym_parameters, - STATE(1273), 1, - sym_type_arguments, + STATE(2181), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62561] = 5, - ACTIONS(4023), 1, + [57880] = 5, + ACTIONS(4037), 1, anon_sym_LPAREN, - ACTIONS(4025), 1, + ACTIONS(4039), 1, anon_sym_LBRACE, - ACTIONS(4027), 1, + ACTIONS(4041), 1, anon_sym_LBRACK, - STATE(1316), 1, + STATE(740), 1, sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62578] = 5, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3857), 1, - sym_identifier, - ACTIONS(3859), 1, - anon_sym_STAR, - STATE(1763), 1, - sym_use_list, + [57897] = 4, + ACTIONS(4043), 1, + anon_sym_COMMA, + STATE(1683), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62595] = 3, - ACTIONS(4029), 1, + ACTIONS(2736), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [57912] = 3, + ACTIONS(4045), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4031), 3, + ACTIONS(4047), 3, sym_self, sym_super, sym_crate, - [62608] = 5, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_SEMI, - ACTIONS(4035), 1, - anon_sym_COLON, - ACTIONS(4037), 1, - anon_sym_EQ, + [57925] = 5, + ACTIONS(4049), 1, + anon_sym_LPAREN, + ACTIONS(4051), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, + anon_sym_LBRACK, + STATE(68), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62625] = 4, - ACTIONS(3800), 1, + [57942] = 4, + ACTIONS(3464), 1, anon_sym_COLON, - ACTIONS(3865), 1, + ACTIONS(3506), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3276), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [62640] = 4, - ACTIONS(4041), 1, - anon_sym_COMMA, - STATE(1696), 1, - aux_sym_tuple_pattern_repeat1, + [57957] = 3, + ACTIONS(4055), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4039), 2, + ACTIONS(3406), 3, anon_sym_RPAREN, - anon_sym_RBRACK, - [62655] = 5, - ACTIONS(3902), 1, anon_sym_COMMA, - ACTIONS(3904), 1, - anon_sym_GT, - ACTIONS(4044), 1, - anon_sym_EQ, - STATE(1965), 1, - aux_sym_type_parameters_repeat1, + anon_sym_PIPE, + [57970] = 3, + ACTIONS(4057), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62672] = 5, - ACTIONS(3920), 1, - anon_sym_COLON, - ACTIONS(4046), 1, - anon_sym_COMMA, - ACTIONS(4048), 1, + ACTIONS(4059), 3, + sym_self, + sym_super, + sym_crate, + [57983] = 5, + ACTIONS(3966), 1, anon_sym_PIPE, - STATE(1923), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(4061), 1, + anon_sym_SEMI, + ACTIONS(4063), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62689] = 5, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4050), 1, - anon_sym_RPAREN, - ACTIONS(4052), 1, - anon_sym_COMMA, - STATE(1961), 1, - aux_sym_tuple_type_repeat1, + [58000] = 4, + ACTIONS(4067), 1, + anon_sym_DQUOTE, + STATE(1693), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62706] = 5, - ACTIONS(3089), 1, + ACTIONS(4069), 2, + sym__string_content, + sym_escape_sequence, + [58015] = 5, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3598), 1, anon_sym_LBRACE, - ACTIONS(4054), 1, - sym_identifier, - ACTIONS(4056), 1, - anon_sym_STAR, - STATE(1753), 1, - sym_use_list, + STATE(747), 1, + sym_declaration_list, + STATE(2058), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62723] = 4, - ACTIONS(3608), 1, - anon_sym_COLON, - STATE(1977), 1, - sym_trait_bounds, + [58032] = 4, + ACTIONS(4072), 1, + anon_sym_DQUOTE, + STATE(1693), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4058), 2, - anon_sym_COMMA, - anon_sym_GT, - [62738] = 5, - ACTIONS(3516), 1, + ACTIONS(4074), 2, + sym__string_content, + sym_escape_sequence, + [58047] = 5, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3833), 1, + ACTIONS(3827), 1, anon_sym_LBRACE, - STATE(746), 1, + STATE(425), 1, sym_enum_variant_list, - STATE(2056), 1, + STATE(2021), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62755] = 5, - ACTIONS(4061), 1, + [58064] = 5, + ACTIONS(3187), 1, anon_sym_LPAREN, - ACTIONS(4063), 1, - anon_sym_LBRACE, - ACTIONS(4065), 1, - anon_sym_LBRACK, - STATE(833), 1, - sym_token_tree, + ACTIONS(3544), 1, + anon_sym_LT, + STATE(1563), 1, + sym_parameters, + STATE(2150), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62772] = 4, - ACTIONS(4067), 1, - anon_sym_DQUOTE, - STATE(1676), 1, - aux_sym_string_literal_repeat1, + [58081] = 5, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, + anon_sym_LBRACE, + ACTIONS(4080), 1, + anon_sym_LBRACK, + STATE(971), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4003), 2, - sym__string_content, - sym_escape_sequence, - [62787] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, + [58098] = 5, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(381), 1, + sym_declaration_list, + STATE(2086), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4039), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [62800] = 5, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, + [58115] = 5, + ACTIONS(3542), 1, anon_sym_where, - STATE(300), 1, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(323), 1, sym_declaration_list, - STATE(2114), 1, + STATE(2123), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62817] = 5, - ACTIONS(4069), 1, - anon_sym_LPAREN, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_LBRACK, - STATE(1043), 1, - sym_token_tree, + [58132] = 5, + ACTIONS(3966), 1, + anon_sym_PIPE, + ACTIONS(4082), 1, + anon_sym_RPAREN, + ACTIONS(4084), 1, + anon_sym_COMMA, + STATE(1797), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62834] = 4, - ACTIONS(4075), 1, - anon_sym_DQUOTE, - STATE(1676), 1, - aux_sym_string_literal_repeat1, + [58149] = 4, + ACTIONS(2107), 1, + anon_sym_POUND, + ACTIONS(4086), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4003), 2, - sym__string_content, - sym_escape_sequence, - [62849] = 5, - ACTIONS(3767), 1, + STATE(1055), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [58164] = 5, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(4077), 1, + ACTIONS(4088), 1, anon_sym_RPAREN, - ACTIONS(4079), 1, + ACTIONS(4090), 1, anon_sym_COMMA, - STATE(1953), 1, + STATE(1897), 1, aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62866] = 5, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4081), 1, - anon_sym_RPAREN, - ACTIONS(4083), 1, - anon_sym_COMMA, - STATE(1746), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [58181] = 5, + ACTIONS(3187), 1, + anon_sym_LPAREN, + ACTIONS(3544), 1, + anon_sym_LT, + STATE(1589), 1, + sym_parameters, + STATE(2093), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62883] = 4, - ACTIONS(4087), 1, - anon_sym_COMMA, - STATE(1711), 1, - aux_sym_where_clause_repeat1, + [58198] = 5, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3865), 1, + anon_sym_LBRACE, + STATE(738), 1, + sym_enum_variant_list, + STATE(2066), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4085), 2, - anon_sym_SEMI, + [58215] = 5, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3556), 1, anon_sym_LBRACE, - [62898] = 5, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4090), 1, - anon_sym_SEMI, + STATE(730), 1, + sym_field_declaration_list, + STATE(2071), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58232] = 5, + ACTIONS(2227), 1, + anon_sym_PLUS, ACTIONS(4092), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(4094), 1, - anon_sym_EQ, + anon_sym_GT, + STATE(1994), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62915] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - STATE(432), 1, - sym_field_declaration_list, - STATE(2136), 1, - sym_where_clause, + [58249] = 5, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4092), 1, + anon_sym_COMMA, + ACTIONS(4094), 1, + anon_sym_GT, + STATE(1994), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62932] = 5, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3518), 1, - anon_sym_LT, - STATE(1586), 1, - sym_parameters, - STATE(2151), 1, - sym_type_parameters, + [58266] = 3, + ACTIONS(3966), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62949] = 5, - ACTIONS(4096), 1, - anon_sym_LPAREN, + ACTIONS(4096), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [58279] = 5, ACTIONS(4098), 1, - anon_sym_LBRACE, + anon_sym_LPAREN, ACTIONS(4100), 1, + anon_sym_LBRACE, + ACTIONS(4102), 1, anon_sym_LBRACK, - STATE(63), 1, + STATE(1311), 1, sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62966] = 3, - ACTIONS(4102), 1, - anon_sym_in, + [58296] = 4, + ACTIONS(4104), 1, + anon_sym_DQUOTE, + STATE(1693), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4104), 3, - sym_self, - sym_super, - sym_crate, - [62979] = 4, - ACTIONS(4108), 1, - anon_sym_COMMA, - STATE(1719), 1, - aux_sym_where_clause_repeat1, - ACTIONS(3), 2, + ACTIONS(4074), 2, + sym__string_content, + sym_escape_sequence, + [58311] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(928), 1, sym_line_comment, - ACTIONS(4106), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [62994] = 3, - ACTIONS(3767), 1, + ACTIONS(4106), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4108), 3, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [58326] = 5, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(390), 1, + sym_declaration_list, + STATE(2095), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4110), 3, + [58343] = 5, + ACTIONS(770), 1, anon_sym_RPAREN, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4000), 1, anon_sym_COMMA, - anon_sym_PIPE, - [63007] = 4, - ACTIONS(4112), 1, - anon_sym_COMMA, - STATE(1711), 1, - aux_sym_where_clause_repeat1, + STATE(1861), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2825), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [63022] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + [58360] = 4, + ACTIONS(4110), 1, + anon_sym_DQUOTE, + STATE(1693), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4114), 3, - anon_sym_RPAREN, + ACTIONS(4074), 2, + sym__string_content, + sym_escape_sequence, + [58375] = 4, + ACTIONS(4112), 1, anon_sym_COMMA, - anon_sym_PIPE, - [63035] = 5, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3608), 1, - anon_sym_COLON, - STATE(1273), 1, - sym_type_arguments, - STATE(1826), 1, - sym_trait_bounds, + STATE(1716), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63052] = 5, - ACTIONS(2185), 1, + ACTIONS(4096), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [58390] = 5, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(4116), 1, + ACTIONS(4115), 1, + anon_sym_RPAREN, + ACTIONS(4117), 1, anon_sym_COMMA, - ACTIONS(4118), 1, - anon_sym_GT, - STATE(1878), 1, - aux_sym_type_arguments_repeat1, + STATE(1968), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63069] = 5, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3518), 1, - anon_sym_LT, - STATE(1583), 1, - sym_parameters, - STATE(2082), 1, - sym_type_parameters, + [58407] = 4, + ACTIONS(4119), 1, + anon_sym_DQUOTE, + STATE(1711), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63086] = 5, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(4121), 2, + sym__string_content, + sym_escape_sequence, + [58422] = 5, + ACTIONS(3542), 1, anon_sym_where, - STATE(413), 1, + ACTIONS(3598), 1, + anon_sym_LBRACE, + STATE(753), 1, sym_declaration_list, - STATE(2148), 1, + STATE(2053), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63103] = 4, - ACTIONS(4120), 1, - anon_sym_DQUOTE, - STATE(1708), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4122), 2, - sym__string_content, - sym_escape_sequence, - [63118] = 5, - ACTIONS(3767), 1, + [58439] = 5, + ACTIONS(764), 1, + anon_sym_RPAREN, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(4116), 1, + ACTIONS(3915), 1, anon_sym_COMMA, - ACTIONS(4118), 1, - anon_sym_GT, - STATE(1878), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63135] = 5, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - STATE(248), 1, - sym_declaration_list, - STATE(2084), 1, - sym_where_clause, + STATE(1944), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63152] = 5, - ACTIONS(3153), 1, + [58456] = 5, + ACTIONS(3187), 1, anon_sym_LPAREN, - ACTIONS(3518), 1, + ACTIONS(3544), 1, anon_sym_LT, - STATE(1531), 1, + STATE(1575), 1, sym_parameters, - STATE(2122), 1, + STATE(2158), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63169] = 5, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - STATE(340), 1, - sym_declaration_list, - STATE(2044), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63186] = 5, - ACTIONS(4069), 1, - anon_sym_LPAREN, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_LBRACK, - STATE(1786), 1, - sym_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63203] = 5, - ACTIONS(3918), 1, + [58473] = 5, + ACTIONS(3960), 1, anon_sym_RPAREN, - ACTIONS(3922), 1, + ACTIONS(3964), 1, anon_sym_COMMA, - ACTIONS(3924), 1, + ACTIONS(3966), 1, anon_sym_PIPE, - STATE(1865), 1, + STATE(2005), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63220] = 5, - ACTIONS(3370), 1, - anon_sym_PIPE, - ACTIONS(4124), 1, - anon_sym_SEMI, - ACTIONS(4126), 1, - anon_sym_COLON, - ACTIONS(4128), 1, - anon_sym_EQ, + [58490] = 5, + ACTIONS(3942), 1, + anon_sym_COMMA, + ACTIONS(3944), 1, + anon_sym_GT, + ACTIONS(4123), 1, + anon_sym_EQ, + STATE(1972), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58507] = 5, + ACTIONS(3540), 1, + anon_sym_LBRACE, + ACTIONS(3542), 1, + anon_sym_where, + STATE(274), 1, + sym_field_declaration_list, + STATE(2174), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63237] = 5, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1273), 1, - sym_type_arguments, - STATE(1296), 1, - sym_parameters, + [58524] = 4, + ACTIONS(3616), 1, + anon_sym_COLON, + STATE(1828), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63254] = 5, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(4125), 2, + anon_sym_COMMA, + anon_sym_GT, + [58539] = 5, + ACTIONS(3542), 1, anon_sym_where, - STATE(266), 1, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(430), 1, sym_declaration_list, - STATE(2144), 1, + STATE(2076), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63271] = 5, - ACTIONS(3153), 1, + [58556] = 5, + ACTIONS(2340), 1, anon_sym_LPAREN, - ACTIONS(3518), 1, - anon_sym_LT, - STATE(1528), 1, + ACTIONS(3183), 1, + anon_sym_LT2, + STATE(875), 1, sym_parameters, - STATE(2085), 1, - sym_type_parameters, + STATE(1277), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63288] = 5, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3518), 1, - anon_sym_LT, - STATE(1554), 1, - sym_parameters, - STATE(2069), 1, - sym_type_parameters, + [58573] = 5, + ACTIONS(3406), 1, + anon_sym_PIPE, + ACTIONS(4128), 1, + anon_sym_SEMI, + ACTIONS(4130), 1, + anon_sym_COLON, + ACTIONS(4132), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58590] = 4, + ACTIONS(3464), 1, + anon_sym_COLON, + ACTIONS(3466), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3276), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [58605] = 3, + ACTIONS(3795), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63305] = 5, - ACTIONS(3790), 1, + ACTIONS(4134), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [58618] = 5, + ACTIONS(3821), 1, anon_sym_COMMA, - ACTIONS(3792), 1, + ACTIONS(3823), 1, anon_sym_GT, - ACTIONS(4044), 1, + ACTIONS(4123), 1, anon_sym_EQ, - STATE(1984), 1, + STATE(1827), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63322] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACE, - ACTIONS(3516), 1, - anon_sym_where, - STATE(286), 1, - sym_field_declaration_list, - STATE(2112), 1, - sym_where_clause, + [58635] = 4, + ACTIONS(3616), 1, + anon_sym_COLON, + STATE(1828), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63339] = 5, - ACTIONS(3767), 1, + ACTIONS(4136), 2, + anon_sym_COMMA, + anon_sym_GT, + [58650] = 3, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(3914), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4138), 3, anon_sym_RPAREN, - ACTIONS(3916), 1, anon_sym_COMMA, - STATE(1836), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, + anon_sym_PIPE, + [58663] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(928), 1, sym_line_comment, - [63356] = 5, - ACTIONS(3516), 1, + ACTIONS(4140), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4142), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [58678] = 5, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(3769), 1, + ACTIONS(3598), 1, anon_sym_LBRACE, - STATE(404), 1, - sym_enum_variant_list, - STATE(2163), 1, + STATE(857), 1, + sym_declaration_list, + STATE(2028), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63373] = 3, + [58695] = 3, + ACTIONS(3795), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3137), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4130), 2, + ACTIONS(4144), 3, anon_sym_RPAREN, anon_sym_COMMA, - [63386] = 4, - ACTIONS(4132), 1, + anon_sym_PIPE, + [58708] = 4, + ACTIONS(4146), 1, anon_sym_DQUOTE, - STATE(1704), 1, + STATE(1715), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4134), 2, + ACTIONS(4148), 2, sym__string_content, sym_escape_sequence, - [63401] = 5, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(3769), 1, - anon_sym_LBRACE, - STATE(280), 1, - sym_enum_variant_list, - STATE(2152), 1, - sym_where_clause, + [58723] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63418] = 5, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4136), 1, + ACTIONS(3171), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4150), 2, anon_sym_RPAREN, - ACTIONS(4138), 1, anon_sym_COMMA, - STATE(1928), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, + [58736] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(928), 1, sym_line_comment, - [63435] = 3, - ACTIONS(3767), 1, + ACTIONS(4152), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4154), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [58751] = 3, + ACTIONS(3795), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4140), 3, + ACTIONS(4156), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [63448] = 4, - ACTIONS(2089), 1, + [58764] = 5, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(3946), 1, anon_sym_RPAREN, - ACTIONS(4142), 1, + ACTIONS(3948), 1, anon_sym_COMMA, - STATE(1788), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2002), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63462] = 4, - ACTIONS(3105), 1, - anon_sym_RBRACE, - ACTIONS(4144), 1, - anon_sym_COMMA, - STATE(1870), 1, - aux_sym_use_list_repeat1, + [58781] = 5, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3556), 1, + anon_sym_LBRACE, + STATE(850), 1, + sym_field_declaration_list, + STATE(2024), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63476] = 2, + [58798] = 5, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(303), 1, + sym_declaration_list, + STATE(2188), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4146), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63486] = 3, - ACTIONS(2185), 1, - anon_sym_PLUS, + [58815] = 5, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3598), 1, + anon_sym_LBRACE, + STATE(926), 1, + sym_declaration_list, + STATE(2122), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4148), 2, - anon_sym_COMMA, - anon_sym_GT, - [63498] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + [58832] = 5, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3598), 1, + anon_sym_LBRACE, + STATE(845), 1, + sym_declaration_list, + STATE(2098), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4148), 2, - anon_sym_COMMA, - anon_sym_GT, - [63510] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + [58849] = 5, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3827), 1, + anon_sym_LBRACE, + STATE(409), 1, + sym_enum_variant_list, + STATE(2136), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4150), 2, - anon_sym_COMMA, - anon_sym_GT, - [63522] = 4, - ACTIONS(4152), 1, - anon_sym_RBRACE, - ACTIONS(4154), 1, - anon_sym_COMMA, - STATE(1752), 1, - aux_sym_struct_pattern_repeat1, + [58866] = 5, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(281), 1, + sym_declaration_list, + STATE(2197), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63536] = 2, + [58883] = 5, + ACTIONS(3540), 1, + anon_sym_LBRACE, + ACTIONS(3542), 1, + anon_sym_where, + STATE(421), 1, + sym_field_declaration_list, + STATE(2152), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4157), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63546] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, + [58900] = 5, + ACTIONS(3187), 1, + anon_sym_LPAREN, + ACTIONS(3544), 1, + anon_sym_LT, + STATE(1574), 1, + sym_parameters, + STATE(2159), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4159), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63558] = 4, - ACTIONS(3914), 1, + [58917] = 5, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(3930), 1, anon_sym_RPAREN, - ACTIONS(3916), 1, + ACTIONS(3932), 1, anon_sym_COMMA, - STATE(1836), 1, + STATE(1991), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63572] = 3, - ACTIONS(4163), 1, - anon_sym_COLON, + [58934] = 5, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(3598), 1, + anon_sym_LBRACE, + STATE(903), 1, + sym_declaration_list, + STATE(2103), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4161), 2, - anon_sym_RBRACE, + [58951] = 5, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4158), 1, anon_sym_COMMA, - [63584] = 4, - ACTIONS(2185), 1, + ACTIONS(4160), 1, + anon_sym_GT, + STATE(1981), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58968] = 5, + ACTIONS(2227), 1, anon_sym_PLUS, - ACTIONS(4165), 1, - sym_mutable_specifier, - ACTIONS(4167), 1, - sym_self, + ACTIONS(4158), 1, + anon_sym_COMMA, + ACTIONS(4160), 1, + anon_sym_GT, + STATE(1981), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63598] = 4, - ACTIONS(3765), 1, + [58985] = 5, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACE, - ACTIONS(4169), 1, - anon_sym_SEMI, - STATE(446), 1, - sym_block, + ACTIONS(4080), 1, + anon_sym_LBRACK, + STATE(1891), 1, + sym_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59002] = 5, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3616), 1, + anon_sym_COLON, + STATE(1277), 1, + sym_type_arguments, + STATE(1999), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63612] = 2, + [59019] = 5, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4162), 1, + anon_sym_RPAREN, + ACTIONS(4164), 1, + anon_sym_COMMA, + STATE(1838), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [59036] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(928), 1, + sym_line_comment, + ACTIONS(4166), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4168), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59051] = 4, + ACTIONS(4172), 1, anon_sym_COMMA, - [63622] = 2, + STATE(1686), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4173), 3, + ACTIONS(4170), 2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63632] = 4, - ACTIONS(768), 1, + anon_sym_LBRACE, + [59066] = 5, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4174), 1, anon_sym_RPAREN, - ACTIONS(4175), 1, + ACTIONS(4176), 1, anon_sym_COMMA, - STATE(1766), 1, - aux_sym_parameters_repeat1, + STATE(1818), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63646] = 4, - ACTIONS(4177), 1, - sym_identifier, - ACTIONS(4179), 1, - anon_sym_ref, - ACTIONS(4181), 1, - sym_mutable_specifier, + [59083] = 5, + ACTIONS(3406), 1, + anon_sym_PIPE, + ACTIONS(4178), 1, + anon_sym_SEMI, + ACTIONS(4180), 1, + anon_sym_COLON, + ACTIONS(4182), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63660] = 2, + [59100] = 4, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(4184), 1, + sym_identifier, + STATE(2318), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4183), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63670] = 3, - ACTIONS(3039), 1, - anon_sym_COLON_COLON, + [59114] = 4, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(4186), 1, + sym_identifier, + STATE(2318), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3930), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63682] = 4, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(4185), 1, - anon_sym_SEMI, - STATE(341), 1, - sym_block, + [59128] = 4, + ACTIONS(2227), 1, + anon_sym_PLUS, + ACTIONS(4188), 1, + sym_mutable_specifier, + ACTIONS(4190), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63696] = 4, - ACTIONS(4130), 1, + [59142] = 4, + ACTIONS(3946), 1, anon_sym_RPAREN, - ACTIONS(4187), 1, + ACTIONS(3948), 1, anon_sym_COMMA, - STATE(1766), 1, + STATE(2002), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63710] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + [59156] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4130), 2, + ACTIONS(4192), 3, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [63722] = 4, - ACTIONS(4190), 1, + [59166] = 4, + ACTIONS(4194), 1, sym_identifier, - ACTIONS(4192), 1, + ACTIONS(4196), 1, anon_sym_ref, - ACTIONS(4194), 1, + ACTIONS(4198), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63736] = 2, + [59180] = 4, + ACTIONS(4200), 1, + anon_sym_RPAREN, + ACTIONS(4202), 1, + anon_sym_COMMA, + STATE(1767), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2794), 3, - anon_sym_LBRACE, + [59194] = 4, + ACTIONS(4205), 1, + sym_identifier, + ACTIONS(4207), 1, + anon_sym_ref, + ACTIONS(4209), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59208] = 4, + ACTIONS(3268), 1, + anon_sym_COLON_COLON, + ACTIONS(3284), 1, anon_sym_COLON, - anon_sym_where, - [63746] = 4, - ACTIONS(612), 1, - anon_sym_RBRACK, - ACTIONS(2841), 1, - anon_sym_COMMA, - STATE(1906), 1, - aux_sym_array_expression_repeat1, + STATE(1999), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63760] = 4, - ACTIONS(2228), 1, - anon_sym_RPAREN, - ACTIONS(4196), 1, - anon_sym_COMMA, - STATE(1696), 1, - aux_sym_tuple_pattern_repeat1, + [59222] = 4, + ACTIONS(4211), 1, + sym_identifier, + ACTIONS(4213), 1, + anon_sym_ref, + ACTIONS(4215), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63774] = 2, + [59236] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4198), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [63784] = 2, + ACTIONS(4217), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59246] = 4, + ACTIONS(3284), 1, + anon_sym_COLON, + ACTIONS(3292), 1, + anon_sym_COLON_COLON, + STATE(1999), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4085), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [63794] = 4, - ACTIONS(3518), 1, + [59260] = 4, + ACTIONS(3544), 1, anon_sym_LT, - ACTIONS(4200), 1, + ACTIONS(4219), 1, anon_sym_EQ, - STATE(2386), 1, + STATE(2393), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63808] = 4, - ACTIONS(3524), 1, + [59274] = 4, + ACTIONS(4221), 1, anon_sym_RBRACE, - ACTIONS(4202), 1, + ACTIONS(4223), 1, anon_sym_COMMA, - STATE(1779), 1, + STATE(1993), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63822] = 3, - ACTIONS(4206), 1, - anon_sym_EQ, + [59288] = 3, + ACTIONS(3795), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4204), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63834] = 4, - ACTIONS(4208), 1, + ACTIONS(4225), 2, anon_sym_RBRACE, - ACTIONS(4210), 1, anon_sym_COMMA, - STATE(1777), 1, - aux_sym_field_initializer_list_repeat1, + [59300] = 4, + ACTIONS(3799), 1, + anon_sym_LBRACE, + ACTIONS(4227), 1, + anon_sym_SEMI, + STATE(278), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63848] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3857), 1, - sym_identifier, - STATE(2255), 1, - sym_type_arguments, + [59314] = 4, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4229), 1, + anon_sym_SEMI, + ACTIONS(4231), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63862] = 4, - ACTIONS(4213), 1, - anon_sym_RBRACE, - ACTIONS(4215), 1, + [59328] = 4, + ACTIONS(628), 1, + anon_sym_RBRACK, + ACTIONS(4233), 1, anon_sym_COMMA, STATE(1779), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63876] = 2, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4218), 3, - anon_sym_RPAREN, + [59342] = 4, + ACTIONS(3001), 1, anon_sym_RBRACK, + ACTIONS(4235), 1, anon_sym_COMMA, - [63886] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3857), 1, - sym_identifier, - STATE(2268), 1, - sym_type_arguments, + STATE(1779), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63900] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4220), 1, - sym_identifier, - STATE(2255), 1, - sym_type_arguments, + [59356] = 4, + ACTIONS(3544), 1, + anon_sym_LT, + ACTIONS(4238), 1, + anon_sym_EQ, + STATE(2403), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63914] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4220), 1, - sym_identifier, - STATE(2268), 1, - sym_type_arguments, + [59370] = 4, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4240), 1, + anon_sym_SEMI, + ACTIONS(4242), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63928] = 3, - ACTIONS(3920), 1, - anon_sym_COLON, + [59384] = 3, + ACTIONS(3795), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4222), 2, + ACTIONS(4244), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [59396] = 4, + ACTIONS(3799), 1, + anon_sym_LBRACE, + ACTIONS(4246), 1, + anon_sym_SEMI, + STATE(299), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59410] = 3, + ACTIONS(3966), 1, anon_sym_PIPE, - [63940] = 4, - ACTIONS(4222), 1, - anon_sym_PIPE, - ACTIONS(4224), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4248), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1785), 1, - aux_sym_closure_parameters_repeat1, + [59422] = 4, + ACTIONS(3799), 1, + anon_sym_LBRACE, + ACTIONS(4250), 1, + anon_sym_SEMI, + STATE(416), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63954] = 2, + [59436] = 4, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(3795), 1, + anon_sym_PLUS, + STATE(1048), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4227), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [63964] = 4, - ACTIONS(4229), 1, - anon_sym_for, - ACTIONS(4231), 1, - anon_sym_loop, - ACTIONS(4233), 1, - anon_sym_while, + [59450] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63978] = 4, - ACTIONS(4235), 1, + ACTIONS(4252), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59460] = 3, + ACTIONS(2995), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4254), 2, anon_sym_RPAREN, - ACTIONS(4237), 1, anon_sym_COMMA, - STATE(1788), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [59472] = 3, + ACTIONS(3795), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63992] = 3, - ACTIONS(3773), 1, + ACTIONS(4150), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59484] = 3, + ACTIONS(3825), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3181), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [64004] = 4, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(980), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64018] = 4, - ACTIONS(4240), 1, - sym_identifier, - ACTIONS(4242), 1, - anon_sym_ref, - ACTIONS(4244), 1, - sym_mutable_specifier, + [59496] = 3, + ACTIONS(3506), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64032] = 4, - ACTIONS(2310), 1, - anon_sym_LT2, - ACTIONS(4246), 1, - sym_identifier, - STATE(846), 1, - sym_type_arguments, + ACTIONS(3276), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59508] = 3, + ACTIONS(3966), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64046] = 4, - ACTIONS(383), 1, - anon_sym_RPAREN, - ACTIONS(4248), 1, + ACTIONS(4256), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1794), 1, - aux_sym_arguments_repeat1, + [59520] = 4, + ACTIONS(3799), 1, + anon_sym_LBRACE, + ACTIONS(4258), 1, + anon_sym_SEMI, + STATE(460), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64060] = 4, - ACTIONS(2943), 1, - anon_sym_RPAREN, - ACTIONS(4250), 1, + [59534] = 4, + ACTIONS(3584), 1, + anon_sym_GT, + ACTIONS(4260), 1, anon_sym_COMMA, - STATE(1794), 1, - aux_sym_arguments_repeat1, + STATE(1974), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64074] = 4, - ACTIONS(3496), 1, - anon_sym_RBRACE, - ACTIONS(4253), 1, - anon_sym_COMMA, - STATE(1777), 1, - aux_sym_field_initializer_list_repeat1, + [59548] = 4, + ACTIONS(3799), 1, + anon_sym_LBRACE, + ACTIONS(4262), 1, + anon_sym_SEMI, + STATE(338), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64088] = 4, - ACTIONS(4255), 1, - sym_identifier, - ACTIONS(4257), 1, - anon_sym_await, - ACTIONS(4259), 1, - sym_integer_literal, + [59562] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64102] = 4, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4261), 1, + ACTIONS(4264), 3, anon_sym_SEMI, - ACTIONS(4263), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + [59572] = 4, + ACTIONS(2215), 1, + anon_sym_RPAREN, + ACTIONS(4266), 1, + anon_sym_COMMA, + STATE(1716), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64116] = 4, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(4265), 1, - anon_sym_GT, - STATE(2067), 1, - sym_lifetime, + [59586] = 3, + ACTIONS(3795), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64130] = 4, - ACTIONS(4267), 1, + ACTIONS(4268), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [59598] = 4, ACTIONS(4270), 1, - anon_sym_GT, - STATE(1799), 1, - aux_sym_for_lifetimes_repeat1, + anon_sym_for, + ACTIONS(4272), 1, + anon_sym_loop, + ACTIONS(4274), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64144] = 3, - ACTIONS(4274), 1, - anon_sym_COLON, + [59612] = 4, + ACTIONS(2211), 1, + anon_sym_RBRACK, + ACTIONS(4276), 1, + anon_sym_COMMA, + STATE(1716), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4272), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64156] = 4, - ACTIONS(4276), 1, - anon_sym_for, + [59626] = 4, + ACTIONS(3572), 1, + anon_sym_LBRACE, ACTIONS(4278), 1, - anon_sym_loop, - ACTIONS(4280), 1, - anon_sym_while, + anon_sym_SEMI, + STATE(266), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64170] = 3, - ACTIONS(3829), 1, + [59640] = 3, + ACTIONS(3845), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3181), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [64182] = 4, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(4282), 1, - anon_sym_SEMI, - STATE(2258), 1, - sym_where_clause, + [59652] = 3, + ACTIONS(3560), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64196] = 4, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3792), 1, - anon_sym_GT, - STATE(1984), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3276), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59664] = 4, + ACTIONS(2390), 1, + anon_sym_LBRACE, + ACTIONS(4280), 1, + anon_sym_COLON_COLON, + STATE(965), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64210] = 4, - ACTIONS(2332), 1, + [59678] = 4, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - STATE(1018), 1, - sym_field_initializer_list, + ACTIONS(4282), 1, + anon_sym_move, + STATE(972), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64224] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + [59692] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4286), 2, - anon_sym_COMMA, - anon_sym_GT, - [64236] = 4, - ACTIONS(385), 1, + ACTIONS(4284), 3, anon_sym_RPAREN, - ACTIONS(2863), 1, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1794), 1, - aux_sym_arguments_repeat1, + [59702] = 4, + ACTIONS(3799), 1, + anon_sym_LBRACE, + ACTIONS(4286), 1, + anon_sym_SEMI, + STATE(343), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64250] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4288), 1, - sym_identifier, - STATE(2255), 1, - sym_type_arguments, + [59716] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64264] = 2, + ACTIONS(4288), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59726] = 3, + ACTIONS(3274), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4290), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [64274] = 4, - ACTIONS(2219), 1, - anon_sym_RBRACK, + ACTIONS(3276), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59738] = 3, ACTIONS(4292), 1, - anon_sym_COMMA, - STATE(1696), 1, - aux_sym_tuple_pattern_repeat1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64288] = 4, - ACTIONS(279), 1, - anon_sym_LBRACE, + ACTIONS(4290), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [59750] = 4, ACTIONS(4294), 1, - anon_sym_move, - STATE(970), 1, - sym_block, + anon_sym_RBRACE, + ACTIONS(4296), 1, + anon_sym_COMMA, + STATE(1998), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64302] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4288), 1, - sym_identifier, - STATE(2268), 1, - sym_type_arguments, + [59764] = 4, + ACTIONS(3799), 1, + anon_sym_LBRACE, + ACTIONS(4298), 1, + anon_sym_SEMI, + STATE(316), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64316] = 2, + [59778] = 4, + ACTIONS(2943), 1, + anon_sym_RPAREN, + ACTIONS(4300), 1, + anon_sym_COMMA, + STATE(1767), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4296), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [59792] = 4, + ACTIONS(4092), 1, anon_sym_COMMA, - [64326] = 4, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(4298), 1, - anon_sym_SEMI, - STATE(336), 1, - sym_block, + ACTIONS(4094), 1, + anon_sym_GT, + STATE(1994), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64340] = 4, - ACTIONS(4300), 1, - sym_identifier, - ACTIONS(4302), 1, - anon_sym_ref, - ACTIONS(4304), 1, - sym_mutable_specifier, + [59806] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64354] = 4, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(4306), 1, - anon_sym_SEMI, - STATE(2235), 1, - sym_where_clause, + ACTIONS(4302), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [59816] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64368] = 2, + ACTIONS(4304), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [59826] = 4, + ACTIONS(4306), 1, + anon_sym_RBRACE, + ACTIONS(4308), 1, + anon_sym_COMMA, + STATE(1992), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4308), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [64378] = 4, - ACTIONS(3765), 1, - anon_sym_LBRACE, + [59840] = 4, + ACTIONS(2287), 1, + anon_sym_RPAREN, ACTIONS(4310), 1, - anon_sym_SEMI, - STATE(342), 1, - sym_block, + anon_sym_COMMA, + STATE(1988), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64392] = 2, + [59854] = 4, + ACTIONS(4312), 1, + anon_sym_RBRACE, + ACTIONS(4314), 1, + anon_sym_COMMA, + STATE(1936), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2815), 3, - anon_sym_LBRACE, + [59868] = 3, + ACTIONS(4318), 1, anon_sym_COLON, - anon_sym_where, - [64402] = 3, - ACTIONS(4314), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4312), 2, + ACTIONS(4316), 2, anon_sym_RBRACE, anon_sym_COMMA, - [64414] = 4, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(4316), 1, - anon_sym_SEMI, - STATE(2356), 1, - sym_where_clause, + [59880] = 3, + ACTIONS(3863), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64428] = 3, + ACTIONS(3181), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59892] = 4, ACTIONS(4320), 1, - anon_sym_COLON, + anon_sym_COMMA, + ACTIONS(4322), 1, + anon_sym_GT, + STATE(1983), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4318), 2, - anon_sym_RBRACE, + [59906] = 4, + ACTIONS(4016), 1, anon_sym_COMMA, - [64440] = 4, - ACTIONS(4322), 1, - anon_sym_RBRACE, ACTIONS(4324), 1, - anon_sym_COMMA, - STATE(1876), 1, - aux_sym_struct_pattern_repeat1, + anon_sym_PIPE, + STATE(1933), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64454] = 4, - ACTIONS(3542), 1, - anon_sym_RBRACE, - ACTIONS(4326), 1, + [59920] = 4, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3484), 1, + anon_sym_LBRACE, + STATE(1277), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59934] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4326), 3, + anon_sym_EQ, anon_sym_COMMA, - STATE(1779), 1, - aux_sym_enum_variant_list_repeat2, + anon_sym_GT, + [59944] = 4, + ACTIONS(3799), 1, + anon_sym_LBRACE, + ACTIONS(4328), 1, + anon_sym_SEMI, + STATE(328), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64468] = 4, - ACTIONS(3542), 1, - anon_sym_RBRACE, - ACTIONS(4326), 1, + [59958] = 4, + ACTIONS(3574), 1, + anon_sym_GT, + ACTIONS(4330), 1, anon_sym_COMMA, - STATE(1775), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1974), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64482] = 2, + [59972] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4328), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4332), 3, + anon_sym_EQ, anon_sym_COMMA, - [64492] = 4, - ACTIONS(4330), 1, - anon_sym_for, - ACTIONS(4332), 1, - anon_sym_loop, - ACTIONS(4334), 1, - anon_sym_while, + anon_sym_GT, + [59982] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64506] = 4, - ACTIONS(3767), 1, + ACTIONS(4334), 3, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59992] = 4, + ACTIONS(3602), 1, + anon_sym_RBRACE, ACTIONS(4336), 1, - anon_sym_SEMI, + anon_sym_COMMA, + STATE(1831), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60006] = 4, ACTIONS(4338), 1, - anon_sym_EQ, + anon_sym_RBRACE, + ACTIONS(4340), 1, + anon_sym_COMMA, + STATE(1831), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64520] = 4, - ACTIONS(3765), 1, + [60020] = 4, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(4340), 1, + ACTIONS(4343), 1, anon_sym_SEMI, - STATE(318), 1, + STATE(378), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64534] = 2, + [60034] = 4, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4345), 1, + anon_sym_SEMI, + ACTIONS(4347), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4342), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + [60048] = 3, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4349), 2, anon_sym_COMMA, - [64544] = 3, - ACTIONS(3865), 1, - anon_sym_COLON_COLON, + anon_sym_GT, + [60060] = 3, + ACTIONS(3795), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [64556] = 3, - ACTIONS(3785), 1, - anon_sym_COLON_COLON, + ACTIONS(4351), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [60072] = 4, + ACTIONS(4353), 1, + anon_sym_RPAREN, + ACTIONS(4355), 1, + anon_sym_COMMA, + STATE(1836), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [64568] = 4, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(4344), 1, - anon_sym_SEMI, - STATE(353), 1, - sym_block, + [60086] = 3, + ACTIONS(3795), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64582] = 4, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(4346), 1, + ACTIONS(4358), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60098] = 4, + ACTIONS(4360), 1, + anon_sym_RPAREN, + ACTIONS(4362), 1, + anon_sym_COMMA, + STATE(1836), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60112] = 4, + ACTIONS(3966), 1, + anon_sym_PIPE, + ACTIONS(4364), 1, + anon_sym_EQ_GT, + ACTIONS(4366), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60126] = 4, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4368), 1, anon_sym_SEMI, - STATE(2344), 1, - sym_where_clause, + ACTIONS(4370), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64596] = 4, - ACTIONS(2332), 1, + [60140] = 4, + ACTIONS(3572), 1, anon_sym_LBRACE, - ACTIONS(4348), 1, - anon_sym_COLON_COLON, - STATE(1018), 1, - sym_field_initializer_list, + ACTIONS(4372), 1, + anon_sym_SEMI, + STATE(352), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64610] = 4, - ACTIONS(770), 1, + [60154] = 4, + ACTIONS(3019), 1, anon_sym_RPAREN, - ACTIONS(3887), 1, + ACTIONS(4374), 1, anon_sym_COMMA, - STATE(1766), 1, - aux_sym_parameters_repeat1, + STATE(1842), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64624] = 2, + [60168] = 4, + ACTIONS(4377), 1, + anon_sym_COMMA, + ACTIONS(4380), 1, + anon_sym_GT, + STATE(1843), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4350), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [64634] = 2, + [60182] = 4, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(4382), 1, + anon_sym_GT, + STATE(2184), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4352), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [64644] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3430), 1, - anon_sym_LBRACE, - STATE(1273), 1, - sym_type_arguments, + [60196] = 4, + ACTIONS(4384), 1, + anon_sym_for, + ACTIONS(4386), 1, + anon_sym_loop, + ACTIONS(4388), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64658] = 4, - ACTIONS(638), 1, - anon_sym_LBRACE, - ACTIONS(4354), 1, - anon_sym_move, - STATE(220), 1, - sym_block, + [60210] = 4, + ACTIONS(4390), 1, + anon_sym_COMMA, + ACTIONS(4393), 1, + anon_sym_GT, + STATE(1846), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64672] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4356), 1, - sym_identifier, - STATE(2268), 1, - sym_type_arguments, + [60224] = 4, + ACTIONS(640), 1, + anon_sym_LBRACE, + ACTIONS(4395), 1, + anon_sym_move, + STATE(226), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64686] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4356), 1, - sym_identifier, - STATE(2255), 1, - sym_type_arguments, + [60238] = 3, + ACTIONS(2227), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64700] = 4, - ACTIONS(4116), 1, + ACTIONS(4393), 2, anon_sym_COMMA, - ACTIONS(4118), 1, anon_sym_GT, - STATE(1878), 1, - aux_sym_type_arguments_repeat1, + [60250] = 3, + ACTIONS(3795), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64714] = 4, - ACTIONS(770), 1, - anon_sym_RPAREN, - ACTIONS(3887), 1, + ACTIONS(4393), 2, anon_sym_COMMA, - STATE(1761), 1, - aux_sym_parameters_repeat1, + anon_sym_GT, + [60262] = 3, + ACTIONS(3795), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64728] = 2, + ACTIONS(4397), 2, + anon_sym_COMMA, + anon_sym_GT, + [60274] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4358), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4399), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [64738] = 4, - ACTIONS(4360), 1, + [60284] = 4, + ACTIONS(4401), 1, anon_sym_RBRACE, - ACTIONS(4362), 1, + ACTIONS(4403), 1, anon_sym_COMMA, - STATE(1962), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64752] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4364), 1, - sym_identifier, - STATE(2268), 1, - sym_type_arguments, + STATE(1852), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64766] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4364), 1, + [60298] = 4, + ACTIONS(3123), 1, + anon_sym_LBRACE, + ACTIONS(4406), 1, sym_identifier, - STATE(2255), 1, - sym_type_arguments, + STATE(1796), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64780] = 4, - ACTIONS(3238), 1, + [60312] = 3, + ACTIONS(3811), 1, anon_sym_COLON_COLON, - ACTIONS(3240), 1, - anon_sym_COLON, - STATE(1826), 1, - sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64794] = 4, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(4366), 1, - anon_sym_SEMI, - STATE(324), 1, - sym_block, + ACTIONS(3181), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60324] = 3, + ACTIONS(3466), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64808] = 4, - ACTIONS(3767), 1, + ACTIONS(3276), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60336] = 4, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(4368), 1, + ACTIONS(4408), 1, anon_sym_SEMI, - ACTIONS(4370), 1, + ACTIONS(4410), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64822] = 4, - ACTIONS(2310), 1, - anon_sym_LT2, - ACTIONS(4246), 1, - sym_identifier, - STATE(764), 1, - sym_type_arguments, + [60350] = 3, + ACTIONS(3966), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64836] = 4, - ACTIONS(4372), 1, + ACTIONS(4412), 2, anon_sym_RBRACE, - ACTIONS(4374), 1, anon_sym_COMMA, - STATE(1747), 1, - aux_sym_use_list_repeat1, + [60362] = 3, + ACTIONS(4416), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64850] = 2, + ACTIONS(4414), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [60374] = 4, + ACTIONS(3799), 1, + anon_sym_LBRACE, + ACTIONS(4418), 1, + anon_sym_SEMI, + STATE(452), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2802), 3, + [60388] = 4, + ACTIONS(2390), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [64860] = 2, + ACTIONS(4420), 1, + anon_sym_COLON_COLON, + STATE(965), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2798), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [64870] = 4, - ACTIONS(3149), 1, + [60402] = 4, + ACTIONS(776), 1, + anon_sym_RPAREN, + ACTIONS(4422), 1, + anon_sym_COMMA, + STATE(1867), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60416] = 4, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4424), 1, + anon_sym_as, + ACTIONS(4426), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60430] = 3, + ACTIONS(2995), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3956), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60442] = 4, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(4376), 1, + ACTIONS(4428), 1, sym_identifier, - STATE(2268), 1, + STATE(2318), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64884] = 4, - ACTIONS(3149), 1, + [60456] = 4, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(4376), 1, + ACTIONS(4428), 1, sym_identifier, - STATE(2255), 1, + STATE(2319), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64898] = 2, + [60470] = 4, + ACTIONS(4016), 1, + anon_sym_COMMA, + ACTIONS(4430), 1, + anon_sym_PIPE, + STATE(1823), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4378), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [64908] = 4, - ACTIONS(2087), 1, + [60484] = 4, + ACTIONS(4026), 1, anon_sym_RPAREN, - ACTIONS(4380), 1, + ACTIONS(4432), 1, anon_sym_COMMA, - STATE(1788), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64922] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + STATE(1867), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4382), 2, - anon_sym_RPAREN, + [60498] = 4, + ACTIONS(4435), 1, + anon_sym_RBRACE, + ACTIONS(4437), 1, anon_sym_COMMA, - [64934] = 4, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4384), 1, - anon_sym_SEMI, - ACTIONS(4386), 1, - anon_sym_EQ, + STATE(1951), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64948] = 2, + [60512] = 3, + ACTIONS(3795), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4388), 3, + ACTIONS(4026), 2, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_COMMA, - [64958] = 4, - ACTIONS(3540), 1, + [60524] = 4, + ACTIONS(3598), 1, anon_sym_LBRACE, - ACTIONS(4390), 1, + ACTIONS(4439), 1, anon_sym_SEMI, - STATE(814), 1, + STATE(902), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64972] = 4, - ACTIONS(4392), 1, - anon_sym_RPAREN, - ACTIONS(4394), 1, - anon_sym_COMMA, - STATE(1917), 1, - aux_sym_meta_arguments_repeat1, + [60538] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64986] = 4, - ACTIONS(2236), 1, - anon_sym_RPAREN, - ACTIONS(4396), 1, + ACTIONS(4032), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(1696), 1, - aux_sym_tuple_pattern_repeat1, + [60548] = 4, + ACTIONS(2348), 1, + anon_sym_LT2, + ACTIONS(4441), 1, + sym_identifier, + STATE(741), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65000] = 2, + [60562] = 4, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(4443), 1, + anon_sym_SEMI, + STATE(2383), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4398), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [65010] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + [60576] = 4, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(4445), 1, + sym_identifier, + STATE(2318), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4400), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65022] = 4, - ACTIONS(3230), 1, - anon_sym_COLON_COLON, - ACTIONS(3240), 1, - anon_sym_COLON, - STATE(1826), 1, - sym_trait_bounds, + [60590] = 4, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(4445), 1, + sym_identifier, + STATE(2319), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65036] = 3, - ACTIONS(4404), 1, - anon_sym_COLON, + [60604] = 4, + ACTIONS(4447), 1, + sym_identifier, + ACTIONS(4449), 1, + anon_sym_ref, + ACTIONS(4451), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4402), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65048] = 4, - ACTIONS(4406), 1, + [60618] = 4, + ACTIONS(4453), 1, anon_sym_RBRACE, - ACTIONS(4408), 1, + ACTIONS(4455), 1, anon_sym_COMMA, - STATE(1870), 1, + STATE(1895), 1, aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65062] = 2, + [60632] = 4, + ACTIONS(3600), 1, + anon_sym_RBRACE, + ACTIONS(4457), 1, + anon_sym_COMMA, + STATE(1884), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4411), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [65072] = 2, + [60646] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4413), 3, + ACTIONS(4459), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [65082] = 4, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(4415), 1, - anon_sym_SEMI, - STATE(388), 1, - sym_block, + [60656] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65096] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + ACTIONS(2822), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [60666] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4417), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65108] = 4, - ACTIONS(2310), 1, + ACTIONS(2558), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [60676] = 4, + ACTIONS(2348), 1, anon_sym_LT2, - ACTIONS(4419), 1, + ACTIONS(4461), 1, sym_identifier, - STATE(1204), 1, + STATE(1189), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65122] = 4, - ACTIONS(3729), 1, - anon_sym_RBRACE, - ACTIONS(4421), 1, - anon_sym_COMMA, - STATE(1752), 1, - aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65136] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, + [60690] = 3, + ACTIONS(4465), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_RBRACE, anon_sym_COMMA, - [65148] = 4, - ACTIONS(866), 1, - anon_sym_GT, - ACTIONS(4425), 1, - anon_sym_COMMA, - STATE(1929), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65162] = 4, - ACTIONS(3705), 1, + [60702] = 4, + ACTIONS(4467), 1, anon_sym_RBRACE, - ACTIONS(4427), 1, + ACTIONS(4469), 1, anon_sym_COMMA, - STATE(1752), 1, - aux_sym_struct_pattern_repeat1, + STATE(1884), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65176] = 4, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(4429), 1, - anon_sym_SEMI, - STATE(350), 1, - sym_declaration_list, + [60716] = 4, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(4472), 1, + sym_identifier, + STATE(2318), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65190] = 4, - ACTIONS(2310), 1, + [60730] = 4, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(4419), 1, + ACTIONS(4472), 1, sym_identifier, - STATE(1166), 1, + STATE(2319), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65204] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4431), 1, + [60744] = 4, + ACTIONS(4474), 1, sym_identifier, - STATE(2268), 1, - sym_type_arguments, + ACTIONS(4476), 1, + anon_sym_await, + ACTIONS(4478), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65218] = 4, - ACTIONS(3149), 1, + [60758] = 4, + ACTIONS(2348), 1, anon_sym_LT2, - ACTIONS(4431), 1, + ACTIONS(4461), 1, sym_identifier, - STATE(2255), 1, + STATE(1222), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65232] = 2, + [60772] = 4, + ACTIONS(2348), 1, + anon_sym_LT2, + ACTIONS(4441), 1, + sym_identifier, + STATE(774), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4433), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [65242] = 4, - ACTIONS(4435), 1, - anon_sym_RBRACE, - ACTIONS(4437), 1, - anon_sym_COMMA, - STATE(1885), 1, - aux_sym_field_declaration_list_repeat1, + [60786] = 4, + ACTIONS(4480), 1, + anon_sym_for, + ACTIONS(4482), 1, + anon_sym_loop, + ACTIONS(4484), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65256] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + [60800] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4440), 2, + ACTIONS(4486), 3, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - [65268] = 4, - ACTIONS(4442), 1, anon_sym_RBRACE, - ACTIONS(4444), 1, + [60810] = 4, + ACTIONS(638), 1, + anon_sym_RBRACK, + ACTIONS(2913), 1, anon_sym_COMMA, - STATE(1824), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1779), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65282] = 4, - ACTIONS(4440), 1, + [60824] = 4, + ACTIONS(379), 1, anon_sym_RPAREN, - ACTIONS(4446), 1, + ACTIONS(4488), 1, anon_sym_COMMA, - STATE(1888), 1, - aux_sym_tuple_type_repeat1, + STATE(1842), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65296] = 4, - ACTIONS(3532), 1, + [60838] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4490), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4449), 1, anon_sym_COMMA, - STATE(1885), 1, - aux_sym_field_declaration_list_repeat1, + [60848] = 4, + ACTIONS(3141), 1, + anon_sym_RBRACE, + ACTIONS(4492), 1, + anon_sym_COMMA, + STATE(1935), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65310] = 4, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(4451), 1, - anon_sym_GT, - STATE(2067), 1, - sym_lifetime, + [60862] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4494), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [60872] = 4, + ACTIONS(4496), 1, + anon_sym_RPAREN, + ACTIONS(4498), 1, + anon_sym_COMMA, + STATE(1836), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65324] = 4, - ACTIONS(3149), 1, + [60886] = 4, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(4453), 1, + ACTIONS(4500), 1, sym_identifier, - STATE(2255), 1, + STATE(2319), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65338] = 4, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(4455), 1, - anon_sym_SEMI, - STATE(772), 1, - sym_block, + [60900] = 4, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(4184), 1, + sym_identifier, + STATE(2319), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65352] = 4, - ACTIONS(4451), 1, - anon_sym_GT, - ACTIONS(4457), 1, - anon_sym_COMMA, - STATE(1799), 1, - aux_sym_for_lifetimes_repeat1, + [60914] = 4, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(4502), 1, + anon_sym_SEMI, + STATE(2328), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65366] = 4, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(4459), 1, + [60928] = 4, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4504), 1, anon_sym_SEMI, - STATE(768), 1, - sym_block, + ACTIONS(4506), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65380] = 4, - ACTIONS(3149), 1, + [60942] = 4, + ACTIONS(3183), 1, anon_sym_LT2, - ACTIONS(4453), 1, + ACTIONS(4500), 1, sym_identifier, - STATE(2268), 1, + STATE(2318), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65394] = 4, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(4461), 1, - anon_sym_SEMI, - STATE(367), 1, - sym_block, + [60956] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65408] = 4, - ACTIONS(3767), 1, + ACTIONS(4508), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [60966] = 4, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(4463), 1, + ACTIONS(4510), 1, anon_sym_SEMI, - ACTIONS(4465), 1, + ACTIONS(4512), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65422] = 4, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(4467), 1, - anon_sym_SEMI, - STATE(763), 1, - sym_block, + [60980] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65436] = 4, - ACTIONS(3902), 1, + ACTIONS(4514), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3904), 1, + [60990] = 4, + ACTIONS(3942), 1, + anon_sym_COMMA, + ACTIONS(3944), 1, anon_sym_GT, - STATE(1965), 1, + STATE(1972), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65450] = 4, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4469), 1, - anon_sym_SEMI, - ACTIONS(4471), 1, - anon_sym_EQ, + [61004] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65464] = 4, - ACTIONS(4046), 1, + ACTIONS(4516), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(4473), 1, - anon_sym_PIPE, - STATE(1923), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65478] = 4, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4475), 1, - anon_sym_EQ_GT, - ACTIONS(4477), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65492] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + [61014] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4479), 2, - anon_sym_COMMA, - anon_sym_GT, - [65504] = 4, - ACTIONS(632), 1, - anon_sym_RBRACK, - ACTIONS(4481), 1, + ACTIONS(4518), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1906), 1, - aux_sym_array_expression_repeat1, + [61024] = 4, + ACTIONS(3799), 1, + anon_sym_LBRACE, + ACTIONS(4520), 1, + anon_sym_SEMI, + STATE(251), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65518] = 4, - ACTIONS(3755), 1, + [61038] = 4, + ACTIONS(3793), 1, anon_sym_LBRACE, - ACTIONS(4483), 1, + ACTIONS(4522), 1, anon_sym_SEMI, - STATE(734), 1, + STATE(783), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65532] = 4, - ACTIONS(2975), 1, - anon_sym_RBRACK, - ACTIONS(4485), 1, - anon_sym_COMMA, - STATE(1906), 1, - aux_sym_array_expression_repeat1, + [61052] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65546] = 4, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4488), 1, + ACTIONS(4524), 3, anon_sym_SEMI, - ACTIONS(4490), 1, - anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + [61062] = 4, + ACTIONS(4526), 1, + anon_sym_RBRACE, + ACTIONS(4528), 1, + anon_sym_COMMA, + STATE(1912), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65560] = 4, - ACTIONS(3755), 1, + [61076] = 4, + ACTIONS(3793), 1, anon_sym_LBRACE, - ACTIONS(4492), 1, + ACTIONS(4531), 1, anon_sym_SEMI, - STATE(796), 1, + STATE(921), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65574] = 2, + [61090] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4494), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4533), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [65584] = 3, - ACTIONS(4044), 1, - anon_sym_EQ, + [61100] = 4, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3855), 1, + sym_identifier, + STATE(2319), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3995), 2, - anon_sym_COMMA, - anon_sym_GT, - [65596] = 4, - ACTIONS(3755), 1, + [61114] = 4, + ACTIONS(3793), 1, anon_sym_LBRACE, - ACTIONS(4496), 1, + ACTIONS(4535), 1, anon_sym_SEMI, - STATE(884), 1, + STATE(794), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65610] = 4, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(4498), 1, - anon_sym_SEMI, - STATE(2409), 1, - sym_where_clause, + [61128] = 4, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(4537), 1, + sym_identifier, + STATE(2319), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65624] = 4, - ACTIONS(3995), 1, - anon_sym_GT, - ACTIONS(4500), 1, - anon_sym_COMMA, - STATE(1913), 1, - aux_sym_type_parameters_repeat1, + [61142] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65638] = 4, - ACTIONS(4503), 1, - anon_sym_RBRACE, - ACTIONS(4505), 1, + ACTIONS(4539), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1879), 1, - aux_sym_struct_pattern_repeat1, + [61152] = 4, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(4541), 1, + anon_sym_SEMI, + STATE(2422), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65652] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + [61166] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4507), 2, + ACTIONS(4543), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_GT, - [65664] = 2, + [61176] = 4, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(3855), 1, + sym_identifier, + STATE(2318), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4509), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [65674] = 4, - ACTIONS(3005), 1, - anon_sym_RPAREN, - ACTIONS(4511), 1, - anon_sym_COMMA, - STATE(1926), 1, - aux_sym_meta_arguments_repeat1, + [61190] = 4, + ACTIONS(3793), 1, + anon_sym_LBRACE, + ACTIONS(4545), 1, + anon_sym_SEMI, + STATE(807), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65688] = 4, - ACTIONS(3755), 1, + [61204] = 4, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(4513), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - STATE(925), 1, + STATE(455), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65702] = 4, - ACTIONS(3767), 1, + [61218] = 4, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(4515), 1, + ACTIONS(4549), 1, anon_sym_SEMI, - ACTIONS(4517), 1, + ACTIONS(4551), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65716] = 4, - ACTIONS(3765), 1, + [61232] = 4, + ACTIONS(3793), 1, anon_sym_LBRACE, - ACTIONS(4519), 1, + ACTIONS(4553), 1, anon_sym_SEMI, - STATE(377), 1, + STATE(829), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65730] = 4, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(4521), 1, - anon_sym_SEMI, - STATE(410), 1, - sym_block, + [61246] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65744] = 4, - ACTIONS(3755), 1, + ACTIONS(4555), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [61256] = 4, + ACTIONS(4557), 1, + anon_sym_RPAREN, + ACTIONS(4559), 1, + anon_sym_COMMA, + STATE(1813), 1, + aux_sym_meta_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61270] = 4, + ACTIONS(3793), 1, anon_sym_LBRACE, - ACTIONS(4523), 1, + ACTIONS(4561), 1, anon_sym_SEMI, - STATE(916), 1, + STATE(882), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65758] = 4, - ACTIONS(4046), 1, + [61284] = 3, + ACTIONS(3962), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4563), 2, anon_sym_COMMA, - ACTIONS(4525), 1, anon_sym_PIPE, - STATE(1785), 1, - aux_sym_closure_parameters_repeat1, + [61296] = 4, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(4537), 1, + sym_identifier, + STATE(2318), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65772] = 2, + [61310] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4527), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [65782] = 4, - ACTIONS(3522), 1, - anon_sym_RBRACE, - ACTIONS(4529), 1, + ACTIONS(4565), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1885), 1, - aux_sym_field_declaration_list_repeat1, + [61320] = 4, + ACTIONS(3793), 1, + anon_sym_LBRACE, + ACTIONS(4567), 1, + anon_sym_SEMI, + STATE(893), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65796] = 4, - ACTIONS(4531), 1, - anon_sym_RPAREN, - ACTIONS(4533), 1, + [61334] = 4, + ACTIONS(4563), 1, + anon_sym_PIPE, + ACTIONS(4569), 1, anon_sym_COMMA, - STATE(1926), 1, - aux_sym_meta_arguments_repeat1, + STATE(1933), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65810] = 4, - ACTIONS(3767), 1, + [61348] = 4, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(4536), 1, - anon_sym_SEMI, - ACTIONS(4538), 1, - anon_sym_EQ, + STATE(984), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65824] = 4, - ACTIONS(2276), 1, - anon_sym_RPAREN, - ACTIONS(4540), 1, + [61362] = 4, + ACTIONS(4572), 1, + anon_sym_RBRACE, + ACTIONS(4574), 1, anon_sym_COMMA, - STATE(1888), 1, - aux_sym_tuple_type_repeat1, + STATE(1935), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65838] = 4, - ACTIONS(4148), 1, - anon_sym_GT, - ACTIONS(4542), 1, + [61376] = 4, + ACTIONS(3558), 1, + anon_sym_RBRACE, + ACTIONS(4577), 1, anon_sym_COMMA, - STATE(1929), 1, - aux_sym_type_arguments_repeat1, + STATE(1912), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65852] = 4, - ACTIONS(3540), 1, + [61390] = 4, + ACTIONS(3598), 1, anon_sym_LBRACE, - ACTIONS(4545), 1, + ACTIONS(4579), 1, anon_sym_SEMI, - STATE(936), 1, + STATE(835), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65866] = 4, - ACTIONS(4547), 1, - anon_sym_COMMA, - ACTIONS(4549), 1, - anon_sym_GT, - STATE(1893), 1, - aux_sym_for_lifetimes_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65880] = 4, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(4551), 1, - anon_sym_SEMI, - STATE(880), 1, - sym_block, + [61404] = 3, + ACTIONS(4583), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65894] = 2, + ACTIONS(4581), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61416] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4553), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [65904] = 4, - ACTIONS(762), 1, - anon_sym_RPAREN, - ACTIONS(4555), 1, + ACTIONS(4585), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1766), 1, - aux_sym_parameters_repeat1, + [61426] = 4, + ACTIONS(3793), 1, + anon_sym_LBRACE, + ACTIONS(4587), 1, + anon_sym_SEMI, + STATE(947), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65918] = 4, - ACTIONS(3506), 1, + [61440] = 4, + ACTIONS(3580), 1, anon_sym_RBRACE, - ACTIONS(4557), 1, + ACTIONS(4589), 1, anon_sym_COMMA, - STATE(1779), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1831), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65932] = 4, - ACTIONS(3767), 1, + [61454] = 4, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(4559), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4561), 1, + ACTIONS(4593), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65946] = 4, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4563), 1, - anon_sym_as, - ACTIONS(4565), 1, - anon_sym_GT, + [61468] = 4, + ACTIONS(3793), 1, + anon_sym_LBRACE, + ACTIONS(4595), 1, + anon_sym_SEMI, + STATE(924), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65960] = 3, - ACTIONS(4569), 1, - anon_sym_COLON, + [61482] = 4, + ACTIONS(768), 1, + anon_sym_RPAREN, + ACTIONS(4597), 1, + anon_sym_COMMA, + STATE(1867), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4567), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65972] = 4, - ACTIONS(3516), 1, + [61496] = 4, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(4571), 1, + ACTIONS(4599), 1, anon_sym_SEMI, - STATE(2308), 1, + STATE(2222), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65986] = 4, - ACTIONS(3767), 1, + [61510] = 4, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(4573), 1, + ACTIONS(4601), 1, anon_sym_SEMI, - ACTIONS(4575), 1, - anon_sym_EQ, + ACTIONS(4603), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66000] = 4, - ACTIONS(3767), 1, + [61524] = 4, + ACTIONS(3606), 1, + anon_sym_RBRACE, + ACTIONS(4605), 1, + anon_sym_COMMA, + STATE(1884), 1, + aux_sym_enum_variant_list_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61538] = 4, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(4577), 1, + ACTIONS(4607), 1, anon_sym_SEMI, - ACTIONS(4579), 1, + ACTIONS(4609), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66014] = 4, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(4581), 1, - anon_sym_SEMI, - STATE(832), 1, - sym_block, + [61552] = 4, + ACTIONS(3566), 1, + anon_sym_RBRACE, + ACTIONS(4611), 1, + anon_sym_COMMA, + STATE(1830), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66028] = 4, - ACTIONS(4583), 1, + [61566] = 4, + ACTIONS(4613), 1, anon_sym_RBRACE, - ACTIONS(4585), 1, + ACTIONS(4615), 1, anon_sym_COMMA, - STATE(1975), 1, + STATE(1997), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66042] = 4, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_PLUS, - STATE(1058), 1, - sym_block, + [61580] = 4, + ACTIONS(3566), 1, + anon_sym_RBRACE, + ACTIONS(4611), 1, + anon_sym_COMMA, + STATE(1831), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66056] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + [61594] = 4, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(4617), 1, + anon_sym_SEMI, + STATE(2329), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4587), 2, - anon_sym_RBRACE, + [61608] = 4, + ACTIONS(4619), 1, + anon_sym_RPAREN, + ACTIONS(4621), 1, anon_sym_COMMA, - [66068] = 4, - ACTIONS(3767), 1, + STATE(1836), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61622] = 4, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(4589), 1, + ACTIONS(4623), 1, anon_sym_SEMI, - ACTIONS(4591), 1, + ACTIONS(4625), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66082] = 2, + [61636] = 4, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(4627), 1, + anon_sym_SEMI, + STATE(2373), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4593), 3, + [61650] = 4, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4629), 1, + anon_sym_SEMI, + ACTIONS(4631), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [66092] = 4, - ACTIONS(4595), 1, - anon_sym_RBRACE, - ACTIONS(4597), 1, - anon_sym_COMMA, - STATE(1795), 1, - aux_sym_field_initializer_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66106] = 4, - ACTIONS(3504), 1, - anon_sym_RBRACE, - ACTIONS(4599), 1, - anon_sym_COMMA, - STATE(1925), 1, - aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66120] = 4, - ACTIONS(3910), 1, + [61664] = 4, + ACTIONS(3930), 1, anon_sym_RPAREN, - ACTIONS(3912), 1, + ACTIONS(3932), 1, anon_sym_COMMA, - STATE(1970), 1, + STATE(1991), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66134] = 4, - ACTIONS(3504), 1, - anon_sym_RBRACE, - ACTIONS(4599), 1, - anon_sym_COMMA, - STATE(1885), 1, - aux_sym_field_declaration_list_repeat1, + [61678] = 4, + ACTIONS(3793), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + anon_sym_SEMI, + STATE(867), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66148] = 4, - ACTIONS(3566), 1, - anon_sym_RBRACE, - ACTIONS(4601), 1, + [61692] = 4, + ACTIONS(381), 1, + anon_sym_RPAREN, + ACTIONS(2941), 1, anon_sym_COMMA, - STATE(1889), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1842), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66162] = 4, - ACTIONS(2081), 1, - anon_sym_RPAREN, - ACTIONS(4603), 1, - anon_sym_COMMA, - STATE(1788), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [61706] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66176] = 4, - ACTIONS(3755), 1, + ACTIONS(2692), 3, anon_sym_LBRACE, - ACTIONS(4605), 1, + anon_sym_COLON, + anon_sym_where, + [61716] = 4, + ACTIONS(3793), 1, + anon_sym_LBRACE, + ACTIONS(4635), 1, anon_sym_SEMI, - STATE(953), 1, + STATE(796), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66190] = 4, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4607), 1, - anon_sym_SEMI, - ACTIONS(4609), 1, - anon_sym_EQ, + [61730] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66204] = 4, - ACTIONS(3765), 1, + ACTIONS(2708), 3, anon_sym_LBRACE, - ACTIONS(4611), 1, + anon_sym_COLON, + anon_sym_where, + [61740] = 4, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4637), 1, anon_sym_SEMI, - STATE(394), 1, - sym_block, + ACTIONS(4639), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66218] = 4, - ACTIONS(3974), 1, + [61754] = 4, + ACTIONS(4158), 1, anon_sym_COMMA, - ACTIONS(3976), 1, + ACTIONS(4160), 1, anon_sym_GT, - STATE(1960), 1, + STATE(1981), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66232] = 4, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4613), 1, - anon_sym_SEMI, - ACTIONS(4615), 1, - anon_sym_EQ, + [61768] = 4, + ACTIONS(3552), 1, + anon_sym_RBRACE, + ACTIONS(4641), 1, + anon_sym_COMMA, + STATE(1941), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66246] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + [61782] = 4, + ACTIONS(3552), 1, + anon_sym_RBRACE, + ACTIONS(4641), 1, + anon_sym_COMMA, + STATE(1831), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4617), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66258] = 4, - ACTIONS(870), 1, + [61796] = 4, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + ACTIONS(4643), 1, anon_sym_GT, - ACTIONS(4619), 1, - anon_sym_COMMA, - STATE(1929), 1, - aux_sym_type_arguments_repeat1, + STATE(2184), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66272] = 4, - ACTIONS(2268), 1, + [61810] = 4, + ACTIONS(2295), 1, anon_sym_RPAREN, - ACTIONS(4621), 1, + ACTIONS(4645), 1, anon_sym_COMMA, - STATE(1888), 1, + STATE(1988), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66286] = 4, - ACTIONS(3566), 1, - anon_sym_RBRACE, - ACTIONS(4601), 1, - anon_sym_COMMA, - STATE(1885), 1, - aux_sym_field_declaration_list_repeat1, + [61824] = 4, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4647), 1, + anon_sym_SEMI, + ACTIONS(4649), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66300] = 4, - ACTIONS(3564), 1, + [61838] = 4, + ACTIONS(3568), 1, anon_sym_GT, - ACTIONS(4623), 1, + ACTIONS(4651), 1, anon_sym_COMMA, - STATE(1913), 1, + STATE(1974), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66314] = 4, - ACTIONS(3572), 1, - anon_sym_GT, - ACTIONS(4625), 1, - anon_sym_COMMA, - STATE(1913), 1, - aux_sym_type_parameters_repeat1, + [61852] = 4, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4653), 1, + anon_sym_SEMI, + ACTIONS(4655), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66328] = 4, - ACTIONS(3568), 1, + [61866] = 4, + ACTIONS(3592), 1, anon_sym_GT, - ACTIONS(4627), 1, + ACTIONS(4657), 1, anon_sym_COMMA, - STATE(1913), 1, + STATE(1974), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66342] = 4, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(4629), 1, - anon_sym_SEMI, - STATE(743), 1, - sym_block, + [61880] = 3, + ACTIONS(3795), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66356] = 4, - ACTIONS(758), 1, - anon_sym_RPAREN, - ACTIONS(3934), 1, + ACTIONS(4659), 2, anon_sym_COMMA, - STATE(1934), 1, - aux_sym_parameters_repeat1, + anon_sym_GT, + [61892] = 4, + ACTIONS(4136), 1, + anon_sym_GT, + ACTIONS(4661), 1, + anon_sym_COMMA, + STATE(1974), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66370] = 2, + [61906] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2790), 3, + ACTIONS(2676), 3, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, - [66380] = 2, + [61916] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4631), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [66390] = 4, - ACTIONS(758), 1, - anon_sym_RPAREN, - ACTIONS(3934), 1, - anon_sym_COMMA, - STATE(1766), 1, - aux_sym_parameters_repeat1, + ACTIONS(2704), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [61926] = 3, + ACTIONS(4123), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66404] = 4, - ACTIONS(3767), 1, + ACTIONS(4136), 2, + anon_sym_COMMA, + anon_sym_GT, + [61938] = 4, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(4633), 1, + ACTIONS(4664), 1, anon_sym_SEMI, - ACTIONS(4635), 1, + ACTIONS(4666), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66418] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2806), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [66428] = 4, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(4637), 1, - sym_identifier, - STATE(1871), 1, - sym_use_list, + [61952] = 3, + ACTIONS(4670), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66442] = 4, - ACTIONS(3550), 1, + ACTIONS(4668), 2, anon_sym_RBRACE, - ACTIONS(4639), 1, anon_sym_COMMA, - STATE(1935), 1, - aux_sym_enum_variant_list_repeat2, + [61964] = 4, + ACTIONS(3821), 1, + anon_sym_COMMA, + ACTIONS(3823), 1, + anon_sym_GT, + STATE(1827), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66456] = 4, - ACTIONS(3550), 1, - anon_sym_RBRACE, - ACTIONS(4639), 1, + [61978] = 4, + ACTIONS(880), 1, + anon_sym_GT, + ACTIONS(4672), 1, anon_sym_COMMA, - STATE(1779), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1846), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66470] = 4, - ACTIONS(3767), 1, + [61992] = 3, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(4641), 1, - anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4674), 2, + anon_sym_COMMA, + anon_sym_GT, + [62004] = 4, ACTIONS(4643), 1, - anon_sym_EQ, + anon_sym_GT, + ACTIONS(4676), 1, + anon_sym_COMMA, + STATE(1843), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66484] = 2, + [62018] = 4, + ACTIONS(3793), 1, + anon_sym_LBRACE, + ACTIONS(4678), 1, + anon_sym_SEMI, + STATE(790), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4645), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [66494] = 4, - ACTIONS(3767), 1, + [62032] = 4, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(4647), 1, + ACTIONS(4680), 1, anon_sym_SEMI, - ACTIONS(4649), 1, + ACTIONS(4682), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66508] = 4, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(4651), 1, - anon_sym_SEMI, - STATE(427), 1, - sym_declaration_list, + [62046] = 4, + ACTIONS(764), 1, + anon_sym_RPAREN, + ACTIONS(3915), 1, + anon_sym_COMMA, + STATE(1944), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66522] = 4, - ACTIONS(4653), 1, + [62060] = 4, + ACTIONS(4684), 1, anon_sym_RBRACE, - ACTIONS(4655), 1, + ACTIONS(4686), 1, anon_sym_COMMA, - STATE(1951), 1, + STATE(1966), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66536] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, + [62074] = 4, + ACTIONS(4688), 1, + anon_sym_RPAREN, + ACTIONS(4690), 1, + anon_sym_COMMA, + STATE(1988), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4657), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [66548] = 4, - ACTIONS(3516), 1, + [62088] = 4, + ACTIONS(3542), 1, anon_sym_where, - ACTIONS(4659), 1, + ACTIONS(4693), 1, anon_sym_SEMI, - STATE(2363), 1, + STATE(2409), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66562] = 4, - ACTIONS(3516), 1, - anon_sym_where, - ACTIONS(4661), 1, - anon_sym_SEMI, - STATE(2354), 1, - sym_where_clause, + [62102] = 3, + ACTIONS(3795), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66576] = 4, - ACTIONS(3570), 1, - anon_sym_GT, - ACTIONS(4663), 1, + ACTIONS(4688), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1913), 1, - aux_sym_type_parameters_repeat1, + [62114] = 4, + ACTIONS(764), 1, + anon_sym_RPAREN, + ACTIONS(3915), 1, + anon_sym_COMMA, + STATE(1867), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66590] = 4, - ACTIONS(3518), 1, - anon_sym_LT, - ACTIONS(4665), 1, - anon_sym_EQ, - STATE(2318), 1, - sym_type_parameters, + [62128] = 4, + ACTIONS(3761), 1, + anon_sym_RBRACE, + ACTIONS(4695), 1, + anon_sym_COMMA, + STATE(1852), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66604] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, + [62142] = 4, + ACTIONS(3594), 1, + anon_sym_RBRACE, + ACTIONS(4697), 1, + anon_sym_COMMA, + STATE(1884), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3970), 2, - anon_sym_RPAREN, + [62156] = 4, + ACTIONS(898), 1, + anon_sym_GT, + ACTIONS(4699), 1, anon_sym_COMMA, - [66616] = 3, - ACTIONS(3039), 1, - anon_sym_COLON_COLON, + STATE(1846), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4667), 2, - anon_sym_RPAREN, + [62170] = 4, + ACTIONS(3562), 1, + anon_sym_RBRACE, + ACTIONS(4701), 1, anon_sym_COMMA, - [66628] = 3, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(893), 1, - sym_declaration_list, + STATE(1947), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66639] = 2, + [62184] = 4, + ACTIONS(3594), 1, + anon_sym_RBRACE, + ACTIONS(4697), 1, + anon_sym_COMMA, + STATE(1878), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4669), 2, - anon_sym_const, - sym_mutable_specifier, - [66648] = 3, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(841), 1, - sym_declaration_list, + [62198] = 4, + ACTIONS(3562), 1, + anon_sym_RBRACE, + ACTIONS(4701), 1, + anon_sym_COMMA, + STATE(1884), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66659] = 3, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(837), 1, - sym_declaration_list, + [62212] = 4, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4703), 1, + anon_sym_COMMA, + STATE(1852), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66670] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4671), 1, + [62226] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4705), 3, anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [62236] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66681] = 3, - ACTIONS(3554), 1, + ACTIONS(4707), 3, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(831), 1, - sym_field_declaration_list, + anon_sym_COMMA, + [62246] = 4, + ACTIONS(3542), 1, + anon_sym_where, + ACTIONS(4709), 1, + anon_sym_SEMI, + STATE(2395), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62260] = 4, + ACTIONS(770), 1, + anon_sym_RPAREN, + ACTIONS(4000), 1, + anon_sym_COMMA, + STATE(1867), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66692] = 2, + [62274] = 4, + ACTIONS(3183), 1, + anon_sym_LT2, + ACTIONS(4186), 1, + sym_identifier, + STATE(2319), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4152), 2, - anon_sym_RBRACE, + [62288] = 4, + ACTIONS(770), 1, + anon_sym_RPAREN, + ACTIONS(4000), 1, anon_sym_COMMA, - [66701] = 3, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(820), 1, - sym_declaration_list, + STATE(1861), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66712] = 3, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(816), 1, - sym_declaration_list, + [62302] = 4, + ACTIONS(2217), 1, + anon_sym_RPAREN, + ACTIONS(4711), 1, + anon_sym_COMMA, + STATE(1716), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66723] = 3, - ACTIONS(3920), 1, + [62316] = 3, + ACTIONS(4715), 1, anon_sym_COLON, - ACTIONS(3924), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66734] = 2, + ACTIONS(4713), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62328] = 3, + ACTIONS(4717), 1, + anon_sym_SEMI, + ACTIONS(4719), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3930), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66743] = 3, - ACTIONS(3769), 1, + [62339] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(407), 1, - sym_enum_variant_list, + STATE(377), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66754] = 3, - ACTIONS(4673), 1, - sym_identifier, - ACTIONS(4675), 1, - sym_mutable_specifier, + [62350] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66765] = 3, - ACTIONS(3833), 1, - anon_sym_LBRACE, - STATE(795), 1, - sym_enum_variant_list, + ACTIONS(4200), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62359] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66776] = 3, - ACTIONS(3554), 1, + ACTIONS(4721), 2, + sym_identifier, + sym_metavariable, + [62368] = 3, + ACTIONS(3865), 1, anon_sym_LBRACE, - STATE(787), 1, - sym_field_declaration_list, + STATE(739), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66787] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4677), 1, - anon_sym_EQ, + [62379] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66798] = 3, - ACTIONS(3554), 1, + ACTIONS(3859), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62388] = 3, + ACTIONS(3556), 1, anon_sym_LBRACE, - STATE(781), 1, + STATE(736), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66809] = 3, - ACTIONS(4679), 1, - sym_identifier, - ACTIONS(4681), 1, - sym_mutable_specifier, + [62399] = 3, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(400), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66820] = 2, + [62410] = 3, + ACTIONS(3556), 1, + anon_sym_LBRACE, + STATE(732), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4130), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66829] = 3, - ACTIONS(4683), 1, + [62421] = 3, + ACTIONS(4723), 1, anon_sym_SEMI, - ACTIONS(4685), 1, + ACTIONS(4725), 1, anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66840] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4687), 2, - sym_identifier, - sym_metavariable, - [66849] = 3, - ACTIONS(4177), 1, - sym_identifier, - ACTIONS(4181), 1, - sym_mutable_specifier, + [62432] = 3, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(341), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66860] = 3, + [62443] = 3, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(44), 1, + STATE(63), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66871] = 2, + [62454] = 3, + ACTIONS(4727), 1, + sym_identifier, + ACTIONS(4729), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3970), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66880] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4689), 1, - anon_sym_EQ, + [62465] = 3, + ACTIONS(4731), 1, + anon_sym_SEMI, + ACTIONS(4733), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66891] = 3, - ACTIONS(4691), 1, - anon_sym_SEMI, - ACTIONS(4693), 1, - anon_sym_RBRACE, + [62476] = 3, + ACTIONS(3827), 1, + anon_sym_LBRACE, + STATE(322), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66902] = 3, - ACTIONS(3719), 1, - anon_sym_COLON_COLON, - ACTIONS(4695), 1, - anon_sym_RPAREN, + [62487] = 3, + ACTIONS(3598), 1, + anon_sym_LBRACE, + STATE(748), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66913] = 3, - ACTIONS(3723), 1, - anon_sym_COLON_COLON, - ACTIONS(4695), 1, - anon_sym_RPAREN, + [62498] = 3, + ACTIONS(3598), 1, + anon_sym_LBRACE, + STATE(749), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66924] = 3, - ACTIONS(3727), 1, - anon_sym_COLON_COLON, - ACTIONS(4695), 1, - anon_sym_RPAREN, + [62509] = 3, + ACTIONS(3556), 1, + anon_sym_LBRACE, + STATE(751), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66935] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4697), 1, - anon_sym_in, + [62520] = 3, + ACTIONS(3187), 1, + anon_sym_LPAREN, + STATE(1302), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66946] = 3, - ACTIONS(3288), 1, - anon_sym_COLON_COLON, - ACTIONS(4699), 1, - anon_sym_RPAREN, + [62531] = 3, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4735), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66957] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4701), 1, - anon_sym_EQ, + [62542] = 3, + ACTIONS(3598), 1, + anon_sym_LBRACE, + STATE(754), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66968] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4703), 1, - anon_sym_EQ, + [62553] = 3, + ACTIONS(3598), 1, + anon_sym_LBRACE, + STATE(755), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66979] = 2, + [62564] = 3, + ACTIONS(3556), 1, + anon_sym_LBRACE, + STATE(756), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4705), 2, - sym_identifier, - sym_metavariable, - [66988] = 3, - ACTIONS(2302), 1, - anon_sym_LPAREN, - STATE(888), 1, - sym_parameters, + [62575] = 3, + ACTIONS(3616), 1, + anon_sym_COLON, + STATE(1999), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66999] = 3, + [62586] = 3, ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(905), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67010] = 3, - ACTIONS(3302), 1, - anon_sym_COLON_COLON, - ACTIONS(4707), 1, - anon_sym_BANG, + STATE(417), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67021] = 2, + [62597] = 3, + ACTIONS(4194), 1, + sym_identifier, + ACTIONS(4198), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4709), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [67030] = 3, - ACTIONS(3294), 1, + [62608] = 3, + ACTIONS(3751), 1, anon_sym_COLON_COLON, - ACTIONS(4707), 1, - anon_sym_BANG, + ACTIONS(4737), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67041] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4711), 1, - anon_sym_in, + [62619] = 3, + ACTIONS(3757), 1, + anon_sym_COLON_COLON, + ACTIONS(4737), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67052] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4713), 1, - anon_sym_EQ, + [62630] = 3, + ACTIONS(3713), 1, + anon_sym_COLON_COLON, + ACTIONS(4737), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67063] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4715), 1, - anon_sym_in, + [62641] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67074] = 3, - ACTIONS(2676), 1, - anon_sym_COLON, - ACTIONS(3767), 1, - anon_sym_PLUS, + ACTIONS(4136), 2, + anon_sym_COMMA, + anon_sym_GT, + [62650] = 3, + ACTIONS(3326), 1, + anon_sym_COLON_COLON, + ACTIONS(4739), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67085] = 3, - ACTIONS(3701), 1, - anon_sym_COLON, - ACTIONS(3767), 1, - anon_sym_PLUS, + [62661] = 3, + ACTIONS(3544), 1, + anon_sym_LT, + STATE(660), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67096] = 2, + [62672] = 3, + ACTIONS(4731), 1, + anon_sym_SEMI, + ACTIONS(4741), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4717), 2, - sym_identifier, - sym_metavariable, - [67105] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4719), 1, - anon_sym_EQ, + [62683] = 3, + ACTIONS(2340), 1, + anon_sym_LPAREN, + STATE(769), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67116] = 3, - ACTIONS(3540), 1, + [62694] = 3, + ACTIONS(3598), 1, anon_sym_LBRACE, - STATE(900), 1, + STATE(802), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67127] = 2, + [62705] = 3, + ACTIONS(3598), 1, + anon_sym_LBRACE, + STATE(772), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4213), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [67136] = 3, - ACTIONS(2566), 1, - anon_sym_COLON, - ACTIONS(3767), 1, - anon_sym_PLUS, + [62716] = 3, + ACTIONS(4731), 1, + anon_sym_SEMI, + ACTIONS(4743), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67147] = 3, - ACTIONS(3540), 1, + [62727] = 3, + ACTIONS(3598), 1, anon_sym_LBRACE, - STATE(732), 1, + STATE(812), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67158] = 3, - ACTIONS(3924), 1, + [62738] = 3, + ACTIONS(3966), 1, anon_sym_PIPE, - ACTIONS(4721), 1, + ACTIONS(4745), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67169] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1301), 1, - sym_parameters, + [62749] = 3, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(418), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67180] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4723), 1, - anon_sym_GT, + [62760] = 3, + ACTIONS(3966), 1, + anon_sym_PIPE, + ACTIONS(4747), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67191] = 2, + [62771] = 3, + ACTIONS(3966), 1, + anon_sym_PIPE, + ACTIONS(4749), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4725), 2, - sym_identifier, - sym_metavariable, - [67200] = 3, - ACTIONS(2520), 1, - anon_sym_COLON, - ACTIONS(3767), 1, - anon_sym_PLUS, + [62782] = 3, + ACTIONS(3966), 1, + anon_sym_PIPE, + ACTIONS(4751), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67211] = 3, - ACTIONS(3502), 1, + [62793] = 3, + ACTIONS(3865), 1, anon_sym_LBRACE, - STATE(402), 1, - sym_declaration_list, + STATE(925), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67222] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(403), 1, - sym_declaration_list, + [62804] = 3, + ACTIONS(3966), 1, + anon_sym_PIPE, + ACTIONS(4753), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67233] = 3, - ACTIONS(2310), 1, - anon_sym_LT2, - STATE(1003), 1, - sym_type_arguments, + [62815] = 3, + ACTIONS(3966), 1, + anon_sym_PIPE, + ACTIONS(4755), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67244] = 3, - ACTIONS(3540), 1, + [62826] = 3, + ACTIONS(3598), 1, anon_sym_LBRACE, - STATE(756), 1, + STATE(830), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67255] = 3, - ACTIONS(3767), 1, + [62837] = 3, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(4727), 1, + ACTIONS(4757), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67266] = 2, + [62848] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4729), 2, + ACTIONS(4467), 2, anon_sym_RBRACE, anon_sym_COMMA, - [67275] = 3, - ACTIONS(3540), 1, + [62857] = 3, + ACTIONS(3598), 1, anon_sym_LBRACE, - STATE(759), 1, + STATE(836), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67286] = 3, - ACTIONS(3924), 1, + [62868] = 3, + ACTIONS(3966), 1, anon_sym_PIPE, - ACTIONS(4731), 1, - anon_sym_EQ, + ACTIONS(4759), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67297] = 3, - ACTIONS(3540), 1, + [62879] = 3, + ACTIONS(3598), 1, anon_sym_LBRACE, - STATE(762), 1, + STATE(843), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67308] = 3, - ACTIONS(3540), 1, + [62890] = 3, + ACTIONS(3598), 1, anon_sym_LBRACE, - STATE(771), 1, + STATE(844), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67319] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4733), 1, + [62901] = 3, + ACTIONS(3741), 1, + anon_sym_RBRACE, + ACTIONS(4731), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67330] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4735), 1, - anon_sym_in, + [62912] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67341] = 2, + ACTIONS(4761), 2, + sym_identifier, + sym_metavariable, + [62921] = 3, + ACTIONS(2730), 1, + anon_sym_COLON, + ACTIONS(3795), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4222), 2, - anon_sym_COMMA, + [62932] = 3, + ACTIONS(3966), 1, anon_sym_PIPE, - [67350] = 3, - ACTIONS(3833), 1, - anon_sym_LBRACE, - STATE(946), 1, - sym_enum_variant_list, + ACTIONS(4763), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67361] = 3, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_BANG, + [62943] = 3, + ACTIONS(3966), 1, + anon_sym_PIPE, + ACTIONS(4765), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67372] = 2, + [62954] = 3, + ACTIONS(4767), 1, + anon_sym_SEMI, + ACTIONS(4769), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4741), 2, - sym_identifier, - sym_metavariable, - [67381] = 3, - ACTIONS(3833), 1, + [62965] = 3, + ACTIONS(3865), 1, anon_sym_LBRACE, - STATE(848), 1, + STATE(874), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67392] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4743), 1, - anon_sym_EQ, + [62976] = 3, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(279), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67403] = 3, - ACTIONS(2516), 1, - anon_sym_COLON, - ACTIONS(3767), 1, - anon_sym_PLUS, + [62987] = 3, + ACTIONS(3749), 1, + anon_sym_RPAREN, + ACTIONS(4731), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67414] = 3, - ACTIONS(3554), 1, + [62998] = 3, + ACTIONS(3556), 1, anon_sym_LBRACE, - STATE(856), 1, + STATE(887), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67425] = 3, - ACTIONS(3767), 1, + [63009] = 3, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(4745), 1, + ACTIONS(4771), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67436] = 3, - ACTIONS(3554), 1, + [63020] = 3, + ACTIONS(3556), 1, anon_sym_LBRACE, - STATE(859), 1, + STATE(896), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67447] = 3, - ACTIONS(3540), 1, + [63031] = 3, + ACTIONS(3598), 1, anon_sym_LBRACE, - STATE(861), 1, + STATE(899), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67458] = 3, - ACTIONS(3735), 1, - anon_sym_RBRACE, - ACTIONS(4691), 1, - anon_sym_SEMI, + [63042] = 3, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(253), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67469] = 2, + [63053] = 3, + ACTIONS(3540), 1, + anon_sym_LBRACE, + STATE(412), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4270), 2, - anon_sym_COMMA, - anon_sym_GT, - [67478] = 3, - ACTIONS(3502), 1, + [63064] = 3, + ACTIONS(3865), 1, + anon_sym_LBRACE, + STATE(817), 1, + sym_enum_variant_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63075] = 3, + ACTIONS(3572), 1, anon_sym_LBRACE, - STATE(383), 1, + STATE(293), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67489] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1544), 1, - sym_parameters, + [63086] = 3, + ACTIONS(2103), 1, + anon_sym_SQUOTE, + STATE(2184), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67500] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(369), 1, - sym_declaration_list, + [63097] = 3, + ACTIONS(3966), 1, + anon_sym_PIPE, + ACTIONS(4773), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67511] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1564), 1, - sym_parameters, + [63108] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(54), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67522] = 3, - ACTIONS(2071), 1, + [63119] = 3, + ACTIONS(2103), 1, anon_sym_SQUOTE, - STATE(1931), 1, + STATE(1822), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67533] = 3, - ACTIONS(3769), 1, + [63130] = 3, + ACTIONS(3827), 1, anon_sym_LBRACE, - STATE(277), 1, + STATE(408), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67544] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(382), 1, - sym_declaration_list, + [63141] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67555] = 3, - ACTIONS(4747), 1, - anon_sym_LBRACK, - ACTIONS(4749), 1, - anon_sym_BANG, + ACTIONS(4775), 2, + sym_identifier, + sym_metavariable, + [63150] = 3, + ACTIONS(3729), 1, + anon_sym_RBRACE, + ACTIONS(4731), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67566] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(77), 1, - sym_closure_parameters, + [63161] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67577] = 3, - ACTIONS(279), 1, + ACTIONS(4777), 2, + sym_identifier, + sym_metavariable, + [63170] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(958), 1, - sym_block, + STATE(312), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67588] = 3, - ACTIONS(3514), 1, + [63181] = 3, + ACTIONS(3572), 1, anon_sym_LBRACE, - STATE(282), 1, - sym_field_declaration_list, + STATE(298), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67599] = 2, + [63192] = 3, + ACTIONS(3598), 1, + anon_sym_LBRACE, + STATE(934), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4531), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [67608] = 3, - ACTIONS(3540), 1, + [63203] = 3, + ACTIONS(3598), 1, anon_sym_LBRACE, - STATE(890), 1, + STATE(935), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67619] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(47), 1, - sym_block, + [63214] = 3, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4779), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67630] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1538), 1, - sym_parameters, + [63225] = 3, + ACTIONS(3966), 1, + anon_sym_PIPE, + ACTIONS(4781), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67641] = 3, - ACTIONS(3514), 1, - anon_sym_LBRACE, - STATE(285), 1, - sym_field_declaration_list, + [63236] = 3, + ACTIONS(3966), 1, + anon_sym_PIPE, + ACTIONS(4783), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67652] = 3, - ACTIONS(3502), 1, + [63247] = 3, + ACTIONS(3572), 1, anon_sym_LBRACE, - STATE(426), 1, + STATE(290), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67663] = 3, - ACTIONS(3153), 1, + [63258] = 3, + ACTIONS(3187), 1, anon_sym_LPAREN, - STATE(1565), 1, + STATE(1579), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67674] = 3, - ACTIONS(3695), 1, - anon_sym_RPAREN, - ACTIONS(4691), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67685] = 3, - ACTIONS(3540), 1, + [63269] = 3, + ACTIONS(3598), 1, anon_sym_LBRACE, - STATE(902), 1, + STATE(948), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67696] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4751), 1, - anon_sym_SEMI, + [63280] = 3, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(285), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67707] = 3, - ACTIONS(4753), 1, - anon_sym_SEMI, - ACTIONS(4755), 1, - anon_sym_as, + [63291] = 3, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(282), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67718] = 3, - ACTIONS(3540), 1, + [63302] = 3, + ACTIONS(3598), 1, anon_sym_LBRACE, - STATE(907), 1, + STATE(952), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67729] = 3, - ACTIONS(3540), 1, + [63313] = 3, + ACTIONS(3598), 1, anon_sym_LBRACE, - STATE(914), 1, + STATE(953), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67740] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1285), 1, - sym_parameters, + [63324] = 3, + ACTIONS(279), 1, + anon_sym_LBRACE, + STATE(1017), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67751] = 2, + [63335] = 3, + ACTIONS(2694), 1, + anon_sym_COLON, + ACTIONS(3795), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4757), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [67760] = 3, - ACTIONS(4759), 1, - anon_sym_SEMI, - ACTIONS(4761), 1, - anon_sym_as, + [63346] = 3, + ACTIONS(4785), 1, + anon_sym_LBRACK, + ACTIONS(4787), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67771] = 3, - ACTIONS(3767), 1, + [63357] = 3, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(4763), 1, + ACTIONS(4789), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67782] = 3, - ACTIONS(3540), 1, + [63368] = 3, + ACTIONS(3598), 1, anon_sym_LBRACE, - STATE(935), 1, + STATE(938), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67793] = 3, - ACTIONS(3540), 1, + [63379] = 3, + ACTIONS(3598), 1, anon_sym_LBRACE, - STATE(950), 1, + STATE(936), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67804] = 3, - ACTIONS(3725), 1, - anon_sym_RBRACE, - ACTIONS(4691), 1, - anon_sym_SEMI, + [63390] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67815] = 3, - ACTIONS(2332), 1, - anon_sym_LBRACE, - STATE(1018), 1, - sym_field_initializer_list, + ACTIONS(4572), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63399] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67826] = 2, + ACTIONS(4791), 2, + sym_identifier, + sym_metavariable, + [63408] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2153), 2, + ACTIONS(4150), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [67835] = 3, - ACTIONS(3554), 1, + [63417] = 3, + ACTIONS(3572), 1, anon_sym_LBRACE, - STATE(918), 1, - sym_field_declaration_list, + STATE(304), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67846] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(355), 1, - sym_declaration_list, + [63428] = 3, + ACTIONS(2698), 1, + anon_sym_COLON, + ACTIONS(3795), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67857] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(337), 1, - sym_declaration_list, + [63439] = 3, + ACTIONS(4793), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67868] = 3, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(887), 1, - sym_declaration_list, + [63450] = 3, + ACTIONS(3962), 1, + anon_sym_COLON, + ACTIONS(3966), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67879] = 3, - ACTIONS(3554), 1, - anon_sym_LBRACE, - STATE(882), 1, - sym_field_declaration_list, + [63461] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67890] = 3, - ACTIONS(4691), 1, - anon_sym_SEMI, - ACTIONS(4765), 1, - anon_sym_RPAREN, + ACTIONS(4797), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63470] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(86), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67901] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(321), 1, - sym_declaration_list, + [63481] = 3, + ACTIONS(2844), 1, + anon_sym_COLON, + ACTIONS(3795), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67912] = 2, + [63492] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3995), 2, + ACTIONS(4563), 2, anon_sym_COMMA, - anon_sym_GT, - [67921] = 3, - ACTIONS(3540), 1, + anon_sym_PIPE, + [63501] = 3, + ACTIONS(3598), 1, anon_sym_LBRACE, - STATE(827), 1, + STATE(868), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67932] = 3, - ACTIONS(3540), 1, + [63512] = 3, + ACTIONS(3598), 1, anon_sym_LBRACE, - STATE(779), 1, + STATE(866), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67943] = 3, - ACTIONS(4767), 1, - anon_sym_SEMI, - ACTIONS(4769), 1, - anon_sym_as, + [63523] = 3, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4799), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67954] = 3, - ACTIONS(3514), 1, + [63534] = 3, + ACTIONS(3556), 1, anon_sym_LBRACE, - STATE(333), 1, + STATE(852), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67965] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(371), 1, - sym_declaration_list, + [63545] = 3, + ACTIONS(4801), 1, + sym_identifier, + ACTIONS(4803), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67976] = 3, - ACTIONS(3502), 1, + [63556] = 3, + ACTIONS(3572), 1, anon_sym_LBRACE, - STATE(418), 1, + STATE(395), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67987] = 3, - ACTIONS(3540), 1, + [63567] = 3, + ACTIONS(3598), 1, anon_sym_LBRACE, - STATE(817), 1, + STATE(823), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67998] = 3, - ACTIONS(3502), 1, + [63578] = 3, + ACTIONS(3572), 1, anon_sym_LBRACE, - STATE(419), 1, + STATE(371), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68009] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4771), 1, - anon_sym_in, + [63589] = 3, + ACTIONS(3598), 1, + anon_sym_LBRACE, + STATE(858), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68020] = 3, - ACTIONS(3540), 1, + [63600] = 3, + ACTIONS(3556), 1, anon_sym_LBRACE, - STATE(744), 1, - sym_declaration_list, + STATE(862), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68031] = 3, - ACTIONS(2302), 1, - anon_sym_LPAREN, - STATE(731), 1, - sym_parameters, + [63611] = 3, + ACTIONS(3342), 1, + anon_sym_COLON_COLON, + ACTIONS(4805), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68042] = 3, - ACTIONS(3502), 1, + [63622] = 3, + ACTIONS(2390), 1, anon_sym_LBRACE, - STATE(422), 1, - sym_declaration_list, + STATE(965), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68053] = 3, - ACTIONS(4773), 1, - anon_sym_LPAREN, - ACTIONS(4775), 1, - anon_sym_LBRACE, + [63633] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68064] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1547), 1, - sym_parameters, + ACTIONS(4526), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63642] = 3, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4807), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68075] = 3, - ACTIONS(4777), 1, - sym_identifier, - ACTIONS(4779), 1, - sym_mutable_specifier, + [63653] = 3, + ACTIONS(4809), 1, + anon_sym_LPAREN, + ACTIONS(4811), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68086] = 3, - ACTIONS(279), 1, - anon_sym_LBRACE, - STATE(972), 1, - sym_block, + [63664] = 3, + ACTIONS(3598), 1, + anon_sym_LBRACE, + STATE(879), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68097] = 2, + [63675] = 3, + ACTIONS(2340), 1, + anon_sym_LPAREN, + STATE(886), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4148), 2, - anon_sym_COMMA, - anon_sym_GT, - [68106] = 3, - ACTIONS(638), 1, + [63686] = 3, + ACTIONS(640), 1, anon_sym_LBRACE, - STATE(219), 1, + STATE(217), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68117] = 3, - ACTIONS(3502), 1, + [63697] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(265), 1, - sym_declaration_list, + STATE(283), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68128] = 3, - ACTIONS(638), 1, + [63708] = 3, + ACTIONS(640), 1, anon_sym_LBRACE, - STATE(229), 1, + STATE(215), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68139] = 3, - ACTIONS(3502), 1, + [63719] = 3, + ACTIONS(3827), 1, anon_sym_LBRACE, - STATE(263), 1, - sym_declaration_list, + STATE(368), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68150] = 3, - ACTIONS(4691), 1, - anon_sym_SEMI, - ACTIONS(4781), 1, - anon_sym_RPAREN, + [63730] = 3, + ACTIONS(4813), 1, + sym_identifier, + ACTIONS(4815), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68161] = 3, - ACTIONS(638), 1, + [63741] = 3, + ACTIONS(640), 1, anon_sym_LBRACE, - STATE(224), 1, + STATE(223), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68172] = 3, - ACTIONS(4691), 1, - anon_sym_SEMI, - ACTIONS(4783), 1, - anon_sym_RBRACE, + [63752] = 3, + ACTIONS(279), 1, + anon_sym_LBRACE, + STATE(975), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68183] = 3, - ACTIONS(3675), 1, - anon_sym_RPAREN, - ACTIONS(4691), 1, - anon_sym_SEMI, + [63763] = 3, + ACTIONS(279), 1, + anon_sym_LBRACE, + STATE(1025), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68194] = 3, - ACTIONS(3514), 1, + [63774] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(317), 1, - sym_field_declaration_list, + STATE(49), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68205] = 3, - ACTIONS(3288), 1, - anon_sym_COLON_COLON, - ACTIONS(4785), 1, - anon_sym_RPAREN, + [63785] = 3, + ACTIONS(3187), 1, + anon_sym_LPAREN, + STATE(1592), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68216] = 3, - ACTIONS(3514), 1, - anon_sym_LBRACE, - STATE(257), 1, - sym_field_declaration_list, + [63796] = 3, + ACTIONS(3332), 1, + anon_sym_COLON_COLON, + ACTIONS(4805), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68227] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(48), 1, - sym_block, + [63807] = 3, + ACTIONS(3326), 1, + anon_sym_COLON_COLON, + ACTIONS(4817), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68238] = 3, - ACTIONS(3833), 1, + [63818] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(747), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68249] = 3, - ACTIONS(3727), 1, - anon_sym_COLON_COLON, - ACTIONS(4787), 1, - anon_sym_RPAREN, + STATE(289), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68260] = 3, - ACTIONS(3767), 1, + [63829] = 3, + ACTIONS(3795), 1, anon_sym_PLUS, - ACTIONS(4789), 1, + ACTIONS(4819), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68271] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(412), 1, - sym_declaration_list, + [63840] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68282] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(438), 1, - sym_declaration_list, + ACTIONS(4821), 2, + sym_float_literal, + sym_integer_literal, + [63849] = 3, + ACTIONS(4731), 1, + anon_sym_SEMI, + ACTIONS(4823), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68293] = 3, - ACTIONS(3767), 1, - anon_sym_PLUS, - ACTIONS(4791), 1, - anon_sym_SEMI, + [63860] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68304] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(279), 1, - sym_declaration_list, + ACTIONS(4825), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63869] = 3, + ACTIONS(3187), 1, + anon_sym_LPAREN, + STATE(1540), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68315] = 3, - ACTIONS(4300), 1, - sym_identifier, - ACTIONS(4304), 1, - sym_mutable_specifier, + [63880] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68326] = 3, - ACTIONS(3514), 1, + ACTIONS(4827), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63889] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(331), 1, + STATE(300), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68337] = 3, - ACTIONS(3723), 1, - anon_sym_COLON_COLON, - ACTIONS(4787), 1, - anon_sym_RPAREN, + [63900] = 3, + ACTIONS(3966), 1, + anon_sym_PIPE, + ACTIONS(4829), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68348] = 3, - ACTIONS(3502), 1, + [63911] = 3, + ACTIONS(3572), 1, anon_sym_LBRACE, - STATE(249), 1, + STATE(363), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68359] = 2, + [63922] = 3, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(306), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4435), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [68368] = 3, - ACTIONS(638), 1, + [63933] = 3, + ACTIONS(3572), 1, anon_sym_LBRACE, - STATE(238), 1, + STATE(369), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63944] = 3, + ACTIONS(640), 1, + anon_sym_LBRACE, + STATE(232), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68379] = 3, - ACTIONS(3153), 1, + [63955] = 3, + ACTIONS(3187), 1, anon_sym_LPAREN, - STATE(1548), 1, + STATE(1545), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68390] = 3, - ACTIONS(3769), 1, - anon_sym_LBRACE, - STATE(328), 1, - sym_enum_variant_list, + [63966] = 3, + ACTIONS(3187), 1, + anon_sym_LPAREN, + STATE(1547), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68401] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(288), 1, - sym_declaration_list, + [63977] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68412] = 3, - ACTIONS(3502), 1, + ACTIONS(4831), 2, + anon_sym_const, + sym_mutable_specifier, + [63986] = 3, + ACTIONS(3572), 1, anon_sym_LBRACE, - STATE(441), 1, + STATE(348), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68423] = 3, - ACTIONS(638), 1, + [63997] = 3, + ACTIONS(3827), 1, anon_sym_LBRACE, - STATE(232), 1, - sym_block, + STATE(427), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68434] = 3, - ACTIONS(3719), 1, - anon_sym_COLON_COLON, - ACTIONS(4787), 1, - anon_sym_RPAREN, + [64008] = 3, + ACTIONS(3966), 1, + anon_sym_PIPE, + ACTIONS(4833), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68445] = 3, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(4793), 1, - anon_sym_COLON_COLON, + [64019] = 3, + ACTIONS(3187), 1, + anon_sym_LPAREN, + STATE(1290), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68456] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(84), 1, - sym_closure_parameters, + [64030] = 3, + ACTIONS(3187), 1, + anon_sym_LPAREN, + STATE(1285), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68467] = 3, - ACTIONS(4795), 1, - anon_sym_LT, - STATE(634), 1, - sym_type_parameters, + [64041] = 3, + ACTIONS(4835), 1, + anon_sym_SEMI, + ACTIONS(4837), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68478] = 2, + [64052] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4406), 2, + ACTIONS(4338), 2, anon_sym_RBRACE, anon_sym_COMMA, - [68487] = 3, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(4797), 1, - anon_sym_in, + [64061] = 3, + ACTIONS(3727), 1, + anon_sym_RPAREN, + ACTIONS(4731), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68498] = 3, - ACTIONS(848), 1, + [64072] = 3, + ACTIONS(3572), 1, anon_sym_LBRACE, - STATE(1391), 1, - sym_block, + STATE(389), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68509] = 3, - ACTIONS(3769), 1, - anon_sym_LBRACE, - STATE(395), 1, - sym_enum_variant_list, + [64083] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68520] = 3, - ACTIONS(3514), 1, - anon_sym_LBRACE, - STATE(250), 1, - sym_field_declaration_list, + ACTIONS(2159), 2, + anon_sym_COMMA, + anon_sym_GT, + [64092] = 3, + ACTIONS(3326), 1, + anon_sym_COLON_COLON, + ACTIONS(4839), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68531] = 3, - ACTIONS(279), 1, - anon_sym_LBRACE, - STATE(1020), 1, - sym_block, + [64103] = 3, + ACTIONS(2348), 1, + anon_sym_LT2, + STATE(1060), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68542] = 3, - ACTIONS(279), 1, + [64114] = 3, + ACTIONS(3572), 1, anon_sym_LBRACE, - STATE(1000), 1, - sym_block, + STATE(388), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68553] = 3, - ACTIONS(4799), 1, - anon_sym_LPAREN, - ACTIONS(4801), 1, + [64125] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, + STATE(386), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68564] = 3, - ACTIONS(3518), 1, - anon_sym_LT, - STATE(677), 1, - sym_type_parameters, + [64136] = 3, + ACTIONS(3795), 1, + anon_sym_PLUS, + ACTIONS(4841), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68575] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1287), 1, - sym_parameters, + [64147] = 3, + ACTIONS(3189), 1, + anon_sym_BANG, + ACTIONS(4843), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68586] = 3, - ACTIONS(3502), 1, + [64158] = 3, + ACTIONS(3572), 1, anon_sym_LBRACE, - STATE(294), 1, + STATE(432), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68597] = 3, - ACTIONS(3514), 1, + [64169] = 3, + ACTIONS(3572), 1, anon_sym_LBRACE, - STATE(430), 1, - sym_field_declaration_list, + STATE(438), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68608] = 2, + [64180] = 3, + ACTIONS(279), 1, + anon_sym_LBRACE, + STATE(1012), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3861), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [68617] = 2, + [64191] = 3, + ACTIONS(4447), 1, + sym_identifier, + ACTIONS(4451), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4803), 2, - anon_sym_const, - sym_mutable_specifier, - [68626] = 3, - ACTIONS(3276), 1, - anon_sym_BANG, - ACTIONS(4805), 1, - anon_sym_COLON_COLON, + [64202] = 3, + ACTIONS(3187), 1, + anon_sym_LPAREN, + STATE(1591), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68637] = 3, - ACTIONS(3554), 1, - anon_sym_LBRACE, - STATE(842), 1, - sym_field_declaration_list, + [64213] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(80), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68648] = 3, - ACTIONS(3608), 1, - anon_sym_COLON, - STATE(1826), 1, - sym_trait_bounds, + [64224] = 3, + ACTIONS(3713), 1, + anon_sym_COLON_COLON, + ACTIONS(4845), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68659] = 2, + [64235] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4208), 2, - anon_sym_RBRACE, + ACTIONS(4380), 2, anon_sym_COMMA, - [68668] = 3, - ACTIONS(3502), 1, - anon_sym_LBRACE, - STATE(440), 1, - sym_declaration_list, + anon_sym_GT, + [64244] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68679] = 2, + ACTIONS(3956), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64253] = 3, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(380), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4807), 2, - sym_float_literal, - sym_integer_literal, - [68688] = 3, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(2067), 1, - sym_lifetime, + [64264] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68699] = 3, - ACTIONS(3502), 1, + ACTIONS(4847), 2, + anon_sym_const, + sym_mutable_specifier, + [64273] = 3, + ACTIONS(3572), 1, anon_sym_LBRACE, - STATE(271), 1, + STATE(379), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68710] = 3, - ACTIONS(279), 1, - anon_sym_LBRACE, - STATE(981), 1, - sym_block, + [64284] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68721] = 3, - ACTIONS(2302), 1, + ACTIONS(4026), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64293] = 3, + ACTIONS(2340), 1, anon_sym_LPAREN, - STATE(845), 1, + STATE(803), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68732] = 2, + [64304] = 3, + ACTIONS(4849), 1, + anon_sym_LPAREN, + ACTIONS(4851), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4809), 2, - sym_identifier, - sym_metavariable, - [68741] = 2, + [64315] = 3, + ACTIONS(870), 1, + anon_sym_LBRACE, + STATE(1387), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4811), 2, - anon_sym_const, - sym_mutable_specifier, - [68750] = 2, - ACTIONS(4813), 1, - sym_identifier, + [64326] = 3, + ACTIONS(640), 1, + anon_sym_LBRACE, + STATE(218), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68758] = 2, - ACTIONS(4815), 1, - anon_sym_RPAREN, + [64337] = 3, + ACTIONS(3966), 1, + anon_sym_PIPE, + ACTIONS(4853), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68766] = 2, - ACTIONS(4817), 1, - sym_identifier, + [64348] = 3, + ACTIONS(3344), 1, + anon_sym_BANG, + ACTIONS(4855), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68774] = 2, - ACTIONS(4819), 1, - anon_sym_SEMI, + [64359] = 3, + ACTIONS(3757), 1, + anon_sym_COLON_COLON, + ACTIONS(4845), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68782] = 2, - ACTIONS(4821), 1, - anon_sym_RBRACE, + [64370] = 3, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(357), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68790] = 2, - ACTIONS(4823), 1, - anon_sym_LPAREN, + [64381] = 3, + ACTIONS(3751), 1, + anon_sym_COLON_COLON, + ACTIONS(4845), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68798] = 2, - ACTIONS(4825), 1, - anon_sym_RPAREN, + [64392] = 3, + ACTIONS(279), 1, + anon_sym_LBRACE, + STATE(1053), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68806] = 2, - ACTIONS(4827), 1, - sym_identifier, + [64403] = 3, + ACTIONS(4857), 1, + anon_sym_LT, + STATE(648), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68814] = 2, - ACTIONS(4829), 1, - sym_identifier, + [64414] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68822] = 2, - ACTIONS(4392), 1, - anon_sym_RPAREN, + ACTIONS(4859), 2, + anon_sym_const, + sym_mutable_specifier, + [64423] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68830] = 2, - ACTIONS(4831), 1, - sym_identifier, + ACTIONS(4401), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64432] = 3, + ACTIONS(3775), 1, + anon_sym_COLON, + ACTIONS(3795), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68838] = 2, - ACTIONS(4833), 1, + [64443] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4861), 2, sym_identifier, + sym_metavariable, + [64452] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68846] = 2, - ACTIONS(4835), 1, + ACTIONS(4393), 2, + anon_sym_COMMA, + anon_sym_GT, + [64461] = 2, + ACTIONS(4863), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68854] = 2, - ACTIONS(4837), 1, + [64469] = 2, + ACTIONS(3326), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64477] = 2, + ACTIONS(4461), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68862] = 2, - ACTIONS(2195), 1, - anon_sym_PLUS, + [64485] = 2, + ACTIONS(4865), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68870] = 2, - ACTIONS(4376), 1, + [64493] = 2, + ACTIONS(4867), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68878] = 2, - ACTIONS(4839), 1, + [64501] = 2, + ACTIONS(4869), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68886] = 2, - ACTIONS(4841), 1, - anon_sym_RBRACK, + [64509] = 2, + ACTIONS(4453), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68894] = 2, - ACTIONS(2185), 1, - anon_sym_PLUS, + [64517] = 2, + ACTIONS(4871), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68902] = 2, - ACTIONS(4843), 1, + [64525] = 2, + ACTIONS(4873), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68910] = 2, - ACTIONS(4845), 1, - anon_sym_fn, + [64533] = 2, + ACTIONS(4875), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68918] = 2, - ACTIONS(4847), 1, + [64541] = 2, + ACTIONS(4877), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68926] = 2, - ACTIONS(4849), 1, + [64549] = 2, + ACTIONS(4445), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68934] = 2, - ACTIONS(4360), 1, - anon_sym_RBRACE, + [64557] = 2, + ACTIONS(4879), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68942] = 2, - ACTIONS(4851), 1, - sym_identifier, + [64565] = 2, + ACTIONS(4881), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68950] = 2, - ACTIONS(4853), 1, - anon_sym_COLON, + [64573] = 2, + ACTIONS(4883), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68958] = 2, - ACTIONS(4855), 1, + [64581] = 2, + ACTIONS(4441), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68966] = 2, - ACTIONS(4857), 1, - sym_identifier, + [64589] = 2, + ACTIONS(4885), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68974] = 2, - ACTIONS(4364), 1, + [64597] = 2, + ACTIONS(4887), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68982] = 2, - ACTIONS(4859), 1, + [64605] = 2, + ACTIONS(4889), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68990] = 2, - ACTIONS(4861), 1, + [64613] = 2, + ACTIONS(4891), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68998] = 2, - ACTIONS(4863), 1, - anon_sym_RBRACK, + [64621] = 2, + ACTIONS(2243), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69006] = 2, - ACTIONS(4865), 1, - anon_sym_LT, + [64629] = 2, + ACTIONS(4893), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69014] = 2, - ACTIONS(4867), 1, - sym_identifier, + [64637] = 2, + ACTIONS(4895), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69022] = 2, - ACTIONS(4869), 1, - sym_self, + [64645] = 2, + ACTIONS(4428), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69030] = 2, - ACTIONS(4871), 1, + [64653] = 2, + ACTIONS(4897), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69038] = 2, - ACTIONS(4372), 1, - anon_sym_RBRACE, + [64661] = 2, + ACTIONS(4899), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69046] = 2, - ACTIONS(4873), 1, + [64669] = 2, + ACTIONS(4901), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69054] = 2, - ACTIONS(4356), 1, + [64677] = 2, + ACTIONS(4903), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69062] = 2, - ACTIONS(4875), 1, - sym_identifier, + [64685] = 2, + ACTIONS(4905), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69070] = 2, - ACTIONS(4877), 1, - sym_identifier, + [64693] = 2, + ACTIONS(4426), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69078] = 2, - ACTIONS(4879), 1, - sym_identifier, + [64701] = 2, + ACTIONS(4435), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69086] = 2, - ACTIONS(4881), 1, - anon_sym_COLON_COLON, + [64709] = 2, + ACTIONS(4907), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69094] = 2, - ACTIONS(4883), 1, + [64717] = 2, + ACTIONS(4909), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69102] = 2, - ACTIONS(4885), 1, + [64725] = 2, + ACTIONS(4911), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69110] = 2, - ACTIONS(4887), 1, + [64733] = 2, + ACTIONS(4913), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69118] = 2, - ACTIONS(4889), 1, + [64741] = 2, + ACTIONS(4915), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69126] = 2, - ACTIONS(3238), 1, + [64749] = 2, + ACTIONS(4917), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64757] = 2, + ACTIONS(4919), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69134] = 2, - ACTIONS(3865), 1, + [64765] = 2, + ACTIONS(3091), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69142] = 2, - ACTIONS(4891), 1, + [64773] = 2, + ACTIONS(4921), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69150] = 2, - ACTIONS(3049), 1, + [64781] = 2, + ACTIONS(3251), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69158] = 2, - ACTIONS(3224), 1, - anon_sym_COLON_COLON, + [64789] = 2, + ACTIONS(4923), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69166] = 2, - ACTIONS(4893), 1, - sym_identifier, + [64797] = 2, + ACTIONS(4925), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69174] = 2, - ACTIONS(4895), 1, + [64805] = 2, + ACTIONS(4927), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69182] = 2, - ACTIONS(4246), 1, + [64813] = 2, + ACTIONS(4929), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69190] = 2, - ACTIONS(3039), 1, + [64821] = 2, + ACTIONS(4931), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64829] = 2, + ACTIONS(2995), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64837] = 2, + ACTIONS(4933), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69198] = 2, - ACTIONS(4897), 1, + [64845] = 2, + ACTIONS(2436), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69206] = 2, - ACTIONS(4899), 1, + [64853] = 2, + ACTIONS(4935), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69214] = 2, - ACTIONS(4901), 1, + [64861] = 2, + ACTIONS(4937), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69222] = 2, - ACTIONS(4903), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [69230] = 2, - ACTIONS(4905), 1, + [64869] = 2, + ACTIONS(4939), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69238] = 2, - ACTIONS(4907), 1, + [64877] = 2, + ACTIONS(4406), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69246] = 2, - ACTIONS(4909), 1, + [64885] = 2, + ACTIONS(4941), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69254] = 2, - ACTIONS(4911), 1, + [64893] = 2, + ACTIONS(4943), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69262] = 2, - ACTIONS(4913), 1, + [64901] = 2, + ACTIONS(4945), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69270] = 2, - ACTIONS(3914), 1, - anon_sym_RPAREN, + [64909] = 2, + ACTIONS(4947), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69278] = 2, - ACTIONS(4637), 1, + [64917] = 2, + ACTIONS(4949), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69286] = 2, - ACTIONS(4915), 1, - anon_sym_RBRACE, + [64925] = 2, + ACTIONS(4951), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69294] = 2, - ACTIONS(4917), 1, - anon_sym_COLON, + [64933] = 2, + ACTIONS(4082), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69302] = 2, - ACTIONS(2408), 1, - anon_sym_COLON_COLON, + [64941] = 2, + ACTIONS(4953), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69310] = 2, - ACTIONS(4288), 1, + [64949] = 2, + ACTIONS(4186), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69318] = 2, - ACTIONS(4919), 1, + [64957] = 2, + ACTIONS(4955), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69326] = 2, - ACTIONS(4921), 1, - anon_sym_SEMI, + [64965] = 2, + ACTIONS(4957), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69334] = 2, - ACTIONS(2384), 1, - anon_sym_COLON_COLON, + [64973] = 2, + ACTIONS(4959), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69342] = 2, - ACTIONS(4805), 1, + [64981] = 2, + ACTIONS(4855), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69350] = 2, - ACTIONS(4923), 1, + [64989] = 2, + ACTIONS(4472), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69358] = 2, - ACTIONS(4925), 1, + [64997] = 2, + ACTIONS(4961), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69366] = 2, - ACTIONS(4927), 1, + [65005] = 2, + ACTIONS(4963), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69374] = 2, - ACTIONS(4929), 1, + [65013] = 2, + ACTIONS(4965), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69382] = 2, - ACTIONS(4931), 1, + [65021] = 2, + ACTIONS(4967), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69390] = 2, - ACTIONS(4431), 1, + [65029] = 2, + ACTIONS(4969), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69398] = 2, - ACTIONS(4933), 1, - anon_sym_COLON, + [65037] = 2, + ACTIONS(4731), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69406] = 2, - ACTIONS(2464), 1, - anon_sym_COLON_COLON, + [65045] = 2, + ACTIONS(4971), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69414] = 2, - ACTIONS(4935), 1, + [65053] = 2, + ACTIONS(4973), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69422] = 2, - ACTIONS(4937), 1, + [65061] = 2, + ACTIONS(2227), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65069] = 2, + ACTIONS(4975), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69430] = 2, - ACTIONS(4939), 1, + [65077] = 2, + ACTIONS(4977), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69438] = 2, - ACTIONS(4941), 1, + [65085] = 2, + ACTIONS(4979), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69446] = 2, - ACTIONS(4943), 1, - sym_identifier, + [65093] = 2, + ACTIONS(4981), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65101] = 2, + ACTIONS(4983), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69454] = 2, - ACTIONS(4503), 1, + [65109] = 2, + ACTIONS(4985), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69462] = 2, - ACTIONS(4945), 1, - sym_identifier, + [65117] = 2, + ACTIONS(4987), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69470] = 2, - ACTIONS(4947), 1, - sym_identifier, + [65125] = 2, + ACTIONS(4989), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69478] = 2, - ACTIONS(4949), 1, - sym_identifier, + [65133] = 2, + ACTIONS(4991), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69486] = 2, - ACTIONS(4951), 1, + [65141] = 2, + ACTIONS(4993), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69494] = 2, - ACTIONS(4953), 1, - anon_sym_COLON, + [65149] = 2, + ACTIONS(4995), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69502] = 2, - ACTIONS(4955), 1, - sym_identifier, + [65157] = 2, + ACTIONS(2171), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69510] = 2, - ACTIONS(4957), 1, - sym_identifier, + [65165] = 2, + ACTIONS(4997), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69518] = 2, - ACTIONS(4783), 1, - anon_sym_SEMI, + [65173] = 2, + ACTIONS(4999), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69526] = 2, - ACTIONS(4959), 1, + [65181] = 2, + ACTIONS(5001), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69534] = 2, - ACTIONS(365), 1, - anon_sym_RBRACK, + [65189] = 2, + ACTIONS(3292), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69542] = 2, - ACTIONS(4961), 1, - anon_sym_RPAREN, + [65197] = 2, + ACTIONS(5003), 1, + anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69550] = 2, - ACTIONS(4963), 1, - sym_identifier, + [65205] = 2, + ACTIONS(638), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69558] = 2, - ACTIONS(4453), 1, + [65213] = 2, + ACTIONS(3855), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69566] = 2, - ACTIONS(4965), 1, - anon_sym_fn, + [65221] = 2, + ACTIONS(5005), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69574] = 2, - ACTIONS(4967), 1, - anon_sym_LBRACK, + [65229] = 2, + ACTIONS(5007), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69582] = 2, - ACTIONS(3015), 1, + [65237] = 2, + ACTIONS(5009), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69590] = 2, - ACTIONS(2149), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [69598] = 2, - ACTIONS(4969), 1, + [65245] = 2, + ACTIONS(5011), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69606] = 2, - ACTIONS(4971), 1, + [65253] = 2, + ACTIONS(5013), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69614] = 2, - ACTIONS(4973), 1, - sym_identifier, + [65261] = 2, + ACTIONS(5015), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69622] = 2, - ACTIONS(4975), 1, + [65269] = 2, + ACTIONS(5017), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69630] = 2, - ACTIONS(4977), 1, + [65277] = 2, + ACTIONS(5019), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69638] = 2, - ACTIONS(4979), 1, + [65285] = 2, + ACTIONS(4500), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69646] = 2, - ACTIONS(4981), 1, - sym_identifier, + [65293] = 2, + ACTIONS(3268), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69654] = 2, - ACTIONS(4442), 1, - anon_sym_RBRACE, + [65301] = 2, + ACTIONS(3863), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69662] = 2, - ACTIONS(4983), 1, - anon_sym_RBRACK, + [65309] = 2, + ACTIONS(5021), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69670] = 2, - ACTIONS(4985), 1, + [65317] = 2, + ACTIONS(4184), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69678] = 2, - ACTIONS(4987), 1, - anon_sym_COLON_COLON, + [65325] = 2, + ACTIONS(5023), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69686] = 2, - ACTIONS(4989), 1, - anon_sym_SEMI, + [65333] = 2, + ACTIONS(4312), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69694] = 2, - ACTIONS(4991), 1, - anon_sym_COLON, + [65341] = 2, + ACTIONS(4306), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69702] = 2, - ACTIONS(4993), 1, - anon_sym_COLON, + [65349] = 2, + ACTIONS(5025), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69710] = 2, - ACTIONS(4220), 1, - sym_identifier, + [65357] = 2, + ACTIONS(2460), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69718] = 2, - ACTIONS(4995), 1, - anon_sym_SEMI, + [65365] = 2, + ACTIONS(2432), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69726] = 2, - ACTIONS(4997), 1, - anon_sym_SEMI, + [65373] = 2, + ACTIONS(5027), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69734] = 2, - ACTIONS(4999), 1, - anon_sym_EQ_GT, + [65381] = 2, + ACTIONS(5029), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69742] = 2, - ACTIONS(3723), 1, - anon_sym_COLON_COLON, + [65389] = 2, + ACTIONS(5031), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69750] = 2, - ACTIONS(5001), 1, - anon_sym_EQ_GT, + [65397] = 2, + ACTIONS(5033), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69758] = 2, - ACTIONS(5003), 1, + [65405] = 2, + ACTIONS(5035), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69766] = 2, - ACTIONS(5005), 1, + [65413] = 2, + ACTIONS(5037), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65421] = 2, + ACTIONS(4008), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69774] = 2, - ACTIONS(5007), 1, - anon_sym_RBRACE, + [65429] = 2, + ACTIONS(5039), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69782] = 2, - ACTIONS(3725), 1, + [65437] = 2, + ACTIONS(5041), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69790] = 2, - ACTIONS(3165), 1, - anon_sym_fn, + [65445] = 2, + ACTIONS(5043), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69798] = 2, - ACTIONS(5009), 1, - ts_builtin_sym_end, + [65453] = 2, + ACTIONS(5045), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69806] = 2, - ACTIONS(5011), 1, - anon_sym_EQ, + [65461] = 2, + ACTIONS(363), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69814] = 2, - ACTIONS(2666), 1, - anon_sym_COLON_COLON, + [65469] = 2, + ACTIONS(5047), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69822] = 2, - ACTIONS(5013), 1, - anon_sym_EQ_GT, + [65477] = 2, + ACTIONS(5049), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69830] = 2, - ACTIONS(5015), 1, + [65485] = 2, + ACTIONS(5051), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69838] = 2, - ACTIONS(5017), 1, + [65493] = 2, + ACTIONS(5053), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69846] = 2, - ACTIONS(4793), 1, - anon_sym_COLON_COLON, + [65501] = 2, + ACTIONS(5055), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69854] = 2, - ACTIONS(5019), 1, - anon_sym_SEMI, + [65509] = 2, + ACTIONS(4028), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69862] = 2, - ACTIONS(5021), 1, - sym_identifier, + [65517] = 2, + ACTIONS(5057), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65525] = 2, + ACTIONS(5059), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65533] = 2, + ACTIONS(5061), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69870] = 2, - ACTIONS(3230), 1, + [65541] = 2, + ACTIONS(3757), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69878] = 2, - ACTIONS(4565), 1, - anon_sym_GT, + [65549] = 2, + ACTIONS(5063), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69886] = 2, - ACTIONS(5023), 1, - anon_sym_RPAREN, + [65557] = 2, + ACTIONS(5065), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69894] = 2, - ACTIONS(4322), 1, + [65565] = 2, + ACTIONS(4294), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69902] = 2, - ACTIONS(5025), 1, - anon_sym_fn, + [65573] = 2, + ACTIONS(2438), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69910] = 2, - ACTIONS(2492), 1, + [65581] = 2, + ACTIONS(5067), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69918] = 2, - ACTIONS(5027), 1, - anon_sym_COLON_COLON, + [65589] = 2, + ACTIONS(3223), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69926] = 2, - ACTIONS(3735), 1, - anon_sym_SEMI, + [65597] = 2, + ACTIONS(5069), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69934] = 2, - ACTIONS(5029), 1, - anon_sym_COLON, + [65605] = 2, + ACTIONS(3960), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69942] = 2, - ACTIONS(5031), 1, - anon_sym_LPAREN, + [65613] = 2, + ACTIONS(5071), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69950] = 2, - ACTIONS(3857), 1, - sym_identifier, + [65621] = 2, + ACTIONS(2881), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69958] = 2, - ACTIONS(5033), 1, - sym_identifier, + [65629] = 2, + ACTIONS(5073), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69966] = 2, - ACTIONS(3918), 1, - anon_sym_RPAREN, + [65637] = 2, + ACTIONS(5075), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69974] = 2, - ACTIONS(5035), 1, + [65645] = 2, + ACTIONS(4537), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69982] = 2, - ACTIONS(5037), 1, + [65653] = 2, + ACTIONS(5077), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69990] = 2, - ACTIONS(5039), 1, + [65661] = 2, + ACTIONS(5079), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69998] = 2, - ACTIONS(5041), 1, - anon_sym_SEMI, + [65669] = 2, + ACTIONS(5081), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70006] = 2, - ACTIONS(4595), 1, - anon_sym_RBRACE, + [65677] = 2, + ACTIONS(5083), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70014] = 2, - ACTIONS(5043), 1, + [65685] = 2, + ACTIONS(5085), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65693] = 2, + ACTIONS(5087), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70022] = 2, - ACTIONS(3785), 1, + [65701] = 2, + ACTIONS(4557), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65709] = 2, + ACTIONS(3811), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70030] = 2, - ACTIONS(5045), 1, + [65717] = 2, + ACTIONS(5089), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70038] = 2, - ACTIONS(2121), 1, - anon_sym_EQ_GT, + [65725] = 2, + ACTIONS(4843), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70046] = 2, - ACTIONS(3829), 1, + [65733] = 2, + ACTIONS(3845), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70054] = 2, - ACTIONS(5047), 1, + [65741] = 2, + ACTIONS(5091), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70062] = 2, - ACTIONS(5049), 1, - anon_sym_SEMI, + [65749] = 2, + ACTIONS(5093), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70070] = 2, - ACTIONS(3773), 1, + [65757] = 2, + ACTIONS(3825), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70078] = 2, - ACTIONS(5051), 1, + [65765] = 2, + ACTIONS(5095), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70086] = 2, - ACTIONS(5053), 1, + [65773] = 2, + ACTIONS(5097), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70094] = 2, - ACTIONS(5055), 1, - anon_sym_SEMI, + [65781] = 2, + ACTIONS(5099), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70102] = 2, - ACTIONS(4583), 1, - anon_sym_RBRACE, + [65789] = 2, + ACTIONS(5101), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70110] = 2, - ACTIONS(5057), 1, + [65797] = 2, + ACTIONS(5103), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70118] = 2, - ACTIONS(5059), 1, + [65805] = 2, + ACTIONS(5105), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70126] = 2, - ACTIONS(5061), 1, + [65813] = 2, + ACTIONS(5107), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70134] = 2, - ACTIONS(5063), 1, + [65821] = 2, + ACTIONS(5109), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70142] = 2, - ACTIONS(5065), 1, + [65829] = 2, + ACTIONS(5111), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70150] = 2, - ACTIONS(3910), 1, - anon_sym_RPAREN, + [65837] = 2, + ACTIONS(5113), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70158] = 2, - ACTIONS(4005), 1, - anon_sym_RBRACK, + [65845] = 2, + ACTIONS(3729), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70166] = 2, - ACTIONS(5067), 1, - anon_sym_SEMI, + [65853] = 2, + ACTIONS(2917), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70174] = 2, - ACTIONS(5069), 1, + [65861] = 2, + ACTIONS(5115), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70182] = 2, - ACTIONS(5071), 1, + [65869] = 2, + ACTIONS(5117), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70190] = 2, - ACTIONS(5073), 1, + [65877] = 2, + ACTIONS(5119), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70198] = 2, - ACTIONS(5075), 1, - anon_sym_COLON, + [65885] = 2, + ACTIONS(5121), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70206] = 2, - ACTIONS(5077), 1, - sym_identifier, + [65893] = 2, + ACTIONS(3741), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70214] = 2, - ACTIONS(5079), 1, + [65901] = 2, + ACTIONS(4613), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70222] = 2, - ACTIONS(5081), 1, - anon_sym_RBRACK, + [65909] = 2, + ACTIONS(5123), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70230] = 2, - ACTIONS(5083), 1, - sym_identifier, + [65917] = 2, + ACTIONS(5125), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70238] = 2, - ACTIONS(2855), 1, - anon_sym_RPAREN, + [65925] = 2, + ACTIONS(5127), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70246] = 2, - ACTIONS(5085), 1, + [65933] = 2, + ACTIONS(5129), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70254] = 2, - ACTIONS(5087), 1, + [65941] = 2, + ACTIONS(5131), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70262] = 2, - ACTIONS(4691), 1, - anon_sym_SEMI, + [65949] = 2, + ACTIONS(3930), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70270] = 2, - ACTIONS(5089), 1, - sym_identifier, + [65957] = 2, + ACTIONS(5133), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70278] = 2, - ACTIONS(4419), 1, - sym_identifier, + [65965] = 2, + ACTIONS(5135), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70286] = 2, - ACTIONS(3288), 1, - anon_sym_COLON_COLON, + [65973] = 2, + ACTIONS(5137), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70294] = 2, - ACTIONS(5091), 1, + [65981] = 2, + ACTIONS(5139), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70302] = 2, - ACTIONS(3691), 1, - anon_sym_COLON, + [65989] = 2, + ACTIONS(5141), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70310] = 2, - ACTIONS(5093), 1, - anon_sym_COLON, + [65997] = 2, + ACTIONS(5143), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70318] = 2, - ACTIONS(5095), 1, + [66005] = 2, + ACTIONS(5145), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70326] = 2, - ACTIONS(5097), 1, + [66013] = 2, + ACTIONS(5147), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70334] = 2, - ACTIONS(5099), 1, - anon_sym_EQ_GT, + [66021] = 2, + ACTIONS(4221), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70342] = 2, - ACTIONS(4054), 1, + [66029] = 2, + ACTIONS(2993), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70350] = 2, - ACTIONS(5101), 1, + [66037] = 2, + ACTIONS(5149), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70358] = 2, - ACTIONS(5103), 1, - sym_identifier, + [66045] = 2, + ACTIONS(5151), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70366] = 2, - ACTIONS(5105), 1, + [66053] = 2, + ACTIONS(5153), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70374] = 2, - ACTIONS(5107), 1, - anon_sym_RBRACE, + [66061] = 2, + ACTIONS(5155), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70382] = 2, - ACTIONS(5109), 1, + [66069] = 2, + ACTIONS(5157), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70390] = 2, - ACTIONS(5111), 1, + [66077] = 2, + ACTIONS(5159), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70398] = 2, - ACTIONS(5113), 1, - anon_sym_LBRACK, + [66085] = 2, + ACTIONS(5161), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70406] = 2, - ACTIONS(5115), 1, - sym_identifier, + [66093] = 2, + ACTIONS(2203), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70414] = 2, - ACTIONS(3966), 1, - anon_sym_RPAREN, + [66101] = 2, + ACTIONS(5163), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70422] = 2, - ACTIONS(5117), 1, - anon_sym_RBRACE, + [66109] = 2, + ACTIONS(4741), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70430] = 2, - ACTIONS(5119), 1, - anon_sym_COLON, + [66117] = 2, + ACTIONS(5165), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70438] = 2, - ACTIONS(5121), 1, + [66125] = 2, + ACTIONS(5167), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70446] = 2, - ACTIONS(612), 1, - anon_sym_RBRACK, + [66133] = 2, + ACTIONS(5169), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70454] = 2, - ACTIONS(3189), 1, + [66141] = 2, + ACTIONS(3199), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70462] = 2, - ACTIONS(4693), 1, - anon_sym_SEMI, + [66149] = 2, + ACTIONS(5171), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70470] = 2, - ACTIONS(5123), 1, - anon_sym_SEMI, + [66157] = 2, + ACTIONS(5173), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70478] = 2, - ACTIONS(5125), 1, + [66165] = 2, + ACTIONS(5175), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70486] = 2, - ACTIONS(5127), 1, - anon_sym_COLON_COLON, + [66173] = 2, + ACTIONS(4684), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70494] = 2, - ACTIONS(4653), 1, - anon_sym_RBRACE, + [66181] = 2, + ACTIONS(5177), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70502] = 2, - ACTIONS(5129), 1, - anon_sym_RPAREN, + [66189] = 2, + ACTIONS(5179), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70510] = 2, - ACTIONS(5131), 1, + [66197] = 2, + ACTIONS(5181), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70518] = 2, - ACTIONS(5133), 1, + [66205] = 2, + ACTIONS(5183), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70526] = 2, - ACTIONS(5135), 1, + [66213] = 2, + ACTIONS(5185), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70534] = 2, - ACTIONS(5137), 1, - anon_sym_SEMI, + [66221] = 2, + ACTIONS(5187), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70542] = 2, - ACTIONS(5139), 1, + [66229] = 2, + ACTIONS(5189), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70550] = 2, - ACTIONS(5141), 1, + [66237] = 2, + ACTIONS(5191), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70558] = 2, - ACTIONS(5143), 1, - sym_identifier, + [66245] = 2, + ACTIONS(4733), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70566] = 2, - ACTIONS(5145), 1, + [66253] = 2, + ACTIONS(5193), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70574] = 2, - ACTIONS(5147), 1, - anon_sym_SEMI, + [66261] = 2, + ACTIONS(5195), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70582] = 2, - ACTIONS(5149), 1, - sym_identifier, + [66269] = 2, + ACTIONS(5197), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70590] = 2, - ACTIONS(5151), 1, - anon_sym_RBRACK, + [66277] = 2, + ACTIONS(3946), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70598] = 2, - ACTIONS(5153), 1, + [66285] = 2, + ACTIONS(5199), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -118405,1878 +118674,1852 @@ static uint16_t ts_small_parse_table[] = { }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(546)] = 0, - [SMALL_STATE(547)] = 121, - [SMALL_STATE(548)] = 248, - [SMALL_STATE(549)] = 369, - [SMALL_STATE(550)] = 496, - [SMALL_STATE(551)] = 617, - [SMALL_STATE(552)] = 738, - [SMALL_STATE(553)] = 859, - [SMALL_STATE(554)] = 980, - [SMALL_STATE(555)] = 1107, - [SMALL_STATE(556)] = 1228, - [SMALL_STATE(557)] = 1349, - [SMALL_STATE(558)] = 1476, - [SMALL_STATE(559)] = 1597, - [SMALL_STATE(560)] = 1724, - [SMALL_STATE(561)] = 1851, - [SMALL_STATE(562)] = 1978, - [SMALL_STATE(563)] = 2099, - [SMALL_STATE(564)] = 2220, - [SMALL_STATE(565)] = 2341, - [SMALL_STATE(566)] = 2462, - [SMALL_STATE(567)] = 2589, - [SMALL_STATE(568)] = 2710, - [SMALL_STATE(569)] = 2831, - [SMALL_STATE(570)] = 2958, - [SMALL_STATE(571)] = 3079, - [SMALL_STATE(572)] = 3200, - [SMALL_STATE(573)] = 3327, - [SMALL_STATE(574)] = 3454, - [SMALL_STATE(575)] = 3581, - [SMALL_STATE(576)] = 3702, - [SMALL_STATE(577)] = 3829, - [SMALL_STATE(578)] = 3956, - [SMALL_STATE(579)] = 4077, - [SMALL_STATE(580)] = 4198, - [SMALL_STATE(581)] = 4319, - [SMALL_STATE(582)] = 4440, - [SMALL_STATE(583)] = 4561, - [SMALL_STATE(584)] = 4682, - [SMALL_STATE(585)] = 4803, - [SMALL_STATE(586)] = 4924, - [SMALL_STATE(587)] = 5045, - [SMALL_STATE(588)] = 5166, - [SMALL_STATE(589)] = 5287, - [SMALL_STATE(590)] = 5411, - [SMALL_STATE(591)] = 5535, - [SMALL_STATE(592)] = 5605, - [SMALL_STATE(593)] = 5729, - [SMALL_STATE(594)] = 5853, - [SMALL_STATE(595)] = 5977, - [SMALL_STATE(596)] = 6101, - [SMALL_STATE(597)] = 6225, - [SMALL_STATE(598)] = 6349, - [SMALL_STATE(599)] = 6473, - [SMALL_STATE(600)] = 6597, - [SMALL_STATE(601)] = 6721, - [SMALL_STATE(602)] = 6845, - [SMALL_STATE(603)] = 6969, - [SMALL_STATE(604)] = 7093, - [SMALL_STATE(605)] = 7217, - [SMALL_STATE(606)] = 7341, - [SMALL_STATE(607)] = 7465, - [SMALL_STATE(608)] = 7589, - [SMALL_STATE(609)] = 7713, - [SMALL_STATE(610)] = 7837, - [SMALL_STATE(611)] = 7961, - [SMALL_STATE(612)] = 8085, - [SMALL_STATE(613)] = 8209, - [SMALL_STATE(614)] = 8333, - [SMALL_STATE(615)] = 8457, - [SMALL_STATE(616)] = 8581, - [SMALL_STATE(617)] = 8705, - [SMALL_STATE(618)] = 8829, - [SMALL_STATE(619)] = 8953, - [SMALL_STATE(620)] = 9077, - [SMALL_STATE(621)] = 9201, - [SMALL_STATE(622)] = 9325, - [SMALL_STATE(623)] = 9449, - [SMALL_STATE(624)] = 9573, - [SMALL_STATE(625)] = 9697, - [SMALL_STATE(626)] = 9821, - [SMALL_STATE(627)] = 9945, - [SMALL_STATE(628)] = 10069, - [SMALL_STATE(629)] = 10193, - [SMALL_STATE(630)] = 10317, - [SMALL_STATE(631)] = 10441, - [SMALL_STATE(632)] = 10565, - [SMALL_STATE(633)] = 10689, - [SMALL_STATE(634)] = 10813, - [SMALL_STATE(635)] = 10937, - [SMALL_STATE(636)] = 11061, - [SMALL_STATE(637)] = 11185, - [SMALL_STATE(638)] = 11309, - [SMALL_STATE(639)] = 11433, - [SMALL_STATE(640)] = 11557, - [SMALL_STATE(641)] = 11681, - [SMALL_STATE(642)] = 11805, - [SMALL_STATE(643)] = 11929, - [SMALL_STATE(644)] = 12053, - [SMALL_STATE(645)] = 12177, - [SMALL_STATE(646)] = 12301, - [SMALL_STATE(647)] = 12425, - [SMALL_STATE(648)] = 12549, - [SMALL_STATE(649)] = 12673, - [SMALL_STATE(650)] = 12797, - [SMALL_STATE(651)] = 12921, - [SMALL_STATE(652)] = 13045, - [SMALL_STATE(653)] = 13169, - [SMALL_STATE(654)] = 13293, - [SMALL_STATE(655)] = 13417, - [SMALL_STATE(656)] = 13541, - [SMALL_STATE(657)] = 13665, - [SMALL_STATE(658)] = 13791, - [SMALL_STATE(659)] = 13915, - [SMALL_STATE(660)] = 14039, - [SMALL_STATE(661)] = 14163, - [SMALL_STATE(662)] = 14287, - [SMALL_STATE(663)] = 14411, - [SMALL_STATE(664)] = 14535, - [SMALL_STATE(665)] = 14659, - [SMALL_STATE(666)] = 14783, - [SMALL_STATE(667)] = 14907, - [SMALL_STATE(668)] = 15031, - [SMALL_STATE(669)] = 15155, - [SMALL_STATE(670)] = 15279, - [SMALL_STATE(671)] = 15403, - [SMALL_STATE(672)] = 15527, - [SMALL_STATE(673)] = 15651, - [SMALL_STATE(674)] = 15775, - [SMALL_STATE(675)] = 15899, - [SMALL_STATE(676)] = 16023, - [SMALL_STATE(677)] = 16147, - [SMALL_STATE(678)] = 16271, - [SMALL_STATE(679)] = 16395, - [SMALL_STATE(680)] = 16519, - [SMALL_STATE(681)] = 16643, - [SMALL_STATE(682)] = 16767, - [SMALL_STATE(683)] = 16891, - [SMALL_STATE(684)] = 17015, - [SMALL_STATE(685)] = 17139, - [SMALL_STATE(686)] = 17263, - [SMALL_STATE(687)] = 17387, - [SMALL_STATE(688)] = 17511, - [SMALL_STATE(689)] = 17635, - [SMALL_STATE(690)] = 17759, - [SMALL_STATE(691)] = 17883, - [SMALL_STATE(692)] = 18007, - [SMALL_STATE(693)] = 18131, - [SMALL_STATE(694)] = 18255, - [SMALL_STATE(695)] = 18379, - [SMALL_STATE(696)] = 18503, - [SMALL_STATE(697)] = 18627, - [SMALL_STATE(698)] = 18751, - [SMALL_STATE(699)] = 18816, - [SMALL_STATE(700)] = 18881, - [SMALL_STATE(701)] = 18946, - [SMALL_STATE(702)] = 19011, - [SMALL_STATE(703)] = 19073, - [SMALL_STATE(704)] = 19143, - [SMALL_STATE(705)] = 19210, - [SMALL_STATE(706)] = 19277, - [SMALL_STATE(707)] = 19337, - [SMALL_STATE(708)] = 19401, - [SMALL_STATE(709)] = 19465, - [SMALL_STATE(710)] = 19529, - [SMALL_STATE(711)] = 19589, - [SMALL_STATE(712)] = 19649, - [SMALL_STATE(713)] = 19713, - [SMALL_STATE(714)] = 19769, - [SMALL_STATE(715)] = 19829, - [SMALL_STATE(716)] = 19885, - [SMALL_STATE(717)] = 19941, - [SMALL_STATE(718)] = 19997, - [SMALL_STATE(719)] = 20053, - [SMALL_STATE(720)] = 20110, - [SMALL_STATE(721)] = 20169, - [SMALL_STATE(722)] = 20226, - [SMALL_STATE(723)] = 20283, - [SMALL_STATE(724)] = 20338, - [SMALL_STATE(725)] = 20397, - [SMALL_STATE(726)] = 20454, - [SMALL_STATE(727)] = 20513, - [SMALL_STATE(728)] = 20567, - [SMALL_STATE(729)] = 20623, - [SMALL_STATE(730)] = 20677, - [SMALL_STATE(731)] = 20731, - [SMALL_STATE(732)] = 20787, - [SMALL_STATE(733)] = 20841, - [SMALL_STATE(734)] = 20897, - [SMALL_STATE(735)] = 20951, - [SMALL_STATE(736)] = 21005, - [SMALL_STATE(737)] = 21059, - [SMALL_STATE(738)] = 21113, - [SMALL_STATE(739)] = 21167, - [SMALL_STATE(740)] = 21221, - [SMALL_STATE(741)] = 21275, - [SMALL_STATE(742)] = 21329, - [SMALL_STATE(743)] = 21383, - [SMALL_STATE(744)] = 21437, - [SMALL_STATE(745)] = 21491, - [SMALL_STATE(746)] = 21545, - [SMALL_STATE(747)] = 21599, - [SMALL_STATE(748)] = 21653, - [SMALL_STATE(749)] = 21707, - [SMALL_STATE(750)] = 21761, - [SMALL_STATE(751)] = 21815, - [SMALL_STATE(752)] = 21869, - [SMALL_STATE(753)] = 21923, - [SMALL_STATE(754)] = 21977, - [SMALL_STATE(755)] = 22031, - [SMALL_STATE(756)] = 22085, - [SMALL_STATE(757)] = 22139, - [SMALL_STATE(758)] = 22193, - [SMALL_STATE(759)] = 22247, - [SMALL_STATE(760)] = 22301, - [SMALL_STATE(761)] = 22355, - [SMALL_STATE(762)] = 22409, - [SMALL_STATE(763)] = 22463, - [SMALL_STATE(764)] = 22517, - [SMALL_STATE(765)] = 22573, - [SMALL_STATE(766)] = 22627, - [SMALL_STATE(767)] = 22681, - [SMALL_STATE(768)] = 22735, - [SMALL_STATE(769)] = 22789, - [SMALL_STATE(770)] = 22843, - [SMALL_STATE(771)] = 22897, - [SMALL_STATE(772)] = 22951, - [SMALL_STATE(773)] = 23005, - [SMALL_STATE(774)] = 23059, - [SMALL_STATE(775)] = 23115, - [SMALL_STATE(776)] = 23169, - [SMALL_STATE(777)] = 23223, - [SMALL_STATE(778)] = 23277, - [SMALL_STATE(779)] = 23331, - [SMALL_STATE(780)] = 23385, - [SMALL_STATE(781)] = 23439, - [SMALL_STATE(782)] = 23493, - [SMALL_STATE(783)] = 23547, - [SMALL_STATE(784)] = 23601, - [SMALL_STATE(785)] = 23655, - [SMALL_STATE(786)] = 23709, - [SMALL_STATE(787)] = 23763, - [SMALL_STATE(788)] = 23817, - [SMALL_STATE(789)] = 23871, - [SMALL_STATE(790)] = 23925, - [SMALL_STATE(791)] = 23979, - [SMALL_STATE(792)] = 24033, - [SMALL_STATE(793)] = 24087, - [SMALL_STATE(794)] = 24141, - [SMALL_STATE(795)] = 24197, - [SMALL_STATE(796)] = 24251, - [SMALL_STATE(797)] = 24305, - [SMALL_STATE(798)] = 24359, - [SMALL_STATE(799)] = 24413, - [SMALL_STATE(800)] = 24467, - [SMALL_STATE(801)] = 24521, - [SMALL_STATE(802)] = 24575, - [SMALL_STATE(803)] = 24629, - [SMALL_STATE(804)] = 24683, - [SMALL_STATE(805)] = 24737, - [SMALL_STATE(806)] = 24791, - [SMALL_STATE(807)] = 24845, - [SMALL_STATE(808)] = 24899, - [SMALL_STATE(809)] = 24953, - [SMALL_STATE(810)] = 25007, - [SMALL_STATE(811)] = 25061, - [SMALL_STATE(812)] = 25115, - [SMALL_STATE(813)] = 25169, - [SMALL_STATE(814)] = 25223, - [SMALL_STATE(815)] = 25277, - [SMALL_STATE(816)] = 25331, - [SMALL_STATE(817)] = 25385, - [SMALL_STATE(818)] = 25439, - [SMALL_STATE(819)] = 25493, - [SMALL_STATE(820)] = 25549, - [SMALL_STATE(821)] = 25603, - [SMALL_STATE(822)] = 25659, - [SMALL_STATE(823)] = 25713, - [SMALL_STATE(824)] = 25767, - [SMALL_STATE(825)] = 25825, - [SMALL_STATE(826)] = 25881, - [SMALL_STATE(827)] = 25937, - [SMALL_STATE(828)] = 25991, - [SMALL_STATE(829)] = 26045, - [SMALL_STATE(830)] = 26101, - [SMALL_STATE(831)] = 26155, - [SMALL_STATE(832)] = 26209, - [SMALL_STATE(833)] = 26263, - [SMALL_STATE(834)] = 26317, - [SMALL_STATE(835)] = 26371, - [SMALL_STATE(836)] = 26425, - [SMALL_STATE(837)] = 26479, - [SMALL_STATE(838)] = 26533, - [SMALL_STATE(839)] = 26587, - [SMALL_STATE(840)] = 26643, - [SMALL_STATE(841)] = 26697, - [SMALL_STATE(842)] = 26751, - [SMALL_STATE(843)] = 26805, - [SMALL_STATE(844)] = 26859, - [SMALL_STATE(845)] = 26913, - [SMALL_STATE(846)] = 26969, - [SMALL_STATE(847)] = 27025, - [SMALL_STATE(848)] = 27079, - [SMALL_STATE(849)] = 27133, - [SMALL_STATE(850)] = 27187, - [SMALL_STATE(851)] = 27241, - [SMALL_STATE(852)] = 27295, - [SMALL_STATE(853)] = 27349, - [SMALL_STATE(854)] = 27403, - [SMALL_STATE(855)] = 27457, - [SMALL_STATE(856)] = 27511, - [SMALL_STATE(857)] = 27565, - [SMALL_STATE(858)] = 27619, - [SMALL_STATE(859)] = 27673, - [SMALL_STATE(860)] = 27727, - [SMALL_STATE(861)] = 27781, - [SMALL_STATE(862)] = 27835, - [SMALL_STATE(863)] = 27889, - [SMALL_STATE(864)] = 27943, - [SMALL_STATE(865)] = 27997, - [SMALL_STATE(866)] = 28051, - [SMALL_STATE(867)] = 28105, - [SMALL_STATE(868)] = 28159, - [SMALL_STATE(869)] = 28213, - [SMALL_STATE(870)] = 28267, - [SMALL_STATE(871)] = 28321, - [SMALL_STATE(872)] = 28375, - [SMALL_STATE(873)] = 28429, - [SMALL_STATE(874)] = 28483, - [SMALL_STATE(875)] = 28537, - [SMALL_STATE(876)] = 28591, - [SMALL_STATE(877)] = 28645, - [SMALL_STATE(878)] = 28699, - [SMALL_STATE(879)] = 28753, - [SMALL_STATE(880)] = 28807, - [SMALL_STATE(881)] = 28861, - [SMALL_STATE(882)] = 28915, - [SMALL_STATE(883)] = 28969, - [SMALL_STATE(884)] = 29023, - [SMALL_STATE(885)] = 29077, - [SMALL_STATE(886)] = 29131, - [SMALL_STATE(887)] = 29185, - [SMALL_STATE(888)] = 29239, - [SMALL_STATE(889)] = 29295, - [SMALL_STATE(890)] = 29349, - [SMALL_STATE(891)] = 29403, - [SMALL_STATE(892)] = 29457, - [SMALL_STATE(893)] = 29511, - [SMALL_STATE(894)] = 29565, - [SMALL_STATE(895)] = 29621, - [SMALL_STATE(896)] = 29675, - [SMALL_STATE(897)] = 29729, - [SMALL_STATE(898)] = 29783, - [SMALL_STATE(899)] = 29837, - [SMALL_STATE(900)] = 29891, - [SMALL_STATE(901)] = 29945, - [SMALL_STATE(902)] = 29999, - [SMALL_STATE(903)] = 30053, - [SMALL_STATE(904)] = 30107, - [SMALL_STATE(905)] = 30163, - [SMALL_STATE(906)] = 30217, - [SMALL_STATE(907)] = 30271, - [SMALL_STATE(908)] = 30325, - [SMALL_STATE(909)] = 30379, - [SMALL_STATE(910)] = 30433, - [SMALL_STATE(911)] = 30487, - [SMALL_STATE(912)] = 30541, - [SMALL_STATE(913)] = 30595, - [SMALL_STATE(914)] = 30649, - [SMALL_STATE(915)] = 30703, - [SMALL_STATE(916)] = 30757, - [SMALL_STATE(917)] = 30811, - [SMALL_STATE(918)] = 30865, - [SMALL_STATE(919)] = 30919, - [SMALL_STATE(920)] = 30973, - [SMALL_STATE(921)] = 31027, - [SMALL_STATE(922)] = 31081, - [SMALL_STATE(923)] = 31135, - [SMALL_STATE(924)] = 31189, - [SMALL_STATE(925)] = 31243, - [SMALL_STATE(926)] = 31297, - [SMALL_STATE(927)] = 31351, - [SMALL_STATE(928)] = 31405, - [SMALL_STATE(929)] = 31459, - [SMALL_STATE(930)] = 31513, - [SMALL_STATE(931)] = 31567, - [SMALL_STATE(932)] = 31621, - [SMALL_STATE(933)] = 31675, - [SMALL_STATE(934)] = 31729, - [SMALL_STATE(935)] = 31783, - [SMALL_STATE(936)] = 31837, - [SMALL_STATE(937)] = 31891, - [SMALL_STATE(938)] = 31945, - [SMALL_STATE(939)] = 31999, - [SMALL_STATE(940)] = 32053, - [SMALL_STATE(941)] = 32107, - [SMALL_STATE(942)] = 32161, - [SMALL_STATE(943)] = 32215, - [SMALL_STATE(944)] = 32269, - [SMALL_STATE(945)] = 32323, - [SMALL_STATE(946)] = 32377, - [SMALL_STATE(947)] = 32431, - [SMALL_STATE(948)] = 32485, - [SMALL_STATE(949)] = 32539, - [SMALL_STATE(950)] = 32593, - [SMALL_STATE(951)] = 32647, - [SMALL_STATE(952)] = 32701, - [SMALL_STATE(953)] = 32755, - [SMALL_STATE(954)] = 32809, - [SMALL_STATE(955)] = 32862, - [SMALL_STATE(956)] = 32915, - [SMALL_STATE(957)] = 32968, - [SMALL_STATE(958)] = 33021, - [SMALL_STATE(959)] = 33074, - [SMALL_STATE(960)] = 33129, - [SMALL_STATE(961)] = 33182, - [SMALL_STATE(962)] = 33235, - [SMALL_STATE(963)] = 33288, - [SMALL_STATE(964)] = 33341, - [SMALL_STATE(965)] = 33394, - [SMALL_STATE(966)] = 33447, - [SMALL_STATE(967)] = 33500, - [SMALL_STATE(968)] = 33585, - [SMALL_STATE(969)] = 33638, - [SMALL_STATE(970)] = 33691, - [SMALL_STATE(971)] = 33744, - [SMALL_STATE(972)] = 33797, - [SMALL_STATE(973)] = 33850, - [SMALL_STATE(974)] = 33903, - [SMALL_STATE(975)] = 33956, - [SMALL_STATE(976)] = 34009, - [SMALL_STATE(977)] = 34062, - [SMALL_STATE(978)] = 34115, - [SMALL_STATE(979)] = 34168, - [SMALL_STATE(980)] = 34221, - [SMALL_STATE(981)] = 34274, - [SMALL_STATE(982)] = 34327, - [SMALL_STATE(983)] = 34380, - [SMALL_STATE(984)] = 34433, - [SMALL_STATE(985)] = 34486, - [SMALL_STATE(986)] = 34539, - [SMALL_STATE(987)] = 34592, - [SMALL_STATE(988)] = 34645, - [SMALL_STATE(989)] = 34698, - [SMALL_STATE(990)] = 34751, - [SMALL_STATE(991)] = 34804, - [SMALL_STATE(992)] = 34857, - [SMALL_STATE(993)] = 34910, - [SMALL_STATE(994)] = 34963, - [SMALL_STATE(995)] = 35016, - [SMALL_STATE(996)] = 35069, - [SMALL_STATE(997)] = 35122, - [SMALL_STATE(998)] = 35175, - [SMALL_STATE(999)] = 35260, - [SMALL_STATE(1000)] = 35313, - [SMALL_STATE(1001)] = 35366, - [SMALL_STATE(1002)] = 35419, - [SMALL_STATE(1003)] = 35472, - [SMALL_STATE(1004)] = 35525, - [SMALL_STATE(1005)] = 35578, - [SMALL_STATE(1006)] = 35631, - [SMALL_STATE(1007)] = 35684, - [SMALL_STATE(1008)] = 35737, - [SMALL_STATE(1009)] = 35790, - [SMALL_STATE(1010)] = 35843, - [SMALL_STATE(1011)] = 35898, - [SMALL_STATE(1012)] = 35951, - [SMALL_STATE(1013)] = 36036, - [SMALL_STATE(1014)] = 36089, - [SMALL_STATE(1015)] = 36158, - [SMALL_STATE(1016)] = 36211, - [SMALL_STATE(1017)] = 36276, - [SMALL_STATE(1018)] = 36349, - [SMALL_STATE(1019)] = 36402, - [SMALL_STATE(1020)] = 36455, - [SMALL_STATE(1021)] = 36508, - [SMALL_STATE(1022)] = 36561, - [SMALL_STATE(1023)] = 36614, - [SMALL_STATE(1024)] = 36681, - [SMALL_STATE(1025)] = 36764, - [SMALL_STATE(1026)] = 36855, - [SMALL_STATE(1027)] = 36908, - [SMALL_STATE(1028)] = 36961, - [SMALL_STATE(1029)] = 37014, - [SMALL_STATE(1030)] = 37067, - [SMALL_STATE(1031)] = 37120, - [SMALL_STATE(1032)] = 37211, - [SMALL_STATE(1033)] = 37264, - [SMALL_STATE(1034)] = 37317, - [SMALL_STATE(1035)] = 37382, - [SMALL_STATE(1036)] = 37457, - [SMALL_STATE(1037)] = 37542, - [SMALL_STATE(1038)] = 37595, - [SMALL_STATE(1039)] = 37648, - [SMALL_STATE(1040)] = 37701, - [SMALL_STATE(1041)] = 37754, - [SMALL_STATE(1042)] = 37807, - [SMALL_STATE(1043)] = 37860, - [SMALL_STATE(1044)] = 37913, - [SMALL_STATE(1045)] = 37994, - [SMALL_STATE(1046)] = 38059, - [SMALL_STATE(1047)] = 38112, - [SMALL_STATE(1048)] = 38165, - [SMALL_STATE(1049)] = 38218, - [SMALL_STATE(1050)] = 38271, - [SMALL_STATE(1051)] = 38342, - [SMALL_STATE(1052)] = 38395, - [SMALL_STATE(1053)] = 38448, - [SMALL_STATE(1054)] = 38501, - [SMALL_STATE(1055)] = 38566, - [SMALL_STATE(1056)] = 38619, - [SMALL_STATE(1057)] = 38672, - [SMALL_STATE(1058)] = 38731, - [SMALL_STATE(1059)] = 38784, - [SMALL_STATE(1060)] = 38837, - [SMALL_STATE(1061)] = 38922, - [SMALL_STATE(1062)] = 38975, - [SMALL_STATE(1063)] = 39028, - [SMALL_STATE(1064)] = 39105, - [SMALL_STATE(1065)] = 39157, - [SMALL_STATE(1066)] = 39209, - [SMALL_STATE(1067)] = 39261, - [SMALL_STATE(1068)] = 39313, - [SMALL_STATE(1069)] = 39365, - [SMALL_STATE(1070)] = 39421, - [SMALL_STATE(1071)] = 39481, - [SMALL_STATE(1072)] = 39533, - [SMALL_STATE(1073)] = 39586, - [SMALL_STATE(1074)] = 39671, - [SMALL_STATE(1075)] = 39766, - [SMALL_STATE(1076)] = 39861, - [SMALL_STATE(1077)] = 39946, - [SMALL_STATE(1078)] = 39999, - [SMALL_STATE(1079)] = 40091, - [SMALL_STATE(1080)] = 40175, - [SMALL_STATE(1081)] = 40225, - [SMALL_STATE(1082)] = 40275, - [SMALL_STATE(1083)] = 40329, - [SMALL_STATE(1084)] = 40379, - [SMALL_STATE(1085)] = 40471, - [SMALL_STATE(1086)] = 40555, - [SMALL_STATE(1087)] = 40639, - [SMALL_STATE(1088)] = 40695, - [SMALL_STATE(1089)] = 40745, - [SMALL_STATE(1090)] = 40829, - [SMALL_STATE(1091)] = 40918, - [SMALL_STATE(1092)] = 40967, - [SMALL_STATE(1093)] = 41044, - [SMALL_STATE(1094)] = 41133, - [SMALL_STATE(1095)] = 41220, - [SMALL_STATE(1096)] = 41307, - [SMALL_STATE(1097)] = 41358, - [SMALL_STATE(1098)] = 41439, - [SMALL_STATE(1099)] = 41528, - [SMALL_STATE(1100)] = 41581, - [SMALL_STATE(1101)] = 41662, - [SMALL_STATE(1102)] = 41749, - [SMALL_STATE(1103)] = 41838, - [SMALL_STATE(1104)] = 41925, - [SMALL_STATE(1105)] = 42014, - [SMALL_STATE(1106)] = 42063, - [SMALL_STATE(1107)] = 42150, - [SMALL_STATE(1108)] = 42237, - [SMALL_STATE(1109)] = 42326, - [SMALL_STATE(1110)] = 42415, - [SMALL_STATE(1111)] = 42504, - [SMALL_STATE(1112)] = 42591, - [SMALL_STATE(1113)] = 42680, - [SMALL_STATE(1114)] = 42769, - [SMALL_STATE(1115)] = 42858, - [SMALL_STATE(1116)] = 42907, - [SMALL_STATE(1117)] = 42994, - [SMALL_STATE(1118)] = 43083, - [SMALL_STATE(1119)] = 43172, - [SMALL_STATE(1120)] = 43261, - [SMALL_STATE(1121)] = 43350, - [SMALL_STATE(1122)] = 43439, - [SMALL_STATE(1123)] = 43528, - [SMALL_STATE(1124)] = 43617, - [SMALL_STATE(1125)] = 43706, - [SMALL_STATE(1126)] = 43795, - [SMALL_STATE(1127)] = 43884, - [SMALL_STATE(1128)] = 43973, - [SMALL_STATE(1129)] = 44062, - [SMALL_STATE(1130)] = 44151, - [SMALL_STATE(1131)] = 44240, - [SMALL_STATE(1132)] = 44329, - [SMALL_STATE(1133)] = 44418, - [SMALL_STATE(1134)] = 44507, - [SMALL_STATE(1135)] = 44596, - [SMALL_STATE(1136)] = 44685, - [SMALL_STATE(1137)] = 44734, - [SMALL_STATE(1138)] = 44823, - [SMALL_STATE(1139)] = 44912, - [SMALL_STATE(1140)] = 45001, - [SMALL_STATE(1141)] = 45090, - [SMALL_STATE(1142)] = 45179, - [SMALL_STATE(1143)] = 45266, - [SMALL_STATE(1144)] = 45355, - [SMALL_STATE(1145)] = 45444, - [SMALL_STATE(1146)] = 45533, - [SMALL_STATE(1147)] = 45622, - [SMALL_STATE(1148)] = 45711, - [SMALL_STATE(1149)] = 45800, - [SMALL_STATE(1150)] = 45889, - [SMALL_STATE(1151)] = 45978, - [SMALL_STATE(1152)] = 46065, - [SMALL_STATE(1153)] = 46154, - [SMALL_STATE(1154)] = 46243, - [SMALL_STATE(1155)] = 46329, - [SMALL_STATE(1156)] = 46379, - [SMALL_STATE(1157)] = 46465, - [SMALL_STATE(1158)] = 46551, - [SMALL_STATE(1159)] = 46637, - [SMALL_STATE(1160)] = 46723, - [SMALL_STATE(1161)] = 46809, - [SMALL_STATE(1162)] = 46895, - [SMALL_STATE(1163)] = 46981, - [SMALL_STATE(1164)] = 47067, - [SMALL_STATE(1165)] = 47153, - [SMALL_STATE(1166)] = 47239, - [SMALL_STATE(1167)] = 47289, - [SMALL_STATE(1168)] = 47375, - [SMALL_STATE(1169)] = 47455, - [SMALL_STATE(1170)] = 47541, - [SMALL_STATE(1171)] = 47627, - [SMALL_STATE(1172)] = 47701, - [SMALL_STATE(1173)] = 47787, - [SMALL_STATE(1174)] = 47873, - [SMALL_STATE(1175)] = 47959, - [SMALL_STATE(1176)] = 48023, - [SMALL_STATE(1177)] = 48073, - [SMALL_STATE(1178)] = 48159, - [SMALL_STATE(1179)] = 48245, - [SMALL_STATE(1180)] = 48319, - [SMALL_STATE(1181)] = 48399, - [SMALL_STATE(1182)] = 48485, - [SMALL_STATE(1183)] = 48559, - [SMALL_STATE(1184)] = 48607, - [SMALL_STATE(1185)] = 48661, - [SMALL_STATE(1186)] = 48709, - [SMALL_STATE(1187)] = 48769, - [SMALL_STATE(1188)] = 48855, - [SMALL_STATE(1189)] = 48905, - [SMALL_STATE(1190)] = 48991, - [SMALL_STATE(1191)] = 49077, - [SMALL_STATE(1192)] = 49145, - [SMALL_STATE(1193)] = 49225, - [SMALL_STATE(1194)] = 49311, - [SMALL_STATE(1195)] = 49397, - [SMALL_STATE(1196)] = 49467, - [SMALL_STATE(1197)] = 49517, - [SMALL_STATE(1198)] = 49595, - [SMALL_STATE(1199)] = 49643, - [SMALL_STATE(1200)] = 49729, - [SMALL_STATE(1201)] = 49789, - [SMALL_STATE(1202)] = 49869, - [SMALL_STATE(1203)] = 49955, - [SMALL_STATE(1204)] = 50015, - [SMALL_STATE(1205)] = 50065, - [SMALL_STATE(1206)] = 50139, - [SMALL_STATE(1207)] = 50225, - [SMALL_STATE(1208)] = 50273, - [SMALL_STATE(1209)] = 50321, - [SMALL_STATE(1210)] = 50407, - [SMALL_STATE(1211)] = 50493, - [SMALL_STATE(1212)] = 50569, - [SMALL_STATE(1213)] = 50655, - [SMALL_STATE(1214)] = 50717, - [SMALL_STATE(1215)] = 50777, - [SMALL_STATE(1216)] = 50863, - [SMALL_STATE(1217)] = 50943, - [SMALL_STATE(1218)] = 51015, - [SMALL_STATE(1219)] = 51081, - [SMALL_STATE(1220)] = 51167, - [SMALL_STATE(1221)] = 51242, - [SMALL_STATE(1222)] = 51313, - [SMALL_STATE(1223)] = 51388, - [SMALL_STATE(1224)] = 51457, - [SMALL_STATE(1225)] = 51523, - [SMALL_STATE(1226)] = 51589, - [SMALL_STATE(1227)] = 51652, - [SMALL_STATE(1228)] = 51715, - [SMALL_STATE(1229)] = 51778, - [SMALL_STATE(1230)] = 51841, - [SMALL_STATE(1231)] = 51904, - [SMALL_STATE(1232)] = 51943, - [SMALL_STATE(1233)] = 51982, - [SMALL_STATE(1234)] = 52021, - [SMALL_STATE(1235)] = 52074, - [SMALL_STATE(1236)] = 52127, - [SMALL_STATE(1237)] = 52180, - [SMALL_STATE(1238)] = 52233, - [SMALL_STATE(1239)] = 52286, - [SMALL_STATE(1240)] = 52339, - [SMALL_STATE(1241)] = 52392, - [SMALL_STATE(1242)] = 52442, - [SMALL_STATE(1243)] = 52492, - [SMALL_STATE(1244)] = 52522, - [SMALL_STATE(1245)] = 52552, - [SMALL_STATE(1246)] = 52594, - [SMALL_STATE(1247)] = 52634, - [SMALL_STATE(1248)] = 52663, - [SMALL_STATE(1249)] = 52692, - [SMALL_STATE(1250)] = 52721, - [SMALL_STATE(1251)] = 52758, - [SMALL_STATE(1252)] = 52787, - [SMALL_STATE(1253)] = 52816, - [SMALL_STATE(1254)] = 52853, - [SMALL_STATE(1255)] = 52882, - [SMALL_STATE(1256)] = 52911, - [SMALL_STATE(1257)] = 52940, - [SMALL_STATE(1258)] = 52994, - [SMALL_STATE(1259)] = 53026, - [SMALL_STATE(1260)] = 53058, - [SMALL_STATE(1261)] = 53090, - [SMALL_STATE(1262)] = 53144, - [SMALL_STATE(1263)] = 53169, - [SMALL_STATE(1264)] = 53192, - [SMALL_STATE(1265)] = 53214, - [SMALL_STATE(1266)] = 53236, - [SMALL_STATE(1267)] = 53260, - [SMALL_STATE(1268)] = 53304, - [SMALL_STATE(1269)] = 53328, - [SMALL_STATE(1270)] = 53352, - [SMALL_STATE(1271)] = 53396, - [SMALL_STATE(1272)] = 53426, - [SMALL_STATE(1273)] = 53450, - [SMALL_STATE(1274)] = 53474, - [SMALL_STATE(1275)] = 53498, - [SMALL_STATE(1276)] = 53522, - [SMALL_STATE(1277)] = 53568, - [SMALL_STATE(1278)] = 53592, - [SMALL_STATE(1279)] = 53616, - [SMALL_STATE(1280)] = 53638, - [SMALL_STATE(1281)] = 53660, - [SMALL_STATE(1282)] = 53684, - [SMALL_STATE(1283)] = 53709, - [SMALL_STATE(1284)] = 53730, - [SMALL_STATE(1285)] = 53753, - [SMALL_STATE(1286)] = 53776, - [SMALL_STATE(1287)] = 53799, - [SMALL_STATE(1288)] = 53822, - [SMALL_STATE(1289)] = 53847, - [SMALL_STATE(1290)] = 53872, - [SMALL_STATE(1291)] = 53897, - [SMALL_STATE(1292)] = 53918, - [SMALL_STATE(1293)] = 53963, - [SMALL_STATE(1294)] = 53984, - [SMALL_STATE(1295)] = 54007, - [SMALL_STATE(1296)] = 54028, - [SMALL_STATE(1297)] = 54051, - [SMALL_STATE(1298)] = 54076, - [SMALL_STATE(1299)] = 54101, - [SMALL_STATE(1300)] = 54128, - [SMALL_STATE(1301)] = 54151, - [SMALL_STATE(1302)] = 54174, - [SMALL_STATE(1303)] = 54195, - [SMALL_STATE(1304)] = 54215, - [SMALL_STATE(1305)] = 54235, - [SMALL_STATE(1306)] = 54255, - [SMALL_STATE(1307)] = 54275, - [SMALL_STATE(1308)] = 54295, - [SMALL_STATE(1309)] = 54315, - [SMALL_STATE(1310)] = 54337, - [SMALL_STATE(1311)] = 54357, - [SMALL_STATE(1312)] = 54377, - [SMALL_STATE(1313)] = 54397, - [SMALL_STATE(1314)] = 54417, - [SMALL_STATE(1315)] = 54437, - [SMALL_STATE(1316)] = 54457, - [SMALL_STATE(1317)] = 54477, - [SMALL_STATE(1318)] = 54499, - [SMALL_STATE(1319)] = 54519, - [SMALL_STATE(1320)] = 54539, - [SMALL_STATE(1321)] = 54559, - [SMALL_STATE(1322)] = 54579, - [SMALL_STATE(1323)] = 54599, - [SMALL_STATE(1324)] = 54619, - [SMALL_STATE(1325)] = 54639, - [SMALL_STATE(1326)] = 54659, - [SMALL_STATE(1327)] = 54679, - [SMALL_STATE(1328)] = 54703, - [SMALL_STATE(1329)] = 54723, - [SMALL_STATE(1330)] = 54743, - [SMALL_STATE(1331)] = 54765, - [SMALL_STATE(1332)] = 54785, - [SMALL_STATE(1333)] = 54805, - [SMALL_STATE(1334)] = 54840, - [SMALL_STATE(1335)] = 54865, - [SMALL_STATE(1336)] = 54890, - [SMALL_STATE(1337)] = 54913, - [SMALL_STATE(1338)] = 54936, - [SMALL_STATE(1339)] = 54961, - [SMALL_STATE(1340)] = 54984, - [SMALL_STATE(1341)] = 55007, - [SMALL_STATE(1342)] = 55030, - [SMALL_STATE(1343)] = 55053, - [SMALL_STATE(1344)] = 55076, - [SMALL_STATE(1345)] = 55101, - [SMALL_STATE(1346)] = 55124, - [SMALL_STATE(1347)] = 55147, - [SMALL_STATE(1348)] = 55172, - [SMALL_STATE(1349)] = 55197, - [SMALL_STATE(1350)] = 55222, - [SMALL_STATE(1351)] = 55243, - [SMALL_STATE(1352)] = 55268, - [SMALL_STATE(1353)] = 55289, - [SMALL_STATE(1354)] = 55310, - [SMALL_STATE(1355)] = 55333, - [SMALL_STATE(1356)] = 55356, - [SMALL_STATE(1357)] = 55379, - [SMALL_STATE(1358)] = 55399, - [SMALL_STATE(1359)] = 55419, - [SMALL_STATE(1360)] = 55439, - [SMALL_STATE(1361)] = 55463, - [SMALL_STATE(1362)] = 55483, - [SMALL_STATE(1363)] = 55507, - [SMALL_STATE(1364)] = 55527, - [SMALL_STATE(1365)] = 55547, - [SMALL_STATE(1366)] = 55567, - [SMALL_STATE(1367)] = 55587, - [SMALL_STATE(1368)] = 55607, - [SMALL_STATE(1369)] = 55627, - [SMALL_STATE(1370)] = 55647, - [SMALL_STATE(1371)] = 55667, - [SMALL_STATE(1372)] = 55687, - [SMALL_STATE(1373)] = 55707, - [SMALL_STATE(1374)] = 55727, - [SMALL_STATE(1375)] = 55747, - [SMALL_STATE(1376)] = 55767, - [SMALL_STATE(1377)] = 55787, - [SMALL_STATE(1378)] = 55807, - [SMALL_STATE(1379)] = 55827, - [SMALL_STATE(1380)] = 55847, - [SMALL_STATE(1381)] = 55867, - [SMALL_STATE(1382)] = 55891, - [SMALL_STATE(1383)] = 55911, - [SMALL_STATE(1384)] = 55931, - [SMALL_STATE(1385)] = 55951, - [SMALL_STATE(1386)] = 55975, - [SMALL_STATE(1387)] = 55995, - [SMALL_STATE(1388)] = 56015, - [SMALL_STATE(1389)] = 56035, - [SMALL_STATE(1390)] = 56055, - [SMALL_STATE(1391)] = 56075, - [SMALL_STATE(1392)] = 56095, - [SMALL_STATE(1393)] = 56122, - [SMALL_STATE(1394)] = 56153, - [SMALL_STATE(1395)] = 56186, - [SMALL_STATE(1396)] = 56217, - [SMALL_STATE(1397)] = 56248, - [SMALL_STATE(1398)] = 56281, - [SMALL_STATE(1399)] = 56312, - [SMALL_STATE(1400)] = 56337, - [SMALL_STATE(1401)] = 56362, - [SMALL_STATE(1402)] = 56391, - [SMALL_STATE(1403)] = 56422, - [SMALL_STATE(1404)] = 56453, - [SMALL_STATE(1405)] = 56484, - [SMALL_STATE(1406)] = 56515, - [SMALL_STATE(1407)] = 56546, - [SMALL_STATE(1408)] = 56571, - [SMALL_STATE(1409)] = 56604, - [SMALL_STATE(1410)] = 56637, - [SMALL_STATE(1411)] = 56667, - [SMALL_STATE(1412)] = 56693, - [SMALL_STATE(1413)] = 56723, - [SMALL_STATE(1414)] = 56749, - [SMALL_STATE(1415)] = 56779, - [SMALL_STATE(1416)] = 56801, - [SMALL_STATE(1417)] = 56831, - [SMALL_STATE(1418)] = 56861, - [SMALL_STATE(1419)] = 56883, - [SMALL_STATE(1420)] = 56915, - [SMALL_STATE(1421)] = 56941, - [SMALL_STATE(1422)] = 56971, - [SMALL_STATE(1423)] = 57001, - [SMALL_STATE(1424)] = 57031, - [SMALL_STATE(1425)] = 57053, - [SMALL_STATE(1426)] = 57083, - [SMALL_STATE(1427)] = 57113, - [SMALL_STATE(1428)] = 57143, - [SMALL_STATE(1429)] = 57165, - [SMALL_STATE(1430)] = 57195, - [SMALL_STATE(1431)] = 57225, - [SMALL_STATE(1432)] = 57257, - [SMALL_STATE(1433)] = 57287, - [SMALL_STATE(1434)] = 57317, - [SMALL_STATE(1435)] = 57349, - [SMALL_STATE(1436)] = 57379, - [SMALL_STATE(1437)] = 57401, - [SMALL_STATE(1438)] = 57433, - [SMALL_STATE(1439)] = 57455, - [SMALL_STATE(1440)] = 57485, - [SMALL_STATE(1441)] = 57515, - [SMALL_STATE(1442)] = 57545, - [SMALL_STATE(1443)] = 57575, - [SMALL_STATE(1444)] = 57605, - [SMALL_STATE(1445)] = 57628, - [SMALL_STATE(1446)] = 57655, - [SMALL_STATE(1447)] = 57680, - [SMALL_STATE(1448)] = 57705, - [SMALL_STATE(1449)] = 57730, - [SMALL_STATE(1450)] = 57757, - [SMALL_STATE(1451)] = 57772, - [SMALL_STATE(1452)] = 57799, - [SMALL_STATE(1453)] = 57826, - [SMALL_STATE(1454)] = 57851, - [SMALL_STATE(1455)] = 57870, - [SMALL_STATE(1456)] = 57893, - [SMALL_STATE(1457)] = 57912, - [SMALL_STATE(1458)] = 57939, - [SMALL_STATE(1459)] = 57958, - [SMALL_STATE(1460)] = 57985, - [SMALL_STATE(1461)] = 58014, - [SMALL_STATE(1462)] = 58041, - [SMALL_STATE(1463)] = 58068, - [SMALL_STATE(1464)] = 58087, - [SMALL_STATE(1465)] = 58106, - [SMALL_STATE(1466)] = 58135, - [SMALL_STATE(1467)] = 58162, - [SMALL_STATE(1468)] = 58189, - [SMALL_STATE(1469)] = 58208, - [SMALL_STATE(1470)] = 58227, - [SMALL_STATE(1471)] = 58252, - [SMALL_STATE(1472)] = 58275, - [SMALL_STATE(1473)] = 58300, - [SMALL_STATE(1474)] = 58325, - [SMALL_STATE(1475)] = 58352, - [SMALL_STATE(1476)] = 58381, - [SMALL_STATE(1477)] = 58408, - [SMALL_STATE(1478)] = 58435, - [SMALL_STATE(1479)] = 58458, - [SMALL_STATE(1480)] = 58483, - [SMALL_STATE(1481)] = 58510, - [SMALL_STATE(1482)] = 58537, - [SMALL_STATE(1483)] = 58558, - [SMALL_STATE(1484)] = 58587, - [SMALL_STATE(1485)] = 58616, - [SMALL_STATE(1486)] = 58635, - [SMALL_STATE(1487)] = 58660, - [SMALL_STATE(1488)] = 58689, - [SMALL_STATE(1489)] = 58710, - [SMALL_STATE(1490)] = 58733, - [SMALL_STATE(1491)] = 58747, - [SMALL_STATE(1492)] = 58763, - [SMALL_STATE(1493)] = 58777, - [SMALL_STATE(1494)] = 58803, - [SMALL_STATE(1495)] = 58829, - [SMALL_STATE(1496)] = 58855, - [SMALL_STATE(1497)] = 58877, - [SMALL_STATE(1498)] = 58891, - [SMALL_STATE(1499)] = 58915, - [SMALL_STATE(1500)] = 58931, - [SMALL_STATE(1501)] = 58955, - [SMALL_STATE(1502)] = 58969, - [SMALL_STATE(1503)] = 58983, - [SMALL_STATE(1504)] = 59009, - [SMALL_STATE(1505)] = 59033, - [SMALL_STATE(1506)] = 59059, - [SMALL_STATE(1507)] = 59073, - [SMALL_STATE(1508)] = 59089, - [SMALL_STATE(1509)] = 59113, - [SMALL_STATE(1510)] = 59129, - [SMALL_STATE(1511)] = 59155, - [SMALL_STATE(1512)] = 59181, - [SMALL_STATE(1513)] = 59203, - [SMALL_STATE(1514)] = 59219, - [SMALL_STATE(1515)] = 59241, - [SMALL_STATE(1516)] = 59267, - [SMALL_STATE(1517)] = 59289, - [SMALL_STATE(1518)] = 59313, - [SMALL_STATE(1519)] = 59329, - [SMALL_STATE(1520)] = 59355, - [SMALL_STATE(1521)] = 59381, - [SMALL_STATE(1522)] = 59395, - [SMALL_STATE(1523)] = 59421, - [SMALL_STATE(1524)] = 59447, - [SMALL_STATE(1525)] = 59463, - [SMALL_STATE(1526)] = 59485, - [SMALL_STATE(1527)] = 59507, - [SMALL_STATE(1528)] = 59530, - [SMALL_STATE(1529)] = 59553, - [SMALL_STATE(1530)] = 59568, - [SMALL_STATE(1531)] = 59591, - [SMALL_STATE(1532)] = 59614, - [SMALL_STATE(1533)] = 59635, - [SMALL_STATE(1534)] = 59658, - [SMALL_STATE(1535)] = 59673, - [SMALL_STATE(1536)] = 59696, - [SMALL_STATE(1537)] = 59719, - [SMALL_STATE(1538)] = 59736, - [SMALL_STATE(1539)] = 59759, - [SMALL_STATE(1540)] = 59782, - [SMALL_STATE(1541)] = 59805, - [SMALL_STATE(1542)] = 59822, - [SMALL_STATE(1543)] = 59839, - [SMALL_STATE(1544)] = 59860, - [SMALL_STATE(1545)] = 59883, - [SMALL_STATE(1546)] = 59902, - [SMALL_STATE(1547)] = 59925, - [SMALL_STATE(1548)] = 59948, - [SMALL_STATE(1549)] = 59971, - [SMALL_STATE(1550)] = 59994, - [SMALL_STATE(1551)] = 60017, - [SMALL_STATE(1552)] = 60034, - [SMALL_STATE(1553)] = 60057, - [SMALL_STATE(1554)] = 60080, - [SMALL_STATE(1555)] = 60103, - [SMALL_STATE(1556)] = 60126, - [SMALL_STATE(1557)] = 60143, - [SMALL_STATE(1558)] = 60166, - [SMALL_STATE(1559)] = 60189, - [SMALL_STATE(1560)] = 60212, - [SMALL_STATE(1561)] = 60229, - [SMALL_STATE(1562)] = 60248, - [SMALL_STATE(1563)] = 60271, - [SMALL_STATE(1564)] = 60294, - [SMALL_STATE(1565)] = 60317, - [SMALL_STATE(1566)] = 60340, - [SMALL_STATE(1567)] = 60363, - [SMALL_STATE(1568)] = 60386, - [SMALL_STATE(1569)] = 60409, - [SMALL_STATE(1570)] = 60432, - [SMALL_STATE(1571)] = 60455, - [SMALL_STATE(1572)] = 60478, - [SMALL_STATE(1573)] = 60501, - [SMALL_STATE(1574)] = 60524, - [SMALL_STATE(1575)] = 60547, - [SMALL_STATE(1576)] = 60570, - [SMALL_STATE(1577)] = 60593, - [SMALL_STATE(1578)] = 60616, - [SMALL_STATE(1579)] = 60639, - [SMALL_STATE(1580)] = 60658, - [SMALL_STATE(1581)] = 60681, - [SMALL_STATE(1582)] = 60704, - [SMALL_STATE(1583)] = 60727, - [SMALL_STATE(1584)] = 60750, - [SMALL_STATE(1585)] = 60767, - [SMALL_STATE(1586)] = 60790, - [SMALL_STATE(1587)] = 60813, - [SMALL_STATE(1588)] = 60833, - [SMALL_STATE(1589)] = 60853, - [SMALL_STATE(1590)] = 60873, - [SMALL_STATE(1591)] = 60885, - [SMALL_STATE(1592)] = 60897, - [SMALL_STATE(1593)] = 60917, - [SMALL_STATE(1594)] = 60933, - [SMALL_STATE(1595)] = 60953, - [SMALL_STATE(1596)] = 60969, - [SMALL_STATE(1597)] = 60989, - [SMALL_STATE(1598)] = 61007, - [SMALL_STATE(1599)] = 61027, - [SMALL_STATE(1600)] = 61043, - [SMALL_STATE(1601)] = 61059, - [SMALL_STATE(1602)] = 61079, - [SMALL_STATE(1603)] = 61099, - [SMALL_STATE(1604)] = 61119, - [SMALL_STATE(1605)] = 61139, - [SMALL_STATE(1606)] = 61153, - [SMALL_STATE(1607)] = 61165, - [SMALL_STATE(1608)] = 61181, - [SMALL_STATE(1609)] = 61199, - [SMALL_STATE(1610)] = 61211, - [SMALL_STATE(1611)] = 61227, - [SMALL_STATE(1612)] = 61247, - [SMALL_STATE(1613)] = 61259, - [SMALL_STATE(1614)] = 61279, - [SMALL_STATE(1615)] = 61299, - [SMALL_STATE(1616)] = 61319, - [SMALL_STATE(1617)] = 61331, - [SMALL_STATE(1618)] = 61351, - [SMALL_STATE(1619)] = 61367, - [SMALL_STATE(1620)] = 61387, - [SMALL_STATE(1621)] = 61407, - [SMALL_STATE(1622)] = 61419, - [SMALL_STATE(1623)] = 61439, - [SMALL_STATE(1624)] = 61455, - [SMALL_STATE(1625)] = 61473, - [SMALL_STATE(1626)] = 61491, - [SMALL_STATE(1627)] = 61507, - [SMALL_STATE(1628)] = 61527, - [SMALL_STATE(1629)] = 61543, - [SMALL_STATE(1630)] = 61563, - [SMALL_STATE(1631)] = 61583, - [SMALL_STATE(1632)] = 61603, - [SMALL_STATE(1633)] = 61623, - [SMALL_STATE(1634)] = 61643, - [SMALL_STATE(1635)] = 61659, - [SMALL_STATE(1636)] = 61671, - [SMALL_STATE(1637)] = 61683, - [SMALL_STATE(1638)] = 61699, - [SMALL_STATE(1639)] = 61719, - [SMALL_STATE(1640)] = 61739, - [SMALL_STATE(1641)] = 61759, - [SMALL_STATE(1642)] = 61771, - [SMALL_STATE(1643)] = 61787, - [SMALL_STATE(1644)] = 61805, - [SMALL_STATE(1645)] = 61821, - [SMALL_STATE(1646)] = 61837, - [SMALL_STATE(1647)] = 61853, - [SMALL_STATE(1648)] = 61865, - [SMALL_STATE(1649)] = 61881, - [SMALL_STATE(1650)] = 61897, - [SMALL_STATE(1651)] = 61915, - [SMALL_STATE(1652)] = 61931, - [SMALL_STATE(1653)] = 61947, - [SMALL_STATE(1654)] = 61959, - [SMALL_STATE(1655)] = 61975, - [SMALL_STATE(1656)] = 61995, - [SMALL_STATE(1657)] = 62015, - [SMALL_STATE(1658)] = 62032, - [SMALL_STATE(1659)] = 62049, - [SMALL_STATE(1660)] = 62066, - [SMALL_STATE(1661)] = 62083, - [SMALL_STATE(1662)] = 62100, - [SMALL_STATE(1663)] = 62117, - [SMALL_STATE(1664)] = 62134, - [SMALL_STATE(1665)] = 62151, - [SMALL_STATE(1666)] = 62164, - [SMALL_STATE(1667)] = 62177, - [SMALL_STATE(1668)] = 62194, - [SMALL_STATE(1669)] = 62211, - [SMALL_STATE(1670)] = 62226, - [SMALL_STATE(1671)] = 62243, - [SMALL_STATE(1672)] = 62258, - [SMALL_STATE(1673)] = 62275, - [SMALL_STATE(1674)] = 62292, - [SMALL_STATE(1675)] = 62309, - [SMALL_STATE(1676)] = 62326, - [SMALL_STATE(1677)] = 62341, - [SMALL_STATE(1678)] = 62356, - [SMALL_STATE(1679)] = 62369, - [SMALL_STATE(1680)] = 62384, - [SMALL_STATE(1681)] = 62401, - [SMALL_STATE(1682)] = 62416, - [SMALL_STATE(1683)] = 62431, - [SMALL_STATE(1684)] = 62446, - [SMALL_STATE(1685)] = 62463, - [SMALL_STATE(1686)] = 62480, - [SMALL_STATE(1687)] = 62495, - [SMALL_STATE(1688)] = 62512, - [SMALL_STATE(1689)] = 62527, - [SMALL_STATE(1690)] = 62544, - [SMALL_STATE(1691)] = 62561, - [SMALL_STATE(1692)] = 62578, - [SMALL_STATE(1693)] = 62595, - [SMALL_STATE(1694)] = 62608, - [SMALL_STATE(1695)] = 62625, - [SMALL_STATE(1696)] = 62640, - [SMALL_STATE(1697)] = 62655, - [SMALL_STATE(1698)] = 62672, - [SMALL_STATE(1699)] = 62689, - [SMALL_STATE(1700)] = 62706, - [SMALL_STATE(1701)] = 62723, - [SMALL_STATE(1702)] = 62738, - [SMALL_STATE(1703)] = 62755, - [SMALL_STATE(1704)] = 62772, - [SMALL_STATE(1705)] = 62787, - [SMALL_STATE(1706)] = 62800, - [SMALL_STATE(1707)] = 62817, - [SMALL_STATE(1708)] = 62834, - [SMALL_STATE(1709)] = 62849, - [SMALL_STATE(1710)] = 62866, - [SMALL_STATE(1711)] = 62883, - [SMALL_STATE(1712)] = 62898, - [SMALL_STATE(1713)] = 62915, - [SMALL_STATE(1714)] = 62932, - [SMALL_STATE(1715)] = 62949, - [SMALL_STATE(1716)] = 62966, - [SMALL_STATE(1717)] = 62979, - [SMALL_STATE(1718)] = 62994, - [SMALL_STATE(1719)] = 63007, - [SMALL_STATE(1720)] = 63022, - [SMALL_STATE(1721)] = 63035, - [SMALL_STATE(1722)] = 63052, - [SMALL_STATE(1723)] = 63069, - [SMALL_STATE(1724)] = 63086, - [SMALL_STATE(1725)] = 63103, - [SMALL_STATE(1726)] = 63118, - [SMALL_STATE(1727)] = 63135, - [SMALL_STATE(1728)] = 63152, - [SMALL_STATE(1729)] = 63169, - [SMALL_STATE(1730)] = 63186, - [SMALL_STATE(1731)] = 63203, - [SMALL_STATE(1732)] = 63220, - [SMALL_STATE(1733)] = 63237, - [SMALL_STATE(1734)] = 63254, - [SMALL_STATE(1735)] = 63271, - [SMALL_STATE(1736)] = 63288, - [SMALL_STATE(1737)] = 63305, - [SMALL_STATE(1738)] = 63322, - [SMALL_STATE(1739)] = 63339, - [SMALL_STATE(1740)] = 63356, - [SMALL_STATE(1741)] = 63373, - [SMALL_STATE(1742)] = 63386, - [SMALL_STATE(1743)] = 63401, - [SMALL_STATE(1744)] = 63418, - [SMALL_STATE(1745)] = 63435, - [SMALL_STATE(1746)] = 63448, - [SMALL_STATE(1747)] = 63462, - [SMALL_STATE(1748)] = 63476, - [SMALL_STATE(1749)] = 63486, - [SMALL_STATE(1750)] = 63498, - [SMALL_STATE(1751)] = 63510, - [SMALL_STATE(1752)] = 63522, - [SMALL_STATE(1753)] = 63536, - [SMALL_STATE(1754)] = 63546, - [SMALL_STATE(1755)] = 63558, - [SMALL_STATE(1756)] = 63572, - [SMALL_STATE(1757)] = 63584, - [SMALL_STATE(1758)] = 63598, - [SMALL_STATE(1759)] = 63612, - [SMALL_STATE(1760)] = 63622, - [SMALL_STATE(1761)] = 63632, - [SMALL_STATE(1762)] = 63646, - [SMALL_STATE(1763)] = 63660, - [SMALL_STATE(1764)] = 63670, - [SMALL_STATE(1765)] = 63682, - [SMALL_STATE(1766)] = 63696, - [SMALL_STATE(1767)] = 63710, - [SMALL_STATE(1768)] = 63722, - [SMALL_STATE(1769)] = 63736, - [SMALL_STATE(1770)] = 63746, - [SMALL_STATE(1771)] = 63760, - [SMALL_STATE(1772)] = 63774, - [SMALL_STATE(1773)] = 63784, - [SMALL_STATE(1774)] = 63794, - [SMALL_STATE(1775)] = 63808, - [SMALL_STATE(1776)] = 63822, - [SMALL_STATE(1777)] = 63834, - [SMALL_STATE(1778)] = 63848, - [SMALL_STATE(1779)] = 63862, - [SMALL_STATE(1780)] = 63876, - [SMALL_STATE(1781)] = 63886, - [SMALL_STATE(1782)] = 63900, - [SMALL_STATE(1783)] = 63914, - [SMALL_STATE(1784)] = 63928, - [SMALL_STATE(1785)] = 63940, - [SMALL_STATE(1786)] = 63954, - [SMALL_STATE(1787)] = 63964, - [SMALL_STATE(1788)] = 63978, - [SMALL_STATE(1789)] = 63992, - [SMALL_STATE(1790)] = 64004, - [SMALL_STATE(1791)] = 64018, - [SMALL_STATE(1792)] = 64032, - [SMALL_STATE(1793)] = 64046, - [SMALL_STATE(1794)] = 64060, - [SMALL_STATE(1795)] = 64074, - [SMALL_STATE(1796)] = 64088, - [SMALL_STATE(1797)] = 64102, - [SMALL_STATE(1798)] = 64116, - [SMALL_STATE(1799)] = 64130, - [SMALL_STATE(1800)] = 64144, - [SMALL_STATE(1801)] = 64156, - [SMALL_STATE(1802)] = 64170, - [SMALL_STATE(1803)] = 64182, - [SMALL_STATE(1804)] = 64196, - [SMALL_STATE(1805)] = 64210, - [SMALL_STATE(1806)] = 64224, - [SMALL_STATE(1807)] = 64236, - [SMALL_STATE(1808)] = 64250, - [SMALL_STATE(1809)] = 64264, - [SMALL_STATE(1810)] = 64274, - [SMALL_STATE(1811)] = 64288, - [SMALL_STATE(1812)] = 64302, - [SMALL_STATE(1813)] = 64316, - [SMALL_STATE(1814)] = 64326, - [SMALL_STATE(1815)] = 64340, - [SMALL_STATE(1816)] = 64354, - [SMALL_STATE(1817)] = 64368, - [SMALL_STATE(1818)] = 64378, - [SMALL_STATE(1819)] = 64392, - [SMALL_STATE(1820)] = 64402, - [SMALL_STATE(1821)] = 64414, - [SMALL_STATE(1822)] = 64428, - [SMALL_STATE(1823)] = 64440, - [SMALL_STATE(1824)] = 64454, - [SMALL_STATE(1825)] = 64468, - [SMALL_STATE(1826)] = 64482, - [SMALL_STATE(1827)] = 64492, - [SMALL_STATE(1828)] = 64506, - [SMALL_STATE(1829)] = 64520, - [SMALL_STATE(1830)] = 64534, - [SMALL_STATE(1831)] = 64544, - [SMALL_STATE(1832)] = 64556, - [SMALL_STATE(1833)] = 64568, - [SMALL_STATE(1834)] = 64582, - [SMALL_STATE(1835)] = 64596, - [SMALL_STATE(1836)] = 64610, - [SMALL_STATE(1837)] = 64624, - [SMALL_STATE(1838)] = 64634, - [SMALL_STATE(1839)] = 64644, - [SMALL_STATE(1840)] = 64658, - [SMALL_STATE(1841)] = 64672, - [SMALL_STATE(1842)] = 64686, - [SMALL_STATE(1843)] = 64700, - [SMALL_STATE(1844)] = 64714, - [SMALL_STATE(1845)] = 64728, - [SMALL_STATE(1846)] = 64738, - [SMALL_STATE(1847)] = 64752, - [SMALL_STATE(1848)] = 64766, - [SMALL_STATE(1849)] = 64780, - [SMALL_STATE(1850)] = 64794, - [SMALL_STATE(1851)] = 64808, - [SMALL_STATE(1852)] = 64822, - [SMALL_STATE(1853)] = 64836, - [SMALL_STATE(1854)] = 64850, - [SMALL_STATE(1855)] = 64860, - [SMALL_STATE(1856)] = 64870, - [SMALL_STATE(1857)] = 64884, - [SMALL_STATE(1858)] = 64898, - [SMALL_STATE(1859)] = 64908, - [SMALL_STATE(1860)] = 64922, - [SMALL_STATE(1861)] = 64934, - [SMALL_STATE(1862)] = 64948, - [SMALL_STATE(1863)] = 64958, - [SMALL_STATE(1864)] = 64972, - [SMALL_STATE(1865)] = 64986, - [SMALL_STATE(1866)] = 65000, - [SMALL_STATE(1867)] = 65010, - [SMALL_STATE(1868)] = 65022, - [SMALL_STATE(1869)] = 65036, - [SMALL_STATE(1870)] = 65048, - [SMALL_STATE(1871)] = 65062, - [SMALL_STATE(1872)] = 65072, - [SMALL_STATE(1873)] = 65082, - [SMALL_STATE(1874)] = 65096, - [SMALL_STATE(1875)] = 65108, - [SMALL_STATE(1876)] = 65122, - [SMALL_STATE(1877)] = 65136, - [SMALL_STATE(1878)] = 65148, - [SMALL_STATE(1879)] = 65162, - [SMALL_STATE(1880)] = 65176, - [SMALL_STATE(1881)] = 65190, - [SMALL_STATE(1882)] = 65204, - [SMALL_STATE(1883)] = 65218, - [SMALL_STATE(1884)] = 65232, - [SMALL_STATE(1885)] = 65242, - [SMALL_STATE(1886)] = 65256, - [SMALL_STATE(1887)] = 65268, - [SMALL_STATE(1888)] = 65282, - [SMALL_STATE(1889)] = 65296, - [SMALL_STATE(1890)] = 65310, - [SMALL_STATE(1891)] = 65324, - [SMALL_STATE(1892)] = 65338, - [SMALL_STATE(1893)] = 65352, - [SMALL_STATE(1894)] = 65366, - [SMALL_STATE(1895)] = 65380, - [SMALL_STATE(1896)] = 65394, - [SMALL_STATE(1897)] = 65408, - [SMALL_STATE(1898)] = 65422, - [SMALL_STATE(1899)] = 65436, - [SMALL_STATE(1900)] = 65450, - [SMALL_STATE(1901)] = 65464, - [SMALL_STATE(1902)] = 65478, - [SMALL_STATE(1903)] = 65492, - [SMALL_STATE(1904)] = 65504, - [SMALL_STATE(1905)] = 65518, - [SMALL_STATE(1906)] = 65532, - [SMALL_STATE(1907)] = 65546, - [SMALL_STATE(1908)] = 65560, - [SMALL_STATE(1909)] = 65574, - [SMALL_STATE(1910)] = 65584, - [SMALL_STATE(1911)] = 65596, - [SMALL_STATE(1912)] = 65610, - [SMALL_STATE(1913)] = 65624, - [SMALL_STATE(1914)] = 65638, - [SMALL_STATE(1915)] = 65652, - [SMALL_STATE(1916)] = 65664, - [SMALL_STATE(1917)] = 65674, - [SMALL_STATE(1918)] = 65688, - [SMALL_STATE(1919)] = 65702, - [SMALL_STATE(1920)] = 65716, - [SMALL_STATE(1921)] = 65730, - [SMALL_STATE(1922)] = 65744, - [SMALL_STATE(1923)] = 65758, - [SMALL_STATE(1924)] = 65772, - [SMALL_STATE(1925)] = 65782, - [SMALL_STATE(1926)] = 65796, - [SMALL_STATE(1927)] = 65810, - [SMALL_STATE(1928)] = 65824, - [SMALL_STATE(1929)] = 65838, - [SMALL_STATE(1930)] = 65852, - [SMALL_STATE(1931)] = 65866, - [SMALL_STATE(1932)] = 65880, - [SMALL_STATE(1933)] = 65894, - [SMALL_STATE(1934)] = 65904, - [SMALL_STATE(1935)] = 65918, - [SMALL_STATE(1936)] = 65932, - [SMALL_STATE(1937)] = 65946, - [SMALL_STATE(1938)] = 65960, - [SMALL_STATE(1939)] = 65972, - [SMALL_STATE(1940)] = 65986, - [SMALL_STATE(1941)] = 66000, - [SMALL_STATE(1942)] = 66014, - [SMALL_STATE(1943)] = 66028, - [SMALL_STATE(1944)] = 66042, - [SMALL_STATE(1945)] = 66056, - [SMALL_STATE(1946)] = 66068, - [SMALL_STATE(1947)] = 66082, - [SMALL_STATE(1948)] = 66092, - [SMALL_STATE(1949)] = 66106, - [SMALL_STATE(1950)] = 66120, - [SMALL_STATE(1951)] = 66134, - [SMALL_STATE(1952)] = 66148, - [SMALL_STATE(1953)] = 66162, - [SMALL_STATE(1954)] = 66176, - [SMALL_STATE(1955)] = 66190, - [SMALL_STATE(1956)] = 66204, - [SMALL_STATE(1957)] = 66218, - [SMALL_STATE(1958)] = 66232, - [SMALL_STATE(1959)] = 66246, - [SMALL_STATE(1960)] = 66258, - [SMALL_STATE(1961)] = 66272, - [SMALL_STATE(1962)] = 66286, - [SMALL_STATE(1963)] = 66300, - [SMALL_STATE(1964)] = 66314, - [SMALL_STATE(1965)] = 66328, - [SMALL_STATE(1966)] = 66342, - [SMALL_STATE(1967)] = 66356, - [SMALL_STATE(1968)] = 66370, - [SMALL_STATE(1969)] = 66380, - [SMALL_STATE(1970)] = 66390, - [SMALL_STATE(1971)] = 66404, - [SMALL_STATE(1972)] = 66418, - [SMALL_STATE(1973)] = 66428, - [SMALL_STATE(1974)] = 66442, - [SMALL_STATE(1975)] = 66456, - [SMALL_STATE(1976)] = 66470, - [SMALL_STATE(1977)] = 66484, - [SMALL_STATE(1978)] = 66494, - [SMALL_STATE(1979)] = 66508, - [SMALL_STATE(1980)] = 66522, - [SMALL_STATE(1981)] = 66536, - [SMALL_STATE(1982)] = 66548, - [SMALL_STATE(1983)] = 66562, - [SMALL_STATE(1984)] = 66576, - [SMALL_STATE(1985)] = 66590, - [SMALL_STATE(1986)] = 66604, - [SMALL_STATE(1987)] = 66616, - [SMALL_STATE(1988)] = 66628, - [SMALL_STATE(1989)] = 66639, - [SMALL_STATE(1990)] = 66648, - [SMALL_STATE(1991)] = 66659, - [SMALL_STATE(1992)] = 66670, - [SMALL_STATE(1993)] = 66681, - [SMALL_STATE(1994)] = 66692, - [SMALL_STATE(1995)] = 66701, - [SMALL_STATE(1996)] = 66712, - [SMALL_STATE(1997)] = 66723, - [SMALL_STATE(1998)] = 66734, - [SMALL_STATE(1999)] = 66743, - [SMALL_STATE(2000)] = 66754, - [SMALL_STATE(2001)] = 66765, - [SMALL_STATE(2002)] = 66776, - [SMALL_STATE(2003)] = 66787, - [SMALL_STATE(2004)] = 66798, - [SMALL_STATE(2005)] = 66809, - [SMALL_STATE(2006)] = 66820, - [SMALL_STATE(2007)] = 66829, - [SMALL_STATE(2008)] = 66840, - [SMALL_STATE(2009)] = 66849, - [SMALL_STATE(2010)] = 66860, - [SMALL_STATE(2011)] = 66871, - [SMALL_STATE(2012)] = 66880, - [SMALL_STATE(2013)] = 66891, - [SMALL_STATE(2014)] = 66902, - [SMALL_STATE(2015)] = 66913, - [SMALL_STATE(2016)] = 66924, - [SMALL_STATE(2017)] = 66935, - [SMALL_STATE(2018)] = 66946, - [SMALL_STATE(2019)] = 66957, - [SMALL_STATE(2020)] = 66968, - [SMALL_STATE(2021)] = 66979, - [SMALL_STATE(2022)] = 66988, - [SMALL_STATE(2023)] = 66999, - [SMALL_STATE(2024)] = 67010, - [SMALL_STATE(2025)] = 67021, - [SMALL_STATE(2026)] = 67030, - [SMALL_STATE(2027)] = 67041, - [SMALL_STATE(2028)] = 67052, - [SMALL_STATE(2029)] = 67063, - [SMALL_STATE(2030)] = 67074, - [SMALL_STATE(2031)] = 67085, - [SMALL_STATE(2032)] = 67096, - [SMALL_STATE(2033)] = 67105, - [SMALL_STATE(2034)] = 67116, - [SMALL_STATE(2035)] = 67127, - [SMALL_STATE(2036)] = 67136, - [SMALL_STATE(2037)] = 67147, - [SMALL_STATE(2038)] = 67158, - [SMALL_STATE(2039)] = 67169, - [SMALL_STATE(2040)] = 67180, - [SMALL_STATE(2041)] = 67191, - [SMALL_STATE(2042)] = 67200, - [SMALL_STATE(2043)] = 67211, - [SMALL_STATE(2044)] = 67222, - [SMALL_STATE(2045)] = 67233, - [SMALL_STATE(2046)] = 67244, - [SMALL_STATE(2047)] = 67255, - [SMALL_STATE(2048)] = 67266, - [SMALL_STATE(2049)] = 67275, - [SMALL_STATE(2050)] = 67286, - [SMALL_STATE(2051)] = 67297, - [SMALL_STATE(2052)] = 67308, - [SMALL_STATE(2053)] = 67319, - [SMALL_STATE(2054)] = 67330, - [SMALL_STATE(2055)] = 67341, - [SMALL_STATE(2056)] = 67350, - [SMALL_STATE(2057)] = 67361, - [SMALL_STATE(2058)] = 67372, - [SMALL_STATE(2059)] = 67381, - [SMALL_STATE(2060)] = 67392, - [SMALL_STATE(2061)] = 67403, - [SMALL_STATE(2062)] = 67414, - [SMALL_STATE(2063)] = 67425, - [SMALL_STATE(2064)] = 67436, - [SMALL_STATE(2065)] = 67447, - [SMALL_STATE(2066)] = 67458, - [SMALL_STATE(2067)] = 67469, - [SMALL_STATE(2068)] = 67478, - [SMALL_STATE(2069)] = 67489, - [SMALL_STATE(2070)] = 67500, - [SMALL_STATE(2071)] = 67511, - [SMALL_STATE(2072)] = 67522, - [SMALL_STATE(2073)] = 67533, - [SMALL_STATE(2074)] = 67544, - [SMALL_STATE(2075)] = 67555, - [SMALL_STATE(2076)] = 67566, - [SMALL_STATE(2077)] = 67577, - [SMALL_STATE(2078)] = 67588, - [SMALL_STATE(2079)] = 67599, - [SMALL_STATE(2080)] = 67608, - [SMALL_STATE(2081)] = 67619, - [SMALL_STATE(2082)] = 67630, - [SMALL_STATE(2083)] = 67641, - [SMALL_STATE(2084)] = 67652, - [SMALL_STATE(2085)] = 67663, - [SMALL_STATE(2086)] = 67674, - [SMALL_STATE(2087)] = 67685, - [SMALL_STATE(2088)] = 67696, - [SMALL_STATE(2089)] = 67707, - [SMALL_STATE(2090)] = 67718, - [SMALL_STATE(2091)] = 67729, - [SMALL_STATE(2092)] = 67740, - [SMALL_STATE(2093)] = 67751, - [SMALL_STATE(2094)] = 67760, - [SMALL_STATE(2095)] = 67771, - [SMALL_STATE(2096)] = 67782, - [SMALL_STATE(2097)] = 67793, - [SMALL_STATE(2098)] = 67804, - [SMALL_STATE(2099)] = 67815, - [SMALL_STATE(2100)] = 67826, - [SMALL_STATE(2101)] = 67835, - [SMALL_STATE(2102)] = 67846, - [SMALL_STATE(2103)] = 67857, - [SMALL_STATE(2104)] = 67868, - [SMALL_STATE(2105)] = 67879, - [SMALL_STATE(2106)] = 67890, - [SMALL_STATE(2107)] = 67901, - [SMALL_STATE(2108)] = 67912, - [SMALL_STATE(2109)] = 67921, - [SMALL_STATE(2110)] = 67932, - [SMALL_STATE(2111)] = 67943, - [SMALL_STATE(2112)] = 67954, - [SMALL_STATE(2113)] = 67965, - [SMALL_STATE(2114)] = 67976, - [SMALL_STATE(2115)] = 67987, - [SMALL_STATE(2116)] = 67998, - [SMALL_STATE(2117)] = 68009, - [SMALL_STATE(2118)] = 68020, - [SMALL_STATE(2119)] = 68031, - [SMALL_STATE(2120)] = 68042, - [SMALL_STATE(2121)] = 68053, - [SMALL_STATE(2122)] = 68064, - [SMALL_STATE(2123)] = 68075, - [SMALL_STATE(2124)] = 68086, - [SMALL_STATE(2125)] = 68097, - [SMALL_STATE(2126)] = 68106, - [SMALL_STATE(2127)] = 68117, - [SMALL_STATE(2128)] = 68128, - [SMALL_STATE(2129)] = 68139, - [SMALL_STATE(2130)] = 68150, - [SMALL_STATE(2131)] = 68161, - [SMALL_STATE(2132)] = 68172, - [SMALL_STATE(2133)] = 68183, - [SMALL_STATE(2134)] = 68194, - [SMALL_STATE(2135)] = 68205, - [SMALL_STATE(2136)] = 68216, - [SMALL_STATE(2137)] = 68227, - [SMALL_STATE(2138)] = 68238, - [SMALL_STATE(2139)] = 68249, - [SMALL_STATE(2140)] = 68260, - [SMALL_STATE(2141)] = 68271, - [SMALL_STATE(2142)] = 68282, - [SMALL_STATE(2143)] = 68293, - [SMALL_STATE(2144)] = 68304, - [SMALL_STATE(2145)] = 68315, - [SMALL_STATE(2146)] = 68326, - [SMALL_STATE(2147)] = 68337, - [SMALL_STATE(2148)] = 68348, - [SMALL_STATE(2149)] = 68359, - [SMALL_STATE(2150)] = 68368, - [SMALL_STATE(2151)] = 68379, - [SMALL_STATE(2152)] = 68390, - [SMALL_STATE(2153)] = 68401, - [SMALL_STATE(2154)] = 68412, - [SMALL_STATE(2155)] = 68423, - [SMALL_STATE(2156)] = 68434, - [SMALL_STATE(2157)] = 68445, - [SMALL_STATE(2158)] = 68456, - [SMALL_STATE(2159)] = 68467, - [SMALL_STATE(2160)] = 68478, - [SMALL_STATE(2161)] = 68487, - [SMALL_STATE(2162)] = 68498, - [SMALL_STATE(2163)] = 68509, - [SMALL_STATE(2164)] = 68520, - [SMALL_STATE(2165)] = 68531, - [SMALL_STATE(2166)] = 68542, - [SMALL_STATE(2167)] = 68553, - [SMALL_STATE(2168)] = 68564, - [SMALL_STATE(2169)] = 68575, - [SMALL_STATE(2170)] = 68586, - [SMALL_STATE(2171)] = 68597, - [SMALL_STATE(2172)] = 68608, - [SMALL_STATE(2173)] = 68617, - [SMALL_STATE(2174)] = 68626, - [SMALL_STATE(2175)] = 68637, - [SMALL_STATE(2176)] = 68648, - [SMALL_STATE(2177)] = 68659, - [SMALL_STATE(2178)] = 68668, - [SMALL_STATE(2179)] = 68679, - [SMALL_STATE(2180)] = 68688, - [SMALL_STATE(2181)] = 68699, - [SMALL_STATE(2182)] = 68710, - [SMALL_STATE(2183)] = 68721, - [SMALL_STATE(2184)] = 68732, - [SMALL_STATE(2185)] = 68741, - [SMALL_STATE(2186)] = 68750, - [SMALL_STATE(2187)] = 68758, - [SMALL_STATE(2188)] = 68766, - [SMALL_STATE(2189)] = 68774, - [SMALL_STATE(2190)] = 68782, - [SMALL_STATE(2191)] = 68790, - [SMALL_STATE(2192)] = 68798, - [SMALL_STATE(2193)] = 68806, - [SMALL_STATE(2194)] = 68814, - [SMALL_STATE(2195)] = 68822, - [SMALL_STATE(2196)] = 68830, - [SMALL_STATE(2197)] = 68838, - [SMALL_STATE(2198)] = 68846, - [SMALL_STATE(2199)] = 68854, - [SMALL_STATE(2200)] = 68862, - [SMALL_STATE(2201)] = 68870, - [SMALL_STATE(2202)] = 68878, - [SMALL_STATE(2203)] = 68886, - [SMALL_STATE(2204)] = 68894, - [SMALL_STATE(2205)] = 68902, - [SMALL_STATE(2206)] = 68910, - [SMALL_STATE(2207)] = 68918, - [SMALL_STATE(2208)] = 68926, - [SMALL_STATE(2209)] = 68934, - [SMALL_STATE(2210)] = 68942, - [SMALL_STATE(2211)] = 68950, - [SMALL_STATE(2212)] = 68958, - [SMALL_STATE(2213)] = 68966, - [SMALL_STATE(2214)] = 68974, - [SMALL_STATE(2215)] = 68982, - [SMALL_STATE(2216)] = 68990, - [SMALL_STATE(2217)] = 68998, - [SMALL_STATE(2218)] = 69006, - [SMALL_STATE(2219)] = 69014, - [SMALL_STATE(2220)] = 69022, - [SMALL_STATE(2221)] = 69030, - [SMALL_STATE(2222)] = 69038, - [SMALL_STATE(2223)] = 69046, - [SMALL_STATE(2224)] = 69054, - [SMALL_STATE(2225)] = 69062, - [SMALL_STATE(2226)] = 69070, - [SMALL_STATE(2227)] = 69078, - [SMALL_STATE(2228)] = 69086, - [SMALL_STATE(2229)] = 69094, - [SMALL_STATE(2230)] = 69102, - [SMALL_STATE(2231)] = 69110, - [SMALL_STATE(2232)] = 69118, - [SMALL_STATE(2233)] = 69126, - [SMALL_STATE(2234)] = 69134, - [SMALL_STATE(2235)] = 69142, - [SMALL_STATE(2236)] = 69150, - [SMALL_STATE(2237)] = 69158, - [SMALL_STATE(2238)] = 69166, - [SMALL_STATE(2239)] = 69174, - [SMALL_STATE(2240)] = 69182, - [SMALL_STATE(2241)] = 69190, - [SMALL_STATE(2242)] = 69198, - [SMALL_STATE(2243)] = 69206, - [SMALL_STATE(2244)] = 69214, - [SMALL_STATE(2245)] = 69222, - [SMALL_STATE(2246)] = 69230, - [SMALL_STATE(2247)] = 69238, - [SMALL_STATE(2248)] = 69246, - [SMALL_STATE(2249)] = 69254, - [SMALL_STATE(2250)] = 69262, - [SMALL_STATE(2251)] = 69270, - [SMALL_STATE(2252)] = 69278, - [SMALL_STATE(2253)] = 69286, - [SMALL_STATE(2254)] = 69294, - [SMALL_STATE(2255)] = 69302, - [SMALL_STATE(2256)] = 69310, - [SMALL_STATE(2257)] = 69318, - [SMALL_STATE(2258)] = 69326, - [SMALL_STATE(2259)] = 69334, - [SMALL_STATE(2260)] = 69342, - [SMALL_STATE(2261)] = 69350, - [SMALL_STATE(2262)] = 69358, - [SMALL_STATE(2263)] = 69366, - [SMALL_STATE(2264)] = 69374, - [SMALL_STATE(2265)] = 69382, - [SMALL_STATE(2266)] = 69390, - [SMALL_STATE(2267)] = 69398, - [SMALL_STATE(2268)] = 69406, - [SMALL_STATE(2269)] = 69414, - [SMALL_STATE(2270)] = 69422, - [SMALL_STATE(2271)] = 69430, - [SMALL_STATE(2272)] = 69438, - [SMALL_STATE(2273)] = 69446, - [SMALL_STATE(2274)] = 69454, - [SMALL_STATE(2275)] = 69462, - [SMALL_STATE(2276)] = 69470, - [SMALL_STATE(2277)] = 69478, - [SMALL_STATE(2278)] = 69486, - [SMALL_STATE(2279)] = 69494, - [SMALL_STATE(2280)] = 69502, - [SMALL_STATE(2281)] = 69510, - [SMALL_STATE(2282)] = 69518, - [SMALL_STATE(2283)] = 69526, - [SMALL_STATE(2284)] = 69534, - [SMALL_STATE(2285)] = 69542, - [SMALL_STATE(2286)] = 69550, - [SMALL_STATE(2287)] = 69558, - [SMALL_STATE(2288)] = 69566, - [SMALL_STATE(2289)] = 69574, - [SMALL_STATE(2290)] = 69582, - [SMALL_STATE(2291)] = 69590, - [SMALL_STATE(2292)] = 69598, - [SMALL_STATE(2293)] = 69606, - [SMALL_STATE(2294)] = 69614, - [SMALL_STATE(2295)] = 69622, - [SMALL_STATE(2296)] = 69630, - [SMALL_STATE(2297)] = 69638, - [SMALL_STATE(2298)] = 69646, - [SMALL_STATE(2299)] = 69654, - [SMALL_STATE(2300)] = 69662, - [SMALL_STATE(2301)] = 69670, - [SMALL_STATE(2302)] = 69678, - [SMALL_STATE(2303)] = 69686, - [SMALL_STATE(2304)] = 69694, - [SMALL_STATE(2305)] = 69702, - [SMALL_STATE(2306)] = 69710, - [SMALL_STATE(2307)] = 69718, - [SMALL_STATE(2308)] = 69726, - [SMALL_STATE(2309)] = 69734, - [SMALL_STATE(2310)] = 69742, - [SMALL_STATE(2311)] = 69750, - [SMALL_STATE(2312)] = 69758, - [SMALL_STATE(2313)] = 69766, - [SMALL_STATE(2314)] = 69774, - [SMALL_STATE(2315)] = 69782, - [SMALL_STATE(2316)] = 69790, - [SMALL_STATE(2317)] = 69798, - [SMALL_STATE(2318)] = 69806, - [SMALL_STATE(2319)] = 69814, - [SMALL_STATE(2320)] = 69822, - [SMALL_STATE(2321)] = 69830, - [SMALL_STATE(2322)] = 69838, - [SMALL_STATE(2323)] = 69846, - [SMALL_STATE(2324)] = 69854, - [SMALL_STATE(2325)] = 69862, - [SMALL_STATE(2326)] = 69870, - [SMALL_STATE(2327)] = 69878, - [SMALL_STATE(2328)] = 69886, - [SMALL_STATE(2329)] = 69894, - [SMALL_STATE(2330)] = 69902, - [SMALL_STATE(2331)] = 69910, - [SMALL_STATE(2332)] = 69918, - [SMALL_STATE(2333)] = 69926, - [SMALL_STATE(2334)] = 69934, - [SMALL_STATE(2335)] = 69942, - [SMALL_STATE(2336)] = 69950, - [SMALL_STATE(2337)] = 69958, - [SMALL_STATE(2338)] = 69966, - [SMALL_STATE(2339)] = 69974, - [SMALL_STATE(2340)] = 69982, - [SMALL_STATE(2341)] = 69990, - [SMALL_STATE(2342)] = 69998, - [SMALL_STATE(2343)] = 70006, - [SMALL_STATE(2344)] = 70014, - [SMALL_STATE(2345)] = 70022, - [SMALL_STATE(2346)] = 70030, - [SMALL_STATE(2347)] = 70038, - [SMALL_STATE(2348)] = 70046, - [SMALL_STATE(2349)] = 70054, - [SMALL_STATE(2350)] = 70062, - [SMALL_STATE(2351)] = 70070, - [SMALL_STATE(2352)] = 70078, - [SMALL_STATE(2353)] = 70086, - [SMALL_STATE(2354)] = 70094, - [SMALL_STATE(2355)] = 70102, - [SMALL_STATE(2356)] = 70110, - [SMALL_STATE(2357)] = 70118, - [SMALL_STATE(2358)] = 70126, - [SMALL_STATE(2359)] = 70134, - [SMALL_STATE(2360)] = 70142, - [SMALL_STATE(2361)] = 70150, - [SMALL_STATE(2362)] = 70158, - [SMALL_STATE(2363)] = 70166, - [SMALL_STATE(2364)] = 70174, - [SMALL_STATE(2365)] = 70182, - [SMALL_STATE(2366)] = 70190, - [SMALL_STATE(2367)] = 70198, - [SMALL_STATE(2368)] = 70206, - [SMALL_STATE(2369)] = 70214, - [SMALL_STATE(2370)] = 70222, - [SMALL_STATE(2371)] = 70230, - [SMALL_STATE(2372)] = 70238, - [SMALL_STATE(2373)] = 70246, - [SMALL_STATE(2374)] = 70254, - [SMALL_STATE(2375)] = 70262, - [SMALL_STATE(2376)] = 70270, - [SMALL_STATE(2377)] = 70278, - [SMALL_STATE(2378)] = 70286, - [SMALL_STATE(2379)] = 70294, - [SMALL_STATE(2380)] = 70302, - [SMALL_STATE(2381)] = 70310, - [SMALL_STATE(2382)] = 70318, - [SMALL_STATE(2383)] = 70326, - [SMALL_STATE(2384)] = 70334, - [SMALL_STATE(2385)] = 70342, - [SMALL_STATE(2386)] = 70350, - [SMALL_STATE(2387)] = 70358, - [SMALL_STATE(2388)] = 70366, - [SMALL_STATE(2389)] = 70374, - [SMALL_STATE(2390)] = 70382, - [SMALL_STATE(2391)] = 70390, - [SMALL_STATE(2392)] = 70398, - [SMALL_STATE(2393)] = 70406, - [SMALL_STATE(2394)] = 70414, - [SMALL_STATE(2395)] = 70422, - [SMALL_STATE(2396)] = 70430, - [SMALL_STATE(2397)] = 70438, - [SMALL_STATE(2398)] = 70446, - [SMALL_STATE(2399)] = 70454, - [SMALL_STATE(2400)] = 70462, - [SMALL_STATE(2401)] = 70470, - [SMALL_STATE(2402)] = 70478, - [SMALL_STATE(2403)] = 70486, - [SMALL_STATE(2404)] = 70494, - [SMALL_STATE(2405)] = 70502, - [SMALL_STATE(2406)] = 70510, - [SMALL_STATE(2407)] = 70518, - [SMALL_STATE(2408)] = 70526, - [SMALL_STATE(2409)] = 70534, - [SMALL_STATE(2410)] = 70542, - [SMALL_STATE(2411)] = 70550, - [SMALL_STATE(2412)] = 70558, - [SMALL_STATE(2413)] = 70566, - [SMALL_STATE(2414)] = 70574, - [SMALL_STATE(2415)] = 70582, - [SMALL_STATE(2416)] = 70590, - [SMALL_STATE(2417)] = 70598, + [SMALL_STATE(589)] = 0, + [SMALL_STATE(590)] = 129, + [SMALL_STATE(591)] = 258, + [SMALL_STATE(592)] = 387, + [SMALL_STATE(593)] = 516, + [SMALL_STATE(594)] = 645, + [SMALL_STATE(595)] = 774, + [SMALL_STATE(596)] = 903, + [SMALL_STATE(597)] = 1032, + [SMALL_STATE(598)] = 1161, + [SMALL_STATE(599)] = 1290, + [SMALL_STATE(600)] = 1419, + [SMALL_STATE(601)] = 1548, + [SMALL_STATE(602)] = 1677, + [SMALL_STATE(603)] = 1806, + [SMALL_STATE(604)] = 1935, + [SMALL_STATE(605)] = 2064, + [SMALL_STATE(606)] = 2193, + [SMALL_STATE(607)] = 2322, + [SMALL_STATE(608)] = 2451, + [SMALL_STATE(609)] = 2580, + [SMALL_STATE(610)] = 2709, + [SMALL_STATE(611)] = 2838, + [SMALL_STATE(612)] = 2967, + [SMALL_STATE(613)] = 3096, + [SMALL_STATE(614)] = 3225, + [SMALL_STATE(615)] = 3354, + [SMALL_STATE(616)] = 3483, + [SMALL_STATE(617)] = 3612, + [SMALL_STATE(618)] = 3741, + [SMALL_STATE(619)] = 3870, + [SMALL_STATE(620)] = 3999, + [SMALL_STATE(621)] = 4128, + [SMALL_STATE(622)] = 4257, + [SMALL_STATE(623)] = 4386, + [SMALL_STATE(624)] = 4515, + [SMALL_STATE(625)] = 4644, + [SMALL_STATE(626)] = 4773, + [SMALL_STATE(627)] = 4902, + [SMALL_STATE(628)] = 5031, + [SMALL_STATE(629)] = 5160, + [SMALL_STATE(630)] = 5289, + [SMALL_STATE(631)] = 5418, + [SMALL_STATE(632)] = 5547, + [SMALL_STATE(633)] = 5676, + [SMALL_STATE(634)] = 5805, + [SMALL_STATE(635)] = 5934, + [SMALL_STATE(636)] = 6063, + [SMALL_STATE(637)] = 6192, + [SMALL_STATE(638)] = 6321, + [SMALL_STATE(639)] = 6450, + [SMALL_STATE(640)] = 6579, + [SMALL_STATE(641)] = 6708, + [SMALL_STATE(642)] = 6837, + [SMALL_STATE(643)] = 6966, + [SMALL_STATE(644)] = 7095, + [SMALL_STATE(645)] = 7224, + [SMALL_STATE(646)] = 7353, + [SMALL_STATE(647)] = 7482, + [SMALL_STATE(648)] = 7611, + [SMALL_STATE(649)] = 7740, + [SMALL_STATE(650)] = 7869, + [SMALL_STATE(651)] = 7998, + [SMALL_STATE(652)] = 8127, + [SMALL_STATE(653)] = 8256, + [SMALL_STATE(654)] = 8385, + [SMALL_STATE(655)] = 8514, + [SMALL_STATE(656)] = 8643, + [SMALL_STATE(657)] = 8772, + [SMALL_STATE(658)] = 8901, + [SMALL_STATE(659)] = 9030, + [SMALL_STATE(660)] = 9159, + [SMALL_STATE(661)] = 9288, + [SMALL_STATE(662)] = 9417, + [SMALL_STATE(663)] = 9546, + [SMALL_STATE(664)] = 9675, + [SMALL_STATE(665)] = 9804, + [SMALL_STATE(666)] = 9933, + [SMALL_STATE(667)] = 10062, + [SMALL_STATE(668)] = 10191, + [SMALL_STATE(669)] = 10320, + [SMALL_STATE(670)] = 10449, + [SMALL_STATE(671)] = 10578, + [SMALL_STATE(672)] = 10707, + [SMALL_STATE(673)] = 10836, + [SMALL_STATE(674)] = 10965, + [SMALL_STATE(675)] = 11094, + [SMALL_STATE(676)] = 11223, + [SMALL_STATE(677)] = 11352, + [SMALL_STATE(678)] = 11481, + [SMALL_STATE(679)] = 11610, + [SMALL_STATE(680)] = 11739, + [SMALL_STATE(681)] = 11868, + [SMALL_STATE(682)] = 11997, + [SMALL_STATE(683)] = 12126, + [SMALL_STATE(684)] = 12255, + [SMALL_STATE(685)] = 12384, + [SMALL_STATE(686)] = 12513, + [SMALL_STATE(687)] = 12644, + [SMALL_STATE(688)] = 12773, + [SMALL_STATE(689)] = 12902, + [SMALL_STATE(690)] = 13031, + [SMALL_STATE(691)] = 13160, + [SMALL_STATE(692)] = 13289, + [SMALL_STATE(693)] = 13418, + [SMALL_STATE(694)] = 13547, + [SMALL_STATE(695)] = 13676, + [SMALL_STATE(696)] = 13805, + [SMALL_STATE(697)] = 13934, + [SMALL_STATE(698)] = 14004, + [SMALL_STATE(699)] = 14069, + [SMALL_STATE(700)] = 14134, + [SMALL_STATE(701)] = 14199, + [SMALL_STATE(702)] = 14264, + [SMALL_STATE(703)] = 14326, + [SMALL_STATE(704)] = 14396, + [SMALL_STATE(705)] = 14463, + [SMALL_STATE(706)] = 14530, + [SMALL_STATE(707)] = 14590, + [SMALL_STATE(708)] = 14650, + [SMALL_STATE(709)] = 14710, + [SMALL_STATE(710)] = 14770, + [SMALL_STATE(711)] = 14826, + [SMALL_STATE(712)] = 14882, + [SMALL_STATE(713)] = 14946, + [SMALL_STATE(714)] = 15002, + [SMALL_STATE(715)] = 15066, + [SMALL_STATE(716)] = 15130, + [SMALL_STATE(717)] = 15186, + [SMALL_STATE(718)] = 15242, + [SMALL_STATE(719)] = 15306, + [SMALL_STATE(720)] = 15365, + [SMALL_STATE(721)] = 15424, + [SMALL_STATE(722)] = 15483, + [SMALL_STATE(723)] = 15540, + [SMALL_STATE(724)] = 15597, + [SMALL_STATE(725)] = 15654, + [SMALL_STATE(726)] = 15709, + [SMALL_STATE(727)] = 15766, + [SMALL_STATE(728)] = 15825, + [SMALL_STATE(729)] = 15879, + [SMALL_STATE(730)] = 15933, + [SMALL_STATE(731)] = 15987, + [SMALL_STATE(732)] = 16041, + [SMALL_STATE(733)] = 16095, + [SMALL_STATE(734)] = 16149, + [SMALL_STATE(735)] = 16203, + [SMALL_STATE(736)] = 16257, + [SMALL_STATE(737)] = 16311, + [SMALL_STATE(738)] = 16365, + [SMALL_STATE(739)] = 16419, + [SMALL_STATE(740)] = 16473, + [SMALL_STATE(741)] = 16527, + [SMALL_STATE(742)] = 16583, + [SMALL_STATE(743)] = 16637, + [SMALL_STATE(744)] = 16691, + [SMALL_STATE(745)] = 16747, + [SMALL_STATE(746)] = 16801, + [SMALL_STATE(747)] = 16855, + [SMALL_STATE(748)] = 16909, + [SMALL_STATE(749)] = 16963, + [SMALL_STATE(750)] = 17017, + [SMALL_STATE(751)] = 17071, + [SMALL_STATE(752)] = 17125, + [SMALL_STATE(753)] = 17179, + [SMALL_STATE(754)] = 17233, + [SMALL_STATE(755)] = 17287, + [SMALL_STATE(756)] = 17341, + [SMALL_STATE(757)] = 17395, + [SMALL_STATE(758)] = 17449, + [SMALL_STATE(759)] = 17505, + [SMALL_STATE(760)] = 17561, + [SMALL_STATE(761)] = 17615, + [SMALL_STATE(762)] = 17669, + [SMALL_STATE(763)] = 17723, + [SMALL_STATE(764)] = 17777, + [SMALL_STATE(765)] = 17833, + [SMALL_STATE(766)] = 17887, + [SMALL_STATE(767)] = 17941, + [SMALL_STATE(768)] = 17995, + [SMALL_STATE(769)] = 18049, + [SMALL_STATE(770)] = 18105, + [SMALL_STATE(771)] = 18159, + [SMALL_STATE(772)] = 18213, + [SMALL_STATE(773)] = 18267, + [SMALL_STATE(774)] = 18321, + [SMALL_STATE(775)] = 18377, + [SMALL_STATE(776)] = 18431, + [SMALL_STATE(777)] = 18485, + [SMALL_STATE(778)] = 18539, + [SMALL_STATE(779)] = 18593, + [SMALL_STATE(780)] = 18647, + [SMALL_STATE(781)] = 18701, + [SMALL_STATE(782)] = 18755, + [SMALL_STATE(783)] = 18809, + [SMALL_STATE(784)] = 18863, + [SMALL_STATE(785)] = 18917, + [SMALL_STATE(786)] = 18971, + [SMALL_STATE(787)] = 19025, + [SMALL_STATE(788)] = 19079, + [SMALL_STATE(789)] = 19133, + [SMALL_STATE(790)] = 19187, + [SMALL_STATE(791)] = 19241, + [SMALL_STATE(792)] = 19295, + [SMALL_STATE(793)] = 19349, + [SMALL_STATE(794)] = 19403, + [SMALL_STATE(795)] = 19457, + [SMALL_STATE(796)] = 19511, + [SMALL_STATE(797)] = 19565, + [SMALL_STATE(798)] = 19619, + [SMALL_STATE(799)] = 19673, + [SMALL_STATE(800)] = 19727, + [SMALL_STATE(801)] = 19781, + [SMALL_STATE(802)] = 19835, + [SMALL_STATE(803)] = 19889, + [SMALL_STATE(804)] = 19945, + [SMALL_STATE(805)] = 19999, + [SMALL_STATE(806)] = 20053, + [SMALL_STATE(807)] = 20107, + [SMALL_STATE(808)] = 20161, + [SMALL_STATE(809)] = 20215, + [SMALL_STATE(810)] = 20271, + [SMALL_STATE(811)] = 20325, + [SMALL_STATE(812)] = 20381, + [SMALL_STATE(813)] = 20435, + [SMALL_STATE(814)] = 20489, + [SMALL_STATE(815)] = 20543, + [SMALL_STATE(816)] = 20597, + [SMALL_STATE(817)] = 20651, + [SMALL_STATE(818)] = 20705, + [SMALL_STATE(819)] = 20759, + [SMALL_STATE(820)] = 20813, + [SMALL_STATE(821)] = 20867, + [SMALL_STATE(822)] = 20921, + [SMALL_STATE(823)] = 20975, + [SMALL_STATE(824)] = 21029, + [SMALL_STATE(825)] = 21083, + [SMALL_STATE(826)] = 21137, + [SMALL_STATE(827)] = 21191, + [SMALL_STATE(828)] = 21245, + [SMALL_STATE(829)] = 21299, + [SMALL_STATE(830)] = 21353, + [SMALL_STATE(831)] = 21407, + [SMALL_STATE(832)] = 21461, + [SMALL_STATE(833)] = 21515, + [SMALL_STATE(834)] = 21569, + [SMALL_STATE(835)] = 21623, + [SMALL_STATE(836)] = 21677, + [SMALL_STATE(837)] = 21731, + [SMALL_STATE(838)] = 21785, + [SMALL_STATE(839)] = 21839, + [SMALL_STATE(840)] = 21893, + [SMALL_STATE(841)] = 21947, + [SMALL_STATE(842)] = 22001, + [SMALL_STATE(843)] = 22055, + [SMALL_STATE(844)] = 22109, + [SMALL_STATE(845)] = 22163, + [SMALL_STATE(846)] = 22217, + [SMALL_STATE(847)] = 22271, + [SMALL_STATE(848)] = 22325, + [SMALL_STATE(849)] = 22379, + [SMALL_STATE(850)] = 22433, + [SMALL_STATE(851)] = 22487, + [SMALL_STATE(852)] = 22541, + [SMALL_STATE(853)] = 22595, + [SMALL_STATE(854)] = 22649, + [SMALL_STATE(855)] = 22703, + [SMALL_STATE(856)] = 22757, + [SMALL_STATE(857)] = 22813, + [SMALL_STATE(858)] = 22867, + [SMALL_STATE(859)] = 22921, + [SMALL_STATE(860)] = 22975, + [SMALL_STATE(861)] = 23029, + [SMALL_STATE(862)] = 23083, + [SMALL_STATE(863)] = 23137, + [SMALL_STATE(864)] = 23191, + [SMALL_STATE(865)] = 23245, + [SMALL_STATE(866)] = 23299, + [SMALL_STATE(867)] = 23353, + [SMALL_STATE(868)] = 23407, + [SMALL_STATE(869)] = 23461, + [SMALL_STATE(870)] = 23515, + [SMALL_STATE(871)] = 23569, + [SMALL_STATE(872)] = 23623, + [SMALL_STATE(873)] = 23677, + [SMALL_STATE(874)] = 23731, + [SMALL_STATE(875)] = 23785, + [SMALL_STATE(876)] = 23841, + [SMALL_STATE(877)] = 23895, + [SMALL_STATE(878)] = 23951, + [SMALL_STATE(879)] = 24007, + [SMALL_STATE(880)] = 24061, + [SMALL_STATE(881)] = 24115, + [SMALL_STATE(882)] = 24169, + [SMALL_STATE(883)] = 24223, + [SMALL_STATE(884)] = 24277, + [SMALL_STATE(885)] = 24331, + [SMALL_STATE(886)] = 24385, + [SMALL_STATE(887)] = 24441, + [SMALL_STATE(888)] = 24495, + [SMALL_STATE(889)] = 24549, + [SMALL_STATE(890)] = 24605, + [SMALL_STATE(891)] = 24659, + [SMALL_STATE(892)] = 24713, + [SMALL_STATE(893)] = 24767, + [SMALL_STATE(894)] = 24821, + [SMALL_STATE(895)] = 24875, + [SMALL_STATE(896)] = 24929, + [SMALL_STATE(897)] = 24983, + [SMALL_STATE(898)] = 25037, + [SMALL_STATE(899)] = 25091, + [SMALL_STATE(900)] = 25145, + [SMALL_STATE(901)] = 25199, + [SMALL_STATE(902)] = 25253, + [SMALL_STATE(903)] = 25307, + [SMALL_STATE(904)] = 25361, + [SMALL_STATE(905)] = 25415, + [SMALL_STATE(906)] = 25469, + [SMALL_STATE(907)] = 25523, + [SMALL_STATE(908)] = 25577, + [SMALL_STATE(909)] = 25631, + [SMALL_STATE(910)] = 25685, + [SMALL_STATE(911)] = 25743, + [SMALL_STATE(912)] = 25797, + [SMALL_STATE(913)] = 25851, + [SMALL_STATE(914)] = 25905, + [SMALL_STATE(915)] = 25959, + [SMALL_STATE(916)] = 26013, + [SMALL_STATE(917)] = 26067, + [SMALL_STATE(918)] = 26121, + [SMALL_STATE(919)] = 26175, + [SMALL_STATE(920)] = 26229, + [SMALL_STATE(921)] = 26283, + [SMALL_STATE(922)] = 26337, + [SMALL_STATE(923)] = 26391, + [SMALL_STATE(924)] = 26445, + [SMALL_STATE(925)] = 26499, + [SMALL_STATE(926)] = 26553, + [SMALL_STATE(927)] = 26607, + [SMALL_STATE(928)] = 26661, + [SMALL_STATE(929)] = 26715, + [SMALL_STATE(930)] = 26769, + [SMALL_STATE(931)] = 26823, + [SMALL_STATE(932)] = 26877, + [SMALL_STATE(933)] = 26931, + [SMALL_STATE(934)] = 26985, + [SMALL_STATE(935)] = 27039, + [SMALL_STATE(936)] = 27093, + [SMALL_STATE(937)] = 27147, + [SMALL_STATE(938)] = 27201, + [SMALL_STATE(939)] = 27255, + [SMALL_STATE(940)] = 27309, + [SMALL_STATE(941)] = 27363, + [SMALL_STATE(942)] = 27417, + [SMALL_STATE(943)] = 27471, + [SMALL_STATE(944)] = 27525, + [SMALL_STATE(945)] = 27579, + [SMALL_STATE(946)] = 27633, + [SMALL_STATE(947)] = 27687, + [SMALL_STATE(948)] = 27741, + [SMALL_STATE(949)] = 27795, + [SMALL_STATE(950)] = 27849, + [SMALL_STATE(951)] = 27903, + [SMALL_STATE(952)] = 27957, + [SMALL_STATE(953)] = 28011, + [SMALL_STATE(954)] = 28065, + [SMALL_STATE(955)] = 28118, + [SMALL_STATE(956)] = 28173, + [SMALL_STATE(957)] = 28226, + [SMALL_STATE(958)] = 28279, + [SMALL_STATE(959)] = 28332, + [SMALL_STATE(960)] = 28385, + [SMALL_STATE(961)] = 28438, + [SMALL_STATE(962)] = 28529, + [SMALL_STATE(963)] = 28582, + [SMALL_STATE(964)] = 28635, + [SMALL_STATE(965)] = 28688, + [SMALL_STATE(966)] = 28741, + [SMALL_STATE(967)] = 28794, + [SMALL_STATE(968)] = 28847, + [SMALL_STATE(969)] = 28900, + [SMALL_STATE(970)] = 28953, + [SMALL_STATE(971)] = 29008, + [SMALL_STATE(972)] = 29061, + [SMALL_STATE(973)] = 29114, + [SMALL_STATE(974)] = 29167, + [SMALL_STATE(975)] = 29222, + [SMALL_STATE(976)] = 29275, + [SMALL_STATE(977)] = 29328, + [SMALL_STATE(978)] = 29381, + [SMALL_STATE(979)] = 29434, + [SMALL_STATE(980)] = 29487, + [SMALL_STATE(981)] = 29546, + [SMALL_STATE(982)] = 29611, + [SMALL_STATE(983)] = 29664, + [SMALL_STATE(984)] = 29717, + [SMALL_STATE(985)] = 29770, + [SMALL_STATE(986)] = 29823, + [SMALL_STATE(987)] = 29876, + [SMALL_STATE(988)] = 29961, + [SMALL_STATE(989)] = 30014, + [SMALL_STATE(990)] = 30067, + [SMALL_STATE(991)] = 30120, + [SMALL_STATE(992)] = 30173, + [SMALL_STATE(993)] = 30226, + [SMALL_STATE(994)] = 30279, + [SMALL_STATE(995)] = 30332, + [SMALL_STATE(996)] = 30385, + [SMALL_STATE(997)] = 30438, + [SMALL_STATE(998)] = 30491, + [SMALL_STATE(999)] = 30544, + [SMALL_STATE(1000)] = 30597, + [SMALL_STATE(1001)] = 30650, + [SMALL_STATE(1002)] = 30703, + [SMALL_STATE(1003)] = 30756, + [SMALL_STATE(1004)] = 30809, + [SMALL_STATE(1005)] = 30862, + [SMALL_STATE(1006)] = 30947, + [SMALL_STATE(1007)] = 31000, + [SMALL_STATE(1008)] = 31065, + [SMALL_STATE(1009)] = 31118, + [SMALL_STATE(1010)] = 31171, + [SMALL_STATE(1011)] = 31224, + [SMALL_STATE(1012)] = 31277, + [SMALL_STATE(1013)] = 31330, + [SMALL_STATE(1014)] = 31383, + [SMALL_STATE(1015)] = 31436, + [SMALL_STATE(1016)] = 31489, + [SMALL_STATE(1017)] = 31544, + [SMALL_STATE(1018)] = 31597, + [SMALL_STATE(1019)] = 31650, + [SMALL_STATE(1020)] = 31739, + [SMALL_STATE(1021)] = 31792, + [SMALL_STATE(1022)] = 31845, + [SMALL_STATE(1023)] = 31898, + [SMALL_STATE(1024)] = 31951, + [SMALL_STATE(1025)] = 32004, + [SMALL_STATE(1026)] = 32057, + [SMALL_STATE(1027)] = 32142, + [SMALL_STATE(1028)] = 32195, + [SMALL_STATE(1029)] = 32248, + [SMALL_STATE(1030)] = 32315, + [SMALL_STATE(1031)] = 32368, + [SMALL_STATE(1032)] = 32421, + [SMALL_STATE(1033)] = 32474, + [SMALL_STATE(1034)] = 32527, + [SMALL_STATE(1035)] = 32592, + [SMALL_STATE(1036)] = 32645, + [SMALL_STATE(1037)] = 32698, + [SMALL_STATE(1038)] = 32751, + [SMALL_STATE(1039)] = 32804, + [SMALL_STATE(1040)] = 32857, + [SMALL_STATE(1041)] = 32910, + [SMALL_STATE(1042)] = 32963, + [SMALL_STATE(1043)] = 33054, + [SMALL_STATE(1044)] = 33119, + [SMALL_STATE(1045)] = 33172, + [SMALL_STATE(1046)] = 33225, + [SMALL_STATE(1047)] = 33278, + [SMALL_STATE(1048)] = 33331, + [SMALL_STATE(1049)] = 33384, + [SMALL_STATE(1050)] = 33437, + [SMALL_STATE(1051)] = 33490, + [SMALL_STATE(1052)] = 33543, + [SMALL_STATE(1053)] = 33596, + [SMALL_STATE(1054)] = 33649, + [SMALL_STATE(1055)] = 33702, + [SMALL_STATE(1056)] = 33759, + [SMALL_STATE(1057)] = 33848, + [SMALL_STATE(1058)] = 33901, + [SMALL_STATE(1059)] = 33954, + [SMALL_STATE(1060)] = 34039, + [SMALL_STATE(1061)] = 34092, + [SMALL_STATE(1062)] = 34145, + [SMALL_STATE(1063)] = 34198, + [SMALL_STATE(1064)] = 34251, + [SMALL_STATE(1065)] = 34304, + [SMALL_STATE(1066)] = 34389, + [SMALL_STATE(1067)] = 34458, + [SMALL_STATE(1068)] = 34531, + [SMALL_STATE(1069)] = 34606, + [SMALL_STATE(1070)] = 34689, + [SMALL_STATE(1071)] = 34770, + [SMALL_STATE(1072)] = 34823, + [SMALL_STATE(1073)] = 34894, + [SMALL_STATE(1074)] = 34949, + [SMALL_STATE(1075)] = 35026, + [SMALL_STATE(1076)] = 35086, + [SMALL_STATE(1077)] = 35138, + [SMALL_STATE(1078)] = 35190, + [SMALL_STATE(1079)] = 35277, + [SMALL_STATE(1080)] = 35362, + [SMALL_STATE(1081)] = 35457, + [SMALL_STATE(1082)] = 35536, + [SMALL_STATE(1083)] = 35587, + [SMALL_STATE(1084)] = 35638, + [SMALL_STATE(1085)] = 35725, + [SMALL_STATE(1086)] = 35812, + [SMALL_STATE(1087)] = 35899, + [SMALL_STATE(1088)] = 35994, + [SMALL_STATE(1089)] = 36079, + [SMALL_STATE(1090)] = 36135, + [SMALL_STATE(1091)] = 36189, + [SMALL_STATE(1092)] = 36281, + [SMALL_STATE(1093)] = 36357, + [SMALL_STATE(1094)] = 36433, + [SMALL_STATE(1095)] = 36509, + [SMALL_STATE(1096)] = 36563, + [SMALL_STATE(1097)] = 36655, + [SMALL_STATE(1098)] = 36731, + [SMALL_STATE(1099)] = 36820, + [SMALL_STATE(1100)] = 36907, + [SMALL_STATE(1101)] = 36994, + [SMALL_STATE(1102)] = 37083, + [SMALL_STATE(1103)] = 37132, + [SMALL_STATE(1104)] = 37181, + [SMALL_STATE(1105)] = 37230, + [SMALL_STATE(1106)] = 37319, + [SMALL_STATE(1107)] = 37368, + [SMALL_STATE(1108)] = 37421, + [SMALL_STATE(1109)] = 37470, + [SMALL_STATE(1110)] = 37559, + [SMALL_STATE(1111)] = 37648, + [SMALL_STATE(1112)] = 37699, + [SMALL_STATE(1113)] = 37788, + [SMALL_STATE(1114)] = 37875, + [SMALL_STATE(1115)] = 37964, + [SMALL_STATE(1116)] = 38053, + [SMALL_STATE(1117)] = 38140, + [SMALL_STATE(1118)] = 38189, + [SMALL_STATE(1119)] = 38278, + [SMALL_STATE(1120)] = 38367, + [SMALL_STATE(1121)] = 38456, + [SMALL_STATE(1122)] = 38545, + [SMALL_STATE(1123)] = 38632, + [SMALL_STATE(1124)] = 38719, + [SMALL_STATE(1125)] = 38806, + [SMALL_STATE(1126)] = 38895, + [SMALL_STATE(1127)] = 38982, + [SMALL_STATE(1128)] = 39071, + [SMALL_STATE(1129)] = 39160, + [SMALL_STATE(1130)] = 39249, + [SMALL_STATE(1131)] = 39336, + [SMALL_STATE(1132)] = 39425, + [SMALL_STATE(1133)] = 39514, + [SMALL_STATE(1134)] = 39603, + [SMALL_STATE(1135)] = 39692, + [SMALL_STATE(1136)] = 39779, + [SMALL_STATE(1137)] = 39868, + [SMALL_STATE(1138)] = 39957, + [SMALL_STATE(1139)] = 40008, + [SMALL_STATE(1140)] = 40097, + [SMALL_STATE(1141)] = 40146, + [SMALL_STATE(1142)] = 40235, + [SMALL_STATE(1143)] = 40324, + [SMALL_STATE(1144)] = 40413, + [SMALL_STATE(1145)] = 40502, + [SMALL_STATE(1146)] = 40591, + [SMALL_STATE(1147)] = 40680, + [SMALL_STATE(1148)] = 40769, + [SMALL_STATE(1149)] = 40858, + [SMALL_STATE(1150)] = 40947, + [SMALL_STATE(1151)] = 41036, + [SMALL_STATE(1152)] = 41125, + [SMALL_STATE(1153)] = 41174, + [SMALL_STATE(1154)] = 41263, + [SMALL_STATE(1155)] = 41352, + [SMALL_STATE(1156)] = 41441, + [SMALL_STATE(1157)] = 41530, + [SMALL_STATE(1158)] = 41619, + [SMALL_STATE(1159)] = 41668, + [SMALL_STATE(1160)] = 41757, + [SMALL_STATE(1161)] = 41846, + [SMALL_STATE(1162)] = 41935, + [SMALL_STATE(1163)] = 42024, + [SMALL_STATE(1164)] = 42113, + [SMALL_STATE(1165)] = 42186, + [SMALL_STATE(1166)] = 42275, + [SMALL_STATE(1167)] = 42361, + [SMALL_STATE(1168)] = 42447, + [SMALL_STATE(1169)] = 42527, + [SMALL_STATE(1170)] = 42613, + [SMALL_STATE(1171)] = 42699, + [SMALL_STATE(1172)] = 42785, + [SMALL_STATE(1173)] = 42871, + [SMALL_STATE(1174)] = 42957, + [SMALL_STATE(1175)] = 43043, + [SMALL_STATE(1176)] = 43129, + [SMALL_STATE(1177)] = 43215, + [SMALL_STATE(1178)] = 43301, + [SMALL_STATE(1179)] = 43387, + [SMALL_STATE(1180)] = 43473, + [SMALL_STATE(1181)] = 43559, + [SMALL_STATE(1182)] = 43645, + [SMALL_STATE(1183)] = 43731, + [SMALL_STATE(1184)] = 43817, + [SMALL_STATE(1185)] = 43903, + [SMALL_STATE(1186)] = 43989, + [SMALL_STATE(1187)] = 44075, + [SMALL_STATE(1188)] = 44161, + [SMALL_STATE(1189)] = 44247, + [SMALL_STATE(1190)] = 44297, + [SMALL_STATE(1191)] = 44383, + [SMALL_STATE(1192)] = 44433, + [SMALL_STATE(1193)] = 44493, + [SMALL_STATE(1194)] = 44579, + [SMALL_STATE(1195)] = 44641, + [SMALL_STATE(1196)] = 44701, + [SMALL_STATE(1197)] = 44781, + [SMALL_STATE(1198)] = 44867, + [SMALL_STATE(1199)] = 44953, + [SMALL_STATE(1200)] = 45039, + [SMALL_STATE(1201)] = 45117, + [SMALL_STATE(1202)] = 45167, + [SMALL_STATE(1203)] = 45253, + [SMALL_STATE(1204)] = 45307, + [SMALL_STATE(1205)] = 45393, + [SMALL_STATE(1206)] = 45465, + [SMALL_STATE(1207)] = 45531, + [SMALL_STATE(1208)] = 45607, + [SMALL_STATE(1209)] = 45667, + [SMALL_STATE(1210)] = 45745, + [SMALL_STATE(1211)] = 45831, + [SMALL_STATE(1212)] = 45901, + [SMALL_STATE(1213)] = 45981, + [SMALL_STATE(1214)] = 46061, + [SMALL_STATE(1215)] = 46147, + [SMALL_STATE(1216)] = 46207, + [SMALL_STATE(1217)] = 46275, + [SMALL_STATE(1218)] = 46339, + [SMALL_STATE(1219)] = 46425, + [SMALL_STATE(1220)] = 46505, + [SMALL_STATE(1221)] = 46583, + [SMALL_STATE(1222)] = 46669, + [SMALL_STATE(1223)] = 46719, + [SMALL_STATE(1224)] = 46769, + [SMALL_STATE(1225)] = 46840, + [SMALL_STATE(1226)] = 46908, + [SMALL_STATE(1227)] = 46976, + [SMALL_STATE(1228)] = 47041, + [SMALL_STATE(1229)] = 47106, + [SMALL_STATE(1230)] = 47171, + [SMALL_STATE(1231)] = 47236, + [SMALL_STATE(1232)] = 47301, + [SMALL_STATE(1233)] = 47341, + [SMALL_STATE(1234)] = 47381, + [SMALL_STATE(1235)] = 47421, + [SMALL_STATE(1236)] = 47476, + [SMALL_STATE(1237)] = 47531, + [SMALL_STATE(1238)] = 47586, + [SMALL_STATE(1239)] = 47641, + [SMALL_STATE(1240)] = 47696, + [SMALL_STATE(1241)] = 47751, + [SMALL_STATE(1242)] = 47806, + [SMALL_STATE(1243)] = 47858, + [SMALL_STATE(1244)] = 47910, + [SMALL_STATE(1245)] = 47940, + [SMALL_STATE(1246)] = 47970, + [SMALL_STATE(1247)] = 48012, + [SMALL_STATE(1248)] = 48052, + [SMALL_STATE(1249)] = 48081, + [SMALL_STATE(1250)] = 48118, + [SMALL_STATE(1251)] = 48147, + [SMALL_STATE(1252)] = 48176, + [SMALL_STATE(1253)] = 48205, + [SMALL_STATE(1254)] = 48234, + [SMALL_STATE(1255)] = 48263, + [SMALL_STATE(1256)] = 48300, + [SMALL_STATE(1257)] = 48329, + [SMALL_STATE(1258)] = 48358, + [SMALL_STATE(1259)] = 48390, + [SMALL_STATE(1260)] = 48444, + [SMALL_STATE(1261)] = 48498, + [SMALL_STATE(1262)] = 48530, + [SMALL_STATE(1263)] = 48562, + [SMALL_STATE(1264)] = 48587, + [SMALL_STATE(1265)] = 48610, + [SMALL_STATE(1266)] = 48634, + [SMALL_STATE(1267)] = 48656, + [SMALL_STATE(1268)] = 48680, + [SMALL_STATE(1269)] = 48702, + [SMALL_STATE(1270)] = 48732, + [SMALL_STATE(1271)] = 48776, + [SMALL_STATE(1272)] = 48798, + [SMALL_STATE(1273)] = 48822, + [SMALL_STATE(1274)] = 48846, + [SMALL_STATE(1275)] = 48870, + [SMALL_STATE(1276)] = 48894, + [SMALL_STATE(1277)] = 48918, + [SMALL_STATE(1278)] = 48942, + [SMALL_STATE(1279)] = 48966, + [SMALL_STATE(1280)] = 48988, + [SMALL_STATE(1281)] = 49034, + [SMALL_STATE(1282)] = 49078, + [SMALL_STATE(1283)] = 49102, + [SMALL_STATE(1284)] = 49125, + [SMALL_STATE(1285)] = 49146, + [SMALL_STATE(1286)] = 49169, + [SMALL_STATE(1287)] = 49194, + [SMALL_STATE(1288)] = 49215, + [SMALL_STATE(1289)] = 49242, + [SMALL_STATE(1290)] = 49267, + [SMALL_STATE(1291)] = 49290, + [SMALL_STATE(1292)] = 49311, + [SMALL_STATE(1293)] = 49336, + [SMALL_STATE(1294)] = 49357, + [SMALL_STATE(1295)] = 49402, + [SMALL_STATE(1296)] = 49427, + [SMALL_STATE(1297)] = 49448, + [SMALL_STATE(1298)] = 49473, + [SMALL_STATE(1299)] = 49496, + [SMALL_STATE(1300)] = 49519, + [SMALL_STATE(1301)] = 49542, + [SMALL_STATE(1302)] = 49567, + [SMALL_STATE(1303)] = 49590, + [SMALL_STATE(1304)] = 49613, + [SMALL_STATE(1305)] = 49633, + [SMALL_STATE(1306)] = 49653, + [SMALL_STATE(1307)] = 49673, + [SMALL_STATE(1308)] = 49693, + [SMALL_STATE(1309)] = 49713, + [SMALL_STATE(1310)] = 49733, + [SMALL_STATE(1311)] = 49753, + [SMALL_STATE(1312)] = 49773, + [SMALL_STATE(1313)] = 49793, + [SMALL_STATE(1314)] = 49813, + [SMALL_STATE(1315)] = 49833, + [SMALL_STATE(1316)] = 49853, + [SMALL_STATE(1317)] = 49873, + [SMALL_STATE(1318)] = 49895, + [SMALL_STATE(1319)] = 49917, + [SMALL_STATE(1320)] = 49937, + [SMALL_STATE(1321)] = 49961, + [SMALL_STATE(1322)] = 49981, + [SMALL_STATE(1323)] = 50003, + [SMALL_STATE(1324)] = 50023, + [SMALL_STATE(1325)] = 50043, + [SMALL_STATE(1326)] = 50063, + [SMALL_STATE(1327)] = 50083, + [SMALL_STATE(1328)] = 50103, + [SMALL_STATE(1329)] = 50123, + [SMALL_STATE(1330)] = 50143, + [SMALL_STATE(1331)] = 50163, + [SMALL_STATE(1332)] = 50183, + [SMALL_STATE(1333)] = 50203, + [SMALL_STATE(1334)] = 50223, + [SMALL_STATE(1335)] = 50248, + [SMALL_STATE(1336)] = 50273, + [SMALL_STATE(1337)] = 50294, + [SMALL_STATE(1338)] = 50315, + [SMALL_STATE(1339)] = 50340, + [SMALL_STATE(1340)] = 50365, + [SMALL_STATE(1341)] = 50386, + [SMALL_STATE(1342)] = 50409, + [SMALL_STATE(1343)] = 50434, + [SMALL_STATE(1344)] = 50459, + [SMALL_STATE(1345)] = 50482, + [SMALL_STATE(1346)] = 50507, + [SMALL_STATE(1347)] = 50530, + [SMALL_STATE(1348)] = 50555, + [SMALL_STATE(1349)] = 50578, + [SMALL_STATE(1350)] = 50601, + [SMALL_STATE(1351)] = 50624, + [SMALL_STATE(1352)] = 50647, + [SMALL_STATE(1353)] = 50670, + [SMALL_STATE(1354)] = 50693, + [SMALL_STATE(1355)] = 50716, + [SMALL_STATE(1356)] = 50739, + [SMALL_STATE(1357)] = 50762, + [SMALL_STATE(1358)] = 50797, + [SMALL_STATE(1359)] = 50817, + [SMALL_STATE(1360)] = 50837, + [SMALL_STATE(1361)] = 50857, + [SMALL_STATE(1362)] = 50881, + [SMALL_STATE(1363)] = 50901, + [SMALL_STATE(1364)] = 50921, + [SMALL_STATE(1365)] = 50945, + [SMALL_STATE(1366)] = 50965, + [SMALL_STATE(1367)] = 50985, + [SMALL_STATE(1368)] = 51009, + [SMALL_STATE(1369)] = 51029, + [SMALL_STATE(1370)] = 51049, + [SMALL_STATE(1371)] = 51069, + [SMALL_STATE(1372)] = 51089, + [SMALL_STATE(1373)] = 51109, + [SMALL_STATE(1374)] = 51129, + [SMALL_STATE(1375)] = 51149, + [SMALL_STATE(1376)] = 51169, + [SMALL_STATE(1377)] = 51189, + [SMALL_STATE(1378)] = 51209, + [SMALL_STATE(1379)] = 51233, + [SMALL_STATE(1380)] = 51253, + [SMALL_STATE(1381)] = 51273, + [SMALL_STATE(1382)] = 51293, + [SMALL_STATE(1383)] = 51313, + [SMALL_STATE(1384)] = 51333, + [SMALL_STATE(1385)] = 51353, + [SMALL_STATE(1386)] = 51373, + [SMALL_STATE(1387)] = 51393, + [SMALL_STATE(1388)] = 51413, + [SMALL_STATE(1389)] = 51433, + [SMALL_STATE(1390)] = 51453, + [SMALL_STATE(1391)] = 51473, + [SMALL_STATE(1392)] = 51493, + [SMALL_STATE(1393)] = 51513, + [SMALL_STATE(1394)] = 51536, + [SMALL_STATE(1395)] = 51567, + [SMALL_STATE(1396)] = 51600, + [SMALL_STATE(1397)] = 51631, + [SMALL_STATE(1398)] = 51662, + [SMALL_STATE(1399)] = 51693, + [SMALL_STATE(1400)] = 51720, + [SMALL_STATE(1401)] = 51751, + [SMALL_STATE(1402)] = 51780, + [SMALL_STATE(1403)] = 51811, + [SMALL_STATE(1404)] = 51836, + [SMALL_STATE(1405)] = 51869, + [SMALL_STATE(1406)] = 51900, + [SMALL_STATE(1407)] = 51923, + [SMALL_STATE(1408)] = 51954, + [SMALL_STATE(1409)] = 51979, + [SMALL_STATE(1410)] = 52004, + [SMALL_STATE(1411)] = 52035, + [SMALL_STATE(1412)] = 52068, + [SMALL_STATE(1413)] = 52101, + [SMALL_STATE(1414)] = 52123, + [SMALL_STATE(1415)] = 52153, + [SMALL_STATE(1416)] = 52185, + [SMALL_STATE(1417)] = 52215, + [SMALL_STATE(1418)] = 52237, + [SMALL_STATE(1419)] = 52267, + [SMALL_STATE(1420)] = 52297, + [SMALL_STATE(1421)] = 52329, + [SMALL_STATE(1422)] = 52355, + [SMALL_STATE(1423)] = 52375, + [SMALL_STATE(1424)] = 52405, + [SMALL_STATE(1425)] = 52431, + [SMALL_STATE(1426)] = 52461, + [SMALL_STATE(1427)] = 52491, + [SMALL_STATE(1428)] = 52513, + [SMALL_STATE(1429)] = 52543, + [SMALL_STATE(1430)] = 52575, + [SMALL_STATE(1431)] = 52605, + [SMALL_STATE(1432)] = 52625, + [SMALL_STATE(1433)] = 52655, + [SMALL_STATE(1434)] = 52685, + [SMALL_STATE(1435)] = 52715, + [SMALL_STATE(1436)] = 52745, + [SMALL_STATE(1437)] = 52775, + [SMALL_STATE(1438)] = 52805, + [SMALL_STATE(1439)] = 52835, + [SMALL_STATE(1440)] = 52865, + [SMALL_STATE(1441)] = 52887, + [SMALL_STATE(1442)] = 52917, + [SMALL_STATE(1443)] = 52947, + [SMALL_STATE(1444)] = 52973, + [SMALL_STATE(1445)] = 53003, + [SMALL_STATE(1446)] = 53035, + [SMALL_STATE(1447)] = 53057, + [SMALL_STATE(1448)] = 53087, + [SMALL_STATE(1449)] = 53109, + [SMALL_STATE(1450)] = 53129, + [SMALL_STATE(1451)] = 53158, + [SMALL_STATE(1452)] = 53177, + [SMALL_STATE(1453)] = 53204, + [SMALL_STATE(1454)] = 53231, + [SMALL_STATE(1455)] = 53250, + [SMALL_STATE(1456)] = 53271, + [SMALL_STATE(1457)] = 53298, + [SMALL_STATE(1458)] = 53321, + [SMALL_STATE(1459)] = 53348, + [SMALL_STATE(1460)] = 53367, + [SMALL_STATE(1461)] = 53386, + [SMALL_STATE(1462)] = 53415, + [SMALL_STATE(1463)] = 53438, + [SMALL_STATE(1464)] = 53463, + [SMALL_STATE(1465)] = 53492, + [SMALL_STATE(1466)] = 53519, + [SMALL_STATE(1467)] = 53540, + [SMALL_STATE(1468)] = 53565, + [SMALL_STATE(1469)] = 53588, + [SMALL_STATE(1470)] = 53613, + [SMALL_STATE(1471)] = 53632, + [SMALL_STATE(1472)] = 53657, + [SMALL_STATE(1473)] = 53680, + [SMALL_STATE(1474)] = 53707, + [SMALL_STATE(1475)] = 53722, + [SMALL_STATE(1476)] = 53747, + [SMALL_STATE(1477)] = 53774, + [SMALL_STATE(1478)] = 53801, + [SMALL_STATE(1479)] = 53828, + [SMALL_STATE(1480)] = 53853, + [SMALL_STATE(1481)] = 53880, + [SMALL_STATE(1482)] = 53899, + [SMALL_STATE(1483)] = 53928, + [SMALL_STATE(1484)] = 53957, + [SMALL_STATE(1485)] = 53976, + [SMALL_STATE(1486)] = 54003, + [SMALL_STATE(1487)] = 54030, + [SMALL_STATE(1488)] = 54057, + [SMALL_STATE(1489)] = 54076, + [SMALL_STATE(1490)] = 54103, + [SMALL_STATE(1491)] = 54128, + [SMALL_STATE(1492)] = 54157, + [SMALL_STATE(1493)] = 54182, + [SMALL_STATE(1494)] = 54205, + [SMALL_STATE(1495)] = 54230, + [SMALL_STATE(1496)] = 54257, + [SMALL_STATE(1497)] = 54279, + [SMALL_STATE(1498)] = 54305, + [SMALL_STATE(1499)] = 54321, + [SMALL_STATE(1500)] = 54347, + [SMALL_STATE(1501)] = 54373, + [SMALL_STATE(1502)] = 54399, + [SMALL_STATE(1503)] = 54425, + [SMALL_STATE(1504)] = 54439, + [SMALL_STATE(1505)] = 54463, + [SMALL_STATE(1506)] = 54477, + [SMALL_STATE(1507)] = 54499, + [SMALL_STATE(1508)] = 54513, + [SMALL_STATE(1509)] = 54539, + [SMALL_STATE(1510)] = 54553, + [SMALL_STATE(1511)] = 54569, + [SMALL_STATE(1512)] = 54585, + [SMALL_STATE(1513)] = 54599, + [SMALL_STATE(1514)] = 54613, + [SMALL_STATE(1515)] = 54629, + [SMALL_STATE(1516)] = 54655, + [SMALL_STATE(1517)] = 54679, + [SMALL_STATE(1518)] = 54705, + [SMALL_STATE(1519)] = 54727, + [SMALL_STATE(1520)] = 54749, + [SMALL_STATE(1521)] = 54771, + [SMALL_STATE(1522)] = 54787, + [SMALL_STATE(1523)] = 54811, + [SMALL_STATE(1524)] = 54827, + [SMALL_STATE(1525)] = 54843, + [SMALL_STATE(1526)] = 54859, + [SMALL_STATE(1527)] = 54875, + [SMALL_STATE(1528)] = 54897, + [SMALL_STATE(1529)] = 54923, + [SMALL_STATE(1530)] = 54937, + [SMALL_STATE(1531)] = 54963, + [SMALL_STATE(1532)] = 54989, + [SMALL_STATE(1533)] = 55013, + [SMALL_STATE(1534)] = 55037, + [SMALL_STATE(1535)] = 55063, + [SMALL_STATE(1536)] = 55086, + [SMALL_STATE(1537)] = 55109, + [SMALL_STATE(1538)] = 55132, + [SMALL_STATE(1539)] = 55155, + [SMALL_STATE(1540)] = 55176, + [SMALL_STATE(1541)] = 55199, + [SMALL_STATE(1542)] = 55222, + [SMALL_STATE(1543)] = 55241, + [SMALL_STATE(1544)] = 55258, + [SMALL_STATE(1545)] = 55273, + [SMALL_STATE(1546)] = 55296, + [SMALL_STATE(1547)] = 55319, + [SMALL_STATE(1548)] = 55342, + [SMALL_STATE(1549)] = 55363, + [SMALL_STATE(1550)] = 55380, + [SMALL_STATE(1551)] = 55403, + [SMALL_STATE(1552)] = 55426, + [SMALL_STATE(1553)] = 55443, + [SMALL_STATE(1554)] = 55466, + [SMALL_STATE(1555)] = 55489, + [SMALL_STATE(1556)] = 55506, + [SMALL_STATE(1557)] = 55529, + [SMALL_STATE(1558)] = 55552, + [SMALL_STATE(1559)] = 55575, + [SMALL_STATE(1560)] = 55592, + [SMALL_STATE(1561)] = 55611, + [SMALL_STATE(1562)] = 55634, + [SMALL_STATE(1563)] = 55651, + [SMALL_STATE(1564)] = 55674, + [SMALL_STATE(1565)] = 55697, + [SMALL_STATE(1566)] = 55720, + [SMALL_STATE(1567)] = 55735, + [SMALL_STATE(1568)] = 55758, + [SMALL_STATE(1569)] = 55777, + [SMALL_STATE(1570)] = 55800, + [SMALL_STATE(1571)] = 55823, + [SMALL_STATE(1572)] = 55846, + [SMALL_STATE(1573)] = 55869, + [SMALL_STATE(1574)] = 55892, + [SMALL_STATE(1575)] = 55915, + [SMALL_STATE(1576)] = 55938, + [SMALL_STATE(1577)] = 55961, + [SMALL_STATE(1578)] = 55984, + [SMALL_STATE(1579)] = 56007, + [SMALL_STATE(1580)] = 56030, + [SMALL_STATE(1581)] = 56053, + [SMALL_STATE(1582)] = 56076, + [SMALL_STATE(1583)] = 56099, + [SMALL_STATE(1584)] = 56122, + [SMALL_STATE(1585)] = 56145, + [SMALL_STATE(1586)] = 56168, + [SMALL_STATE(1587)] = 56191, + [SMALL_STATE(1588)] = 56214, + [SMALL_STATE(1589)] = 56237, + [SMALL_STATE(1590)] = 56260, + [SMALL_STATE(1591)] = 56283, + [SMALL_STATE(1592)] = 56306, + [SMALL_STATE(1593)] = 56329, + [SMALL_STATE(1594)] = 56352, + [SMALL_STATE(1595)] = 56369, + [SMALL_STATE(1596)] = 56389, + [SMALL_STATE(1597)] = 56407, + [SMALL_STATE(1598)] = 56423, + [SMALL_STATE(1599)] = 56439, + [SMALL_STATE(1600)] = 56459, + [SMALL_STATE(1601)] = 56479, + [SMALL_STATE(1602)] = 56499, + [SMALL_STATE(1603)] = 56511, + [SMALL_STATE(1604)] = 56531, + [SMALL_STATE(1605)] = 56543, + [SMALL_STATE(1606)] = 56559, + [SMALL_STATE(1607)] = 56571, + [SMALL_STATE(1608)] = 56591, + [SMALL_STATE(1609)] = 56603, + [SMALL_STATE(1610)] = 56619, + [SMALL_STATE(1611)] = 56631, + [SMALL_STATE(1612)] = 56649, + [SMALL_STATE(1613)] = 56669, + [SMALL_STATE(1614)] = 56685, + [SMALL_STATE(1615)] = 56697, + [SMALL_STATE(1616)] = 56715, + [SMALL_STATE(1617)] = 56735, + [SMALL_STATE(1618)] = 56755, + [SMALL_STATE(1619)] = 56773, + [SMALL_STATE(1620)] = 56793, + [SMALL_STATE(1621)] = 56813, + [SMALL_STATE(1622)] = 56833, + [SMALL_STATE(1623)] = 56849, + [SMALL_STATE(1624)] = 56869, + [SMALL_STATE(1625)] = 56889, + [SMALL_STATE(1626)] = 56909, + [SMALL_STATE(1627)] = 56925, + [SMALL_STATE(1628)] = 56937, + [SMALL_STATE(1629)] = 56949, + [SMALL_STATE(1630)] = 56961, + [SMALL_STATE(1631)] = 56981, + [SMALL_STATE(1632)] = 57001, + [SMALL_STATE(1633)] = 57017, + [SMALL_STATE(1634)] = 57035, + [SMALL_STATE(1635)] = 57055, + [SMALL_STATE(1636)] = 57071, + [SMALL_STATE(1637)] = 57091, + [SMALL_STATE(1638)] = 57107, + [SMALL_STATE(1639)] = 57127, + [SMALL_STATE(1640)] = 57147, + [SMALL_STATE(1641)] = 57163, + [SMALL_STATE(1642)] = 57183, + [SMALL_STATE(1643)] = 57195, + [SMALL_STATE(1644)] = 57215, + [SMALL_STATE(1645)] = 57231, + [SMALL_STATE(1646)] = 57251, + [SMALL_STATE(1647)] = 57263, + [SMALL_STATE(1648)] = 57275, + [SMALL_STATE(1649)] = 57295, + [SMALL_STATE(1650)] = 57315, + [SMALL_STATE(1651)] = 57331, + [SMALL_STATE(1652)] = 57351, + [SMALL_STATE(1653)] = 57363, + [SMALL_STATE(1654)] = 57379, + [SMALL_STATE(1655)] = 57391, + [SMALL_STATE(1656)] = 57407, + [SMALL_STATE(1657)] = 57423, + [SMALL_STATE(1658)] = 57443, + [SMALL_STATE(1659)] = 57459, + [SMALL_STATE(1660)] = 57475, + [SMALL_STATE(1661)] = 57495, + [SMALL_STATE(1662)] = 57511, + [SMALL_STATE(1663)] = 57531, + [SMALL_STATE(1664)] = 57545, + [SMALL_STATE(1665)] = 57557, + [SMALL_STATE(1666)] = 57575, + [SMALL_STATE(1667)] = 57591, + [SMALL_STATE(1668)] = 57607, + [SMALL_STATE(1669)] = 57624, + [SMALL_STATE(1670)] = 57641, + [SMALL_STATE(1671)] = 57658, + [SMALL_STATE(1672)] = 57673, + [SMALL_STATE(1673)] = 57690, + [SMALL_STATE(1674)] = 57707, + [SMALL_STATE(1675)] = 57722, + [SMALL_STATE(1676)] = 57739, + [SMALL_STATE(1677)] = 57754, + [SMALL_STATE(1678)] = 57771, + [SMALL_STATE(1679)] = 57788, + [SMALL_STATE(1680)] = 57803, + [SMALL_STATE(1681)] = 57816, + [SMALL_STATE(1682)] = 57831, + [SMALL_STATE(1683)] = 57848, + [SMALL_STATE(1684)] = 57863, + [SMALL_STATE(1685)] = 57880, + [SMALL_STATE(1686)] = 57897, + [SMALL_STATE(1687)] = 57912, + [SMALL_STATE(1688)] = 57925, + [SMALL_STATE(1689)] = 57942, + [SMALL_STATE(1690)] = 57957, + [SMALL_STATE(1691)] = 57970, + [SMALL_STATE(1692)] = 57983, + [SMALL_STATE(1693)] = 58000, + [SMALL_STATE(1694)] = 58015, + [SMALL_STATE(1695)] = 58032, + [SMALL_STATE(1696)] = 58047, + [SMALL_STATE(1697)] = 58064, + [SMALL_STATE(1698)] = 58081, + [SMALL_STATE(1699)] = 58098, + [SMALL_STATE(1700)] = 58115, + [SMALL_STATE(1701)] = 58132, + [SMALL_STATE(1702)] = 58149, + [SMALL_STATE(1703)] = 58164, + [SMALL_STATE(1704)] = 58181, + [SMALL_STATE(1705)] = 58198, + [SMALL_STATE(1706)] = 58215, + [SMALL_STATE(1707)] = 58232, + [SMALL_STATE(1708)] = 58249, + [SMALL_STATE(1709)] = 58266, + [SMALL_STATE(1710)] = 58279, + [SMALL_STATE(1711)] = 58296, + [SMALL_STATE(1712)] = 58311, + [SMALL_STATE(1713)] = 58326, + [SMALL_STATE(1714)] = 58343, + [SMALL_STATE(1715)] = 58360, + [SMALL_STATE(1716)] = 58375, + [SMALL_STATE(1717)] = 58390, + [SMALL_STATE(1718)] = 58407, + [SMALL_STATE(1719)] = 58422, + [SMALL_STATE(1720)] = 58439, + [SMALL_STATE(1721)] = 58456, + [SMALL_STATE(1722)] = 58473, + [SMALL_STATE(1723)] = 58490, + [SMALL_STATE(1724)] = 58507, + [SMALL_STATE(1725)] = 58524, + [SMALL_STATE(1726)] = 58539, + [SMALL_STATE(1727)] = 58556, + [SMALL_STATE(1728)] = 58573, + [SMALL_STATE(1729)] = 58590, + [SMALL_STATE(1730)] = 58605, + [SMALL_STATE(1731)] = 58618, + [SMALL_STATE(1732)] = 58635, + [SMALL_STATE(1733)] = 58650, + [SMALL_STATE(1734)] = 58663, + [SMALL_STATE(1735)] = 58678, + [SMALL_STATE(1736)] = 58695, + [SMALL_STATE(1737)] = 58708, + [SMALL_STATE(1738)] = 58723, + [SMALL_STATE(1739)] = 58736, + [SMALL_STATE(1740)] = 58751, + [SMALL_STATE(1741)] = 58764, + [SMALL_STATE(1742)] = 58781, + [SMALL_STATE(1743)] = 58798, + [SMALL_STATE(1744)] = 58815, + [SMALL_STATE(1745)] = 58832, + [SMALL_STATE(1746)] = 58849, + [SMALL_STATE(1747)] = 58866, + [SMALL_STATE(1748)] = 58883, + [SMALL_STATE(1749)] = 58900, + [SMALL_STATE(1750)] = 58917, + [SMALL_STATE(1751)] = 58934, + [SMALL_STATE(1752)] = 58951, + [SMALL_STATE(1753)] = 58968, + [SMALL_STATE(1754)] = 58985, + [SMALL_STATE(1755)] = 59002, + [SMALL_STATE(1756)] = 59019, + [SMALL_STATE(1757)] = 59036, + [SMALL_STATE(1758)] = 59051, + [SMALL_STATE(1759)] = 59066, + [SMALL_STATE(1760)] = 59083, + [SMALL_STATE(1761)] = 59100, + [SMALL_STATE(1762)] = 59114, + [SMALL_STATE(1763)] = 59128, + [SMALL_STATE(1764)] = 59142, + [SMALL_STATE(1765)] = 59156, + [SMALL_STATE(1766)] = 59166, + [SMALL_STATE(1767)] = 59180, + [SMALL_STATE(1768)] = 59194, + [SMALL_STATE(1769)] = 59208, + [SMALL_STATE(1770)] = 59222, + [SMALL_STATE(1771)] = 59236, + [SMALL_STATE(1772)] = 59246, + [SMALL_STATE(1773)] = 59260, + [SMALL_STATE(1774)] = 59274, + [SMALL_STATE(1775)] = 59288, + [SMALL_STATE(1776)] = 59300, + [SMALL_STATE(1777)] = 59314, + [SMALL_STATE(1778)] = 59328, + [SMALL_STATE(1779)] = 59342, + [SMALL_STATE(1780)] = 59356, + [SMALL_STATE(1781)] = 59370, + [SMALL_STATE(1782)] = 59384, + [SMALL_STATE(1783)] = 59396, + [SMALL_STATE(1784)] = 59410, + [SMALL_STATE(1785)] = 59422, + [SMALL_STATE(1786)] = 59436, + [SMALL_STATE(1787)] = 59450, + [SMALL_STATE(1788)] = 59460, + [SMALL_STATE(1789)] = 59472, + [SMALL_STATE(1790)] = 59484, + [SMALL_STATE(1791)] = 59496, + [SMALL_STATE(1792)] = 59508, + [SMALL_STATE(1793)] = 59520, + [SMALL_STATE(1794)] = 59534, + [SMALL_STATE(1795)] = 59548, + [SMALL_STATE(1796)] = 59562, + [SMALL_STATE(1797)] = 59572, + [SMALL_STATE(1798)] = 59586, + [SMALL_STATE(1799)] = 59598, + [SMALL_STATE(1800)] = 59612, + [SMALL_STATE(1801)] = 59626, + [SMALL_STATE(1802)] = 59640, + [SMALL_STATE(1803)] = 59652, + [SMALL_STATE(1804)] = 59664, + [SMALL_STATE(1805)] = 59678, + [SMALL_STATE(1806)] = 59692, + [SMALL_STATE(1807)] = 59702, + [SMALL_STATE(1808)] = 59716, + [SMALL_STATE(1809)] = 59726, + [SMALL_STATE(1810)] = 59738, + [SMALL_STATE(1811)] = 59750, + [SMALL_STATE(1812)] = 59764, + [SMALL_STATE(1813)] = 59778, + [SMALL_STATE(1814)] = 59792, + [SMALL_STATE(1815)] = 59806, + [SMALL_STATE(1816)] = 59816, + [SMALL_STATE(1817)] = 59826, + [SMALL_STATE(1818)] = 59840, + [SMALL_STATE(1819)] = 59854, + [SMALL_STATE(1820)] = 59868, + [SMALL_STATE(1821)] = 59880, + [SMALL_STATE(1822)] = 59892, + [SMALL_STATE(1823)] = 59906, + [SMALL_STATE(1824)] = 59920, + [SMALL_STATE(1825)] = 59934, + [SMALL_STATE(1826)] = 59944, + [SMALL_STATE(1827)] = 59958, + [SMALL_STATE(1828)] = 59972, + [SMALL_STATE(1829)] = 59982, + [SMALL_STATE(1830)] = 59992, + [SMALL_STATE(1831)] = 60006, + [SMALL_STATE(1832)] = 60020, + [SMALL_STATE(1833)] = 60034, + [SMALL_STATE(1834)] = 60048, + [SMALL_STATE(1835)] = 60060, + [SMALL_STATE(1836)] = 60072, + [SMALL_STATE(1837)] = 60086, + [SMALL_STATE(1838)] = 60098, + [SMALL_STATE(1839)] = 60112, + [SMALL_STATE(1840)] = 60126, + [SMALL_STATE(1841)] = 60140, + [SMALL_STATE(1842)] = 60154, + [SMALL_STATE(1843)] = 60168, + [SMALL_STATE(1844)] = 60182, + [SMALL_STATE(1845)] = 60196, + [SMALL_STATE(1846)] = 60210, + [SMALL_STATE(1847)] = 60224, + [SMALL_STATE(1848)] = 60238, + [SMALL_STATE(1849)] = 60250, + [SMALL_STATE(1850)] = 60262, + [SMALL_STATE(1851)] = 60274, + [SMALL_STATE(1852)] = 60284, + [SMALL_STATE(1853)] = 60298, + [SMALL_STATE(1854)] = 60312, + [SMALL_STATE(1855)] = 60324, + [SMALL_STATE(1856)] = 60336, + [SMALL_STATE(1857)] = 60350, + [SMALL_STATE(1858)] = 60362, + [SMALL_STATE(1859)] = 60374, + [SMALL_STATE(1860)] = 60388, + [SMALL_STATE(1861)] = 60402, + [SMALL_STATE(1862)] = 60416, + [SMALL_STATE(1863)] = 60430, + [SMALL_STATE(1864)] = 60442, + [SMALL_STATE(1865)] = 60456, + [SMALL_STATE(1866)] = 60470, + [SMALL_STATE(1867)] = 60484, + [SMALL_STATE(1868)] = 60498, + [SMALL_STATE(1869)] = 60512, + [SMALL_STATE(1870)] = 60524, + [SMALL_STATE(1871)] = 60538, + [SMALL_STATE(1872)] = 60548, + [SMALL_STATE(1873)] = 60562, + [SMALL_STATE(1874)] = 60576, + [SMALL_STATE(1875)] = 60590, + [SMALL_STATE(1876)] = 60604, + [SMALL_STATE(1877)] = 60618, + [SMALL_STATE(1878)] = 60632, + [SMALL_STATE(1879)] = 60646, + [SMALL_STATE(1880)] = 60656, + [SMALL_STATE(1881)] = 60666, + [SMALL_STATE(1882)] = 60676, + [SMALL_STATE(1883)] = 60690, + [SMALL_STATE(1884)] = 60702, + [SMALL_STATE(1885)] = 60716, + [SMALL_STATE(1886)] = 60730, + [SMALL_STATE(1887)] = 60744, + [SMALL_STATE(1888)] = 60758, + [SMALL_STATE(1889)] = 60772, + [SMALL_STATE(1890)] = 60786, + [SMALL_STATE(1891)] = 60800, + [SMALL_STATE(1892)] = 60810, + [SMALL_STATE(1893)] = 60824, + [SMALL_STATE(1894)] = 60838, + [SMALL_STATE(1895)] = 60848, + [SMALL_STATE(1896)] = 60862, + [SMALL_STATE(1897)] = 60872, + [SMALL_STATE(1898)] = 60886, + [SMALL_STATE(1899)] = 60900, + [SMALL_STATE(1900)] = 60914, + [SMALL_STATE(1901)] = 60928, + [SMALL_STATE(1902)] = 60942, + [SMALL_STATE(1903)] = 60956, + [SMALL_STATE(1904)] = 60966, + [SMALL_STATE(1905)] = 60980, + [SMALL_STATE(1906)] = 60990, + [SMALL_STATE(1907)] = 61004, + [SMALL_STATE(1908)] = 61014, + [SMALL_STATE(1909)] = 61024, + [SMALL_STATE(1910)] = 61038, + [SMALL_STATE(1911)] = 61052, + [SMALL_STATE(1912)] = 61062, + [SMALL_STATE(1913)] = 61076, + [SMALL_STATE(1914)] = 61090, + [SMALL_STATE(1915)] = 61100, + [SMALL_STATE(1916)] = 61114, + [SMALL_STATE(1917)] = 61128, + [SMALL_STATE(1918)] = 61142, + [SMALL_STATE(1919)] = 61152, + [SMALL_STATE(1920)] = 61166, + [SMALL_STATE(1921)] = 61176, + [SMALL_STATE(1922)] = 61190, + [SMALL_STATE(1923)] = 61204, + [SMALL_STATE(1924)] = 61218, + [SMALL_STATE(1925)] = 61232, + [SMALL_STATE(1926)] = 61246, + [SMALL_STATE(1927)] = 61256, + [SMALL_STATE(1928)] = 61270, + [SMALL_STATE(1929)] = 61284, + [SMALL_STATE(1930)] = 61296, + [SMALL_STATE(1931)] = 61310, + [SMALL_STATE(1932)] = 61320, + [SMALL_STATE(1933)] = 61334, + [SMALL_STATE(1934)] = 61348, + [SMALL_STATE(1935)] = 61362, + [SMALL_STATE(1936)] = 61376, + [SMALL_STATE(1937)] = 61390, + [SMALL_STATE(1938)] = 61404, + [SMALL_STATE(1939)] = 61416, + [SMALL_STATE(1940)] = 61426, + [SMALL_STATE(1941)] = 61440, + [SMALL_STATE(1942)] = 61454, + [SMALL_STATE(1943)] = 61468, + [SMALL_STATE(1944)] = 61482, + [SMALL_STATE(1945)] = 61496, + [SMALL_STATE(1946)] = 61510, + [SMALL_STATE(1947)] = 61524, + [SMALL_STATE(1948)] = 61538, + [SMALL_STATE(1949)] = 61552, + [SMALL_STATE(1950)] = 61566, + [SMALL_STATE(1951)] = 61580, + [SMALL_STATE(1952)] = 61594, + [SMALL_STATE(1953)] = 61608, + [SMALL_STATE(1954)] = 61622, + [SMALL_STATE(1955)] = 61636, + [SMALL_STATE(1956)] = 61650, + [SMALL_STATE(1957)] = 61664, + [SMALL_STATE(1958)] = 61678, + [SMALL_STATE(1959)] = 61692, + [SMALL_STATE(1960)] = 61706, + [SMALL_STATE(1961)] = 61716, + [SMALL_STATE(1962)] = 61730, + [SMALL_STATE(1963)] = 61740, + [SMALL_STATE(1964)] = 61754, + [SMALL_STATE(1965)] = 61768, + [SMALL_STATE(1966)] = 61782, + [SMALL_STATE(1967)] = 61796, + [SMALL_STATE(1968)] = 61810, + [SMALL_STATE(1969)] = 61824, + [SMALL_STATE(1970)] = 61838, + [SMALL_STATE(1971)] = 61852, + [SMALL_STATE(1972)] = 61866, + [SMALL_STATE(1973)] = 61880, + [SMALL_STATE(1974)] = 61892, + [SMALL_STATE(1975)] = 61906, + [SMALL_STATE(1976)] = 61916, + [SMALL_STATE(1977)] = 61926, + [SMALL_STATE(1978)] = 61938, + [SMALL_STATE(1979)] = 61952, + [SMALL_STATE(1980)] = 61964, + [SMALL_STATE(1981)] = 61978, + [SMALL_STATE(1982)] = 61992, + [SMALL_STATE(1983)] = 62004, + [SMALL_STATE(1984)] = 62018, + [SMALL_STATE(1985)] = 62032, + [SMALL_STATE(1986)] = 62046, + [SMALL_STATE(1987)] = 62060, + [SMALL_STATE(1988)] = 62074, + [SMALL_STATE(1989)] = 62088, + [SMALL_STATE(1990)] = 62102, + [SMALL_STATE(1991)] = 62114, + [SMALL_STATE(1992)] = 62128, + [SMALL_STATE(1993)] = 62142, + [SMALL_STATE(1994)] = 62156, + [SMALL_STATE(1995)] = 62170, + [SMALL_STATE(1996)] = 62184, + [SMALL_STATE(1997)] = 62198, + [SMALL_STATE(1998)] = 62212, + [SMALL_STATE(1999)] = 62226, + [SMALL_STATE(2000)] = 62236, + [SMALL_STATE(2001)] = 62246, + [SMALL_STATE(2002)] = 62260, + [SMALL_STATE(2003)] = 62274, + [SMALL_STATE(2004)] = 62288, + [SMALL_STATE(2005)] = 62302, + [SMALL_STATE(2006)] = 62316, + [SMALL_STATE(2007)] = 62328, + [SMALL_STATE(2008)] = 62339, + [SMALL_STATE(2009)] = 62350, + [SMALL_STATE(2010)] = 62359, + [SMALL_STATE(2011)] = 62368, + [SMALL_STATE(2012)] = 62379, + [SMALL_STATE(2013)] = 62388, + [SMALL_STATE(2014)] = 62399, + [SMALL_STATE(2015)] = 62410, + [SMALL_STATE(2016)] = 62421, + [SMALL_STATE(2017)] = 62432, + [SMALL_STATE(2018)] = 62443, + [SMALL_STATE(2019)] = 62454, + [SMALL_STATE(2020)] = 62465, + [SMALL_STATE(2021)] = 62476, + [SMALL_STATE(2022)] = 62487, + [SMALL_STATE(2023)] = 62498, + [SMALL_STATE(2024)] = 62509, + [SMALL_STATE(2025)] = 62520, + [SMALL_STATE(2026)] = 62531, + [SMALL_STATE(2027)] = 62542, + [SMALL_STATE(2028)] = 62553, + [SMALL_STATE(2029)] = 62564, + [SMALL_STATE(2030)] = 62575, + [SMALL_STATE(2031)] = 62586, + [SMALL_STATE(2032)] = 62597, + [SMALL_STATE(2033)] = 62608, + [SMALL_STATE(2034)] = 62619, + [SMALL_STATE(2035)] = 62630, + [SMALL_STATE(2036)] = 62641, + [SMALL_STATE(2037)] = 62650, + [SMALL_STATE(2038)] = 62661, + [SMALL_STATE(2039)] = 62672, + [SMALL_STATE(2040)] = 62683, + [SMALL_STATE(2041)] = 62694, + [SMALL_STATE(2042)] = 62705, + [SMALL_STATE(2043)] = 62716, + [SMALL_STATE(2044)] = 62727, + [SMALL_STATE(2045)] = 62738, + [SMALL_STATE(2046)] = 62749, + [SMALL_STATE(2047)] = 62760, + [SMALL_STATE(2048)] = 62771, + [SMALL_STATE(2049)] = 62782, + [SMALL_STATE(2050)] = 62793, + [SMALL_STATE(2051)] = 62804, + [SMALL_STATE(2052)] = 62815, + [SMALL_STATE(2053)] = 62826, + [SMALL_STATE(2054)] = 62837, + [SMALL_STATE(2055)] = 62848, + [SMALL_STATE(2056)] = 62857, + [SMALL_STATE(2057)] = 62868, + [SMALL_STATE(2058)] = 62879, + [SMALL_STATE(2059)] = 62890, + [SMALL_STATE(2060)] = 62901, + [SMALL_STATE(2061)] = 62912, + [SMALL_STATE(2062)] = 62921, + [SMALL_STATE(2063)] = 62932, + [SMALL_STATE(2064)] = 62943, + [SMALL_STATE(2065)] = 62954, + [SMALL_STATE(2066)] = 62965, + [SMALL_STATE(2067)] = 62976, + [SMALL_STATE(2068)] = 62987, + [SMALL_STATE(2069)] = 62998, + [SMALL_STATE(2070)] = 63009, + [SMALL_STATE(2071)] = 63020, + [SMALL_STATE(2072)] = 63031, + [SMALL_STATE(2073)] = 63042, + [SMALL_STATE(2074)] = 63053, + [SMALL_STATE(2075)] = 63064, + [SMALL_STATE(2076)] = 63075, + [SMALL_STATE(2077)] = 63086, + [SMALL_STATE(2078)] = 63097, + [SMALL_STATE(2079)] = 63108, + [SMALL_STATE(2080)] = 63119, + [SMALL_STATE(2081)] = 63130, + [SMALL_STATE(2082)] = 63141, + [SMALL_STATE(2083)] = 63150, + [SMALL_STATE(2084)] = 63161, + [SMALL_STATE(2085)] = 63170, + [SMALL_STATE(2086)] = 63181, + [SMALL_STATE(2087)] = 63192, + [SMALL_STATE(2088)] = 63203, + [SMALL_STATE(2089)] = 63214, + [SMALL_STATE(2090)] = 63225, + [SMALL_STATE(2091)] = 63236, + [SMALL_STATE(2092)] = 63247, + [SMALL_STATE(2093)] = 63258, + [SMALL_STATE(2094)] = 63269, + [SMALL_STATE(2095)] = 63280, + [SMALL_STATE(2096)] = 63291, + [SMALL_STATE(2097)] = 63302, + [SMALL_STATE(2098)] = 63313, + [SMALL_STATE(2099)] = 63324, + [SMALL_STATE(2100)] = 63335, + [SMALL_STATE(2101)] = 63346, + [SMALL_STATE(2102)] = 63357, + [SMALL_STATE(2103)] = 63368, + [SMALL_STATE(2104)] = 63379, + [SMALL_STATE(2105)] = 63390, + [SMALL_STATE(2106)] = 63399, + [SMALL_STATE(2107)] = 63408, + [SMALL_STATE(2108)] = 63417, + [SMALL_STATE(2109)] = 63428, + [SMALL_STATE(2110)] = 63439, + [SMALL_STATE(2111)] = 63450, + [SMALL_STATE(2112)] = 63461, + [SMALL_STATE(2113)] = 63470, + [SMALL_STATE(2114)] = 63481, + [SMALL_STATE(2115)] = 63492, + [SMALL_STATE(2116)] = 63501, + [SMALL_STATE(2117)] = 63512, + [SMALL_STATE(2118)] = 63523, + [SMALL_STATE(2119)] = 63534, + [SMALL_STATE(2120)] = 63545, + [SMALL_STATE(2121)] = 63556, + [SMALL_STATE(2122)] = 63567, + [SMALL_STATE(2123)] = 63578, + [SMALL_STATE(2124)] = 63589, + [SMALL_STATE(2125)] = 63600, + [SMALL_STATE(2126)] = 63611, + [SMALL_STATE(2127)] = 63622, + [SMALL_STATE(2128)] = 63633, + [SMALL_STATE(2129)] = 63642, + [SMALL_STATE(2130)] = 63653, + [SMALL_STATE(2131)] = 63664, + [SMALL_STATE(2132)] = 63675, + [SMALL_STATE(2133)] = 63686, + [SMALL_STATE(2134)] = 63697, + [SMALL_STATE(2135)] = 63708, + [SMALL_STATE(2136)] = 63719, + [SMALL_STATE(2137)] = 63730, + [SMALL_STATE(2138)] = 63741, + [SMALL_STATE(2139)] = 63752, + [SMALL_STATE(2140)] = 63763, + [SMALL_STATE(2141)] = 63774, + [SMALL_STATE(2142)] = 63785, + [SMALL_STATE(2143)] = 63796, + [SMALL_STATE(2144)] = 63807, + [SMALL_STATE(2145)] = 63818, + [SMALL_STATE(2146)] = 63829, + [SMALL_STATE(2147)] = 63840, + [SMALL_STATE(2148)] = 63849, + [SMALL_STATE(2149)] = 63860, + [SMALL_STATE(2150)] = 63869, + [SMALL_STATE(2151)] = 63880, + [SMALL_STATE(2152)] = 63889, + [SMALL_STATE(2153)] = 63900, + [SMALL_STATE(2154)] = 63911, + [SMALL_STATE(2155)] = 63922, + [SMALL_STATE(2156)] = 63933, + [SMALL_STATE(2157)] = 63944, + [SMALL_STATE(2158)] = 63955, + [SMALL_STATE(2159)] = 63966, + [SMALL_STATE(2160)] = 63977, + [SMALL_STATE(2161)] = 63986, + [SMALL_STATE(2162)] = 63997, + [SMALL_STATE(2163)] = 64008, + [SMALL_STATE(2164)] = 64019, + [SMALL_STATE(2165)] = 64030, + [SMALL_STATE(2166)] = 64041, + [SMALL_STATE(2167)] = 64052, + [SMALL_STATE(2168)] = 64061, + [SMALL_STATE(2169)] = 64072, + [SMALL_STATE(2170)] = 64083, + [SMALL_STATE(2171)] = 64092, + [SMALL_STATE(2172)] = 64103, + [SMALL_STATE(2173)] = 64114, + [SMALL_STATE(2174)] = 64125, + [SMALL_STATE(2175)] = 64136, + [SMALL_STATE(2176)] = 64147, + [SMALL_STATE(2177)] = 64158, + [SMALL_STATE(2178)] = 64169, + [SMALL_STATE(2179)] = 64180, + [SMALL_STATE(2180)] = 64191, + [SMALL_STATE(2181)] = 64202, + [SMALL_STATE(2182)] = 64213, + [SMALL_STATE(2183)] = 64224, + [SMALL_STATE(2184)] = 64235, + [SMALL_STATE(2185)] = 64244, + [SMALL_STATE(2186)] = 64253, + [SMALL_STATE(2187)] = 64264, + [SMALL_STATE(2188)] = 64273, + [SMALL_STATE(2189)] = 64284, + [SMALL_STATE(2190)] = 64293, + [SMALL_STATE(2191)] = 64304, + [SMALL_STATE(2192)] = 64315, + [SMALL_STATE(2193)] = 64326, + [SMALL_STATE(2194)] = 64337, + [SMALL_STATE(2195)] = 64348, + [SMALL_STATE(2196)] = 64359, + [SMALL_STATE(2197)] = 64370, + [SMALL_STATE(2198)] = 64381, + [SMALL_STATE(2199)] = 64392, + [SMALL_STATE(2200)] = 64403, + [SMALL_STATE(2201)] = 64414, + [SMALL_STATE(2202)] = 64423, + [SMALL_STATE(2203)] = 64432, + [SMALL_STATE(2204)] = 64443, + [SMALL_STATE(2205)] = 64452, + [SMALL_STATE(2206)] = 64461, + [SMALL_STATE(2207)] = 64469, + [SMALL_STATE(2208)] = 64477, + [SMALL_STATE(2209)] = 64485, + [SMALL_STATE(2210)] = 64493, + [SMALL_STATE(2211)] = 64501, + [SMALL_STATE(2212)] = 64509, + [SMALL_STATE(2213)] = 64517, + [SMALL_STATE(2214)] = 64525, + [SMALL_STATE(2215)] = 64533, + [SMALL_STATE(2216)] = 64541, + [SMALL_STATE(2217)] = 64549, + [SMALL_STATE(2218)] = 64557, + [SMALL_STATE(2219)] = 64565, + [SMALL_STATE(2220)] = 64573, + [SMALL_STATE(2221)] = 64581, + [SMALL_STATE(2222)] = 64589, + [SMALL_STATE(2223)] = 64597, + [SMALL_STATE(2224)] = 64605, + [SMALL_STATE(2225)] = 64613, + [SMALL_STATE(2226)] = 64621, + [SMALL_STATE(2227)] = 64629, + [SMALL_STATE(2228)] = 64637, + [SMALL_STATE(2229)] = 64645, + [SMALL_STATE(2230)] = 64653, + [SMALL_STATE(2231)] = 64661, + [SMALL_STATE(2232)] = 64669, + [SMALL_STATE(2233)] = 64677, + [SMALL_STATE(2234)] = 64685, + [SMALL_STATE(2235)] = 64693, + [SMALL_STATE(2236)] = 64701, + [SMALL_STATE(2237)] = 64709, + [SMALL_STATE(2238)] = 64717, + [SMALL_STATE(2239)] = 64725, + [SMALL_STATE(2240)] = 64733, + [SMALL_STATE(2241)] = 64741, + [SMALL_STATE(2242)] = 64749, + [SMALL_STATE(2243)] = 64757, + [SMALL_STATE(2244)] = 64765, + [SMALL_STATE(2245)] = 64773, + [SMALL_STATE(2246)] = 64781, + [SMALL_STATE(2247)] = 64789, + [SMALL_STATE(2248)] = 64797, + [SMALL_STATE(2249)] = 64805, + [SMALL_STATE(2250)] = 64813, + [SMALL_STATE(2251)] = 64821, + [SMALL_STATE(2252)] = 64829, + [SMALL_STATE(2253)] = 64837, + [SMALL_STATE(2254)] = 64845, + [SMALL_STATE(2255)] = 64853, + [SMALL_STATE(2256)] = 64861, + [SMALL_STATE(2257)] = 64869, + [SMALL_STATE(2258)] = 64877, + [SMALL_STATE(2259)] = 64885, + [SMALL_STATE(2260)] = 64893, + [SMALL_STATE(2261)] = 64901, + [SMALL_STATE(2262)] = 64909, + [SMALL_STATE(2263)] = 64917, + [SMALL_STATE(2264)] = 64925, + [SMALL_STATE(2265)] = 64933, + [SMALL_STATE(2266)] = 64941, + [SMALL_STATE(2267)] = 64949, + [SMALL_STATE(2268)] = 64957, + [SMALL_STATE(2269)] = 64965, + [SMALL_STATE(2270)] = 64973, + [SMALL_STATE(2271)] = 64981, + [SMALL_STATE(2272)] = 64989, + [SMALL_STATE(2273)] = 64997, + [SMALL_STATE(2274)] = 65005, + [SMALL_STATE(2275)] = 65013, + [SMALL_STATE(2276)] = 65021, + [SMALL_STATE(2277)] = 65029, + [SMALL_STATE(2278)] = 65037, + [SMALL_STATE(2279)] = 65045, + [SMALL_STATE(2280)] = 65053, + [SMALL_STATE(2281)] = 65061, + [SMALL_STATE(2282)] = 65069, + [SMALL_STATE(2283)] = 65077, + [SMALL_STATE(2284)] = 65085, + [SMALL_STATE(2285)] = 65093, + [SMALL_STATE(2286)] = 65101, + [SMALL_STATE(2287)] = 65109, + [SMALL_STATE(2288)] = 65117, + [SMALL_STATE(2289)] = 65125, + [SMALL_STATE(2290)] = 65133, + [SMALL_STATE(2291)] = 65141, + [SMALL_STATE(2292)] = 65149, + [SMALL_STATE(2293)] = 65157, + [SMALL_STATE(2294)] = 65165, + [SMALL_STATE(2295)] = 65173, + [SMALL_STATE(2296)] = 65181, + [SMALL_STATE(2297)] = 65189, + [SMALL_STATE(2298)] = 65197, + [SMALL_STATE(2299)] = 65205, + [SMALL_STATE(2300)] = 65213, + [SMALL_STATE(2301)] = 65221, + [SMALL_STATE(2302)] = 65229, + [SMALL_STATE(2303)] = 65237, + [SMALL_STATE(2304)] = 65245, + [SMALL_STATE(2305)] = 65253, + [SMALL_STATE(2306)] = 65261, + [SMALL_STATE(2307)] = 65269, + [SMALL_STATE(2308)] = 65277, + [SMALL_STATE(2309)] = 65285, + [SMALL_STATE(2310)] = 65293, + [SMALL_STATE(2311)] = 65301, + [SMALL_STATE(2312)] = 65309, + [SMALL_STATE(2313)] = 65317, + [SMALL_STATE(2314)] = 65325, + [SMALL_STATE(2315)] = 65333, + [SMALL_STATE(2316)] = 65341, + [SMALL_STATE(2317)] = 65349, + [SMALL_STATE(2318)] = 65357, + [SMALL_STATE(2319)] = 65365, + [SMALL_STATE(2320)] = 65373, + [SMALL_STATE(2321)] = 65381, + [SMALL_STATE(2322)] = 65389, + [SMALL_STATE(2323)] = 65397, + [SMALL_STATE(2324)] = 65405, + [SMALL_STATE(2325)] = 65413, + [SMALL_STATE(2326)] = 65421, + [SMALL_STATE(2327)] = 65429, + [SMALL_STATE(2328)] = 65437, + [SMALL_STATE(2329)] = 65445, + [SMALL_STATE(2330)] = 65453, + [SMALL_STATE(2331)] = 65461, + [SMALL_STATE(2332)] = 65469, + [SMALL_STATE(2333)] = 65477, + [SMALL_STATE(2334)] = 65485, + [SMALL_STATE(2335)] = 65493, + [SMALL_STATE(2336)] = 65501, + [SMALL_STATE(2337)] = 65509, + [SMALL_STATE(2338)] = 65517, + [SMALL_STATE(2339)] = 65525, + [SMALL_STATE(2340)] = 65533, + [SMALL_STATE(2341)] = 65541, + [SMALL_STATE(2342)] = 65549, + [SMALL_STATE(2343)] = 65557, + [SMALL_STATE(2344)] = 65565, + [SMALL_STATE(2345)] = 65573, + [SMALL_STATE(2346)] = 65581, + [SMALL_STATE(2347)] = 65589, + [SMALL_STATE(2348)] = 65597, + [SMALL_STATE(2349)] = 65605, + [SMALL_STATE(2350)] = 65613, + [SMALL_STATE(2351)] = 65621, + [SMALL_STATE(2352)] = 65629, + [SMALL_STATE(2353)] = 65637, + [SMALL_STATE(2354)] = 65645, + [SMALL_STATE(2355)] = 65653, + [SMALL_STATE(2356)] = 65661, + [SMALL_STATE(2357)] = 65669, + [SMALL_STATE(2358)] = 65677, + [SMALL_STATE(2359)] = 65685, + [SMALL_STATE(2360)] = 65693, + [SMALL_STATE(2361)] = 65701, + [SMALL_STATE(2362)] = 65709, + [SMALL_STATE(2363)] = 65717, + [SMALL_STATE(2364)] = 65725, + [SMALL_STATE(2365)] = 65733, + [SMALL_STATE(2366)] = 65741, + [SMALL_STATE(2367)] = 65749, + [SMALL_STATE(2368)] = 65757, + [SMALL_STATE(2369)] = 65765, + [SMALL_STATE(2370)] = 65773, + [SMALL_STATE(2371)] = 65781, + [SMALL_STATE(2372)] = 65789, + [SMALL_STATE(2373)] = 65797, + [SMALL_STATE(2374)] = 65805, + [SMALL_STATE(2375)] = 65813, + [SMALL_STATE(2376)] = 65821, + [SMALL_STATE(2377)] = 65829, + [SMALL_STATE(2378)] = 65837, + [SMALL_STATE(2379)] = 65845, + [SMALL_STATE(2380)] = 65853, + [SMALL_STATE(2381)] = 65861, + [SMALL_STATE(2382)] = 65869, + [SMALL_STATE(2383)] = 65877, + [SMALL_STATE(2384)] = 65885, + [SMALL_STATE(2385)] = 65893, + [SMALL_STATE(2386)] = 65901, + [SMALL_STATE(2387)] = 65909, + [SMALL_STATE(2388)] = 65917, + [SMALL_STATE(2389)] = 65925, + [SMALL_STATE(2390)] = 65933, + [SMALL_STATE(2391)] = 65941, + [SMALL_STATE(2392)] = 65949, + [SMALL_STATE(2393)] = 65957, + [SMALL_STATE(2394)] = 65965, + [SMALL_STATE(2395)] = 65973, + [SMALL_STATE(2396)] = 65981, + [SMALL_STATE(2397)] = 65989, + [SMALL_STATE(2398)] = 65997, + [SMALL_STATE(2399)] = 66005, + [SMALL_STATE(2400)] = 66013, + [SMALL_STATE(2401)] = 66021, + [SMALL_STATE(2402)] = 66029, + [SMALL_STATE(2403)] = 66037, + [SMALL_STATE(2404)] = 66045, + [SMALL_STATE(2405)] = 66053, + [SMALL_STATE(2406)] = 66061, + [SMALL_STATE(2407)] = 66069, + [SMALL_STATE(2408)] = 66077, + [SMALL_STATE(2409)] = 66085, + [SMALL_STATE(2410)] = 66093, + [SMALL_STATE(2411)] = 66101, + [SMALL_STATE(2412)] = 66109, + [SMALL_STATE(2413)] = 66117, + [SMALL_STATE(2414)] = 66125, + [SMALL_STATE(2415)] = 66133, + [SMALL_STATE(2416)] = 66141, + [SMALL_STATE(2417)] = 66149, + [SMALL_STATE(2418)] = 66157, + [SMALL_STATE(2419)] = 66165, + [SMALL_STATE(2420)] = 66173, + [SMALL_STATE(2421)] = 66181, + [SMALL_STATE(2422)] = 66189, + [SMALL_STATE(2423)] = 66197, + [SMALL_STATE(2424)] = 66205, + [SMALL_STATE(2425)] = 66213, + [SMALL_STATE(2426)] = 66221, + [SMALL_STATE(2427)] = 66229, + [SMALL_STATE(2428)] = 66237, + [SMALL_STATE(2429)] = 66245, + [SMALL_STATE(2430)] = 66253, + [SMALL_STATE(2431)] = 66261, + [SMALL_STATE(2432)] = 66269, + [SMALL_STATE(2433)] = 66277, + [SMALL_STATE(2434)] = 66285, }; static TSParseActionEntry ts_parse_actions[] = { @@ -120284,2490 +120527,2512 @@ static TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1070), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(376), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2417), - [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(33), - [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(9), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(27), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(148), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(959), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2415), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1438), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1424), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(724), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(733), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2410), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2008), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(578), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(76), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(577), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(575), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2010), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(168), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2397), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1262), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1791), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2341), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2340), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2339), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1096), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1407), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1226), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(80), - [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2075), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1362), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(572), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2325), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(82), - [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), - [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(518), - [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2076), - [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1052), - [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1742), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1002), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1010), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2319), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1278), - [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1010), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1075), + [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(258), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2307), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(31), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4), + [128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(29), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(103), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(970), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2434), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1417), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1413), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(721), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(720), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2431), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2010), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(564), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(75), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(574), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(539), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2018), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(149), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2427), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1263), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1768), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2417), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2414), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2367), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1095), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1403), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1230), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(85), + [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2110), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1367), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(588), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2356), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(88), + [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(512), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2113), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(990), + [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1737), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(973), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1073), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2351), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1278), + [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1073), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), + [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), + [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 136), [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 136), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 16), - [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 16), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 180), - [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 180), - [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 87), - [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 87), - [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 160), - [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 160), - [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 126), - [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 126), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 95), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 95), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 221), - [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 221), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 16), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 16), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 56), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 56), + [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 126), + [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 126), + [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), + [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 181), + [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 181), + [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 29), + [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 29), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 87), + [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 87), + [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 161), + [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 161), [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(708), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(33), - [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(13), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(27), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(148), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(959), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2415), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1811), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2124), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(724), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(955), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(546), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(87), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2165), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(123), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2182), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(90), - [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(572), - [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2325), - [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(82), - [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(518), - [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2076), - [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1052), - [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1742), - [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1002), - [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1010), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2319), - [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1010), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 1), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 1), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 29), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 29), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 32), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 32), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 25), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 25), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 56), - [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 56), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), - [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 204), - [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 204), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(216), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(291), - [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(292), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(293), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2191), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(520), - [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1682), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(517), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(501), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2026), - [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(922), - [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2353), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2378), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1482), - [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1491), - [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2227), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2058), - [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(554), - [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(567), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2229), - [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1262), - [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1768), - [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2230), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2231), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2232), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2393), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1456), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1229), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2057), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1381), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(572), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2252), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2237), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1274), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2237), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 147), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 147), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 107), - [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 107), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 100), - [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 100), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 154), - [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 154), - [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 110), - [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 110), - [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 109), - [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 109), - [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 90), - [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 90), - [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 48), - [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 48), - [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 2), - [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 2), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 111), - [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 111), - [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 90), - [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 90), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 13), - [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 13), - [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 112), - [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 112), - [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 113), - [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 113), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 13), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 13), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 79), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 79), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 116), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 116), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 89), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 89), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 155), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 155), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 63), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 63), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(274), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(484), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(483), - [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(463), - [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2335), - [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(520), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1682), - [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(517), - [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(274), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 121), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 121), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 122), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 122), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 114), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 114), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 156), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 156), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 157), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 157), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 116), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 116), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 72), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 72), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 114), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 114), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 116), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 116), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 114), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 114), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 116), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 116), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 124), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 124), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 158), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 158), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 125), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 125), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 72), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 72), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 64), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 64), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 107), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 107), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 72), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 72), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 72), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 72), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 159), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 159), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 106), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 106), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 67), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 67), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 161), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 161), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 163), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 163), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 164), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 164), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 121), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 121), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 47), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 47), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 165), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 165), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 84), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 84), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 50), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 50), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 102), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 102), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 49), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 49), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 91), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 91), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 130), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 130), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 153), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 153), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 149), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 149), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 131), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 131), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 158), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 158), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 72), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 72), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 116), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 116), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 158), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 158), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 166), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 166), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 158), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 158), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 132), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 132), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 22), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 22), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 229), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 229), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 167), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 167), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 225), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 225), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 228), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 228), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 93), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 93), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 227), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 227), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 219), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 219), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 24), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 24), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 49), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 49), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 92), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 92), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 26), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 26), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 226), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 226), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 225), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 225), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 224), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 224), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 213), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 213), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 138), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 138), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 170), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 170), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 140), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 140), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 13), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 13), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 222), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 222), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 79), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 79), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 91), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 91), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 141), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 141), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 13), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 13), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 219), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 219), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 218), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 218), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 201), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 201), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 217), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 217), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 13), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 13), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 13), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 13), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 216), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 216), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 209), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 209), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 215), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 215), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 194), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 194), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 214), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 214), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 213), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 213), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 145), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 145), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 212), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 212), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 211), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 211), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 209), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 209), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 208), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 208), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 206), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 206), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 176), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 176), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 28), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 28), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 68), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 68), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 48), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 48), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 203), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 203), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 90), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 90), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 170), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 170), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 202), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 202), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 201), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 201), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 200), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 200), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 199), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 199), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 198), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 198), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 197), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 197), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 48), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 48), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 196), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 196), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 116), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 116), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 47), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 47), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 195), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 195), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 194), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 194), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 193), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 193), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 146), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 146), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 47), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 47), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 69), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 69), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 163), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 163), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 89), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 89), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 48), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 48), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 171), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 171), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 192), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 192), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 191), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 191), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 190), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 190), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 189), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 189), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 188), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 188), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 70), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 70), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 152), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 152), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 83), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 83), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 48), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 48), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 47), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 47), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 149), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 149), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 48), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 48), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 173), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 173), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 173), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 173), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 185), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 185), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 90), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 90), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 184), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 184), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 182), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 182), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 181), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 181), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 71), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 71), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 178), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 178), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 131), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 131), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 177), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 177), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 176), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 176), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 37), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 37), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 85), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 85), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1333), - [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(528), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(530), - [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1299), - [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2162), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2289), - [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(565), - [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(572), - [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2257), - [2037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1370), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(558), - [2043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(556), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1372), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2179), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1309), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1725), - [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1284), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1831), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1831), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 172), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 172), - [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2289), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), - [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 18), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 18), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 18), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 18), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 33), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 33), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 34), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 39), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 62), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 62), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 35), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 36), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 35), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 23), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 23), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 65), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 65), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 21), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 21), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 66), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 66), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 43), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 43), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 17), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 17), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 45), + [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(712), + [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(31), + [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(8), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(29), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(103), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(970), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2434), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1805), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2139), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(721), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1016), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(571), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(89), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2179), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(174), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2140), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(79), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(588), + [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2356), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(88), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(512), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2113), + [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(990), + [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1737), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(973), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1073), + [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2351), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1073), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 1), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 1), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 95), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 95), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 222), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 222), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 32), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 32), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 25), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 25), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 205), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 205), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), + [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 107), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 107), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 147), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 147), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(239), + [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(248), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), + [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(362), + [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(360), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2411), + [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(514), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1718), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(513), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(506), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2143), + [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(932), + [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2370), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2207), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1466), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1521), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1525), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2233), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2106), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(578), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(554), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2237), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1263), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1770), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2238), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2239), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2240), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2144), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1470), + [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1231), + [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2101), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1364), + [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(588), + [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2258), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2246), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1274), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2246), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 132), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 132), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 149), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 149), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 166), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 166), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 121), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 121), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 213), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 213), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 165), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 165), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 79), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 79), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 164), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 164), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 72), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 72), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 72), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 72), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 197), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 197), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 84), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 84), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 79), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 79), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 214), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 214), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 83), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 83), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 13), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 13), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 162), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 162), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 72), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 72), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 72), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 72), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 71), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 71), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 85), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 85), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 48), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 48), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 215), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 215), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 195), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 195), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 116), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 116), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 216), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 216), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 212), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 212), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 210), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 210), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 160), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 160), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 159), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 159), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 47), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 47), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 70), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 70), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 158), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 158), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 217), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 217), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 157), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 157), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 159), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 159), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 156), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 156), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 2), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 2), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 48), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 48), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 218), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 218), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 202), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 202), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 155), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 155), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 167), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 167), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 154), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 154), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 153), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 153), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 219), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 219), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 159), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 159), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 220), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 220), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 69), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 69), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 47), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 47), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 221), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 221), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 48), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 48), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 68), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 68), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 223), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 223), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 47), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 47), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 48), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 48), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 214), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 214), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 13), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 13), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 224), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 224), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 225), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 225), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 89), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 89), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 226), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 226), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 90), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 90), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 116), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 116), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 220), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 220), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 227), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 227), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 91), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 91), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 92), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 92), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 196), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 196), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 49), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 49), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 22), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 22), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 93), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 93), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 195), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 195), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 67), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 67), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 64), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 64), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 228), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 228), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 194), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 194), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 63), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 63), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 164), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 164), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 24), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 24), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 100), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 100), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 102), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 102), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 26), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 26), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 225), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 225), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 106), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 106), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 193), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 193), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 107), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 107), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 13), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 13), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 192), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 192), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 191), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 191), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 13), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 13), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 190), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 190), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 159), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 159), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 189), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 189), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 198), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 198), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 89), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 89), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 13), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 13), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 13), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 13), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 48), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 48), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 90), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 90), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 229), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 229), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 109), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 109), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 90), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 90), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 110), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 110), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 210), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 210), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 171), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 171), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 149), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 149), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 111), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 111), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 90), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 90), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 112), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 112), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 113), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 113), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 172), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 172), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 28), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 28), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 146), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 146), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 199), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 199), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 209), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 209), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 145), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 145), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(401), + [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(481), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [1702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(482), + [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(483), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2371), + [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(514), + [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1718), + [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(513), + [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(401), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 121), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 121), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 50), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 50), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 122), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 122), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 49), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 49), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 141), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 141), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 140), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 140), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 114), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 114), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 116), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 116), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 72), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 72), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 114), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 114), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 116), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 116), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 174), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 174), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 207), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 207), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 114), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 114), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 138), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 138), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 174), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 174), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 116), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 116), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 125), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 125), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 177), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 177), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 48), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 48), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 47), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 47), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 186), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 186), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 185), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 185), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 200), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 200), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 183), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 183), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 182), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 182), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 201), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 201), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 202), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 202), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 203), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 203), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 177), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 177), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 178), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 178), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 171), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 171), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 131), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 131), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 179), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 179), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 91), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 91), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 130), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 130), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 37), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 37), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 131), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 131), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 204), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 204), + [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1357), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(511), + [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(510), + [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1288), + [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2192), + [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1809), + [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2332), + [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(543), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(588), + [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2320), + [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1384), + [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(562), + [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(565), + [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1386), + [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2147), + [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1322), + [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1671), + [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1300), + [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1821), + [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1821), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 173), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 173), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2332), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 18), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 18), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 18), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 18), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 33), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 33), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 34), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 39), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 35), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 36), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 35), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 43), + [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 43), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 103), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 103), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 45), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 14), + [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 14), [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 103), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 103), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 96), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 96), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 99), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 99), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 58), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 58), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 142), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 142), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 58), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 58), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 101), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 101), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 139), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 139), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 57), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 57), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 119), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 119), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 183), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 183), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 137), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 137), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 143), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 143), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 40), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 40), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 20), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 20), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 40), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 40), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 30), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 30), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 31), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 88), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 88), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 127), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 127), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 86), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 86), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 59), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 59), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 59), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 59), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [2808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2358), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 59), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 59), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 107), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 107), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 107), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 147), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 147), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 147), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 128), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 175), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 107), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 174), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 205), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 120), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 147), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 162), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 148), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 108), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 108), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 33), REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 55), - [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 55), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), - [3299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 51), - [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 51), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 53), - [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 53), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 52), - [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 52), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 53), - [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 53), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 52), - [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 52), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 52), - [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 52), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 52), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 52), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 53), - [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 53), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 52), - [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 52), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 52), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 52), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 52), - [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 52), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 53), - [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 53), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 52), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 52), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(316), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(314), - [3641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(313), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(532), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1488), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1454), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 129), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 46), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 52), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 52), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 99), - [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 20), - [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 59), - [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 58), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 223), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 210), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 99), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 186), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 58), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1302), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(185), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 20), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 81), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1676), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(550), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1097), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 118), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 106), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 82), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 135), - [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1532), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 74), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 134), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 133), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 75), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 76), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(186), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 77), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 26), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1455), - [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1452), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 78), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(525), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 42), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 150), - [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 150), SHIFT_REPEAT(521), - [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(41), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2180), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 89), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 73), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 54), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 61), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 60), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 30), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 99), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 117), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 20), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 94), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [4408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1230), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 27), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 151), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 207), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1466), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(668), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 97), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(98), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1461), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 98), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), - [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1221), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(223), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 187), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 60), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 58), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 61), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 179), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 80), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 17), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 17), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 66), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 66), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 65), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 65), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 21), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 21), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 62), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 62), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 23), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 23), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 147), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 147), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 147), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 59), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 59), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 107), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 107), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 107), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 119), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 119), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 142), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 142), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 59), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 59), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 57), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 57), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 58), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 58), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 58), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 58), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 59), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 59), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 20), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 20), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 143), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 143), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 184), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 184), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 88), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 88), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 139), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 139), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 40), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 40), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 137), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 137), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 30), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 30), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 31), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 127), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 127), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 86), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 86), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 96), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 96), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 99), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 99), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2375), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 101), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 101), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 40), + [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 40), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 163), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 108), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 108), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 107), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 128), + [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 206), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 176), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 175), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 147), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 120), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 148), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 33), REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), + [3313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [3316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), + [3319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 55), + [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 55), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 51), + [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 51), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 53), + [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 53), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 52), + [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 52), + [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 52), + [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 52), + [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 52), + [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 52), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 53), + [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 53), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 52), + [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 52), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 52), + [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 52), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 53), + [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 53), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 52), + [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 52), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 52), + [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 52), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 53), + [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 53), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 52), + [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 52), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1455), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1484), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(537), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(448), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(447), + [3694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(445), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 46), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 129), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 52), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 52), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 150), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 58), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 99), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [3936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1284), + [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(182), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 187), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 99), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 211), + [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 59), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 211), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 150), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 20), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 20), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 58), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 187), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1079), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1693), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(544), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 106), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 118), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 81), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 82), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), + [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1164), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 188), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(113), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 58), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 180), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 208), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 27), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 99), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 54), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 60), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 61), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1476), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 89), + [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 152), + [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 151), + [4355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 151), SHIFT_REPEAT(504), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 20), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(42), + [4377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2077), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(236), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 135), + [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1539), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 134), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 133), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(186), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 26), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1456), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 42), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 73), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 74), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 75), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 76), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [4528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1472), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 77), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 78), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 30), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 117), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(528), + [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1229), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 98), + [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1473), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 97), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(695), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 61), + [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 60), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 94), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 80), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5009] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [5071] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), }; #ifdef __cplusplus From 52ed09e82915f7a1623e775438c8fb33562c2e4e Mon Sep 17 00:00:00 2001 From: Calixte Denizet Date: Thu, 19 Mar 2020 20:40:33 +0100 Subject: [PATCH 2/3] And allow them as macro identifiers --- grammar.js | 8 +- src/grammar.json | 17 +- src/parser.c | 126050 ++++++++++++++++++++++---------------------- 3 files changed, 63680 insertions(+), 62395 deletions(-) diff --git a/grammar.js b/grammar.js index 67907c4a..5185aae1 100644 --- a/grammar.js +++ b/grammar.js @@ -129,7 +129,10 @@ module.exports = grammar({ return seq( 'macro_rules!', - field('name', $.identifier), + field('name', choice( + $.identifier, + $._reserved_identifier, + )), choice( seq('(', rules, ')', ';'), seq('{', rules, '}') @@ -877,7 +880,8 @@ module.exports = grammar({ macro_invocation: $ => seq( field('macro', choice( $.scoped_identifier, - $.identifier + $.identifier, + $._reserved_identifier, )), '!', $.token_tree diff --git a/src/grammar.json b/src/grammar.json index 0fe0b9cc..46a8f410 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -152,8 +152,17 @@ "type": "FIELD", "name": "name", "content": { - "type": "SYMBOL", - "name": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] } }, { @@ -4852,6 +4861,10 @@ { "type": "SYMBOL", "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" } ] } diff --git a/src/parser.c b/src/parser.c index 1b1ba564..7f286794 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2435 -#define LARGE_STATE_COUNT 589 +#define STATE_COUNT 2480 +#define LARGE_STATE_COUNT 594 #define SYMBOL_COUNT 313 #define ALIAS_COUNT 3 #define TOKEN_COUNT 138 #define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 230 +#define PRODUCTION_ID_COUNT 232 enum { sym_identifier = 1, @@ -2318,219 +2318,221 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [10] = {.index = 7, .length = 2}, [11] = {.index = 9, .length = 2}, [12] = {.index = 9, .length = 2}, - [13] = {.index = 11, .length = 2}, - [14] = {.index = 13, .length = 2}, - [15] = {.index = 13, .length = 2}, - [16] = {.index = 15, .length = 2}, - [17] = {.index = 17, .length = 1}, + [13] = {.index = 11, .length = 1}, + [14] = {.index = 12, .length = 2}, + [15] = {.index = 14, .length = 2}, + [16] = {.index = 14, .length = 2}, + [17] = {.index = 16, .length = 2}, [18] = {.index = 18, .length = 1}, - [19] = {.index = 18, .length = 1}, + [19] = {.index = 19, .length = 1}, [20] = {.index = 19, .length = 1}, - [21] = {.index = 20, .length = 2}, - [22] = {.index = 22, .length = 2}, - [23] = {.index = 20, .length = 2}, - [24] = {.index = 24, .length = 1}, - [25] = {.index = 25, .length = 2}, - [26] = {.index = 11, .length = 2}, - [27] = {.index = 27, .length = 1}, + [21] = {.index = 20, .length = 1}, + [22] = {.index = 21, .length = 2}, + [23] = {.index = 23, .length = 2}, + [24] = {.index = 21, .length = 2}, + [25] = {.index = 25, .length = 1}, + [26] = {.index = 26, .length = 2}, + [27] = {.index = 12, .length = 2}, [28] = {.index = 28, .length = 1}, - [29] = {.index = 29, .length = 2}, - [30] = {.index = 31, .length = 1}, - [31] = {.index = 32, .length = 2}, - [32] = {.index = 34, .length = 1}, - [33] = {.index = 9, .length = 2}, + [29] = {.index = 29, .length = 1}, + [30] = {.index = 30, .length = 2}, + [31] = {.index = 32, .length = 1}, + [32] = {.index = 33, .length = 2}, + [33] = {.index = 11, .length = 1}, [34] = {.index = 9, .length = 2}, - [35] = {.index = 35, .length = 2}, - [36] = {.index = 37, .length = 2}, - [37] = {.index = 39, .length = 1}, - [38] = {.index = 9, .length = 2}, + [35] = {.index = 9, .length = 2}, + [36] = {.index = 35, .length = 2}, + [37] = {.index = 37, .length = 2}, + [38] = {.index = 39, .length = 1}, [39] = {.index = 9, .length = 2}, - [40] = {.index = 40, .length = 3}, - [41] = {.index = 43, .length = 2}, - [42] = {.index = 45, .length = 2}, - [43] = {.index = 47, .length = 2}, + [40] = {.index = 9, .length = 2}, + [41] = {.index = 40, .length = 3}, + [42] = {.index = 43, .length = 2}, + [43] = {.index = 45, .length = 2}, [44] = {.index = 47, .length = 2}, - [45] = {.index = 37, .length = 2}, - [46] = {.index = 49, .length = 1}, - [47] = {.index = 50, .length = 2}, - [48] = {.index = 52, .length = 3}, - [49] = {.index = 55, .length = 2}, - [50] = {.index = 57, .length = 3}, - [52] = {.index = 60, .length = 1}, - [53] = {.index = 60, .length = 1}, - [54] = {.index = 49, .length = 1}, - [56] = {.index = 61, .length = 3}, - [57] = {.index = 64, .length = 1}, - [58] = {.index = 65, .length = 1}, - [60] = {.index = 66, .length = 2}, - [61] = {.index = 66, .length = 2}, - [62] = {.index = 68, .length = 1}, - [63] = {.index = 69, .length = 3}, - [64] = {.index = 72, .length = 2}, - [65] = {.index = 74, .length = 2}, - [66] = {.index = 74, .length = 2}, - [67] = {.index = 76, .length = 1}, - [68] = {.index = 77, .length = 2}, - [69] = {.index = 79, .length = 3}, - [70] = {.index = 82, .length = 2}, - [71] = {.index = 84, .length = 2}, - [72] = {.index = 86, .length = 2}, - [73] = {.index = 88, .length = 2}, - [74] = {.index = 90, .length = 2}, + [45] = {.index = 47, .length = 2}, + [46] = {.index = 37, .length = 2}, + [47] = {.index = 1, .length = 1}, + [48] = {.index = 49, .length = 1}, + [49] = {.index = 50, .length = 2}, + [50] = {.index = 52, .length = 3}, + [51] = {.index = 55, .length = 2}, + [52] = {.index = 57, .length = 3}, + [54] = {.index = 60, .length = 1}, + [55] = {.index = 60, .length = 1}, + [56] = {.index = 49, .length = 1}, + [58] = {.index = 61, .length = 3}, + [59] = {.index = 64, .length = 1}, + [60] = {.index = 65, .length = 1}, + [62] = {.index = 66, .length = 2}, + [63] = {.index = 66, .length = 2}, + [64] = {.index = 68, .length = 1}, + [65] = {.index = 69, .length = 3}, + [66] = {.index = 72, .length = 2}, + [67] = {.index = 74, .length = 2}, + [68] = {.index = 74, .length = 2}, + [69] = {.index = 76, .length = 1}, + [70] = {.index = 77, .length = 2}, + [71] = {.index = 79, .length = 3}, + [72] = {.index = 82, .length = 2}, + [73] = {.index = 84, .length = 2}, + [74] = {.index = 86, .length = 2}, [75] = {.index = 88, .length = 2}, [76] = {.index = 90, .length = 2}, - [77] = {.index = 92, .length = 1}, - [78] = {.index = 92, .length = 1}, - [79] = {.index = 93, .length = 1}, - [80] = {.index = 94, .length = 2}, - [81] = {.index = 96, .length = 2}, - [82] = {.index = 96, .length = 2}, - [83] = {.index = 86, .length = 2}, - [84] = {.index = 93, .length = 1}, - [85] = {.index = 98, .length = 1}, - [86] = {.index = 99, .length = 3}, - [87] = {.index = 102, .length = 1}, - [88] = {.index = 103, .length = 1}, - [89] = {.index = 104, .length = 2}, - [90] = {.index = 106, .length = 3}, - [91] = {.index = 109, .length = 3}, - [92] = {.index = 112, .length = 4}, - [93] = {.index = 116, .length = 3}, - [94] = {.index = 1, .length = 1}, - [95] = {.index = 119, .length = 3}, - [96] = {.index = 122, .length = 2}, - [97] = {.index = 124, .length = 2}, - [98] = {.index = 124, .length = 2}, - [99] = {.index = 126, .length = 1}, - [100] = {.index = 127, .length = 3}, - [101] = {.index = 130, .length = 3}, - [102] = {.index = 133, .length = 3}, - [103] = {.index = 136, .length = 1}, - [104] = {.index = 127, .length = 3}, - [105] = {.index = 130, .length = 3}, - [106] = {.index = 137, .length = 2}, - [107] = {.index = 139, .length = 2}, - [109] = {.index = 141, .length = 3}, - [110] = {.index = 144, .length = 4}, - [111] = {.index = 104, .length = 2}, - [112] = {.index = 148, .length = 3}, - [113] = {.index = 151, .length = 2}, - [114] = {.index = 153, .length = 2}, - [115] = {.index = 155, .length = 3}, - [116] = {.index = 158, .length = 3}, - [117] = {.index = 31, .length = 1}, - [118] = {.index = 137, .length = 2}, - [119] = {.index = 161, .length = 3}, - [120] = {.index = 164, .length = 2}, - [121] = {.index = 166, .length = 2}, - [122] = {.index = 168, .length = 3}, - [123] = {.index = 171, .length = 2}, - [124] = {.index = 173, .length = 2}, - [125] = {.index = 175, .length = 1}, - [126] = {.index = 176, .length = 2}, - [127] = {.index = 178, .length = 1}, - [128] = {.index = 164, .length = 2}, - [129] = {.index = 179, .length = 2}, - [130] = {.index = 181, .length = 4}, - [131] = {.index = 185, .length = 3}, - [132] = {.index = 188, .length = 4}, - [133] = {.index = 93, .length = 1}, - [134] = {.index = 192, .length = 2}, - [135] = {.index = 194, .length = 2}, - [136] = {.index = 196, .length = 3}, - [137] = {.index = 199, .length = 2}, - [138] = {.index = 201, .length = 3}, - [139] = {.index = 204, .length = 2}, - [140] = {.index = 206, .length = 4}, - [141] = {.index = 206, .length = 4}, - [142] = {.index = 210, .length = 3}, - [143] = {.index = 210, .length = 3}, - [144] = {.index = 201, .length = 3}, - [145] = {.index = 213, .length = 2}, - [146] = {.index = 215, .length = 2}, - [147] = {.index = 217, .length = 2}, - [148] = {.index = 219, .length = 1}, - [149] = {.index = 220, .length = 2}, - [150] = {.index = 222, .length = 2}, - [151] = {.index = 224, .length = 2}, - [152] = {.index = 194, .length = 2}, - [153] = {.index = 226, .length = 4}, - [154] = {.index = 230, .length = 3}, - [155] = {.index = 233, .length = 3}, - [156] = {.index = 236, .length = 3}, + [77] = {.index = 88, .length = 2}, + [78] = {.index = 90, .length = 2}, + [79] = {.index = 92, .length = 1}, + [80] = {.index = 92, .length = 1}, + [81] = {.index = 93, .length = 1}, + [82] = {.index = 94, .length = 2}, + [83] = {.index = 96, .length = 2}, + [84] = {.index = 96, .length = 2}, + [85] = {.index = 86, .length = 2}, + [86] = {.index = 93, .length = 1}, + [87] = {.index = 98, .length = 1}, + [88] = {.index = 99, .length = 3}, + [89] = {.index = 102, .length = 1}, + [90] = {.index = 103, .length = 1}, + [91] = {.index = 104, .length = 2}, + [92] = {.index = 106, .length = 3}, + [93] = {.index = 109, .length = 3}, + [94] = {.index = 112, .length = 4}, + [95] = {.index = 116, .length = 3}, + [96] = {.index = 1, .length = 1}, + [97] = {.index = 119, .length = 3}, + [98] = {.index = 122, .length = 2}, + [99] = {.index = 124, .length = 2}, + [100] = {.index = 124, .length = 2}, + [101] = {.index = 126, .length = 1}, + [102] = {.index = 127, .length = 3}, + [103] = {.index = 130, .length = 3}, + [104] = {.index = 133, .length = 3}, + [105] = {.index = 136, .length = 1}, + [106] = {.index = 127, .length = 3}, + [107] = {.index = 130, .length = 3}, + [108] = {.index = 137, .length = 2}, + [109] = {.index = 139, .length = 2}, + [111] = {.index = 141, .length = 3}, + [112] = {.index = 144, .length = 4}, + [113] = {.index = 104, .length = 2}, + [114] = {.index = 148, .length = 3}, + [115] = {.index = 151, .length = 2}, + [116] = {.index = 153, .length = 2}, + [117] = {.index = 155, .length = 3}, + [118] = {.index = 158, .length = 3}, + [119] = {.index = 32, .length = 1}, + [120] = {.index = 137, .length = 2}, + [121] = {.index = 161, .length = 3}, + [122] = {.index = 164, .length = 2}, + [123] = {.index = 166, .length = 2}, + [124] = {.index = 168, .length = 3}, + [125] = {.index = 171, .length = 2}, + [126] = {.index = 173, .length = 2}, + [127] = {.index = 175, .length = 1}, + [128] = {.index = 176, .length = 2}, + [129] = {.index = 178, .length = 1}, + [130] = {.index = 164, .length = 2}, + [131] = {.index = 179, .length = 2}, + [132] = {.index = 181, .length = 4}, + [133] = {.index = 185, .length = 3}, + [134] = {.index = 188, .length = 4}, + [135] = {.index = 93, .length = 1}, + [136] = {.index = 192, .length = 2}, + [137] = {.index = 194, .length = 2}, + [138] = {.index = 196, .length = 3}, + [139] = {.index = 199, .length = 2}, + [140] = {.index = 201, .length = 3}, + [141] = {.index = 204, .length = 2}, + [142] = {.index = 206, .length = 4}, + [143] = {.index = 206, .length = 4}, + [144] = {.index = 210, .length = 3}, + [145] = {.index = 210, .length = 3}, + [146] = {.index = 201, .length = 3}, + [147] = {.index = 213, .length = 2}, + [148] = {.index = 215, .length = 2}, + [149] = {.index = 217, .length = 2}, + [150] = {.index = 219, .length = 1}, + [151] = {.index = 220, .length = 2}, + [152] = {.index = 222, .length = 2}, + [153] = {.index = 224, .length = 2}, + [154] = {.index = 194, .length = 2}, + [155] = {.index = 226, .length = 4}, + [156] = {.index = 230, .length = 3}, [157] = {.index = 233, .length = 3}, - [158] = {.index = 239, .length = 3}, - [159] = {.index = 242, .length = 3}, - [160] = {.index = 245, .length = 4}, - [161] = {.index = 249, .length = 3}, - [162] = {.index = 252, .length = 2}, - [163] = {.index = 254, .length = 2}, - [164] = {.index = 256, .length = 3}, - [165] = {.index = 259, .length = 4}, - [166] = {.index = 263, .length = 3}, - [167] = {.index = 220, .length = 2}, - [168] = {.index = 266, .length = 2}, - [169] = {.index = 268, .length = 3}, - [170] = {.index = 271, .length = 3}, - [171] = {.index = 274, .length = 2}, - [172] = {.index = 276, .length = 3}, - [173] = {.index = 194, .length = 2}, - [174] = {.index = 279, .length = 3}, - [175] = {.index = 282, .length = 3}, - [176] = {.index = 254, .length = 2}, - [177] = {.index = 285, .length = 4}, - [178] = {.index = 289, .length = 5}, - [179] = {.index = 294, .length = 4}, - [180] = {.index = 298, .length = 2}, - [181] = {.index = 300, .length = 4}, - [182] = {.index = 304, .length = 4}, - [183] = {.index = 304, .length = 4}, - [184] = {.index = 308, .length = 2}, - [185] = {.index = 310, .length = 3}, - [186] = {.index = 313, .length = 2}, - [187] = {.index = 315, .length = 2}, - [188] = {.index = 104, .length = 2}, - [189] = {.index = 317, .length = 3}, - [190] = {.index = 320, .length = 4}, - [191] = {.index = 320, .length = 4}, - [192] = {.index = 317, .length = 3}, - [193] = {.index = 324, .length = 4}, - [194] = {.index = 328, .length = 4}, - [195] = {.index = 332, .length = 3}, - [196] = {.index = 335, .length = 4}, - [197] = {.index = 339, .length = 3}, - [198] = {.index = 342, .length = 3}, - [199] = {.index = 345, .length = 3}, - [200] = {.index = 348, .length = 4}, - [201] = {.index = 352, .length = 2}, - [202] = {.index = 354, .length = 3}, - [203] = {.index = 357, .length = 4}, - [204] = {.index = 361, .length = 3}, - [205] = {.index = 364, .length = 3}, - [206] = {.index = 367, .length = 3}, - [207] = {.index = 370, .length = 5}, - [208] = {.index = 375, .length = 2}, - [209] = {.index = 377, .length = 3}, - [210] = {.index = 380, .length = 3}, - [211] = {.index = 383, .length = 2}, - [212] = {.index = 385, .length = 4}, - [213] = {.index = 385, .length = 4}, - [214] = {.index = 389, .length = 4}, - [215] = {.index = 393, .length = 5}, - [216] = {.index = 398, .length = 4}, - [217] = {.index = 402, .length = 2}, - [218] = {.index = 404, .length = 4}, - [219] = {.index = 408, .length = 4}, - [220] = {.index = 412, .length = 3}, - [221] = {.index = 415, .length = 4}, - [222] = {.index = 419, .length = 3}, - [223] = {.index = 422, .length = 3}, - [224] = {.index = 425, .length = 5}, - [225] = {.index = 430, .length = 4}, - [226] = {.index = 434, .length = 5}, - [227] = {.index = 439, .length = 4}, - [228] = {.index = 443, .length = 3}, - [229] = {.index = 446, .length = 5}, + [158] = {.index = 236, .length = 3}, + [159] = {.index = 233, .length = 3}, + [160] = {.index = 239, .length = 3}, + [161] = {.index = 242, .length = 3}, + [162] = {.index = 245, .length = 4}, + [163] = {.index = 249, .length = 3}, + [164] = {.index = 252, .length = 2}, + [165] = {.index = 254, .length = 2}, + [166] = {.index = 256, .length = 3}, + [167] = {.index = 259, .length = 4}, + [168] = {.index = 263, .length = 3}, + [169] = {.index = 220, .length = 2}, + [170] = {.index = 266, .length = 2}, + [171] = {.index = 268, .length = 3}, + [172] = {.index = 271, .length = 3}, + [173] = {.index = 274, .length = 2}, + [174] = {.index = 276, .length = 3}, + [175] = {.index = 194, .length = 2}, + [176] = {.index = 279, .length = 3}, + [177] = {.index = 282, .length = 3}, + [178] = {.index = 254, .length = 2}, + [179] = {.index = 285, .length = 4}, + [180] = {.index = 289, .length = 5}, + [181] = {.index = 294, .length = 4}, + [182] = {.index = 298, .length = 2}, + [183] = {.index = 300, .length = 4}, + [184] = {.index = 304, .length = 4}, + [185] = {.index = 304, .length = 4}, + [186] = {.index = 308, .length = 2}, + [187] = {.index = 310, .length = 3}, + [188] = {.index = 313, .length = 2}, + [189] = {.index = 315, .length = 2}, + [190] = {.index = 104, .length = 2}, + [191] = {.index = 317, .length = 3}, + [192] = {.index = 320, .length = 4}, + [193] = {.index = 320, .length = 4}, + [194] = {.index = 317, .length = 3}, + [195] = {.index = 324, .length = 4}, + [196] = {.index = 328, .length = 4}, + [197] = {.index = 332, .length = 3}, + [198] = {.index = 335, .length = 4}, + [199] = {.index = 339, .length = 3}, + [200] = {.index = 342, .length = 3}, + [201] = {.index = 345, .length = 3}, + [202] = {.index = 348, .length = 4}, + [203] = {.index = 352, .length = 2}, + [204] = {.index = 354, .length = 3}, + [205] = {.index = 357, .length = 4}, + [206] = {.index = 361, .length = 3}, + [207] = {.index = 364, .length = 3}, + [208] = {.index = 367, .length = 3}, + [209] = {.index = 370, .length = 5}, + [210] = {.index = 375, .length = 2}, + [211] = {.index = 377, .length = 3}, + [212] = {.index = 380, .length = 3}, + [213] = {.index = 383, .length = 2}, + [214] = {.index = 385, .length = 4}, + [215] = {.index = 385, .length = 4}, + [216] = {.index = 389, .length = 4}, + [217] = {.index = 393, .length = 5}, + [218] = {.index = 398, .length = 4}, + [219] = {.index = 402, .length = 2}, + [220] = {.index = 404, .length = 4}, + [221] = {.index = 408, .length = 4}, + [222] = {.index = 412, .length = 3}, + [223] = {.index = 415, .length = 4}, + [224] = {.index = 419, .length = 3}, + [225] = {.index = 422, .length = 3}, + [226] = {.index = 425, .length = 5}, + [227] = {.index = 430, .length = 4}, + [228] = {.index = 434, .length = 5}, + [229] = {.index = 439, .length = 4}, + [230] = {.index = 443, .length = 3}, + [231] = {.index = 446, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2553,45 +2555,45 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 2}, {field_path, 0}, [11] = + {field_macro, 0}, + [12] = {field_body, 2}, {field_name, 1}, - [13] = + [14] = {field_type, 0}, {field_type_arguments, 1}, - [15] = + [16] = {field_condition, 1}, {field_consequence, 2}, - [17] = - {field_parameters, 1}, [18] = - {field_trait, 1}, + {field_parameters, 1}, [19] = - {field_type, 1}, + {field_trait, 1}, [20] = + {field_type, 1}, + [21] = {field_parameters, 1}, {field_trait, 0}, - [22] = + [23] = {field_body, 2}, {field_type, 1}, - [24] = - {field_pattern, 1}, [25] = + {field_pattern, 1}, + [26] = {field_body, 2}, {field_value, 1}, - [27] = - {field_list, 1}, [28] = - {field_argument, 1}, + {field_list, 1}, [29] = + {field_argument, 1}, + [30] = {field_body, 2}, {field_condition, 1}, - [31] = - {field_value, 2}, [32] = + {field_value, 2}, + [33] = {field_body, 2}, {field_parameters, 1}, - [34] = - {field_macro, 0}, [35] = {field_function, 0}, {field_type_arguments, 2}, @@ -3187,230 +3189,236 @@ static TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGT [2] = alias_sym_type_identifier, }, [13] = { - [1] = alias_sym_type_identifier, + [0] = sym_identifier, }, [14] = { + [1] = alias_sym_type_identifier, + }, + [15] = { [0] = alias_sym_type_identifier, }, - [18] = { + [19] = { [1] = alias_sym_type_identifier, }, - [21] = { + [22] = { [0] = alias_sym_type_identifier, }, - [34] = { + [35] = { [2] = alias_sym_type_identifier, }, - [36] = { + [37] = { [0] = alias_sym_type_identifier, }, - [38] = { + [39] = { [0] = sym_generic_type, }, - [39] = { + [40] = { [0] = sym_generic_type, [2] = alias_sym_type_identifier, }, - [44] = { + [45] = { [2] = alias_sym_field_identifier, }, [47] = { + [1] = sym_identifier, + }, + [49] = { [1] = alias_sym_type_identifier, }, - [48] = { + [50] = { [1] = alias_sym_type_identifier, }, - [51] = { + [53] = { [0] = sym_identifier, [2] = sym_identifier, }, - [53] = { + [55] = { [0] = alias_sym_type_identifier, }, - [54] = { + [56] = { [0] = alias_sym_shorthand_field_identifier, }, - [55] = { + [57] = { [2] = sym_identifier, }, - [59] = { + [61] = { [1] = alias_sym_type_identifier, }, - [60] = { + [62] = { [0] = alias_sym_type_identifier, }, - [65] = { + [67] = { [1] = alias_sym_type_identifier, }, - [68] = { + [70] = { [1] = alias_sym_type_identifier, }, - [69] = { + [71] = { [1] = alias_sym_type_identifier, }, - [70] = { + [72] = { [1] = alias_sym_type_identifier, }, - [72] = { + [74] = { [2] = alias_sym_type_identifier, }, - [73] = { + [75] = { [0] = sym_identifier, }, - [74] = { + [76] = { [0] = sym_identifier, }, - [77] = { + [79] = { [0] = sym_identifier, }, - [81] = { + [83] = { [0] = sym_identifier, }, - [84] = { + [86] = { [2] = alias_sym_type_identifier, }, - [90] = { + [92] = { [1] = alias_sym_type_identifier, }, - [94] = { + [96] = { [1] = alias_sym_shorthand_field_identifier, }, - [97] = { + [99] = { [0] = alias_sym_type_identifier, }, - [100] = { + [102] = { [1] = alias_sym_type_identifier, }, - [101] = { + [103] = { [0] = alias_sym_type_identifier, }, - [108] = { + [110] = { [3] = sym_identifier, }, - [109] = { + [111] = { [1] = alias_sym_type_identifier, }, - [110] = { + [112] = { [1] = alias_sym_type_identifier, }, - [111] = { + [113] = { [1] = alias_sym_type_identifier, }, - [114] = { + [116] = { [2] = alias_sym_type_identifier, }, - [115] = { + [117] = { [2] = alias_sym_type_identifier, }, - [116] = { + [118] = { [2] = alias_sym_type_identifier, }, - [117] = { + [119] = { [0] = sym_identifier, }, - [118] = { + [120] = { [1] = sym_identifier, }, - [120] = { + [122] = { [0] = alias_sym_field_identifier, }, - [123] = { + [125] = { [2] = alias_sym_type_identifier, }, - [124] = { + [126] = { [3] = alias_sym_type_identifier, }, - [133] = { + [135] = { [2] = alias_sym_shorthand_field_identifier, }, - [134] = { + [136] = { [0] = alias_sym_field_identifier, }, - [135] = { + [137] = { [0] = alias_sym_type_identifier, }, - [138] = { + [140] = { [1] = alias_sym_type_identifier, }, - [140] = { + [142] = { [2] = alias_sym_type_identifier, }, - [142] = { + [144] = { [1] = alias_sym_type_identifier, }, - [152] = { + [154] = { [0] = alias_sym_field_identifier, }, - [153] = { + [155] = { [1] = alias_sym_type_identifier, }, - [154] = { + [156] = { [1] = alias_sym_type_identifier, }, - [155] = { + [157] = { [2] = alias_sym_type_identifier, }, - [158] = { + [160] = { [2] = alias_sym_type_identifier, }, - [159] = { + [161] = { [2] = alias_sym_type_identifier, }, - [160] = { + [162] = { [2] = alias_sym_type_identifier, }, - [163] = { + [165] = { [1] = alias_sym_field_identifier, }, - [167] = { + [169] = { [2] = alias_sym_type_identifier, }, - [168] = { + [170] = { [3] = alias_sym_type_identifier, }, - [169] = { + [171] = { [3] = alias_sym_type_identifier, }, - [170] = { + [172] = { [3] = alias_sym_type_identifier, }, - [180] = { + [182] = { [1] = alias_sym_field_identifier, }, - [182] = { + [184] = { [2] = alias_sym_type_identifier, }, - [188] = { + [190] = { [1] = alias_sym_field_identifier, }, - [189] = { + [191] = { [2] = alias_sym_type_identifier, }, - [190] = { + [192] = { [3] = alias_sym_type_identifier, }, - [193] = { + [195] = { [2] = alias_sym_type_identifier, }, - [197] = { + [199] = { [2] = alias_sym_type_identifier, }, - [198] = { + [200] = { [3] = alias_sym_type_identifier, }, - [199] = { + [201] = { [3] = alias_sym_type_identifier, }, - [200] = { + [202] = { [3] = alias_sym_type_identifier, }, - [208] = { + [210] = { [2] = alias_sym_field_identifier, }, - [212] = { + [214] = { [3] = alias_sym_type_identifier, }, - [218] = { + [220] = { [3] = alias_sym_type_identifier, }, }; @@ -11565,51 +11573,51 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [27] = {.lex_state = 5, .external_lex_state = 2}, [28] = {.lex_state = 5, .external_lex_state = 2}, [29] = {.lex_state = 5, .external_lex_state = 2}, - [30] = {.lex_state = 56, .external_lex_state = 2}, + [30] = {.lex_state = 5, .external_lex_state = 2}, [31] = {.lex_state = 5, .external_lex_state = 2}, - [32] = {.lex_state = 5, .external_lex_state = 2}, + [32] = {.lex_state = 56, .external_lex_state = 2}, [33] = {.lex_state = 5, .external_lex_state = 2}, [34] = {.lex_state = 56, .external_lex_state = 2}, [35] = {.lex_state = 5, .external_lex_state = 2}, - [36] = {.lex_state = 5, .external_lex_state = 2}, + [36] = {.lex_state = 56, .external_lex_state = 2}, [37] = {.lex_state = 5, .external_lex_state = 2}, [38] = {.lex_state = 56, .external_lex_state = 2}, - [39] = {.lex_state = 56, .external_lex_state = 2}, - [40] = {.lex_state = 5, .external_lex_state = 2}, - [41] = {.lex_state = 56, .external_lex_state = 2}, + [39] = {.lex_state = 5, .external_lex_state = 2}, + [40] = {.lex_state = 56, .external_lex_state = 2}, + [41] = {.lex_state = 5, .external_lex_state = 2}, [42] = {.lex_state = 5, .external_lex_state = 2}, [43] = {.lex_state = 56, .external_lex_state = 2}, [44] = {.lex_state = 56, .external_lex_state = 2}, [45] = {.lex_state = 56, .external_lex_state = 2}, - [46] = {.lex_state = 5, .external_lex_state = 2}, + [46] = {.lex_state = 56, .external_lex_state = 2}, [47] = {.lex_state = 56, .external_lex_state = 2}, - [48] = {.lex_state = 56, .external_lex_state = 2}, + [48] = {.lex_state = 5, .external_lex_state = 2}, [49] = {.lex_state = 56, .external_lex_state = 2}, [50] = {.lex_state = 56, .external_lex_state = 2}, [51] = {.lex_state = 56, .external_lex_state = 2}, [52] = {.lex_state = 56, .external_lex_state = 2}, - [53] = {.lex_state = 5, .external_lex_state = 2}, + [53] = {.lex_state = 56, .external_lex_state = 2}, [54] = {.lex_state = 56, .external_lex_state = 2}, [55] = {.lex_state = 56, .external_lex_state = 2}, - [56] = {.lex_state = 5, .external_lex_state = 2}, + [56] = {.lex_state = 56, .external_lex_state = 2}, [57] = {.lex_state = 56, .external_lex_state = 2}, [58] = {.lex_state = 56, .external_lex_state = 2}, - [59] = {.lex_state = 5, .external_lex_state = 2}, + [59] = {.lex_state = 56, .external_lex_state = 2}, [60] = {.lex_state = 56, .external_lex_state = 2}, - [61] = {.lex_state = 5, .external_lex_state = 2}, + [61] = {.lex_state = 56, .external_lex_state = 2}, [62] = {.lex_state = 56, .external_lex_state = 2}, - [63] = {.lex_state = 56, .external_lex_state = 2}, - [64] = {.lex_state = 56, .external_lex_state = 2}, + [63] = {.lex_state = 5, .external_lex_state = 2}, + [64] = {.lex_state = 5, .external_lex_state = 2}, [65] = {.lex_state = 56, .external_lex_state = 2}, [66] = {.lex_state = 56, .external_lex_state = 2}, [67] = {.lex_state = 56, .external_lex_state = 2}, [68] = {.lex_state = 56, .external_lex_state = 2}, [69] = {.lex_state = 56, .external_lex_state = 2}, [70] = {.lex_state = 56, .external_lex_state = 2}, - [71] = {.lex_state = 56, .external_lex_state = 2}, + [71] = {.lex_state = 5, .external_lex_state = 2}, [72] = {.lex_state = 5, .external_lex_state = 2}, - [73] = {.lex_state = 56, .external_lex_state = 2}, - [74] = {.lex_state = 5, .external_lex_state = 2}, + [73] = {.lex_state = 5, .external_lex_state = 2}, + [74] = {.lex_state = 56, .external_lex_state = 2}, [75] = {.lex_state = 5, .external_lex_state = 2}, [76] = {.lex_state = 5, .external_lex_state = 2}, [77] = {.lex_state = 5, .external_lex_state = 2}, @@ -11630,7 +11638,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [92] = {.lex_state = 5, .external_lex_state = 2}, [93] = {.lex_state = 5, .external_lex_state = 2}, [94] = {.lex_state = 5, .external_lex_state = 2}, - [95] = {.lex_state = 6, .external_lex_state = 2}, + [95] = {.lex_state = 5, .external_lex_state = 2}, [96] = {.lex_state = 5, .external_lex_state = 2}, [97] = {.lex_state = 5, .external_lex_state = 2}, [98] = {.lex_state = 5, .external_lex_state = 2}, @@ -11644,8 +11652,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [106] = {.lex_state = 5, .external_lex_state = 2}, [107] = {.lex_state = 5, .external_lex_state = 2}, [108] = {.lex_state = 5, .external_lex_state = 2}, - [109] = {.lex_state = 6, .external_lex_state = 2}, - [110] = {.lex_state = 6, .external_lex_state = 2}, + [109] = {.lex_state = 5, .external_lex_state = 2}, + [110] = {.lex_state = 5, .external_lex_state = 2}, [111] = {.lex_state = 5, .external_lex_state = 2}, [112] = {.lex_state = 5, .external_lex_state = 2}, [113] = {.lex_state = 5, .external_lex_state = 2}, @@ -11672,9 +11680,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [134] = {.lex_state = 5, .external_lex_state = 2}, [135] = {.lex_state = 5, .external_lex_state = 2}, [136] = {.lex_state = 5, .external_lex_state = 2}, - [137] = {.lex_state = 5, .external_lex_state = 2}, - [138] = {.lex_state = 5, .external_lex_state = 2}, - [139] = {.lex_state = 5, .external_lex_state = 2}, + [137] = {.lex_state = 6, .external_lex_state = 2}, + [138] = {.lex_state = 6, .external_lex_state = 2}, + [139] = {.lex_state = 6, .external_lex_state = 2}, [140] = {.lex_state = 5, .external_lex_state = 2}, [141] = {.lex_state = 5, .external_lex_state = 2}, [142] = {.lex_state = 5, .external_lex_state = 2}, @@ -11692,7 +11700,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [154] = {.lex_state = 5, .external_lex_state = 2}, [155] = {.lex_state = 5, .external_lex_state = 2}, [156] = {.lex_state = 5, .external_lex_state = 2}, - [157] = {.lex_state = 5, .external_lex_state = 2}, + [157] = {.lex_state = 6, .external_lex_state = 2}, [158] = {.lex_state = 5, .external_lex_state = 2}, [159] = {.lex_state = 5, .external_lex_state = 2}, [160] = {.lex_state = 5, .external_lex_state = 2}, @@ -11700,8 +11708,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [162] = {.lex_state = 5, .external_lex_state = 2}, [163] = {.lex_state = 5, .external_lex_state = 2}, [164] = {.lex_state = 5, .external_lex_state = 2}, - [165] = {.lex_state = 6, .external_lex_state = 2}, - [166] = {.lex_state = 6, .external_lex_state = 2}, + [165] = {.lex_state = 5, .external_lex_state = 2}, + [166] = {.lex_state = 5, .external_lex_state = 2}, [167] = {.lex_state = 5, .external_lex_state = 2}, [168] = {.lex_state = 5, .external_lex_state = 2}, [169] = {.lex_state = 5, .external_lex_state = 2}, @@ -11712,10 +11720,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [174] = {.lex_state = 5, .external_lex_state = 2}, [175] = {.lex_state = 5, .external_lex_state = 2}, [176] = {.lex_state = 5, .external_lex_state = 2}, - [177] = {.lex_state = 5, .external_lex_state = 2}, + [177] = {.lex_state = 6, .external_lex_state = 2}, [178] = {.lex_state = 5, .external_lex_state = 2}, [179] = {.lex_state = 5, .external_lex_state = 2}, - [180] = {.lex_state = 6, .external_lex_state = 2}, + [180] = {.lex_state = 5, .external_lex_state = 2}, [181] = {.lex_state = 6, .external_lex_state = 2}, [182] = {.lex_state = 6, .external_lex_state = 2}, [183] = {.lex_state = 6, .external_lex_state = 2}, @@ -11725,31 +11733,31 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [187] = {.lex_state = 6, .external_lex_state = 2}, [188] = {.lex_state = 6, .external_lex_state = 2}, [189] = {.lex_state = 6, .external_lex_state = 2}, - [190] = {.lex_state = 5, .external_lex_state = 2}, + [190] = {.lex_state = 6, .external_lex_state = 2}, [191] = {.lex_state = 5, .external_lex_state = 2}, [192] = {.lex_state = 5, .external_lex_state = 2}, [193] = {.lex_state = 5, .external_lex_state = 2}, [194] = {.lex_state = 5, .external_lex_state = 2}, [195] = {.lex_state = 5, .external_lex_state = 2}, - [196] = {.lex_state = 5, .external_lex_state = 2}, + [196] = {.lex_state = 1, .external_lex_state = 2}, [197] = {.lex_state = 5, .external_lex_state = 2}, [198] = {.lex_state = 5, .external_lex_state = 2}, [199] = {.lex_state = 5, .external_lex_state = 2}, [200] = {.lex_state = 5, .external_lex_state = 2}, [201] = {.lex_state = 5, .external_lex_state = 2}, [202] = {.lex_state = 5, .external_lex_state = 2}, - [203] = {.lex_state = 1, .external_lex_state = 2}, + [203] = {.lex_state = 5, .external_lex_state = 2}, [204] = {.lex_state = 5, .external_lex_state = 2}, [205] = {.lex_state = 5, .external_lex_state = 2}, - [206] = {.lex_state = 1, .external_lex_state = 2}, + [206] = {.lex_state = 5, .external_lex_state = 2}, [207] = {.lex_state = 1, .external_lex_state = 2}, [208] = {.lex_state = 1, .external_lex_state = 2}, [209] = {.lex_state = 1, .external_lex_state = 2}, [210] = {.lex_state = 1, .external_lex_state = 2}, [211] = {.lex_state = 1, .external_lex_state = 2}, [212] = {.lex_state = 1, .external_lex_state = 2}, - [213] = {.lex_state = 5, .external_lex_state = 2}, - [214] = {.lex_state = 5, .external_lex_state = 2}, + [213] = {.lex_state = 1, .external_lex_state = 2}, + [214] = {.lex_state = 1, .external_lex_state = 2}, [215] = {.lex_state = 1, .external_lex_state = 2}, [216] = {.lex_state = 1, .external_lex_state = 2}, [217] = {.lex_state = 1, .external_lex_state = 2}, @@ -11758,32 +11766,32 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [220] = {.lex_state = 1, .external_lex_state = 2}, [221] = {.lex_state = 1, .external_lex_state = 2}, [222] = {.lex_state = 1, .external_lex_state = 2}, - [223] = {.lex_state = 1, .external_lex_state = 2}, + [223] = {.lex_state = 5, .external_lex_state = 2}, [224] = {.lex_state = 1, .external_lex_state = 2}, - [225] = {.lex_state = 5, .external_lex_state = 2}, + [225] = {.lex_state = 1, .external_lex_state = 2}, [226] = {.lex_state = 1, .external_lex_state = 2}, [227] = {.lex_state = 1, .external_lex_state = 2}, [228] = {.lex_state = 1, .external_lex_state = 2}, [229] = {.lex_state = 1, .external_lex_state = 2}, - [230] = {.lex_state = 1, .external_lex_state = 2}, + [230] = {.lex_state = 5, .external_lex_state = 2}, [231] = {.lex_state = 1, .external_lex_state = 2}, [232] = {.lex_state = 1, .external_lex_state = 2}, [233] = {.lex_state = 5, .external_lex_state = 2}, - [234] = {.lex_state = 1, .external_lex_state = 2}, + [234] = {.lex_state = 5, .external_lex_state = 2}, [235] = {.lex_state = 1, .external_lex_state = 2}, - [236] = {.lex_state = 5, .external_lex_state = 2}, + [236] = {.lex_state = 1, .external_lex_state = 2}, [237] = {.lex_state = 5, .external_lex_state = 2}, [238] = {.lex_state = 5, .external_lex_state = 2}, - [239] = {.lex_state = 12, .external_lex_state = 2}, + [239] = {.lex_state = 5, .external_lex_state = 2}, [240] = {.lex_state = 4, .external_lex_state = 3}, [241] = {.lex_state = 4, .external_lex_state = 3}, [242] = {.lex_state = 4, .external_lex_state = 3}, - [243] = {.lex_state = 4, .external_lex_state = 3}, + [243] = {.lex_state = 12, .external_lex_state = 2}, [244] = {.lex_state = 4, .external_lex_state = 3}, - [245] = {.lex_state = 5, .external_lex_state = 2}, + [245] = {.lex_state = 4, .external_lex_state = 3}, [246] = {.lex_state = 5, .external_lex_state = 2}, [247] = {.lex_state = 5, .external_lex_state = 2}, - [248] = {.lex_state = 12, .external_lex_state = 2}, + [248] = {.lex_state = 5, .external_lex_state = 2}, [249] = {.lex_state = 57, .external_lex_state = 2}, [250] = {.lex_state = 57, .external_lex_state = 2}, [251] = {.lex_state = 57, .external_lex_state = 2}, @@ -11806,16 +11814,16 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [268] = {.lex_state = 57, .external_lex_state = 2}, [269] = {.lex_state = 57, .external_lex_state = 2}, [270] = {.lex_state = 57, .external_lex_state = 2}, - [271] = {.lex_state = 57, .external_lex_state = 2}, + [271] = {.lex_state = 12, .external_lex_state = 2}, [272] = {.lex_state = 57, .external_lex_state = 2}, - [273] = {.lex_state = 57, .external_lex_state = 2}, + [273] = {.lex_state = 12, .external_lex_state = 2}, [274] = {.lex_state = 57, .external_lex_state = 2}, [275] = {.lex_state = 57, .external_lex_state = 2}, [276] = {.lex_state = 57, .external_lex_state = 2}, [277] = {.lex_state = 57, .external_lex_state = 2}, [278] = {.lex_state = 57, .external_lex_state = 2}, [279] = {.lex_state = 57, .external_lex_state = 2}, - [280] = {.lex_state = 57, .external_lex_state = 2}, + [280] = {.lex_state = 12, .external_lex_state = 2}, [281] = {.lex_state = 57, .external_lex_state = 2}, [282] = {.lex_state = 57, .external_lex_state = 2}, [283] = {.lex_state = 57, .external_lex_state = 2}, @@ -11825,10 +11833,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [287] = {.lex_state = 12, .external_lex_state = 2}, [288] = {.lex_state = 57, .external_lex_state = 2}, [289] = {.lex_state = 57, .external_lex_state = 2}, - [290] = {.lex_state = 57, .external_lex_state = 2}, + [290] = {.lex_state = 5, .external_lex_state = 2}, [291] = {.lex_state = 57, .external_lex_state = 2}, [292] = {.lex_state = 57, .external_lex_state = 2}, - [293] = {.lex_state = 57, .external_lex_state = 2}, + [293] = {.lex_state = 5, .external_lex_state = 2}, [294] = {.lex_state = 57, .external_lex_state = 2}, [295] = {.lex_state = 57, .external_lex_state = 2}, [296] = {.lex_state = 57, .external_lex_state = 2}, @@ -11840,9 +11848,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [302] = {.lex_state = 57, .external_lex_state = 2}, [303] = {.lex_state = 57, .external_lex_state = 2}, [304] = {.lex_state = 57, .external_lex_state = 2}, - [305] = {.lex_state = 12, .external_lex_state = 2}, + [305] = {.lex_state = 57, .external_lex_state = 2}, [306] = {.lex_state = 57, .external_lex_state = 2}, - [307] = {.lex_state = 12, .external_lex_state = 2}, + [307] = {.lex_state = 57, .external_lex_state = 2}, [308] = {.lex_state = 57, .external_lex_state = 2}, [309] = {.lex_state = 57, .external_lex_state = 2}, [310] = {.lex_state = 57, .external_lex_state = 2}, @@ -11853,9 +11861,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [315] = {.lex_state = 57, .external_lex_state = 2}, [316] = {.lex_state = 57, .external_lex_state = 2}, [317] = {.lex_state = 57, .external_lex_state = 2}, - [318] = {.lex_state = 57, .external_lex_state = 2}, - [319] = {.lex_state = 57, .external_lex_state = 2}, - [320] = {.lex_state = 57, .external_lex_state = 2}, + [318] = {.lex_state = 12, .external_lex_state = 2}, + [319] = {.lex_state = 12, .external_lex_state = 2}, + [320] = {.lex_state = 12, .external_lex_state = 2}, [321] = {.lex_state = 57, .external_lex_state = 2}, [322] = {.lex_state = 57, .external_lex_state = 2}, [323] = {.lex_state = 57, .external_lex_state = 2}, @@ -11864,12 +11872,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [326] = {.lex_state = 57, .external_lex_state = 2}, [327] = {.lex_state = 57, .external_lex_state = 2}, [328] = {.lex_state = 57, .external_lex_state = 2}, - [329] = {.lex_state = 5, .external_lex_state = 2}, - [330] = {.lex_state = 57, .external_lex_state = 2}, - [331] = {.lex_state = 57, .external_lex_state = 2}, - [332] = {.lex_state = 12, .external_lex_state = 2}, + [329] = {.lex_state = 57, .external_lex_state = 2}, + [330] = {.lex_state = 12, .external_lex_state = 2}, + [331] = {.lex_state = 12, .external_lex_state = 2}, + [332] = {.lex_state = 57, .external_lex_state = 2}, [333] = {.lex_state = 12, .external_lex_state = 2}, - [334] = {.lex_state = 12, .external_lex_state = 2}, + [334] = {.lex_state = 57, .external_lex_state = 2}, [335] = {.lex_state = 57, .external_lex_state = 2}, [336] = {.lex_state = 57, .external_lex_state = 2}, [337] = {.lex_state = 57, .external_lex_state = 2}, @@ -11884,20 +11892,20 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [346] = {.lex_state = 57, .external_lex_state = 2}, [347] = {.lex_state = 57, .external_lex_state = 2}, [348] = {.lex_state = 57, .external_lex_state = 2}, - [349] = {.lex_state = 57, .external_lex_state = 2}, + [349] = {.lex_state = 12, .external_lex_state = 2}, [350] = {.lex_state = 57, .external_lex_state = 2}, [351] = {.lex_state = 57, .external_lex_state = 2}, [352] = {.lex_state = 57, .external_lex_state = 2}, - [353] = {.lex_state = 57, .external_lex_state = 2}, + [353] = {.lex_state = 5, .external_lex_state = 2}, [354] = {.lex_state = 57, .external_lex_state = 2}, - [355] = {.lex_state = 5, .external_lex_state = 2}, + [355] = {.lex_state = 57, .external_lex_state = 2}, [356] = {.lex_state = 57, .external_lex_state = 2}, [357] = {.lex_state = 57, .external_lex_state = 2}, [358] = {.lex_state = 57, .external_lex_state = 2}, [359] = {.lex_state = 57, .external_lex_state = 2}, - [360] = {.lex_state = 12, .external_lex_state = 2}, + [360] = {.lex_state = 57, .external_lex_state = 2}, [361] = {.lex_state = 57, .external_lex_state = 2}, - [362] = {.lex_state = 12, .external_lex_state = 2}, + [362] = {.lex_state = 57, .external_lex_state = 2}, [363] = {.lex_state = 57, .external_lex_state = 2}, [364] = {.lex_state = 57, .external_lex_state = 2}, [365] = {.lex_state = 57, .external_lex_state = 2}, @@ -11934,9 +11942,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [396] = {.lex_state = 57, .external_lex_state = 2}, [397] = {.lex_state = 57, .external_lex_state = 2}, [398] = {.lex_state = 57, .external_lex_state = 2}, - [399] = {.lex_state = 12, .external_lex_state = 2}, + [399] = {.lex_state = 57, .external_lex_state = 2}, [400] = {.lex_state = 57, .external_lex_state = 2}, - [401] = {.lex_state = 12, .external_lex_state = 2}, + [401] = {.lex_state = 57, .external_lex_state = 2}, [402] = {.lex_state = 57, .external_lex_state = 2}, [403] = {.lex_state = 57, .external_lex_state = 2}, [404] = {.lex_state = 57, .external_lex_state = 2}, @@ -11963,8 +11971,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [425] = {.lex_state = 57, .external_lex_state = 2}, [426] = {.lex_state = 57, .external_lex_state = 2}, [427] = {.lex_state = 57, .external_lex_state = 2}, - [428] = {.lex_state = 57, .external_lex_state = 2}, - [429] = {.lex_state = 57, .external_lex_state = 2}, + [428] = {.lex_state = 12, .external_lex_state = 2}, + [429] = {.lex_state = 12, .external_lex_state = 2}, [430] = {.lex_state = 57, .external_lex_state = 2}, [431] = {.lex_state = 12, .external_lex_state = 2}, [432] = {.lex_state = 57, .external_lex_state = 2}, @@ -11980,15 +11988,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [442] = {.lex_state = 57, .external_lex_state = 2}, [443] = {.lex_state = 57, .external_lex_state = 2}, [444] = {.lex_state = 57, .external_lex_state = 2}, - [445] = {.lex_state = 12, .external_lex_state = 2}, + [445] = {.lex_state = 57, .external_lex_state = 2}, [446] = {.lex_state = 57, .external_lex_state = 2}, - [447] = {.lex_state = 12, .external_lex_state = 2}, - [448] = {.lex_state = 12, .external_lex_state = 2}, + [447] = {.lex_state = 57, .external_lex_state = 2}, + [448] = {.lex_state = 57, .external_lex_state = 2}, [449] = {.lex_state = 57, .external_lex_state = 2}, [450] = {.lex_state = 57, .external_lex_state = 2}, [451] = {.lex_state = 57, .external_lex_state = 2}, [452] = {.lex_state = 57, .external_lex_state = 2}, - [453] = {.lex_state = 5, .external_lex_state = 2}, + [453] = {.lex_state = 57, .external_lex_state = 2}, [454] = {.lex_state = 57, .external_lex_state = 2}, [455] = {.lex_state = 57, .external_lex_state = 2}, [456] = {.lex_state = 57, .external_lex_state = 2}, @@ -11996,12 +12004,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [458] = {.lex_state = 57, .external_lex_state = 2}, [459] = {.lex_state = 57, .external_lex_state = 2}, [460] = {.lex_state = 57, .external_lex_state = 2}, - [461] = {.lex_state = 5, .external_lex_state = 2}, - [462] = {.lex_state = 12, .external_lex_state = 2}, - [463] = {.lex_state = 12, .external_lex_state = 2}, - [464] = {.lex_state = 12, .external_lex_state = 2}, - [465] = {.lex_state = 12, .external_lex_state = 2}, - [466] = {.lex_state = 12, .external_lex_state = 2}, + [461] = {.lex_state = 12, .external_lex_state = 2}, + [462] = {.lex_state = 57, .external_lex_state = 2}, + [463] = {.lex_state = 57, .external_lex_state = 2}, + [464] = {.lex_state = 57, .external_lex_state = 2}, + [465] = {.lex_state = 57, .external_lex_state = 2}, + [466] = {.lex_state = 5, .external_lex_state = 2}, [467] = {.lex_state = 12, .external_lex_state = 2}, [468] = {.lex_state = 12, .external_lex_state = 2}, [469] = {.lex_state = 12, .external_lex_state = 2}, @@ -12029,69 +12037,69 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [491] = {.lex_state = 12, .external_lex_state = 2}, [492] = {.lex_state = 12, .external_lex_state = 2}, [493] = {.lex_state = 12, .external_lex_state = 2}, - [494] = {.lex_state = 5, .external_lex_state = 2}, - [495] = {.lex_state = 7, .external_lex_state = 3}, - [496] = {.lex_state = 5, .external_lex_state = 2}, - [497] = {.lex_state = 7, .external_lex_state = 3}, - [498] = {.lex_state = 7, .external_lex_state = 3}, - [499] = {.lex_state = 7, .external_lex_state = 3}, - [500] = {.lex_state = 7, .external_lex_state = 3}, + [494] = {.lex_state = 12, .external_lex_state = 2}, + [495] = {.lex_state = 12, .external_lex_state = 2}, + [496] = {.lex_state = 12, .external_lex_state = 2}, + [497] = {.lex_state = 12, .external_lex_state = 2}, + [498] = {.lex_state = 12, .external_lex_state = 2}, + [499] = {.lex_state = 5, .external_lex_state = 2}, + [500] = {.lex_state = 5, .external_lex_state = 2}, [501] = {.lex_state = 7, .external_lex_state = 3}, [502] = {.lex_state = 7, .external_lex_state = 3}, [503] = {.lex_state = 7, .external_lex_state = 3}, [504] = {.lex_state = 7, .external_lex_state = 3}, [505] = {.lex_state = 7, .external_lex_state = 3}, - [506] = {.lex_state = 11, .external_lex_state = 2}, + [506] = {.lex_state = 7, .external_lex_state = 3}, [507] = {.lex_state = 7, .external_lex_state = 3}, - [508] = {.lex_state = 12, .external_lex_state = 2}, - [509] = {.lex_state = 12, .external_lex_state = 2}, - [510] = {.lex_state = 5, .external_lex_state = 2}, - [511] = {.lex_state = 5, .external_lex_state = 2}, - [512] = {.lex_state = 5, .external_lex_state = 2}, + [508] = {.lex_state = 7, .external_lex_state = 3}, + [509] = {.lex_state = 11, .external_lex_state = 2}, + [510] = {.lex_state = 7, .external_lex_state = 3}, + [511] = {.lex_state = 7, .external_lex_state = 3}, + [512] = {.lex_state = 12, .external_lex_state = 2}, [513] = {.lex_state = 12, .external_lex_state = 2}, [514] = {.lex_state = 12, .external_lex_state = 2}, - [515] = {.lex_state = 12, .external_lex_state = 2}, + [515] = {.lex_state = 7, .external_lex_state = 3}, [516] = {.lex_state = 12, .external_lex_state = 2}, [517] = {.lex_state = 12, .external_lex_state = 2}, [518] = {.lex_state = 12, .external_lex_state = 2}, [519] = {.lex_state = 12, .external_lex_state = 2}, [520] = {.lex_state = 12, .external_lex_state = 2}, - [521] = {.lex_state = 12, .external_lex_state = 2}, + [521] = {.lex_state = 5, .external_lex_state = 2}, [522] = {.lex_state = 5, .external_lex_state = 2}, - [523] = {.lex_state = 12, .external_lex_state = 2}, + [523] = {.lex_state = 5, .external_lex_state = 2}, [524] = {.lex_state = 12, .external_lex_state = 2}, [525] = {.lex_state = 12, .external_lex_state = 2}, - [526] = {.lex_state = 12, .external_lex_state = 2}, + [526] = {.lex_state = 5, .external_lex_state = 2}, [527] = {.lex_state = 12, .external_lex_state = 2}, - [528] = {.lex_state = 5, .external_lex_state = 2}, - [529] = {.lex_state = 5, .external_lex_state = 2}, - [530] = {.lex_state = 5, .external_lex_state = 2}, - [531] = {.lex_state = 5, .external_lex_state = 2}, - [532] = {.lex_state = 5, .external_lex_state = 2}, + [528] = {.lex_state = 12, .external_lex_state = 2}, + [529] = {.lex_state = 12, .external_lex_state = 2}, + [530] = {.lex_state = 12, .external_lex_state = 2}, + [531] = {.lex_state = 12, .external_lex_state = 2}, + [532] = {.lex_state = 12, .external_lex_state = 2}, [533] = {.lex_state = 5, .external_lex_state = 2}, - [534] = {.lex_state = 7, .external_lex_state = 3}, + [534] = {.lex_state = 5, .external_lex_state = 2}, [535] = {.lex_state = 5, .external_lex_state = 2}, - [536] = {.lex_state = 7, .external_lex_state = 3}, + [536] = {.lex_state = 5, .external_lex_state = 2}, [537] = {.lex_state = 7, .external_lex_state = 3}, [538] = {.lex_state = 7, .external_lex_state = 3}, [539] = {.lex_state = 5, .external_lex_state = 2}, [540] = {.lex_state = 5, .external_lex_state = 2}, - [541] = {.lex_state = 5, .external_lex_state = 2}, - [542] = {.lex_state = 5, .external_lex_state = 2}, + [541] = {.lex_state = 7, .external_lex_state = 3}, + [542] = {.lex_state = 7, .external_lex_state = 3}, [543] = {.lex_state = 5, .external_lex_state = 2}, [544] = {.lex_state = 5, .external_lex_state = 2}, [545] = {.lex_state = 5, .external_lex_state = 2}, [546] = {.lex_state = 5, .external_lex_state = 2}, [547] = {.lex_state = 5, .external_lex_state = 2}, - [548] = {.lex_state = 5, .external_lex_state = 2}, + [548] = {.lex_state = 7, .external_lex_state = 3}, [549] = {.lex_state = 5, .external_lex_state = 2}, [550] = {.lex_state = 5, .external_lex_state = 2}, - [551] = {.lex_state = 7, .external_lex_state = 3}, + [551] = {.lex_state = 5, .external_lex_state = 2}, [552] = {.lex_state = 5, .external_lex_state = 2}, [553] = {.lex_state = 5, .external_lex_state = 2}, [554] = {.lex_state = 5, .external_lex_state = 2}, [555] = {.lex_state = 7, .external_lex_state = 3}, - [556] = {.lex_state = 5, .external_lex_state = 2}, + [556] = {.lex_state = 7, .external_lex_state = 3}, [557] = {.lex_state = 5, .external_lex_state = 2}, [558] = {.lex_state = 5, .external_lex_state = 2}, [559] = {.lex_state = 5, .external_lex_state = 2}, @@ -12102,22 +12110,22 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [564] = {.lex_state = 5, .external_lex_state = 2}, [565] = {.lex_state = 5, .external_lex_state = 2}, [566] = {.lex_state = 5, .external_lex_state = 2}, - [567] = {.lex_state = 7, .external_lex_state = 3}, - [568] = {.lex_state = 5, .external_lex_state = 2}, + [567] = {.lex_state = 5, .external_lex_state = 2}, + [568] = {.lex_state = 7, .external_lex_state = 3}, [569] = {.lex_state = 5, .external_lex_state = 2}, - [570] = {.lex_state = 7, .external_lex_state = 3}, + [570] = {.lex_state = 5, .external_lex_state = 2}, [571] = {.lex_state = 5, .external_lex_state = 2}, [572] = {.lex_state = 5, .external_lex_state = 2}, [573] = {.lex_state = 5, .external_lex_state = 2}, - [574] = {.lex_state = 7, .external_lex_state = 3}, - [575] = {.lex_state = 7, .external_lex_state = 3}, - [576] = {.lex_state = 7, .external_lex_state = 3}, - [577] = {.lex_state = 7, .external_lex_state = 3}, - [578] = {.lex_state = 7, .external_lex_state = 3}, + [574] = {.lex_state = 5, .external_lex_state = 2}, + [575] = {.lex_state = 5, .external_lex_state = 2}, + [576] = {.lex_state = 5, .external_lex_state = 2}, + [577] = {.lex_state = 5, .external_lex_state = 2}, + [578] = {.lex_state = 5, .external_lex_state = 2}, [579] = {.lex_state = 7, .external_lex_state = 3}, [580] = {.lex_state = 7, .external_lex_state = 3}, [581] = {.lex_state = 7, .external_lex_state = 3}, - [582] = {.lex_state = 5, .external_lex_state = 2}, + [582] = {.lex_state = 7, .external_lex_state = 3}, [583] = {.lex_state = 7, .external_lex_state = 3}, [584] = {.lex_state = 7, .external_lex_state = 3}, [585] = {.lex_state = 7, .external_lex_state = 3}, @@ -12127,7 +12135,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [589] = {.lex_state = 7, .external_lex_state = 3}, [590] = {.lex_state = 7, .external_lex_state = 3}, [591] = {.lex_state = 7, .external_lex_state = 3}, - [592] = {.lex_state = 7, .external_lex_state = 3}, + [592] = {.lex_state = 5, .external_lex_state = 2}, [593] = {.lex_state = 7, .external_lex_state = 3}, [594] = {.lex_state = 7, .external_lex_state = 3}, [595] = {.lex_state = 7, .external_lex_state = 3}, @@ -12232,57 +12240,57 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [694] = {.lex_state = 7, .external_lex_state = 3}, [695] = {.lex_state = 7, .external_lex_state = 3}, [696] = {.lex_state = 7, .external_lex_state = 3}, - [697] = {.lex_state = 5, .external_lex_state = 2}, - [698] = {.lex_state = 5, .external_lex_state = 2}, - [699] = {.lex_state = 5, .external_lex_state = 2}, - [700] = {.lex_state = 5, .external_lex_state = 2}, - [701] = {.lex_state = 5, .external_lex_state = 2}, - [702] = {.lex_state = 6, .external_lex_state = 2}, - [703] = {.lex_state = 3, .external_lex_state = 3}, - [704] = {.lex_state = 3, .external_lex_state = 3}, - [705] = {.lex_state = 3, .external_lex_state = 3}, - [706] = {.lex_state = 3, .external_lex_state = 3}, - [707] = {.lex_state = 3, .external_lex_state = 3}, + [697] = {.lex_state = 7, .external_lex_state = 3}, + [698] = {.lex_state = 7, .external_lex_state = 3}, + [699] = {.lex_state = 7, .external_lex_state = 3}, + [700] = {.lex_state = 7, .external_lex_state = 3}, + [701] = {.lex_state = 7, .external_lex_state = 3}, + [702] = {.lex_state = 5, .external_lex_state = 2}, + [703] = {.lex_state = 5, .external_lex_state = 2}, + [704] = {.lex_state = 5, .external_lex_state = 2}, + [705] = {.lex_state = 5, .external_lex_state = 2}, + [706] = {.lex_state = 5, .external_lex_state = 2}, + [707] = {.lex_state = 6, .external_lex_state = 2}, [708] = {.lex_state = 3, .external_lex_state = 3}, [709] = {.lex_state = 3, .external_lex_state = 3}, - [710] = {.lex_state = 4, .external_lex_state = 3}, - [711] = {.lex_state = 4, .external_lex_state = 3}, + [710] = {.lex_state = 3, .external_lex_state = 3}, + [711] = {.lex_state = 3, .external_lex_state = 3}, [712] = {.lex_state = 2, .external_lex_state = 3}, [713] = {.lex_state = 4, .external_lex_state = 3}, - [714] = {.lex_state = 3, .external_lex_state = 3}, + [714] = {.lex_state = 4, .external_lex_state = 3}, [715] = {.lex_state = 3, .external_lex_state = 3}, - [716] = {.lex_state = 4, .external_lex_state = 3}, + [716] = {.lex_state = 3, .external_lex_state = 3}, [717] = {.lex_state = 4, .external_lex_state = 3}, [718] = {.lex_state = 3, .external_lex_state = 3}, - [719] = {.lex_state = 2, .external_lex_state = 3}, + [719] = {.lex_state = 3, .external_lex_state = 3}, [720] = {.lex_state = 2, .external_lex_state = 3}, - [721] = {.lex_state = 2, .external_lex_state = 3}, - [722] = {.lex_state = 2, .external_lex_state = 3}, - [723] = {.lex_state = 2, .external_lex_state = 3}, - [724] = {.lex_state = 2, .external_lex_state = 3}, + [721] = {.lex_state = 3, .external_lex_state = 3}, + [722] = {.lex_state = 4, .external_lex_state = 3}, + [723] = {.lex_state = 4, .external_lex_state = 3}, + [724] = {.lex_state = 3, .external_lex_state = 3}, [725] = {.lex_state = 2, .external_lex_state = 3}, [726] = {.lex_state = 2, .external_lex_state = 3}, [727] = {.lex_state = 2, .external_lex_state = 3}, - [728] = {.lex_state = 4, .external_lex_state = 3}, - [729] = {.lex_state = 4, .external_lex_state = 3}, - [730] = {.lex_state = 4, .external_lex_state = 3}, + [728] = {.lex_state = 2, .external_lex_state = 3}, + [729] = {.lex_state = 2, .external_lex_state = 3}, + [730] = {.lex_state = 2, .external_lex_state = 3}, [731] = {.lex_state = 2, .external_lex_state = 3}, - [732] = {.lex_state = 4, .external_lex_state = 3}, + [732] = {.lex_state = 2, .external_lex_state = 3}, [733] = {.lex_state = 4, .external_lex_state = 3}, [734] = {.lex_state = 4, .external_lex_state = 3}, - [735] = {.lex_state = 4, .external_lex_state = 3}, + [735] = {.lex_state = 2, .external_lex_state = 3}, [736] = {.lex_state = 4, .external_lex_state = 3}, [737] = {.lex_state = 4, .external_lex_state = 3}, [738] = {.lex_state = 4, .external_lex_state = 3}, [739] = {.lex_state = 4, .external_lex_state = 3}, [740] = {.lex_state = 4, .external_lex_state = 3}, - [741] = {.lex_state = 2, .external_lex_state = 3}, + [741] = {.lex_state = 4, .external_lex_state = 3}, [742] = {.lex_state = 4, .external_lex_state = 3}, [743] = {.lex_state = 4, .external_lex_state = 3}, - [744] = {.lex_state = 2, .external_lex_state = 3}, + [744] = {.lex_state = 4, .external_lex_state = 3}, [745] = {.lex_state = 4, .external_lex_state = 3}, - [746] = {.lex_state = 4, .external_lex_state = 3}, - [747] = {.lex_state = 4, .external_lex_state = 3}, + [746] = {.lex_state = 2, .external_lex_state = 3}, + [747] = {.lex_state = 2, .external_lex_state = 3}, [748] = {.lex_state = 4, .external_lex_state = 3}, [749] = {.lex_state = 4, .external_lex_state = 3}, [750] = {.lex_state = 4, .external_lex_state = 3}, @@ -12293,34 +12301,34 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [755] = {.lex_state = 4, .external_lex_state = 3}, [756] = {.lex_state = 4, .external_lex_state = 3}, [757] = {.lex_state = 4, .external_lex_state = 3}, - [758] = {.lex_state = 2, .external_lex_state = 3}, - [759] = {.lex_state = 2, .external_lex_state = 3}, + [758] = {.lex_state = 4, .external_lex_state = 3}, + [759] = {.lex_state = 4, .external_lex_state = 3}, [760] = {.lex_state = 4, .external_lex_state = 3}, - [761] = {.lex_state = 4, .external_lex_state = 3}, + [761] = {.lex_state = 2, .external_lex_state = 3}, [762] = {.lex_state = 4, .external_lex_state = 3}, - [763] = {.lex_state = 4, .external_lex_state = 3}, - [764] = {.lex_state = 2, .external_lex_state = 3}, + [763] = {.lex_state = 2, .external_lex_state = 3}, + [764] = {.lex_state = 4, .external_lex_state = 3}, [765] = {.lex_state = 4, .external_lex_state = 3}, [766] = {.lex_state = 4, .external_lex_state = 3}, - [767] = {.lex_state = 2, .external_lex_state = 3}, - [768] = {.lex_state = 4, .external_lex_state = 3}, - [769] = {.lex_state = 2, .external_lex_state = 3}, + [767] = {.lex_state = 4, .external_lex_state = 3}, + [768] = {.lex_state = 2, .external_lex_state = 3}, + [769] = {.lex_state = 4, .external_lex_state = 3}, [770] = {.lex_state = 4, .external_lex_state = 3}, [771] = {.lex_state = 4, .external_lex_state = 3}, [772] = {.lex_state = 4, .external_lex_state = 3}, - [773] = {.lex_state = 2, .external_lex_state = 3}, - [774] = {.lex_state = 2, .external_lex_state = 3}, + [773] = {.lex_state = 4, .external_lex_state = 3}, + [774] = {.lex_state = 4, .external_lex_state = 3}, [775] = {.lex_state = 4, .external_lex_state = 3}, [776] = {.lex_state = 4, .external_lex_state = 3}, - [777] = {.lex_state = 2, .external_lex_state = 3}, + [777] = {.lex_state = 4, .external_lex_state = 3}, [778] = {.lex_state = 4, .external_lex_state = 3}, [779] = {.lex_state = 4, .external_lex_state = 3}, [780] = {.lex_state = 4, .external_lex_state = 3}, - [781] = {.lex_state = 2, .external_lex_state = 3}, + [781] = {.lex_state = 4, .external_lex_state = 3}, [782] = {.lex_state = 4, .external_lex_state = 3}, [783] = {.lex_state = 4, .external_lex_state = 3}, - [784] = {.lex_state = 2, .external_lex_state = 3}, - [785] = {.lex_state = 2, .external_lex_state = 3}, + [784] = {.lex_state = 4, .external_lex_state = 3}, + [785] = {.lex_state = 4, .external_lex_state = 3}, [786] = {.lex_state = 4, .external_lex_state = 3}, [787] = {.lex_state = 4, .external_lex_state = 3}, [788] = {.lex_state = 4, .external_lex_state = 3}, @@ -12328,43 +12336,43 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [790] = {.lex_state = 4, .external_lex_state = 3}, [791] = {.lex_state = 4, .external_lex_state = 3}, [792] = {.lex_state = 4, .external_lex_state = 3}, - [793] = {.lex_state = 2, .external_lex_state = 3}, + [793] = {.lex_state = 4, .external_lex_state = 3}, [794] = {.lex_state = 4, .external_lex_state = 3}, - [795] = {.lex_state = 2, .external_lex_state = 3}, - [796] = {.lex_state = 4, .external_lex_state = 3}, - [797] = {.lex_state = 4, .external_lex_state = 3}, - [798] = {.lex_state = 4, .external_lex_state = 3}, - [799] = {.lex_state = 4, .external_lex_state = 3}, + [795] = {.lex_state = 4, .external_lex_state = 3}, + [796] = {.lex_state = 2, .external_lex_state = 3}, + [797] = {.lex_state = 2, .external_lex_state = 3}, + [798] = {.lex_state = 2, .external_lex_state = 3}, + [799] = {.lex_state = 2, .external_lex_state = 3}, [800] = {.lex_state = 4, .external_lex_state = 3}, [801] = {.lex_state = 4, .external_lex_state = 3}, [802] = {.lex_state = 4, .external_lex_state = 3}, - [803] = {.lex_state = 2, .external_lex_state = 3}, + [803] = {.lex_state = 4, .external_lex_state = 3}, [804] = {.lex_state = 4, .external_lex_state = 3}, [805] = {.lex_state = 4, .external_lex_state = 3}, [806] = {.lex_state = 4, .external_lex_state = 3}, - [807] = {.lex_state = 4, .external_lex_state = 3}, + [807] = {.lex_state = 2, .external_lex_state = 3}, [808] = {.lex_state = 4, .external_lex_state = 3}, [809] = {.lex_state = 2, .external_lex_state = 3}, - [810] = {.lex_state = 4, .external_lex_state = 3}, + [810] = {.lex_state = 2, .external_lex_state = 3}, [811] = {.lex_state = 2, .external_lex_state = 3}, [812] = {.lex_state = 4, .external_lex_state = 3}, [813] = {.lex_state = 4, .external_lex_state = 3}, [814] = {.lex_state = 4, .external_lex_state = 3}, - [815] = {.lex_state = 2, .external_lex_state = 3}, - [816] = {.lex_state = 4, .external_lex_state = 3}, + [815] = {.lex_state = 4, .external_lex_state = 3}, + [816] = {.lex_state = 2, .external_lex_state = 3}, [817] = {.lex_state = 4, .external_lex_state = 3}, [818] = {.lex_state = 4, .external_lex_state = 3}, - [819] = {.lex_state = 4, .external_lex_state = 3}, - [820] = {.lex_state = 4, .external_lex_state = 3}, + [819] = {.lex_state = 2, .external_lex_state = 3}, + [820] = {.lex_state = 2, .external_lex_state = 3}, [821] = {.lex_state = 4, .external_lex_state = 3}, - [822] = {.lex_state = 4, .external_lex_state = 3}, - [823] = {.lex_state = 4, .external_lex_state = 3}, + [822] = {.lex_state = 2, .external_lex_state = 3}, + [823] = {.lex_state = 2, .external_lex_state = 3}, [824] = {.lex_state = 4, .external_lex_state = 3}, - [825] = {.lex_state = 4, .external_lex_state = 3}, - [826] = {.lex_state = 4, .external_lex_state = 3}, + [825] = {.lex_state = 2, .external_lex_state = 3}, + [826] = {.lex_state = 2, .external_lex_state = 3}, [827] = {.lex_state = 4, .external_lex_state = 3}, [828] = {.lex_state = 4, .external_lex_state = 3}, - [829] = {.lex_state = 4, .external_lex_state = 3}, + [829] = {.lex_state = 2, .external_lex_state = 3}, [830] = {.lex_state = 4, .external_lex_state = 3}, [831] = {.lex_state = 4, .external_lex_state = 3}, [832] = {.lex_state = 4, .external_lex_state = 3}, @@ -12388,10 +12396,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [850] = {.lex_state = 4, .external_lex_state = 3}, [851] = {.lex_state = 4, .external_lex_state = 3}, [852] = {.lex_state = 4, .external_lex_state = 3}, - [853] = {.lex_state = 4, .external_lex_state = 3}, + [853] = {.lex_state = 10, .external_lex_state = 3}, [854] = {.lex_state = 4, .external_lex_state = 3}, [855] = {.lex_state = 4, .external_lex_state = 3}, - [856] = {.lex_state = 2, .external_lex_state = 3}, + [856] = {.lex_state = 4, .external_lex_state = 3}, [857] = {.lex_state = 4, .external_lex_state = 3}, [858] = {.lex_state = 4, .external_lex_state = 3}, [859] = {.lex_state = 4, .external_lex_state = 3}, @@ -12408,32 +12416,32 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [870] = {.lex_state = 4, .external_lex_state = 3}, [871] = {.lex_state = 4, .external_lex_state = 3}, [872] = {.lex_state = 4, .external_lex_state = 3}, - [873] = {.lex_state = 10, .external_lex_state = 3}, + [873] = {.lex_state = 4, .external_lex_state = 3}, [874] = {.lex_state = 4, .external_lex_state = 3}, - [875] = {.lex_state = 2, .external_lex_state = 3}, + [875] = {.lex_state = 4, .external_lex_state = 3}, [876] = {.lex_state = 4, .external_lex_state = 3}, [877] = {.lex_state = 2, .external_lex_state = 3}, - [878] = {.lex_state = 2, .external_lex_state = 3}, + [878] = {.lex_state = 4, .external_lex_state = 3}, [879] = {.lex_state = 4, .external_lex_state = 3}, - [880] = {.lex_state = 4, .external_lex_state = 3}, + [880] = {.lex_state = 2, .external_lex_state = 3}, [881] = {.lex_state = 4, .external_lex_state = 3}, [882] = {.lex_state = 4, .external_lex_state = 3}, [883] = {.lex_state = 4, .external_lex_state = 3}, [884] = {.lex_state = 4, .external_lex_state = 3}, - [885] = {.lex_state = 4, .external_lex_state = 3}, - [886] = {.lex_state = 2, .external_lex_state = 3}, + [885] = {.lex_state = 2, .external_lex_state = 3}, + [886] = {.lex_state = 4, .external_lex_state = 3}, [887] = {.lex_state = 4, .external_lex_state = 3}, - [888] = {.lex_state = 2, .external_lex_state = 3}, - [889] = {.lex_state = 2, .external_lex_state = 3}, + [888] = {.lex_state = 4, .external_lex_state = 3}, + [889] = {.lex_state = 4, .external_lex_state = 3}, [890] = {.lex_state = 4, .external_lex_state = 3}, [891] = {.lex_state = 4, .external_lex_state = 3}, [892] = {.lex_state = 4, .external_lex_state = 3}, [893] = {.lex_state = 4, .external_lex_state = 3}, - [894] = {.lex_state = 4, .external_lex_state = 3}, + [894] = {.lex_state = 2, .external_lex_state = 3}, [895] = {.lex_state = 4, .external_lex_state = 3}, [896] = {.lex_state = 4, .external_lex_state = 3}, [897] = {.lex_state = 4, .external_lex_state = 3}, - [898] = {.lex_state = 3, .external_lex_state = 3}, + [898] = {.lex_state = 4, .external_lex_state = 3}, [899] = {.lex_state = 4, .external_lex_state = 3}, [900] = {.lex_state = 4, .external_lex_state = 3}, [901] = {.lex_state = 4, .external_lex_state = 3}, @@ -12449,25 +12457,25 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [911] = {.lex_state = 4, .external_lex_state = 3}, [912] = {.lex_state = 4, .external_lex_state = 3}, [913] = {.lex_state = 4, .external_lex_state = 3}, - [914] = {.lex_state = 4, .external_lex_state = 3}, - [915] = {.lex_state = 2, .external_lex_state = 3}, + [914] = {.lex_state = 3, .external_lex_state = 3}, + [915] = {.lex_state = 4, .external_lex_state = 3}, [916] = {.lex_state = 4, .external_lex_state = 3}, [917] = {.lex_state = 4, .external_lex_state = 3}, [918] = {.lex_state = 4, .external_lex_state = 3}, - [919] = {.lex_state = 2, .external_lex_state = 3}, + [919] = {.lex_state = 4, .external_lex_state = 3}, [920] = {.lex_state = 4, .external_lex_state = 3}, [921] = {.lex_state = 4, .external_lex_state = 3}, - [922] = {.lex_state = 4, .external_lex_state = 3}, + [922] = {.lex_state = 2, .external_lex_state = 3}, [923] = {.lex_state = 4, .external_lex_state = 3}, [924] = {.lex_state = 4, .external_lex_state = 3}, - [925] = {.lex_state = 4, .external_lex_state = 3}, + [925] = {.lex_state = 2, .external_lex_state = 3}, [926] = {.lex_state = 4, .external_lex_state = 3}, [927] = {.lex_state = 4, .external_lex_state = 3}, - [928] = {.lex_state = 4, .external_lex_state = 3}, - [929] = {.lex_state = 2, .external_lex_state = 3}, + [928] = {.lex_state = 2, .external_lex_state = 3}, + [929] = {.lex_state = 4, .external_lex_state = 3}, [930] = {.lex_state = 4, .external_lex_state = 3}, - [931] = {.lex_state = 2, .external_lex_state = 3}, - [932] = {.lex_state = 4, .external_lex_state = 3}, + [931] = {.lex_state = 4, .external_lex_state = 3}, + [932] = {.lex_state = 2, .external_lex_state = 3}, [933] = {.lex_state = 4, .external_lex_state = 3}, [934] = {.lex_state = 4, .external_lex_state = 3}, [935] = {.lex_state = 4, .external_lex_state = 3}, @@ -12483,23 +12491,23 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [945] = {.lex_state = 4, .external_lex_state = 3}, [946] = {.lex_state = 4, .external_lex_state = 3}, [947] = {.lex_state = 4, .external_lex_state = 3}, - [948] = {.lex_state = 4, .external_lex_state = 3}, + [948] = {.lex_state = 2, .external_lex_state = 3}, [949] = {.lex_state = 4, .external_lex_state = 3}, [950] = {.lex_state = 4, .external_lex_state = 3}, [951] = {.lex_state = 4, .external_lex_state = 3}, [952] = {.lex_state = 4, .external_lex_state = 3}, [953] = {.lex_state = 4, .external_lex_state = 3}, - [954] = {.lex_state = 2, .external_lex_state = 3}, - [955] = {.lex_state = 5, .external_lex_state = 2}, - [956] = {.lex_state = 2, .external_lex_state = 3}, - [957] = {.lex_state = 7, .external_lex_state = 3}, - [958] = {.lex_state = 2, .external_lex_state = 3}, - [959] = {.lex_state = 2, .external_lex_state = 3}, - [960] = {.lex_state = 2, .external_lex_state = 3}, - [961] = {.lex_state = 2, .external_lex_state = 3}, - [962] = {.lex_state = 2, .external_lex_state = 3}, - [963] = {.lex_state = 2, .external_lex_state = 3}, - [964] = {.lex_state = 2, .external_lex_state = 3}, + [954] = {.lex_state = 4, .external_lex_state = 3}, + [955] = {.lex_state = 2, .external_lex_state = 3}, + [956] = {.lex_state = 4, .external_lex_state = 3}, + [957] = {.lex_state = 4, .external_lex_state = 3}, + [958] = {.lex_state = 4, .external_lex_state = 3}, + [959] = {.lex_state = 4, .external_lex_state = 3}, + [960] = {.lex_state = 4, .external_lex_state = 3}, + [961] = {.lex_state = 4, .external_lex_state = 3}, + [962] = {.lex_state = 4, .external_lex_state = 3}, + [963] = {.lex_state = 4, .external_lex_state = 3}, + [964] = {.lex_state = 4, .external_lex_state = 3}, [965] = {.lex_state = 2, .external_lex_state = 3}, [966] = {.lex_state = 2, .external_lex_state = 3}, [967] = {.lex_state = 2, .external_lex_state = 3}, @@ -12509,7 +12517,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [971] = {.lex_state = 2, .external_lex_state = 3}, [972] = {.lex_state = 2, .external_lex_state = 3}, [973] = {.lex_state = 2, .external_lex_state = 3}, - [974] = {.lex_state = 5, .external_lex_state = 2}, + [974] = {.lex_state = 2, .external_lex_state = 3}, [975] = {.lex_state = 2, .external_lex_state = 3}, [976] = {.lex_state = 2, .external_lex_state = 3}, [977] = {.lex_state = 2, .external_lex_state = 3}, @@ -12524,41 +12532,41 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [986] = {.lex_state = 2, .external_lex_state = 3}, [987] = {.lex_state = 2, .external_lex_state = 3}, [988] = {.lex_state = 2, .external_lex_state = 3}, - [989] = {.lex_state = 7, .external_lex_state = 3}, + [989] = {.lex_state = 2, .external_lex_state = 3}, [990] = {.lex_state = 2, .external_lex_state = 3}, [991] = {.lex_state = 2, .external_lex_state = 3}, - [992] = {.lex_state = 2, .external_lex_state = 3}, + [992] = {.lex_state = 7, .external_lex_state = 3}, [993] = {.lex_state = 2, .external_lex_state = 3}, [994] = {.lex_state = 2, .external_lex_state = 3}, [995] = {.lex_state = 2, .external_lex_state = 3}, [996] = {.lex_state = 2, .external_lex_state = 3}, - [997] = {.lex_state = 7, .external_lex_state = 3}, + [997] = {.lex_state = 2, .external_lex_state = 3}, [998] = {.lex_state = 2, .external_lex_state = 3}, [999] = {.lex_state = 2, .external_lex_state = 3}, - [1000] = {.lex_state = 7, .external_lex_state = 3}, - [1001] = {.lex_state = 7, .external_lex_state = 3}, + [1000] = {.lex_state = 2, .external_lex_state = 3}, + [1001] = {.lex_state = 2, .external_lex_state = 3}, [1002] = {.lex_state = 2, .external_lex_state = 3}, [1003] = {.lex_state = 2, .external_lex_state = 3}, - [1004] = {.lex_state = 2, .external_lex_state = 3}, + [1004] = {.lex_state = 7, .external_lex_state = 3}, [1005] = {.lex_state = 2, .external_lex_state = 3}, [1006] = {.lex_state = 2, .external_lex_state = 3}, - [1007] = {.lex_state = 2, .external_lex_state = 3}, + [1007] = {.lex_state = 7, .external_lex_state = 3}, [1008] = {.lex_state = 2, .external_lex_state = 3}, [1009] = {.lex_state = 2, .external_lex_state = 3}, [1010] = {.lex_state = 2, .external_lex_state = 3}, [1011] = {.lex_state = 2, .external_lex_state = 3}, [1012] = {.lex_state = 2, .external_lex_state = 3}, - [1013] = {.lex_state = 2, .external_lex_state = 3}, - [1014] = {.lex_state = 2, .external_lex_state = 3}, + [1013] = {.lex_state = 7, .external_lex_state = 3}, + [1014] = {.lex_state = 5, .external_lex_state = 2}, [1015] = {.lex_state = 2, .external_lex_state = 3}, [1016] = {.lex_state = 2, .external_lex_state = 3}, [1017] = {.lex_state = 2, .external_lex_state = 3}, [1018] = {.lex_state = 2, .external_lex_state = 3}, - [1019] = {.lex_state = 7, .external_lex_state = 3}, - [1020] = {.lex_state = 2, .external_lex_state = 3}, + [1019] = {.lex_state = 2, .external_lex_state = 3}, + [1020] = {.lex_state = 7, .external_lex_state = 3}, [1021] = {.lex_state = 2, .external_lex_state = 3}, [1022] = {.lex_state = 2, .external_lex_state = 3}, - [1023] = {.lex_state = 2, .external_lex_state = 3}, + [1023] = {.lex_state = 7, .external_lex_state = 3}, [1024] = {.lex_state = 2, .external_lex_state = 3}, [1025] = {.lex_state = 2, .external_lex_state = 3}, [1026] = {.lex_state = 2, .external_lex_state = 3}, @@ -12581,17 +12589,17 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1043] = {.lex_state = 2, .external_lex_state = 3}, [1044] = {.lex_state = 2, .external_lex_state = 3}, [1045] = {.lex_state = 2, .external_lex_state = 3}, - [1046] = {.lex_state = 2, .external_lex_state = 3}, - [1047] = {.lex_state = 7, .external_lex_state = 3}, + [1046] = {.lex_state = 7, .external_lex_state = 3}, + [1047] = {.lex_state = 2, .external_lex_state = 3}, [1048] = {.lex_state = 2, .external_lex_state = 3}, [1049] = {.lex_state = 2, .external_lex_state = 3}, [1050] = {.lex_state = 2, .external_lex_state = 3}, [1051] = {.lex_state = 2, .external_lex_state = 3}, - [1052] = {.lex_state = 2, .external_lex_state = 3}, + [1052] = {.lex_state = 5, .external_lex_state = 2}, [1053] = {.lex_state = 2, .external_lex_state = 3}, [1054] = {.lex_state = 2, .external_lex_state = 3}, - [1055] = {.lex_state = 7, .external_lex_state = 3}, - [1056] = {.lex_state = 7, .external_lex_state = 3}, + [1055] = {.lex_state = 2, .external_lex_state = 3}, + [1056] = {.lex_state = 2, .external_lex_state = 3}, [1057] = {.lex_state = 2, .external_lex_state = 3}, [1058] = {.lex_state = 2, .external_lex_state = 3}, [1059] = {.lex_state = 2, .external_lex_state = 3}, @@ -12611,48 +12619,48 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1073] = {.lex_state = 2, .external_lex_state = 3}, [1074] = {.lex_state = 2, .external_lex_state = 3}, [1075] = {.lex_state = 2, .external_lex_state = 3}, - [1076] = {.lex_state = 5, .external_lex_state = 2}, - [1077] = {.lex_state = 5, .external_lex_state = 2}, - [1078] = {.lex_state = 7, .external_lex_state = 3}, + [1076] = {.lex_state = 2, .external_lex_state = 3}, + [1077] = {.lex_state = 7, .external_lex_state = 3}, + [1078] = {.lex_state = 2, .external_lex_state = 3}, [1079] = {.lex_state = 7, .external_lex_state = 3}, [1080] = {.lex_state = 2, .external_lex_state = 3}, - [1081] = {.lex_state = 5, .external_lex_state = 2}, - [1082] = {.lex_state = 7, .external_lex_state = 3}, - [1083] = {.lex_state = 7, .external_lex_state = 3}, - [1084] = {.lex_state = 7, .external_lex_state = 3}, - [1085] = {.lex_state = 7, .external_lex_state = 3}, - [1086] = {.lex_state = 7, .external_lex_state = 3}, - [1087] = {.lex_state = 2, .external_lex_state = 3}, - [1088] = {.lex_state = 7, .external_lex_state = 3}, - [1089] = {.lex_state = 2, .external_lex_state = 3}, + [1081] = {.lex_state = 2, .external_lex_state = 3}, + [1082] = {.lex_state = 2, .external_lex_state = 3}, + [1083] = {.lex_state = 2, .external_lex_state = 3}, + [1084] = {.lex_state = 2, .external_lex_state = 3}, + [1085] = {.lex_state = 2, .external_lex_state = 3}, + [1086] = {.lex_state = 2, .external_lex_state = 3}, + [1087] = {.lex_state = 5, .external_lex_state = 2}, + [1088] = {.lex_state = 5, .external_lex_state = 2}, + [1089] = {.lex_state = 7, .external_lex_state = 3}, [1090] = {.lex_state = 2, .external_lex_state = 3}, - [1091] = {.lex_state = 2, .external_lex_state = 3}, - [1092] = {.lex_state = 5, .external_lex_state = 2}, - [1093] = {.lex_state = 5, .external_lex_state = 2}, - [1094] = {.lex_state = 5, .external_lex_state = 2}, - [1095] = {.lex_state = 2, .external_lex_state = 3}, + [1091] = {.lex_state = 7, .external_lex_state = 3}, + [1092] = {.lex_state = 7, .external_lex_state = 3}, + [1093] = {.lex_state = 7, .external_lex_state = 3}, + [1094] = {.lex_state = 7, .external_lex_state = 3}, + [1095] = {.lex_state = 5, .external_lex_state = 2}, [1096] = {.lex_state = 2, .external_lex_state = 3}, - [1097] = {.lex_state = 5, .external_lex_state = 2}, - [1098] = {.lex_state = 2, .external_lex_state = 3}, + [1097] = {.lex_state = 7, .external_lex_state = 3}, + [1098] = {.lex_state = 7, .external_lex_state = 3}, [1099] = {.lex_state = 2, .external_lex_state = 3}, - [1100] = {.lex_state = 2, .external_lex_state = 3}, + [1100] = {.lex_state = 7, .external_lex_state = 3}, [1101] = {.lex_state = 2, .external_lex_state = 3}, - [1102] = {.lex_state = 7, .external_lex_state = 3}, + [1102] = {.lex_state = 2, .external_lex_state = 3}, [1103] = {.lex_state = 2, .external_lex_state = 3}, - [1104] = {.lex_state = 7, .external_lex_state = 3}, - [1105] = {.lex_state = 2, .external_lex_state = 3}, - [1106] = {.lex_state = 2, .external_lex_state = 3}, - [1107] = {.lex_state = 2, .external_lex_state = 3}, - [1108] = {.lex_state = 7, .external_lex_state = 3}, - [1109] = {.lex_state = 2, .external_lex_state = 3}, + [1104] = {.lex_state = 2, .external_lex_state = 3}, + [1105] = {.lex_state = 5, .external_lex_state = 2}, + [1106] = {.lex_state = 5, .external_lex_state = 2}, + [1107] = {.lex_state = 5, .external_lex_state = 2}, + [1108] = {.lex_state = 5, .external_lex_state = 2}, + [1109] = {.lex_state = 7, .external_lex_state = 3}, [1110] = {.lex_state = 2, .external_lex_state = 3}, - [1111] = {.lex_state = 7, .external_lex_state = 3}, + [1111] = {.lex_state = 5, .external_lex_state = 2}, [1112] = {.lex_state = 2, .external_lex_state = 3}, - [1113] = {.lex_state = 2, .external_lex_state = 3}, + [1113] = {.lex_state = 7, .external_lex_state = 3}, [1114] = {.lex_state = 2, .external_lex_state = 3}, - [1115] = {.lex_state = 2, .external_lex_state = 3}, + [1115] = {.lex_state = 7, .external_lex_state = 3}, [1116] = {.lex_state = 2, .external_lex_state = 3}, - [1117] = {.lex_state = 7, .external_lex_state = 3}, + [1117] = {.lex_state = 2, .external_lex_state = 3}, [1118] = {.lex_state = 2, .external_lex_state = 3}, [1119] = {.lex_state = 2, .external_lex_state = 3}, [1120] = {.lex_state = 2, .external_lex_state = 3}, @@ -12661,7 +12669,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1123] = {.lex_state = 2, .external_lex_state = 3}, [1124] = {.lex_state = 2, .external_lex_state = 3}, [1125] = {.lex_state = 2, .external_lex_state = 3}, - [1126] = {.lex_state = 2, .external_lex_state = 3}, + [1126] = {.lex_state = 7, .external_lex_state = 3}, [1127] = {.lex_state = 2, .external_lex_state = 3}, [1128] = {.lex_state = 2, .external_lex_state = 3}, [1129] = {.lex_state = 2, .external_lex_state = 3}, @@ -12670,12 +12678,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1132] = {.lex_state = 2, .external_lex_state = 3}, [1133] = {.lex_state = 2, .external_lex_state = 3}, [1134] = {.lex_state = 2, .external_lex_state = 3}, - [1135] = {.lex_state = 2, .external_lex_state = 3}, + [1135] = {.lex_state = 7, .external_lex_state = 3}, [1136] = {.lex_state = 2, .external_lex_state = 3}, [1137] = {.lex_state = 2, .external_lex_state = 3}, - [1138] = {.lex_state = 7, .external_lex_state = 3}, + [1138] = {.lex_state = 2, .external_lex_state = 3}, [1139] = {.lex_state = 2, .external_lex_state = 3}, - [1140] = {.lex_state = 7, .external_lex_state = 3}, + [1140] = {.lex_state = 2, .external_lex_state = 3}, [1141] = {.lex_state = 2, .external_lex_state = 3}, [1142] = {.lex_state = 2, .external_lex_state = 3}, [1143] = {.lex_state = 2, .external_lex_state = 3}, @@ -12692,14 +12700,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1154] = {.lex_state = 2, .external_lex_state = 3}, [1155] = {.lex_state = 2, .external_lex_state = 3}, [1156] = {.lex_state = 2, .external_lex_state = 3}, - [1157] = {.lex_state = 2, .external_lex_state = 3}, + [1157] = {.lex_state = 7, .external_lex_state = 3}, [1158] = {.lex_state = 2, .external_lex_state = 3}, [1159] = {.lex_state = 2, .external_lex_state = 3}, - [1160] = {.lex_state = 2, .external_lex_state = 3}, + [1160] = {.lex_state = 7, .external_lex_state = 3}, [1161] = {.lex_state = 2, .external_lex_state = 3}, [1162] = {.lex_state = 2, .external_lex_state = 3}, [1163] = {.lex_state = 2, .external_lex_state = 3}, - [1164] = {.lex_state = 5, .external_lex_state = 2}, + [1164] = {.lex_state = 2, .external_lex_state = 3}, [1165] = {.lex_state = 2, .external_lex_state = 3}, [1166] = {.lex_state = 2, .external_lex_state = 3}, [1167] = {.lex_state = 2, .external_lex_state = 3}, @@ -12714,7 +12722,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1176] = {.lex_state = 2, .external_lex_state = 3}, [1177] = {.lex_state = 2, .external_lex_state = 3}, [1178] = {.lex_state = 2, .external_lex_state = 3}, - [1179] = {.lex_state = 2, .external_lex_state = 3}, + [1179] = {.lex_state = 7, .external_lex_state = 3}, [1180] = {.lex_state = 2, .external_lex_state = 3}, [1181] = {.lex_state = 2, .external_lex_state = 3}, [1182] = {.lex_state = 2, .external_lex_state = 3}, @@ -12735,7 +12743,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1197] = {.lex_state = 2, .external_lex_state = 3}, [1198] = {.lex_state = 2, .external_lex_state = 3}, [1199] = {.lex_state = 2, .external_lex_state = 3}, - [1200] = {.lex_state = 7, .external_lex_state = 3}, + [1200] = {.lex_state = 2, .external_lex_state = 3}, [1201] = {.lex_state = 2, .external_lex_state = 3}, [1202] = {.lex_state = 2, .external_lex_state = 3}, [1203] = {.lex_state = 2, .external_lex_state = 3}, @@ -12746,7 +12754,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1208] = {.lex_state = 2, .external_lex_state = 3}, [1209] = {.lex_state = 2, .external_lex_state = 3}, [1210] = {.lex_state = 2, .external_lex_state = 3}, - [1211] = {.lex_state = 2, .external_lex_state = 3}, + [1211] = {.lex_state = 7, .external_lex_state = 3}, [1212] = {.lex_state = 2, .external_lex_state = 3}, [1213] = {.lex_state = 2, .external_lex_state = 3}, [1214] = {.lex_state = 2, .external_lex_state = 3}, @@ -12755,21 +12763,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1217] = {.lex_state = 2, .external_lex_state = 3}, [1218] = {.lex_state = 2, .external_lex_state = 3}, [1219] = {.lex_state = 2, .external_lex_state = 3}, - [1220] = {.lex_state = 7, .external_lex_state = 3}, + [1220] = {.lex_state = 2, .external_lex_state = 3}, [1221] = {.lex_state = 2, .external_lex_state = 3}, [1222] = {.lex_state = 2, .external_lex_state = 3}, [1223] = {.lex_state = 2, .external_lex_state = 3}, - [1224] = {.lex_state = 7, .external_lex_state = 3}, - [1225] = {.lex_state = 7, .external_lex_state = 3}, - [1226] = {.lex_state = 7, .external_lex_state = 3}, - [1227] = {.lex_state = 7, .external_lex_state = 3}, - [1228] = {.lex_state = 7, .external_lex_state = 3}, - [1229] = {.lex_state = 7, .external_lex_state = 3}, - [1230] = {.lex_state = 7, .external_lex_state = 3}, - [1231] = {.lex_state = 7, .external_lex_state = 3}, - [1232] = {.lex_state = 7, .external_lex_state = 3}, - [1233] = {.lex_state = 7, .external_lex_state = 3}, - [1234] = {.lex_state = 7, .external_lex_state = 3}, + [1224] = {.lex_state = 2, .external_lex_state = 3}, + [1225] = {.lex_state = 2, .external_lex_state = 3}, + [1226] = {.lex_state = 2, .external_lex_state = 3}, + [1227] = {.lex_state = 2, .external_lex_state = 3}, + [1228] = {.lex_state = 2, .external_lex_state = 3}, + [1229] = {.lex_state = 2, .external_lex_state = 3}, + [1230] = {.lex_state = 2, .external_lex_state = 3}, + [1231] = {.lex_state = 2, .external_lex_state = 3}, + [1232] = {.lex_state = 2, .external_lex_state = 3}, + [1233] = {.lex_state = 2, .external_lex_state = 3}, + [1234] = {.lex_state = 2, .external_lex_state = 3}, [1235] = {.lex_state = 7, .external_lex_state = 3}, [1236] = {.lex_state = 7, .external_lex_state = 3}, [1237] = {.lex_state = 7, .external_lex_state = 3}, @@ -12779,80 +12787,80 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1241] = {.lex_state = 7, .external_lex_state = 3}, [1242] = {.lex_state = 7, .external_lex_state = 3}, [1243] = {.lex_state = 7, .external_lex_state = 3}, - [1244] = {.lex_state = 17, .external_lex_state = 3}, - [1245] = {.lex_state = 17, .external_lex_state = 3}, - [1246] = {.lex_state = 9, .external_lex_state = 3}, - [1247] = {.lex_state = 9, .external_lex_state = 3}, - [1248] = {.lex_state = 9, .external_lex_state = 3}, - [1249] = {.lex_state = 9, .external_lex_state = 3}, - [1250] = {.lex_state = 9, .external_lex_state = 3}, - [1251] = {.lex_state = 9, .external_lex_state = 3}, - [1252] = {.lex_state = 9, .external_lex_state = 3}, - [1253] = {.lex_state = 9, .external_lex_state = 3}, - [1254] = {.lex_state = 9, .external_lex_state = 3}, - [1255] = {.lex_state = 9, .external_lex_state = 3}, - [1256] = {.lex_state = 9, .external_lex_state = 3}, + [1244] = {.lex_state = 7, .external_lex_state = 3}, + [1245] = {.lex_state = 7, .external_lex_state = 3}, + [1246] = {.lex_state = 7, .external_lex_state = 3}, + [1247] = {.lex_state = 7, .external_lex_state = 3}, + [1248] = {.lex_state = 7, .external_lex_state = 3}, + [1249] = {.lex_state = 7, .external_lex_state = 3}, + [1250] = {.lex_state = 7, .external_lex_state = 3}, + [1251] = {.lex_state = 7, .external_lex_state = 3}, + [1252] = {.lex_state = 7, .external_lex_state = 3}, + [1253] = {.lex_state = 7, .external_lex_state = 3}, + [1254] = {.lex_state = 7, .external_lex_state = 3}, + [1255] = {.lex_state = 17, .external_lex_state = 3}, + [1256] = {.lex_state = 17, .external_lex_state = 3}, [1257] = {.lex_state = 9, .external_lex_state = 3}, - [1258] = {.lex_state = 17, .external_lex_state = 3}, - [1259] = {.lex_state = 7, .external_lex_state = 3}, - [1260] = {.lex_state = 7, .external_lex_state = 3}, - [1261] = {.lex_state = 17, .external_lex_state = 3}, - [1262] = {.lex_state = 17, .external_lex_state = 3}, - [1263] = {.lex_state = 7, .external_lex_state = 3}, - [1264] = {.lex_state = 17, .external_lex_state = 3}, - [1265] = {.lex_state = 7, .external_lex_state = 3}, - [1266] = {.lex_state = 7, .external_lex_state = 3}, - [1267] = {.lex_state = 7, .external_lex_state = 3}, - [1268] = {.lex_state = 7, .external_lex_state = 3}, - [1269] = {.lex_state = 7, .external_lex_state = 3}, - [1270] = {.lex_state = 9, .external_lex_state = 3}, - [1271] = {.lex_state = 7, .external_lex_state = 3}, - [1272] = {.lex_state = 7, .external_lex_state = 3}, + [1258] = {.lex_state = 9, .external_lex_state = 3}, + [1259] = {.lex_state = 9, .external_lex_state = 3}, + [1260] = {.lex_state = 9, .external_lex_state = 3}, + [1261] = {.lex_state = 9, .external_lex_state = 3}, + [1262] = {.lex_state = 9, .external_lex_state = 3}, + [1263] = {.lex_state = 9, .external_lex_state = 3}, + [1264] = {.lex_state = 9, .external_lex_state = 3}, + [1265] = {.lex_state = 9, .external_lex_state = 3}, + [1266] = {.lex_state = 9, .external_lex_state = 3}, + [1267] = {.lex_state = 9, .external_lex_state = 3}, + [1268] = {.lex_state = 9, .external_lex_state = 3}, + [1269] = {.lex_state = 17, .external_lex_state = 3}, + [1270] = {.lex_state = 7, .external_lex_state = 3}, + [1271] = {.lex_state = 17, .external_lex_state = 3}, + [1272] = {.lex_state = 17, .external_lex_state = 3}, [1273] = {.lex_state = 7, .external_lex_state = 3}, - [1274] = {.lex_state = 7, .external_lex_state = 3}, + [1274] = {.lex_state = 17, .external_lex_state = 3}, [1275] = {.lex_state = 7, .external_lex_state = 3}, [1276] = {.lex_state = 7, .external_lex_state = 3}, [1277] = {.lex_state = 7, .external_lex_state = 3}, - [1278] = {.lex_state = 7, .external_lex_state = 3}, - [1279] = {.lex_state = 17, .external_lex_state = 3}, + [1278] = {.lex_state = 9, .external_lex_state = 3}, + [1279] = {.lex_state = 7, .external_lex_state = 3}, [1280] = {.lex_state = 9, .external_lex_state = 3}, - [1281] = {.lex_state = 9, .external_lex_state = 3}, + [1281] = {.lex_state = 7, .external_lex_state = 3}, [1282] = {.lex_state = 7, .external_lex_state = 3}, - [1283] = {.lex_state = 17, .external_lex_state = 3}, - [1284] = {.lex_state = 17, .external_lex_state = 3}, - [1285] = {.lex_state = 17, .external_lex_state = 3}, + [1283] = {.lex_state = 7, .external_lex_state = 3}, + [1284] = {.lex_state = 7, .external_lex_state = 3}, + [1285] = {.lex_state = 7, .external_lex_state = 3}, [1286] = {.lex_state = 7, .external_lex_state = 3}, - [1287] = {.lex_state = 17, .external_lex_state = 3}, + [1287] = {.lex_state = 7, .external_lex_state = 3}, [1288] = {.lex_state = 7, .external_lex_state = 3}, [1289] = {.lex_state = 7, .external_lex_state = 3}, - [1290] = {.lex_state = 17, .external_lex_state = 3}, - [1291] = {.lex_state = 17, .external_lex_state = 3}, - [1292] = {.lex_state = 7, .external_lex_state = 3}, - [1293] = {.lex_state = 17, .external_lex_state = 3}, - [1294] = {.lex_state = 9, .external_lex_state = 3}, - [1295] = {.lex_state = 7, .external_lex_state = 3}, + [1290] = {.lex_state = 7, .external_lex_state = 3}, + [1291] = {.lex_state = 9, .external_lex_state = 3}, + [1292] = {.lex_state = 17, .external_lex_state = 3}, + [1293] = {.lex_state = 7, .external_lex_state = 3}, + [1294] = {.lex_state = 7, .external_lex_state = 3}, + [1295] = {.lex_state = 17, .external_lex_state = 3}, [1296] = {.lex_state = 17, .external_lex_state = 3}, - [1297] = {.lex_state = 7, .external_lex_state = 3}, - [1298] = {.lex_state = 17, .external_lex_state = 3}, + [1297] = {.lex_state = 17, .external_lex_state = 3}, + [1298] = {.lex_state = 7, .external_lex_state = 3}, [1299] = {.lex_state = 17, .external_lex_state = 3}, [1300] = {.lex_state = 17, .external_lex_state = 3}, - [1301] = {.lex_state = 7, .external_lex_state = 3}, + [1301] = {.lex_state = 17, .external_lex_state = 3}, [1302] = {.lex_state = 17, .external_lex_state = 3}, [1303] = {.lex_state = 17, .external_lex_state = 3}, [1304] = {.lex_state = 17, .external_lex_state = 3}, - [1305] = {.lex_state = 17, .external_lex_state = 3}, - [1306] = {.lex_state = 17, .external_lex_state = 3}, + [1305] = {.lex_state = 7, .external_lex_state = 3}, + [1306] = {.lex_state = 7, .external_lex_state = 3}, [1307] = {.lex_state = 17, .external_lex_state = 3}, - [1308] = {.lex_state = 17, .external_lex_state = 3}, + [1308] = {.lex_state = 7, .external_lex_state = 3}, [1309] = {.lex_state = 17, .external_lex_state = 3}, - [1310] = {.lex_state = 17, .external_lex_state = 3}, + [1310] = {.lex_state = 7, .external_lex_state = 3}, [1311] = {.lex_state = 17, .external_lex_state = 3}, - [1312] = {.lex_state = 17, .external_lex_state = 3}, + [1312] = {.lex_state = 7, .external_lex_state = 3}, [1313] = {.lex_state = 17, .external_lex_state = 3}, - [1314] = {.lex_state = 17, .external_lex_state = 3}, + [1314] = {.lex_state = 9, .external_lex_state = 3}, [1315] = {.lex_state = 17, .external_lex_state = 3}, [1316] = {.lex_state = 17, .external_lex_state = 3}, - [1317] = {.lex_state = 7, .external_lex_state = 3}, + [1317] = {.lex_state = 17, .external_lex_state = 3}, [1318] = {.lex_state = 17, .external_lex_state = 3}, [1319] = {.lex_state = 17, .external_lex_state = 3}, [1320] = {.lex_state = 17, .external_lex_state = 3}, @@ -12862,50 +12870,50 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1324] = {.lex_state = 17, .external_lex_state = 3}, [1325] = {.lex_state = 17, .external_lex_state = 3}, [1326] = {.lex_state = 17, .external_lex_state = 3}, - [1327] = {.lex_state = 17, .external_lex_state = 3}, + [1327] = {.lex_state = 7, .external_lex_state = 3}, [1328] = {.lex_state = 17, .external_lex_state = 3}, [1329] = {.lex_state = 17, .external_lex_state = 3}, [1330] = {.lex_state = 17, .external_lex_state = 3}, [1331] = {.lex_state = 17, .external_lex_state = 3}, [1332] = {.lex_state = 17, .external_lex_state = 3}, [1333] = {.lex_state = 17, .external_lex_state = 3}, - [1334] = {.lex_state = 9, .external_lex_state = 3}, - [1335] = {.lex_state = 9, .external_lex_state = 3}, + [1334] = {.lex_state = 17, .external_lex_state = 3}, + [1335] = {.lex_state = 17, .external_lex_state = 3}, [1336] = {.lex_state = 17, .external_lex_state = 3}, [1337] = {.lex_state = 17, .external_lex_state = 3}, - [1338] = {.lex_state = 9, .external_lex_state = 3}, - [1339] = {.lex_state = 9, .external_lex_state = 3}, + [1338] = {.lex_state = 17, .external_lex_state = 3}, + [1339] = {.lex_state = 17, .external_lex_state = 3}, [1340] = {.lex_state = 17, .external_lex_state = 3}, - [1341] = {.lex_state = 9, .external_lex_state = 3}, - [1342] = {.lex_state = 9, .external_lex_state = 3}, - [1343] = {.lex_state = 9, .external_lex_state = 3}, - [1344] = {.lex_state = 9, .external_lex_state = 3}, - [1345] = {.lex_state = 9, .external_lex_state = 3}, + [1341] = {.lex_state = 17, .external_lex_state = 3}, + [1342] = {.lex_state = 17, .external_lex_state = 3}, + [1343] = {.lex_state = 17, .external_lex_state = 3}, + [1344] = {.lex_state = 17, .external_lex_state = 3}, + [1345] = {.lex_state = 17, .external_lex_state = 3}, [1346] = {.lex_state = 7, .external_lex_state = 3}, - [1347] = {.lex_state = 9, .external_lex_state = 3}, - [1348] = {.lex_state = 7, .external_lex_state = 3}, + [1347] = {.lex_state = 7, .external_lex_state = 3}, + [1348] = {.lex_state = 17, .external_lex_state = 3}, [1349] = {.lex_state = 9, .external_lex_state = 3}, - [1350] = {.lex_state = 9, .external_lex_state = 3}, - [1351] = {.lex_state = 7, .external_lex_state = 3}, - [1352] = {.lex_state = 7, .external_lex_state = 3}, - [1353] = {.lex_state = 7, .external_lex_state = 3}, - [1354] = {.lex_state = 7, .external_lex_state = 3}, + [1350] = {.lex_state = 7, .external_lex_state = 3}, + [1351] = {.lex_state = 17, .external_lex_state = 3}, + [1352] = {.lex_state = 9, .external_lex_state = 3}, + [1353] = {.lex_state = 9, .external_lex_state = 3}, + [1354] = {.lex_state = 9, .external_lex_state = 3}, [1355] = {.lex_state = 7, .external_lex_state = 3}, - [1356] = {.lex_state = 7, .external_lex_state = 3}, + [1356] = {.lex_state = 9, .external_lex_state = 3}, [1357] = {.lex_state = 9, .external_lex_state = 3}, - [1358] = {.lex_state = 17, .external_lex_state = 3}, - [1359] = {.lex_state = 17, .external_lex_state = 3}, - [1360] = {.lex_state = 17, .external_lex_state = 3}, - [1361] = {.lex_state = 13, .external_lex_state = 3}, - [1362] = {.lex_state = 17, .external_lex_state = 3}, - [1363] = {.lex_state = 17, .external_lex_state = 3}, - [1364] = {.lex_state = 13, .external_lex_state = 3}, - [1365] = {.lex_state = 17, .external_lex_state = 3}, - [1366] = {.lex_state = 17, .external_lex_state = 3}, - [1367] = {.lex_state = 13, .external_lex_state = 3}, - [1368] = {.lex_state = 17, .external_lex_state = 3}, - [1369] = {.lex_state = 17, .external_lex_state = 3}, - [1370] = {.lex_state = 17, .external_lex_state = 3}, + [1358] = {.lex_state = 9, .external_lex_state = 3}, + [1359] = {.lex_state = 9, .external_lex_state = 3}, + [1360] = {.lex_state = 9, .external_lex_state = 3}, + [1361] = {.lex_state = 17, .external_lex_state = 3}, + [1362] = {.lex_state = 9, .external_lex_state = 3}, + [1363] = {.lex_state = 7, .external_lex_state = 3}, + [1364] = {.lex_state = 9, .external_lex_state = 3}, + [1365] = {.lex_state = 7, .external_lex_state = 3}, + [1366] = {.lex_state = 9, .external_lex_state = 3}, + [1367] = {.lex_state = 7, .external_lex_state = 3}, + [1368] = {.lex_state = 9, .external_lex_state = 3}, + [1369] = {.lex_state = 7, .external_lex_state = 3}, + [1370] = {.lex_state = 7, .external_lex_state = 3}, [1371] = {.lex_state = 17, .external_lex_state = 3}, [1372] = {.lex_state = 17, .external_lex_state = 3}, [1373] = {.lex_state = 17, .external_lex_state = 3}, @@ -12913,14 +12921,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1375] = {.lex_state = 17, .external_lex_state = 3}, [1376] = {.lex_state = 17, .external_lex_state = 3}, [1377] = {.lex_state = 17, .external_lex_state = 3}, - [1378] = {.lex_state = 13, .external_lex_state = 3}, + [1378] = {.lex_state = 17, .external_lex_state = 3}, [1379] = {.lex_state = 17, .external_lex_state = 3}, [1380] = {.lex_state = 17, .external_lex_state = 3}, [1381] = {.lex_state = 17, .external_lex_state = 3}, [1382] = {.lex_state = 17, .external_lex_state = 3}, [1383] = {.lex_state = 17, .external_lex_state = 3}, [1384] = {.lex_state = 17, .external_lex_state = 3}, - [1385] = {.lex_state = 17, .external_lex_state = 3}, + [1385] = {.lex_state = 13, .external_lex_state = 3}, [1386] = {.lex_state = 17, .external_lex_state = 3}, [1387] = {.lex_state = 17, .external_lex_state = 3}, [1388] = {.lex_state = 17, .external_lex_state = 3}, @@ -12928,46 +12936,46 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1390] = {.lex_state = 17, .external_lex_state = 3}, [1391] = {.lex_state = 17, .external_lex_state = 3}, [1392] = {.lex_state = 17, .external_lex_state = 3}, - [1393] = {.lex_state = 7, .external_lex_state = 3}, - [1394] = {.lex_state = 9, .external_lex_state = 3}, - [1395] = {.lex_state = 7, .external_lex_state = 3}, - [1396] = {.lex_state = 9, .external_lex_state = 3}, - [1397] = {.lex_state = 9, .external_lex_state = 3}, - [1398] = {.lex_state = 9, .external_lex_state = 3}, + [1393] = {.lex_state = 17, .external_lex_state = 3}, + [1394] = {.lex_state = 17, .external_lex_state = 3}, + [1395] = {.lex_state = 17, .external_lex_state = 3}, + [1396] = {.lex_state = 17, .external_lex_state = 3}, + [1397] = {.lex_state = 17, .external_lex_state = 3}, + [1398] = {.lex_state = 7, .external_lex_state = 3}, [1399] = {.lex_state = 17, .external_lex_state = 3}, - [1400] = {.lex_state = 9, .external_lex_state = 3}, - [1401] = {.lex_state = 14, .external_lex_state = 3}, - [1402] = {.lex_state = 9, .external_lex_state = 3}, - [1403] = {.lex_state = 7, .external_lex_state = 3}, - [1404] = {.lex_state = 7, .external_lex_state = 3}, - [1405] = {.lex_state = 9, .external_lex_state = 3}, - [1406] = {.lex_state = 7, .external_lex_state = 3}, + [1400] = {.lex_state = 17, .external_lex_state = 3}, + [1401] = {.lex_state = 13, .external_lex_state = 3}, + [1402] = {.lex_state = 13, .external_lex_state = 3}, + [1403] = {.lex_state = 17, .external_lex_state = 3}, + [1404] = {.lex_state = 17, .external_lex_state = 3}, + [1405] = {.lex_state = 13, .external_lex_state = 3}, + [1406] = {.lex_state = 17, .external_lex_state = 3}, [1407] = {.lex_state = 9, .external_lex_state = 3}, - [1408] = {.lex_state = 1, .external_lex_state = 2}, - [1409] = {.lex_state = 1, .external_lex_state = 2}, + [1408] = {.lex_state = 7, .external_lex_state = 3}, + [1409] = {.lex_state = 9, .external_lex_state = 3}, [1410] = {.lex_state = 9, .external_lex_state = 3}, [1411] = {.lex_state = 7, .external_lex_state = 3}, [1412] = {.lex_state = 7, .external_lex_state = 3}, - [1413] = {.lex_state = 7, .external_lex_state = 3}, - [1414] = {.lex_state = 7, .external_lex_state = 3}, - [1415] = {.lex_state = 7, .external_lex_state = 3}, + [1413] = {.lex_state = 1, .external_lex_state = 2}, + [1414] = {.lex_state = 9, .external_lex_state = 3}, + [1415] = {.lex_state = 1, .external_lex_state = 2}, [1416] = {.lex_state = 7, .external_lex_state = 3}, - [1417] = {.lex_state = 7, .external_lex_state = 3}, - [1418] = {.lex_state = 7, .external_lex_state = 3}, - [1419] = {.lex_state = 7, .external_lex_state = 3}, - [1420] = {.lex_state = 7, .external_lex_state = 3}, - [1421] = {.lex_state = 14, .external_lex_state = 3}, + [1417] = {.lex_state = 9, .external_lex_state = 3}, + [1418] = {.lex_state = 17, .external_lex_state = 3}, + [1419] = {.lex_state = 9, .external_lex_state = 3}, + [1420] = {.lex_state = 9, .external_lex_state = 3}, + [1421] = {.lex_state = 9, .external_lex_state = 3}, [1422] = {.lex_state = 7, .external_lex_state = 3}, [1423] = {.lex_state = 7, .external_lex_state = 3}, - [1424] = {.lex_state = 14, .external_lex_state = 3}, + [1424] = {.lex_state = 7, .external_lex_state = 3}, [1425] = {.lex_state = 7, .external_lex_state = 3}, - [1426] = {.lex_state = 7, .external_lex_state = 3}, - [1427] = {.lex_state = 7, .external_lex_state = 3}, + [1426] = {.lex_state = 14, .external_lex_state = 3}, + [1427] = {.lex_state = 9, .external_lex_state = 3}, [1428] = {.lex_state = 7, .external_lex_state = 3}, [1429] = {.lex_state = 7, .external_lex_state = 3}, [1430] = {.lex_state = 7, .external_lex_state = 3}, [1431] = {.lex_state = 7, .external_lex_state = 3}, - [1432] = {.lex_state = 7, .external_lex_state = 3}, + [1432] = {.lex_state = 14, .external_lex_state = 3}, [1433] = {.lex_state = 7, .external_lex_state = 3}, [1434] = {.lex_state = 7, .external_lex_state = 3}, [1435] = {.lex_state = 7, .external_lex_state = 3}, @@ -12975,1001 +12983,1046 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1437] = {.lex_state = 7, .external_lex_state = 3}, [1438] = {.lex_state = 7, .external_lex_state = 3}, [1439] = {.lex_state = 7, .external_lex_state = 3}, - [1440] = {.lex_state = 7, .external_lex_state = 3}, + [1440] = {.lex_state = 14, .external_lex_state = 3}, [1441] = {.lex_state = 7, .external_lex_state = 3}, [1442] = {.lex_state = 7, .external_lex_state = 3}, - [1443] = {.lex_state = 4, .external_lex_state = 3}, + [1443] = {.lex_state = 7, .external_lex_state = 3}, [1444] = {.lex_state = 7, .external_lex_state = 3}, [1445] = {.lex_state = 7, .external_lex_state = 3}, - [1446] = {.lex_state = 7, .external_lex_state = 3}, + [1446] = {.lex_state = 4, .external_lex_state = 3}, [1447] = {.lex_state = 7, .external_lex_state = 3}, [1448] = {.lex_state = 7, .external_lex_state = 3}, [1449] = {.lex_state = 7, .external_lex_state = 3}, - [1450] = {.lex_state = 14, .external_lex_state = 3}, + [1450] = {.lex_state = 7, .external_lex_state = 3}, [1451] = {.lex_state = 7, .external_lex_state = 3}, [1452] = {.lex_state = 7, .external_lex_state = 3}, [1453] = {.lex_state = 7, .external_lex_state = 3}, [1454] = {.lex_state = 7, .external_lex_state = 3}, [1455] = {.lex_state = 7, .external_lex_state = 3}, [1456] = {.lex_state = 7, .external_lex_state = 3}, - [1457] = {.lex_state = 4, .external_lex_state = 3}, + [1457] = {.lex_state = 7, .external_lex_state = 3}, [1458] = {.lex_state = 7, .external_lex_state = 3}, [1459] = {.lex_state = 7, .external_lex_state = 3}, [1460] = {.lex_state = 7, .external_lex_state = 3}, - [1461] = {.lex_state = 14, .external_lex_state = 3}, + [1461] = {.lex_state = 7, .external_lex_state = 3}, [1462] = {.lex_state = 4, .external_lex_state = 3}, [1463] = {.lex_state = 17, .external_lex_state = 3}, - [1464] = {.lex_state = 14, .external_lex_state = 3}, - [1465] = {.lex_state = 7, .external_lex_state = 3}, - [1466] = {.lex_state = 7, .external_lex_state = 3}, + [1464] = {.lex_state = 7, .external_lex_state = 3}, + [1465] = {.lex_state = 4, .external_lex_state = 3}, + [1466] = {.lex_state = 14, .external_lex_state = 3}, [1467] = {.lex_state = 17, .external_lex_state = 3}, - [1468] = {.lex_state = 4, .external_lex_state = 3}, + [1468] = {.lex_state = 17, .external_lex_state = 3}, [1469] = {.lex_state = 17, .external_lex_state = 3}, - [1470] = {.lex_state = 7, .external_lex_state = 3}, + [1470] = {.lex_state = 14, .external_lex_state = 3}, [1471] = {.lex_state = 17, .external_lex_state = 3}, - [1472] = {.lex_state = 14, .external_lex_state = 3}, + [1472] = {.lex_state = 7, .external_lex_state = 3}, [1473] = {.lex_state = 7, .external_lex_state = 3}, [1474] = {.lex_state = 7, .external_lex_state = 3}, - [1475] = {.lex_state = 17, .external_lex_state = 3}, + [1475] = {.lex_state = 4, .external_lex_state = 3}, [1476] = {.lex_state = 7, .external_lex_state = 3}, - [1477] = {.lex_state = 7, .external_lex_state = 3}, + [1477] = {.lex_state = 17, .external_lex_state = 3}, [1478] = {.lex_state = 7, .external_lex_state = 3}, - [1479] = {.lex_state = 4, .external_lex_state = 3}, - [1480] = {.lex_state = 14, .external_lex_state = 3}, - [1481] = {.lex_state = 7, .external_lex_state = 3}, - [1482] = {.lex_state = 14, .external_lex_state = 3}, - [1483] = {.lex_state = 14, .external_lex_state = 3}, - [1484] = {.lex_state = 13, .external_lex_state = 3}, + [1479] = {.lex_state = 7, .external_lex_state = 3}, + [1480] = {.lex_state = 4, .external_lex_state = 3}, + [1481] = {.lex_state = 14, .external_lex_state = 3}, + [1482] = {.lex_state = 13, .external_lex_state = 3}, + [1483] = {.lex_state = 7, .external_lex_state = 3}, + [1484] = {.lex_state = 14, .external_lex_state = 3}, [1485] = {.lex_state = 7, .external_lex_state = 3}, [1486] = {.lex_state = 7, .external_lex_state = 3}, - [1487] = {.lex_state = 14, .external_lex_state = 3}, - [1488] = {.lex_state = 7, .external_lex_state = 3}, + [1487] = {.lex_state = 7, .external_lex_state = 3}, + [1488] = {.lex_state = 14, .external_lex_state = 3}, [1489] = {.lex_state = 0, .external_lex_state = 3}, - [1490] = {.lex_state = 17, .external_lex_state = 3}, - [1491] = {.lex_state = 14, .external_lex_state = 3}, - [1492] = {.lex_state = 17, .external_lex_state = 3}, - [1493] = {.lex_state = 7, .external_lex_state = 3}, - [1494] = {.lex_state = 17, .external_lex_state = 3}, - [1495] = {.lex_state = 7, .external_lex_state = 3}, - [1496] = {.lex_state = 0, .external_lex_state = 3}, - [1497] = {.lex_state = 0, .external_lex_state = 3}, - [1498] = {.lex_state = 7, .external_lex_state = 3}, + [1490] = {.lex_state = 7, .external_lex_state = 3}, + [1491] = {.lex_state = 7, .external_lex_state = 3}, + [1492] = {.lex_state = 7, .external_lex_state = 3}, + [1493] = {.lex_state = 14, .external_lex_state = 3}, + [1494] = {.lex_state = 7, .external_lex_state = 3}, + [1495] = {.lex_state = 17, .external_lex_state = 3}, + [1496] = {.lex_state = 7, .external_lex_state = 3}, + [1497] = {.lex_state = 7, .external_lex_state = 3}, + [1498] = {.lex_state = 17, .external_lex_state = 3}, [1499] = {.lex_state = 7, .external_lex_state = 3}, - [1500] = {.lex_state = 0, .external_lex_state = 3}, - [1501] = {.lex_state = 0, .external_lex_state = 3}, + [1500] = {.lex_state = 7, .external_lex_state = 3}, + [1501] = {.lex_state = 7, .external_lex_state = 3}, [1502] = {.lex_state = 7, .external_lex_state = 3}, [1503] = {.lex_state = 7, .external_lex_state = 3}, - [1504] = {.lex_state = 14, .external_lex_state = 3}, - [1505] = {.lex_state = 7, .external_lex_state = 3}, - [1506] = {.lex_state = 0, .external_lex_state = 3}, + [1504] = {.lex_state = 7, .external_lex_state = 3}, + [1505] = {.lex_state = 14, .external_lex_state = 3}, + [1506] = {.lex_state = 7, .external_lex_state = 3}, [1507] = {.lex_state = 7, .external_lex_state = 3}, - [1508] = {.lex_state = 0, .external_lex_state = 3}, + [1508] = {.lex_state = 14, .external_lex_state = 3}, [1509] = {.lex_state = 7, .external_lex_state = 3}, - [1510] = {.lex_state = 7, .external_lex_state = 3}, - [1511] = {.lex_state = 7, .external_lex_state = 3}, + [1510] = {.lex_state = 14, .external_lex_state = 3}, + [1511] = {.lex_state = 0, .external_lex_state = 3}, [1512] = {.lex_state = 7, .external_lex_state = 3}, [1513] = {.lex_state = 7, .external_lex_state = 3}, - [1514] = {.lex_state = 7, .external_lex_state = 3}, - [1515] = {.lex_state = 7, .external_lex_state = 3}, + [1514] = {.lex_state = 0, .external_lex_state = 3}, + [1515] = {.lex_state = 0, .external_lex_state = 3}, [1516] = {.lex_state = 14, .external_lex_state = 3}, [1517] = {.lex_state = 0, .external_lex_state = 3}, - [1518] = {.lex_state = 0, .external_lex_state = 3}, + [1518] = {.lex_state = 7, .external_lex_state = 3}, [1519] = {.lex_state = 0, .external_lex_state = 3}, - [1520] = {.lex_state = 0, .external_lex_state = 3}, + [1520] = {.lex_state = 7, .external_lex_state = 3}, [1521] = {.lex_state = 7, .external_lex_state = 3}, [1522] = {.lex_state = 14, .external_lex_state = 3}, - [1523] = {.lex_state = 7, .external_lex_state = 3}, + [1523] = {.lex_state = 0, .external_lex_state = 3}, [1524] = {.lex_state = 7, .external_lex_state = 3}, - [1525] = {.lex_state = 7, .external_lex_state = 3}, + [1525] = {.lex_state = 0, .external_lex_state = 3}, [1526] = {.lex_state = 7, .external_lex_state = 3}, [1527] = {.lex_state = 0, .external_lex_state = 3}, [1528] = {.lex_state = 0, .external_lex_state = 3}, - [1529] = {.lex_state = 7, .external_lex_state = 3}, + [1529] = {.lex_state = 0, .external_lex_state = 3}, [1530] = {.lex_state = 0, .external_lex_state = 3}, - [1531] = {.lex_state = 0, .external_lex_state = 3}, + [1531] = {.lex_state = 7, .external_lex_state = 3}, [1532] = {.lex_state = 4, .external_lex_state = 3}, - [1533] = {.lex_state = 14, .external_lex_state = 3}, + [1533] = {.lex_state = 0, .external_lex_state = 3}, [1534] = {.lex_state = 7, .external_lex_state = 3}, - [1535] = {.lex_state = 13, .external_lex_state = 3}, - [1536] = {.lex_state = 7, .external_lex_state = 3}, + [1535] = {.lex_state = 7, .external_lex_state = 3}, + [1536] = {.lex_state = 0, .external_lex_state = 3}, [1537] = {.lex_state = 7, .external_lex_state = 3}, - [1538] = {.lex_state = 17, .external_lex_state = 3}, - [1539] = {.lex_state = 14, .external_lex_state = 3}, - [1540] = {.lex_state = 7, .external_lex_state = 3}, + [1538] = {.lex_state = 7, .external_lex_state = 3}, + [1539] = {.lex_state = 7, .external_lex_state = 3}, + [1540] = {.lex_state = 0, .external_lex_state = 3}, [1541] = {.lex_state = 7, .external_lex_state = 3}, - [1542] = {.lex_state = 0, .external_lex_state = 3}, - [1543] = {.lex_state = 4, .external_lex_state = 3}, - [1544] = {.lex_state = 17, .external_lex_state = 3}, + [1542] = {.lex_state = 7, .external_lex_state = 3}, + [1543] = {.lex_state = 0, .external_lex_state = 3}, + [1544] = {.lex_state = 7, .external_lex_state = 3}, [1545] = {.lex_state = 7, .external_lex_state = 3}, - [1546] = {.lex_state = 7, .external_lex_state = 3}, - [1547] = {.lex_state = 7, .external_lex_state = 3}, - [1548] = {.lex_state = 7, .external_lex_state = 3}, - [1549] = {.lex_state = 4, .external_lex_state = 3}, - [1550] = {.lex_state = 7, .external_lex_state = 3}, - [1551] = {.lex_state = 17, .external_lex_state = 3}, - [1552] = {.lex_state = 57, .external_lex_state = 3}, - [1553] = {.lex_state = 7, .external_lex_state = 3}, - [1554] = {.lex_state = 7, .external_lex_state = 3}, - [1555] = {.lex_state = 57, .external_lex_state = 3}, + [1546] = {.lex_state = 14, .external_lex_state = 3}, + [1547] = {.lex_state = 0, .external_lex_state = 3}, + [1548] = {.lex_state = 0, .external_lex_state = 3}, + [1549] = {.lex_state = 0, .external_lex_state = 3}, + [1550] = {.lex_state = 0, .external_lex_state = 3}, + [1551] = {.lex_state = 14, .external_lex_state = 3}, + [1552] = {.lex_state = 7, .external_lex_state = 3}, + [1553] = {.lex_state = 0, .external_lex_state = 3}, + [1554] = {.lex_state = 0, .external_lex_state = 3}, + [1555] = {.lex_state = 0, .external_lex_state = 3}, [1556] = {.lex_state = 7, .external_lex_state = 3}, [1557] = {.lex_state = 7, .external_lex_state = 3}, - [1558] = {.lex_state = 17, .external_lex_state = 3}, - [1559] = {.lex_state = 4, .external_lex_state = 3}, - [1560] = {.lex_state = 0, .external_lex_state = 3}, - [1561] = {.lex_state = 7, .external_lex_state = 3}, - [1562] = {.lex_state = 17, .external_lex_state = 3}, - [1563] = {.lex_state = 7, .external_lex_state = 3}, + [1558] = {.lex_state = 7, .external_lex_state = 3}, + [1559] = {.lex_state = 17, .external_lex_state = 3}, + [1560] = {.lex_state = 7, .external_lex_state = 3}, + [1561] = {.lex_state = 0, .external_lex_state = 3}, + [1562] = {.lex_state = 7, .external_lex_state = 3}, + [1563] = {.lex_state = 17, .external_lex_state = 3}, [1564] = {.lex_state = 7, .external_lex_state = 3}, [1565] = {.lex_state = 7, .external_lex_state = 3}, - [1566] = {.lex_state = 17, .external_lex_state = 3}, - [1567] = {.lex_state = 17, .external_lex_state = 3}, - [1568] = {.lex_state = 0, .external_lex_state = 3}, - [1569] = {.lex_state = 7, .external_lex_state = 3}, - [1570] = {.lex_state = 10, .external_lex_state = 3}, - [1571] = {.lex_state = 17, .external_lex_state = 3}, - [1572] = {.lex_state = 13, .external_lex_state = 3}, + [1566] = {.lex_state = 7, .external_lex_state = 3}, + [1567] = {.lex_state = 7, .external_lex_state = 3}, + [1568] = {.lex_state = 7, .external_lex_state = 3}, + [1569] = {.lex_state = 10, .external_lex_state = 3}, + [1570] = {.lex_state = 7, .external_lex_state = 3}, + [1571] = {.lex_state = 57, .external_lex_state = 3}, + [1572] = {.lex_state = 10, .external_lex_state = 3}, [1573] = {.lex_state = 7, .external_lex_state = 3}, [1574] = {.lex_state = 7, .external_lex_state = 3}, [1575] = {.lex_state = 7, .external_lex_state = 3}, - [1576] = {.lex_state = 10, .external_lex_state = 3}, - [1577] = {.lex_state = 10, .external_lex_state = 3}, - [1578] = {.lex_state = 7, .external_lex_state = 3}, + [1576] = {.lex_state = 17, .external_lex_state = 3}, + [1577] = {.lex_state = 7, .external_lex_state = 3}, + [1578] = {.lex_state = 10, .external_lex_state = 3}, [1579] = {.lex_state = 7, .external_lex_state = 3}, [1580] = {.lex_state = 7, .external_lex_state = 3}, [1581] = {.lex_state = 7, .external_lex_state = 3}, - [1582] = {.lex_state = 10, .external_lex_state = 3}, - [1583] = {.lex_state = 7, .external_lex_state = 3}, + [1582] = {.lex_state = 7, .external_lex_state = 3}, + [1583] = {.lex_state = 0, .external_lex_state = 3}, [1584] = {.lex_state = 7, .external_lex_state = 3}, - [1585] = {.lex_state = 17, .external_lex_state = 3}, - [1586] = {.lex_state = 7, .external_lex_state = 3}, - [1587] = {.lex_state = 10, .external_lex_state = 3}, - [1588] = {.lex_state = 10, .external_lex_state = 3}, + [1585] = {.lex_state = 4, .external_lex_state = 3}, + [1586] = {.lex_state = 57, .external_lex_state = 3}, + [1587] = {.lex_state = 7, .external_lex_state = 3}, + [1588] = {.lex_state = 7, .external_lex_state = 3}, [1589] = {.lex_state = 7, .external_lex_state = 3}, [1590] = {.lex_state = 7, .external_lex_state = 3}, [1591] = {.lex_state = 7, .external_lex_state = 3}, - [1592] = {.lex_state = 7, .external_lex_state = 3}, - [1593] = {.lex_state = 7, .external_lex_state = 3}, - [1594] = {.lex_state = 17, .external_lex_state = 3}, - [1595] = {.lex_state = 7, .external_lex_state = 3}, + [1592] = {.lex_state = 10, .external_lex_state = 3}, + [1593] = {.lex_state = 10, .external_lex_state = 3}, + [1594] = {.lex_state = 7, .external_lex_state = 3}, + [1595] = {.lex_state = 4, .external_lex_state = 3}, [1596] = {.lex_state = 17, .external_lex_state = 3}, - [1597] = {.lex_state = 17, .external_lex_state = 3}, - [1598] = {.lex_state = 7, .external_lex_state = 3}, + [1597] = {.lex_state = 7, .external_lex_state = 3}, + [1598] = {.lex_state = 0, .external_lex_state = 3}, [1599] = {.lex_state = 7, .external_lex_state = 3}, - [1600] = {.lex_state = 7, .external_lex_state = 3}, - [1601] = {.lex_state = 0, .external_lex_state = 3}, - [1602] = {.lex_state = 7, .external_lex_state = 3}, - [1603] = {.lex_state = 7, .external_lex_state = 3}, - [1604] = {.lex_state = 0, .external_lex_state = 3}, - [1605] = {.lex_state = 7, .external_lex_state = 3}, + [1600] = {.lex_state = 17, .external_lex_state = 3}, + [1601] = {.lex_state = 7, .external_lex_state = 3}, + [1602] = {.lex_state = 17, .external_lex_state = 3}, + [1603] = {.lex_state = 13, .external_lex_state = 3}, + [1604] = {.lex_state = 7, .external_lex_state = 3}, + [1605] = {.lex_state = 17, .external_lex_state = 3}, [1606] = {.lex_state = 7, .external_lex_state = 3}, - [1607] = {.lex_state = 17, .external_lex_state = 3}, - [1608] = {.lex_state = 7, .external_lex_state = 3}, + [1607] = {.lex_state = 14, .external_lex_state = 3}, + [1608] = {.lex_state = 4, .external_lex_state = 3}, [1609] = {.lex_state = 7, .external_lex_state = 3}, - [1610] = {.lex_state = 7, .external_lex_state = 3}, - [1611] = {.lex_state = 17, .external_lex_state = 3}, - [1612] = {.lex_state = 7, .external_lex_state = 3}, - [1613] = {.lex_state = 7, .external_lex_state = 3}, - [1614] = {.lex_state = 7, .external_lex_state = 3}, + [1610] = {.lex_state = 17, .external_lex_state = 3}, + [1611] = {.lex_state = 7, .external_lex_state = 3}, + [1612] = {.lex_state = 17, .external_lex_state = 3}, + [1613] = {.lex_state = 10, .external_lex_state = 3}, + [1614] = {.lex_state = 13, .external_lex_state = 3}, [1615] = {.lex_state = 17, .external_lex_state = 3}, [1616] = {.lex_state = 7, .external_lex_state = 3}, - [1617] = {.lex_state = 17, .external_lex_state = 3}, - [1618] = {.lex_state = 17, .external_lex_state = 3}, + [1617] = {.lex_state = 4, .external_lex_state = 3}, + [1618] = {.lex_state = 7, .external_lex_state = 3}, [1619] = {.lex_state = 7, .external_lex_state = 3}, [1620] = {.lex_state = 7, .external_lex_state = 3}, [1621] = {.lex_state = 7, .external_lex_state = 3}, [1622] = {.lex_state = 7, .external_lex_state = 3}, - [1623] = {.lex_state = 7, .external_lex_state = 3}, + [1623] = {.lex_state = 0, .external_lex_state = 3}, [1624] = {.lex_state = 7, .external_lex_state = 3}, - [1625] = {.lex_state = 7, .external_lex_state = 3}, - [1626] = {.lex_state = 57, .external_lex_state = 3}, - [1627] = {.lex_state = 7, .external_lex_state = 3}, + [1625] = {.lex_state = 57, .external_lex_state = 3}, + [1626] = {.lex_state = 7, .external_lex_state = 3}, + [1627] = {.lex_state = 17, .external_lex_state = 3}, [1628] = {.lex_state = 7, .external_lex_state = 3}, [1629] = {.lex_state = 7, .external_lex_state = 3}, - [1630] = {.lex_state = 0, .external_lex_state = 3}, + [1630] = {.lex_state = 7, .external_lex_state = 3}, [1631] = {.lex_state = 7, .external_lex_state = 3}, - [1632] = {.lex_state = 0, .external_lex_state = 3}, - [1633] = {.lex_state = 17, .external_lex_state = 3}, + [1632] = {.lex_state = 7, .external_lex_state = 3}, + [1633] = {.lex_state = 7, .external_lex_state = 3}, [1634] = {.lex_state = 7, .external_lex_state = 3}, - [1635] = {.lex_state = 7, .external_lex_state = 3}, + [1635] = {.lex_state = 17, .external_lex_state = 3}, [1636] = {.lex_state = 7, .external_lex_state = 3}, [1637] = {.lex_state = 0, .external_lex_state = 3}, - [1638] = {.lex_state = 17, .external_lex_state = 3}, + [1638] = {.lex_state = 7, .external_lex_state = 3}, [1639] = {.lex_state = 7, .external_lex_state = 3}, - [1640] = {.lex_state = 7, .external_lex_state = 3}, - [1641] = {.lex_state = 7, .external_lex_state = 3}, - [1642] = {.lex_state = 7, .external_lex_state = 3}, + [1640] = {.lex_state = 0, .external_lex_state = 3}, + [1641] = {.lex_state = 0, .external_lex_state = 3}, + [1642] = {.lex_state = 17, .external_lex_state = 3}, [1643] = {.lex_state = 7, .external_lex_state = 3}, - [1644] = {.lex_state = 7, .external_lex_state = 3}, + [1644] = {.lex_state = 17, .external_lex_state = 3}, [1645] = {.lex_state = 7, .external_lex_state = 3}, - [1646] = {.lex_state = 7, .external_lex_state = 3}, + [1646] = {.lex_state = 17, .external_lex_state = 3}, [1647] = {.lex_state = 7, .external_lex_state = 3}, - [1648] = {.lex_state = 0, .external_lex_state = 3}, - [1649] = {.lex_state = 7, .external_lex_state = 3}, + [1648] = {.lex_state = 7, .external_lex_state = 3}, + [1649] = {.lex_state = 17, .external_lex_state = 3}, [1650] = {.lex_state = 7, .external_lex_state = 3}, [1651] = {.lex_state = 7, .external_lex_state = 3}, [1652] = {.lex_state = 7, .external_lex_state = 3}, [1653] = {.lex_state = 7, .external_lex_state = 3}, - [1654] = {.lex_state = 7, .external_lex_state = 3}, - [1655] = {.lex_state = 7, .external_lex_state = 3}, + [1654] = {.lex_state = 17, .external_lex_state = 3}, + [1655] = {.lex_state = 17, .external_lex_state = 3}, [1656] = {.lex_state = 7, .external_lex_state = 3}, [1657] = {.lex_state = 7, .external_lex_state = 3}, [1658] = {.lex_state = 7, .external_lex_state = 3}, [1659] = {.lex_state = 7, .external_lex_state = 3}, [1660] = {.lex_state = 7, .external_lex_state = 3}, [1661] = {.lex_state = 7, .external_lex_state = 3}, - [1662] = {.lex_state = 7, .external_lex_state = 3}, - [1663] = {.lex_state = 17, .external_lex_state = 3}, + [1662] = {.lex_state = 4, .external_lex_state = 3}, + [1663] = {.lex_state = 7, .external_lex_state = 3}, [1664] = {.lex_state = 7, .external_lex_state = 3}, - [1665] = {.lex_state = 17, .external_lex_state = 3}, - [1666] = {.lex_state = 0, .external_lex_state = 3}, - [1667] = {.lex_state = 0, .external_lex_state = 3}, - [1668] = {.lex_state = 57, .external_lex_state = 3}, + [1665] = {.lex_state = 7, .external_lex_state = 3}, + [1666] = {.lex_state = 7, .external_lex_state = 3}, + [1667] = {.lex_state = 7, .external_lex_state = 3}, + [1668] = {.lex_state = 0, .external_lex_state = 3}, [1669] = {.lex_state = 17, .external_lex_state = 3}, - [1670] = {.lex_state = 57, .external_lex_state = 3}, - [1671] = {.lex_state = 4, .external_lex_state = 4}, - [1672] = {.lex_state = 17, .external_lex_state = 3}, - [1673] = {.lex_state = 57, .external_lex_state = 3}, - [1674] = {.lex_state = 0, .external_lex_state = 3}, + [1670] = {.lex_state = 7, .external_lex_state = 3}, + [1671] = {.lex_state = 7, .external_lex_state = 3}, + [1672] = {.lex_state = 7, .external_lex_state = 3}, + [1673] = {.lex_state = 7, .external_lex_state = 3}, + [1674] = {.lex_state = 7, .external_lex_state = 3}, [1675] = {.lex_state = 7, .external_lex_state = 3}, - [1676] = {.lex_state = 0, .external_lex_state = 3}, - [1677] = {.lex_state = 0, .external_lex_state = 3}, + [1676] = {.lex_state = 7, .external_lex_state = 3}, + [1677] = {.lex_state = 7, .external_lex_state = 3}, [1678] = {.lex_state = 7, .external_lex_state = 3}, - [1679] = {.lex_state = 0, .external_lex_state = 3}, - [1680] = {.lex_state = 17, .external_lex_state = 3}, + [1679] = {.lex_state = 7, .external_lex_state = 3}, + [1680] = {.lex_state = 7, .external_lex_state = 3}, [1681] = {.lex_state = 0, .external_lex_state = 3}, [1682] = {.lex_state = 7, .external_lex_state = 3}, - [1683] = {.lex_state = 0, .external_lex_state = 3}, - [1684] = {.lex_state = 57, .external_lex_state = 3}, - [1685] = {.lex_state = 0, .external_lex_state = 3}, + [1683] = {.lex_state = 7, .external_lex_state = 3}, + [1684] = {.lex_state = 7, .external_lex_state = 3}, + [1685] = {.lex_state = 7, .external_lex_state = 3}, [1686] = {.lex_state = 0, .external_lex_state = 3}, - [1687] = {.lex_state = 7, .external_lex_state = 3}, - [1688] = {.lex_state = 0, .external_lex_state = 3}, - [1689] = {.lex_state = 0, .external_lex_state = 3}, - [1690] = {.lex_state = 17, .external_lex_state = 3}, + [1687] = {.lex_state = 17, .external_lex_state = 3}, + [1688] = {.lex_state = 17, .external_lex_state = 3}, + [1689] = {.lex_state = 7, .external_lex_state = 3}, + [1690] = {.lex_state = 0, .external_lex_state = 3}, [1691] = {.lex_state = 7, .external_lex_state = 3}, - [1692] = {.lex_state = 17, .external_lex_state = 3}, - [1693] = {.lex_state = 4, .external_lex_state = 4}, - [1694] = {.lex_state = 7, .external_lex_state = 3}, - [1695] = {.lex_state = 4, .external_lex_state = 4}, - [1696] = {.lex_state = 7, .external_lex_state = 3}, + [1692] = {.lex_state = 0, .external_lex_state = 3}, + [1693] = {.lex_state = 0, .external_lex_state = 3}, + [1694] = {.lex_state = 0, .external_lex_state = 3}, + [1695] = {.lex_state = 0, .external_lex_state = 3}, + [1696] = {.lex_state = 0, .external_lex_state = 3}, [1697] = {.lex_state = 57, .external_lex_state = 3}, - [1698] = {.lex_state = 0, .external_lex_state = 3}, + [1698] = {.lex_state = 57, .external_lex_state = 3}, [1699] = {.lex_state = 7, .external_lex_state = 3}, - [1700] = {.lex_state = 7, .external_lex_state = 3}, - [1701] = {.lex_state = 57, .external_lex_state = 3}, + [1700] = {.lex_state = 17, .external_lex_state = 3}, + [1701] = {.lex_state = 7, .external_lex_state = 3}, [1702] = {.lex_state = 7, .external_lex_state = 3}, [1703] = {.lex_state = 57, .external_lex_state = 3}, - [1704] = {.lex_state = 57, .external_lex_state = 3}, - [1705] = {.lex_state = 7, .external_lex_state = 3}, - [1706] = {.lex_state = 7, .external_lex_state = 3}, - [1707] = {.lex_state = 57, .external_lex_state = 3}, - [1708] = {.lex_state = 57, .external_lex_state = 3}, - [1709] = {.lex_state = 57, .external_lex_state = 3}, + [1704] = {.lex_state = 7, .external_lex_state = 3}, + [1705] = {.lex_state = 4, .external_lex_state = 3}, + [1706] = {.lex_state = 57, .external_lex_state = 3}, + [1707] = {.lex_state = 7, .external_lex_state = 3}, + [1708] = {.lex_state = 17, .external_lex_state = 3}, + [1709] = {.lex_state = 7, .external_lex_state = 3}, [1710] = {.lex_state = 0, .external_lex_state = 3}, - [1711] = {.lex_state = 4, .external_lex_state = 4}, - [1712] = {.lex_state = 18, .external_lex_state = 3}, - [1713] = {.lex_state = 7, .external_lex_state = 3}, - [1714] = {.lex_state = 57, .external_lex_state = 3}, - [1715] = {.lex_state = 4, .external_lex_state = 4}, - [1716] = {.lex_state = 0, .external_lex_state = 3}, - [1717] = {.lex_state = 57, .external_lex_state = 3}, - [1718] = {.lex_state = 4, .external_lex_state = 4}, + [1711] = {.lex_state = 7, .external_lex_state = 3}, + [1712] = {.lex_state = 7, .external_lex_state = 3}, + [1713] = {.lex_state = 57, .external_lex_state = 3}, + [1714] = {.lex_state = 0, .external_lex_state = 3}, + [1715] = {.lex_state = 0, .external_lex_state = 3}, + [1716] = {.lex_state = 7, .external_lex_state = 3}, + [1717] = {.lex_state = 18, .external_lex_state = 3}, + [1718] = {.lex_state = 57, .external_lex_state = 3}, [1719] = {.lex_state = 7, .external_lex_state = 3}, [1720] = {.lex_state = 57, .external_lex_state = 3}, - [1721] = {.lex_state = 57, .external_lex_state = 3}, - [1722] = {.lex_state = 57, .external_lex_state = 3}, + [1721] = {.lex_state = 18, .external_lex_state = 3}, + [1722] = {.lex_state = 4, .external_lex_state = 3}, [1723] = {.lex_state = 57, .external_lex_state = 3}, - [1724] = {.lex_state = 7, .external_lex_state = 3}, - [1725] = {.lex_state = 17, .external_lex_state = 3}, - [1726] = {.lex_state = 7, .external_lex_state = 3}, - [1727] = {.lex_state = 0, .external_lex_state = 3}, - [1728] = {.lex_state = 17, .external_lex_state = 3}, - [1729] = {.lex_state = 0, .external_lex_state = 3}, - [1730] = {.lex_state = 57, .external_lex_state = 3}, - [1731] = {.lex_state = 57, .external_lex_state = 3}, + [1724] = {.lex_state = 57, .external_lex_state = 3}, + [1725] = {.lex_state = 7, .external_lex_state = 3}, + [1726] = {.lex_state = 0, .external_lex_state = 3}, + [1727] = {.lex_state = 57, .external_lex_state = 3}, + [1728] = {.lex_state = 57, .external_lex_state = 3}, + [1729] = {.lex_state = 17, .external_lex_state = 3}, + [1730] = {.lex_state = 17, .external_lex_state = 3}, + [1731] = {.lex_state = 0, .external_lex_state = 3}, [1732] = {.lex_state = 17, .external_lex_state = 3}, [1733] = {.lex_state = 57, .external_lex_state = 3}, - [1734] = {.lex_state = 18, .external_lex_state = 3}, - [1735] = {.lex_state = 7, .external_lex_state = 3}, - [1736] = {.lex_state = 57, .external_lex_state = 3}, - [1737] = {.lex_state = 4, .external_lex_state = 4}, - [1738] = {.lex_state = 17, .external_lex_state = 3}, - [1739] = {.lex_state = 18, .external_lex_state = 3}, + [1734] = {.lex_state = 0, .external_lex_state = 3}, + [1735] = {.lex_state = 0, .external_lex_state = 3}, + [1736] = {.lex_state = 4, .external_lex_state = 4}, + [1737] = {.lex_state = 57, .external_lex_state = 3}, + [1738] = {.lex_state = 7, .external_lex_state = 3}, + [1739] = {.lex_state = 7, .external_lex_state = 3}, [1740] = {.lex_state = 57, .external_lex_state = 3}, [1741] = {.lex_state = 57, .external_lex_state = 3}, [1742] = {.lex_state = 7, .external_lex_state = 3}, [1743] = {.lex_state = 7, .external_lex_state = 3}, [1744] = {.lex_state = 7, .external_lex_state = 3}, - [1745] = {.lex_state = 7, .external_lex_state = 3}, - [1746] = {.lex_state = 7, .external_lex_state = 3}, - [1747] = {.lex_state = 7, .external_lex_state = 3}, - [1748] = {.lex_state = 7, .external_lex_state = 3}, - [1749] = {.lex_state = 57, .external_lex_state = 3}, + [1745] = {.lex_state = 4, .external_lex_state = 4}, + [1746] = {.lex_state = 4, .external_lex_state = 3}, + [1747] = {.lex_state = 18, .external_lex_state = 3}, + [1748] = {.lex_state = 57, .external_lex_state = 3}, + [1749] = {.lex_state = 4, .external_lex_state = 4}, [1750] = {.lex_state = 57, .external_lex_state = 3}, - [1751] = {.lex_state = 7, .external_lex_state = 3}, - [1752] = {.lex_state = 57, .external_lex_state = 3}, - [1753] = {.lex_state = 57, .external_lex_state = 3}, - [1754] = {.lex_state = 0, .external_lex_state = 3}, - [1755] = {.lex_state = 17, .external_lex_state = 3}, - [1756] = {.lex_state = 57, .external_lex_state = 3}, - [1757] = {.lex_state = 18, .external_lex_state = 3}, - [1758] = {.lex_state = 0, .external_lex_state = 3}, - [1759] = {.lex_state = 57, .external_lex_state = 3}, - [1760] = {.lex_state = 17, .external_lex_state = 3}, - [1761] = {.lex_state = 3, .external_lex_state = 3}, - [1762] = {.lex_state = 3, .external_lex_state = 3}, - [1763] = {.lex_state = 7, .external_lex_state = 3}, - [1764] = {.lex_state = 0, .external_lex_state = 3}, - [1765] = {.lex_state = 0, .external_lex_state = 3}, + [1751] = {.lex_state = 0, .external_lex_state = 3}, + [1752] = {.lex_state = 0, .external_lex_state = 3}, + [1753] = {.lex_state = 17, .external_lex_state = 3}, + [1754] = {.lex_state = 18, .external_lex_state = 3}, + [1755] = {.lex_state = 57, .external_lex_state = 3}, + [1756] = {.lex_state = 7, .external_lex_state = 3}, + [1757] = {.lex_state = 7, .external_lex_state = 3}, + [1758] = {.lex_state = 7, .external_lex_state = 3}, + [1759] = {.lex_state = 7, .external_lex_state = 3}, + [1760] = {.lex_state = 57, .external_lex_state = 3}, + [1761] = {.lex_state = 57, .external_lex_state = 3}, + [1762] = {.lex_state = 4, .external_lex_state = 3}, + [1763] = {.lex_state = 17, .external_lex_state = 3}, + [1764] = {.lex_state = 57, .external_lex_state = 3}, + [1765] = {.lex_state = 57, .external_lex_state = 3}, [1766] = {.lex_state = 7, .external_lex_state = 3}, [1767] = {.lex_state = 0, .external_lex_state = 3}, - [1768] = {.lex_state = 7, .external_lex_state = 3}, - [1769] = {.lex_state = 0, .external_lex_state = 3}, - [1770] = {.lex_state = 7, .external_lex_state = 3}, + [1768] = {.lex_state = 17, .external_lex_state = 3}, + [1769] = {.lex_state = 17, .external_lex_state = 3}, + [1770] = {.lex_state = 57, .external_lex_state = 3}, [1771] = {.lex_state = 57, .external_lex_state = 3}, - [1772] = {.lex_state = 0, .external_lex_state = 3}, - [1773] = {.lex_state = 57, .external_lex_state = 3}, - [1774] = {.lex_state = 0, .external_lex_state = 3}, - [1775] = {.lex_state = 57, .external_lex_state = 3}, - [1776] = {.lex_state = 0, .external_lex_state = 3}, - [1777] = {.lex_state = 57, .external_lex_state = 3}, - [1778] = {.lex_state = 0, .external_lex_state = 3}, + [1772] = {.lex_state = 7, .external_lex_state = 3}, + [1773] = {.lex_state = 17, .external_lex_state = 3}, + [1774] = {.lex_state = 7, .external_lex_state = 3}, + [1775] = {.lex_state = 17, .external_lex_state = 3}, + [1776] = {.lex_state = 7, .external_lex_state = 3}, + [1777] = {.lex_state = 0, .external_lex_state = 3}, + [1778] = {.lex_state = 57, .external_lex_state = 3}, [1779] = {.lex_state = 0, .external_lex_state = 3}, - [1780] = {.lex_state = 57, .external_lex_state = 3}, - [1781] = {.lex_state = 57, .external_lex_state = 3}, + [1780] = {.lex_state = 4, .external_lex_state = 4}, + [1781] = {.lex_state = 0, .external_lex_state = 3}, [1782] = {.lex_state = 57, .external_lex_state = 3}, - [1783] = {.lex_state = 0, .external_lex_state = 3}, + [1783] = {.lex_state = 57, .external_lex_state = 3}, [1784] = {.lex_state = 57, .external_lex_state = 3}, - [1785] = {.lex_state = 0, .external_lex_state = 3}, + [1785] = {.lex_state = 4, .external_lex_state = 4}, [1786] = {.lex_state = 57, .external_lex_state = 3}, - [1787] = {.lex_state = 57, .external_lex_state = 3}, - [1788] = {.lex_state = 0, .external_lex_state = 3}, - [1789] = {.lex_state = 57, .external_lex_state = 3}, + [1787] = {.lex_state = 7, .external_lex_state = 3}, + [1788] = {.lex_state = 4, .external_lex_state = 4}, + [1789] = {.lex_state = 4, .external_lex_state = 4}, [1790] = {.lex_state = 0, .external_lex_state = 3}, - [1791] = {.lex_state = 0, .external_lex_state = 3}, - [1792] = {.lex_state = 57, .external_lex_state = 3}, - [1793] = {.lex_state = 0, .external_lex_state = 3}, - [1794] = {.lex_state = 57, .external_lex_state = 3}, + [1791] = {.lex_state = 57, .external_lex_state = 3}, + [1792] = {.lex_state = 4, .external_lex_state = 3}, + [1793] = {.lex_state = 7, .external_lex_state = 3}, + [1794] = {.lex_state = 0, .external_lex_state = 3}, [1795] = {.lex_state = 0, .external_lex_state = 3}, [1796] = {.lex_state = 0, .external_lex_state = 3}, - [1797] = {.lex_state = 0, .external_lex_state = 3}, - [1798] = {.lex_state = 57, .external_lex_state = 3}, - [1799] = {.lex_state = 7, .external_lex_state = 3}, - [1800] = {.lex_state = 0, .external_lex_state = 3}, - [1801] = {.lex_state = 0, .external_lex_state = 3}, - [1802] = {.lex_state = 0, .external_lex_state = 3}, - [1803] = {.lex_state = 0, .external_lex_state = 3}, + [1797] = {.lex_state = 10, .external_lex_state = 3}, + [1798] = {.lex_state = 10, .external_lex_state = 3}, + [1799] = {.lex_state = 0, .external_lex_state = 3}, + [1800] = {.lex_state = 10, .external_lex_state = 3}, + [1801] = {.lex_state = 7, .external_lex_state = 3}, + [1802] = {.lex_state = 10, .external_lex_state = 3}, + [1803] = {.lex_state = 10, .external_lex_state = 3}, [1804] = {.lex_state = 0, .external_lex_state = 3}, [1805] = {.lex_state = 7, .external_lex_state = 3}, - [1806] = {.lex_state = 0, .external_lex_state = 3}, - [1807] = {.lex_state = 0, .external_lex_state = 3}, - [1808] = {.lex_state = 57, .external_lex_state = 3}, - [1809] = {.lex_state = 0, .external_lex_state = 3}, - [1810] = {.lex_state = 10, .external_lex_state = 3}, + [1806] = {.lex_state = 3, .external_lex_state = 3}, + [1807] = {.lex_state = 3, .external_lex_state = 3}, + [1808] = {.lex_state = 0, .external_lex_state = 3}, + [1809] = {.lex_state = 10, .external_lex_state = 3}, + [1810] = {.lex_state = 57, .external_lex_state = 3}, [1811] = {.lex_state = 0, .external_lex_state = 3}, - [1812] = {.lex_state = 0, .external_lex_state = 3}, + [1812] = {.lex_state = 3, .external_lex_state = 3}, [1813] = {.lex_state = 0, .external_lex_state = 3}, - [1814] = {.lex_state = 57, .external_lex_state = 3}, - [1815] = {.lex_state = 0, .external_lex_state = 3}, + [1814] = {.lex_state = 7, .external_lex_state = 3}, + [1815] = {.lex_state = 57, .external_lex_state = 3}, [1816] = {.lex_state = 0, .external_lex_state = 3}, - [1817] = {.lex_state = 0, .external_lex_state = 3}, - [1818] = {.lex_state = 0, .external_lex_state = 3}, + [1817] = {.lex_state = 3, .external_lex_state = 3}, + [1818] = {.lex_state = 3, .external_lex_state = 3}, [1819] = {.lex_state = 0, .external_lex_state = 3}, - [1820] = {.lex_state = 10, .external_lex_state = 3}, - [1821] = {.lex_state = 0, .external_lex_state = 3}, - [1822] = {.lex_state = 57, .external_lex_state = 3}, + [1820] = {.lex_state = 3, .external_lex_state = 3}, + [1821] = {.lex_state = 3, .external_lex_state = 3}, + [1822] = {.lex_state = 7, .external_lex_state = 3}, [1823] = {.lex_state = 57, .external_lex_state = 3}, - [1824] = {.lex_state = 0, .external_lex_state = 3}, + [1824] = {.lex_state = 17, .external_lex_state = 3}, [1825] = {.lex_state = 57, .external_lex_state = 3}, - [1826] = {.lex_state = 0, .external_lex_state = 3}, - [1827] = {.lex_state = 57, .external_lex_state = 3}, - [1828] = {.lex_state = 57, .external_lex_state = 3}, - [1829] = {.lex_state = 57, .external_lex_state = 3}, - [1830] = {.lex_state = 0, .external_lex_state = 3}, + [1826] = {.lex_state = 57, .external_lex_state = 3}, + [1827] = {.lex_state = 0, .external_lex_state = 3}, + [1828] = {.lex_state = 7, .external_lex_state = 3}, + [1829] = {.lex_state = 10, .external_lex_state = 3}, + [1830] = {.lex_state = 57, .external_lex_state = 3}, [1831] = {.lex_state = 0, .external_lex_state = 3}, - [1832] = {.lex_state = 0, .external_lex_state = 3}, - [1833] = {.lex_state = 57, .external_lex_state = 3}, - [1834] = {.lex_state = 57, .external_lex_state = 3}, - [1835] = {.lex_state = 57, .external_lex_state = 3}, + [1832] = {.lex_state = 7, .external_lex_state = 3}, + [1833] = {.lex_state = 7, .external_lex_state = 3}, + [1834] = {.lex_state = 0, .external_lex_state = 3}, + [1835] = {.lex_state = 7, .external_lex_state = 3}, [1836] = {.lex_state = 0, .external_lex_state = 3}, - [1837] = {.lex_state = 57, .external_lex_state = 3}, + [1837] = {.lex_state = 0, .external_lex_state = 3}, [1838] = {.lex_state = 0, .external_lex_state = 3}, [1839] = {.lex_state = 7, .external_lex_state = 3}, - [1840] = {.lex_state = 57, .external_lex_state = 3}, - [1841] = {.lex_state = 0, .external_lex_state = 3}, + [1840] = {.lex_state = 7, .external_lex_state = 3}, + [1841] = {.lex_state = 57, .external_lex_state = 3}, [1842] = {.lex_state = 0, .external_lex_state = 3}, - [1843] = {.lex_state = 57, .external_lex_state = 3}, - [1844] = {.lex_state = 4, .external_lex_state = 3}, - [1845] = {.lex_state = 7, .external_lex_state = 3}, + [1843] = {.lex_state = 7, .external_lex_state = 3}, + [1844] = {.lex_state = 0, .external_lex_state = 3}, + [1845] = {.lex_state = 0, .external_lex_state = 3}, [1846] = {.lex_state = 57, .external_lex_state = 3}, [1847] = {.lex_state = 7, .external_lex_state = 3}, - [1848] = {.lex_state = 57, .external_lex_state = 3}, - [1849] = {.lex_state = 57, .external_lex_state = 3}, - [1850] = {.lex_state = 57, .external_lex_state = 3}, + [1848] = {.lex_state = 0, .external_lex_state = 3}, + [1849] = {.lex_state = 0, .external_lex_state = 3}, + [1850] = {.lex_state = 0, .external_lex_state = 3}, [1851] = {.lex_state = 0, .external_lex_state = 3}, [1852] = {.lex_state = 0, .external_lex_state = 3}, - [1853] = {.lex_state = 7, .external_lex_state = 3}, + [1853] = {.lex_state = 0, .external_lex_state = 3}, [1854] = {.lex_state = 0, .external_lex_state = 3}, - [1855] = {.lex_state = 0, .external_lex_state = 3}, - [1856] = {.lex_state = 57, .external_lex_state = 3}, - [1857] = {.lex_state = 57, .external_lex_state = 3}, - [1858] = {.lex_state = 10, .external_lex_state = 3}, + [1855] = {.lex_state = 7, .external_lex_state = 3}, + [1856] = {.lex_state = 0, .external_lex_state = 3}, + [1857] = {.lex_state = 0, .external_lex_state = 3}, + [1858] = {.lex_state = 57, .external_lex_state = 3}, [1859] = {.lex_state = 0, .external_lex_state = 3}, - [1860] = {.lex_state = 0, .external_lex_state = 3}, + [1860] = {.lex_state = 3, .external_lex_state = 3}, [1861] = {.lex_state = 0, .external_lex_state = 3}, - [1862] = {.lex_state = 7, .external_lex_state = 3}, - [1863] = {.lex_state = 0, .external_lex_state = 3}, - [1864] = {.lex_state = 3, .external_lex_state = 3}, - [1865] = {.lex_state = 3, .external_lex_state = 3}, - [1866] = {.lex_state = 57, .external_lex_state = 3}, + [1862] = {.lex_state = 0, .external_lex_state = 3}, + [1863] = {.lex_state = 57, .external_lex_state = 3}, + [1864] = {.lex_state = 57, .external_lex_state = 3}, + [1865] = {.lex_state = 57, .external_lex_state = 3}, + [1866] = {.lex_state = 0, .external_lex_state = 3}, [1867] = {.lex_state = 0, .external_lex_state = 3}, [1868] = {.lex_state = 0, .external_lex_state = 3}, - [1869] = {.lex_state = 57, .external_lex_state = 3}, + [1869] = {.lex_state = 10, .external_lex_state = 3}, [1870] = {.lex_state = 0, .external_lex_state = 3}, [1871] = {.lex_state = 0, .external_lex_state = 3}, - [1872] = {.lex_state = 3, .external_lex_state = 3}, + [1872] = {.lex_state = 57, .external_lex_state = 3}, [1873] = {.lex_state = 7, .external_lex_state = 3}, - [1874] = {.lex_state = 3, .external_lex_state = 3}, - [1875] = {.lex_state = 3, .external_lex_state = 3}, + [1874] = {.lex_state = 0, .external_lex_state = 3}, + [1875] = {.lex_state = 57, .external_lex_state = 3}, [1876] = {.lex_state = 7, .external_lex_state = 3}, [1877] = {.lex_state = 0, .external_lex_state = 3}, - [1878] = {.lex_state = 0, .external_lex_state = 3}, - [1879] = {.lex_state = 0, .external_lex_state = 3}, - [1880] = {.lex_state = 10, .external_lex_state = 3}, - [1881] = {.lex_state = 10, .external_lex_state = 3}, - [1882] = {.lex_state = 3, .external_lex_state = 3}, - [1883] = {.lex_state = 0, .external_lex_state = 3}, + [1878] = {.lex_state = 4, .external_lex_state = 3}, + [1879] = {.lex_state = 57, .external_lex_state = 3}, + [1880] = {.lex_state = 57, .external_lex_state = 3}, + [1881] = {.lex_state = 57, .external_lex_state = 3}, + [1882] = {.lex_state = 0, .external_lex_state = 3}, + [1883] = {.lex_state = 57, .external_lex_state = 3}, [1884] = {.lex_state = 0, .external_lex_state = 3}, - [1885] = {.lex_state = 3, .external_lex_state = 3}, - [1886] = {.lex_state = 3, .external_lex_state = 3}, - [1887] = {.lex_state = 7, .external_lex_state = 3}, - [1888] = {.lex_state = 3, .external_lex_state = 3}, - [1889] = {.lex_state = 3, .external_lex_state = 3}, - [1890] = {.lex_state = 7, .external_lex_state = 3}, + [1885] = {.lex_state = 57, .external_lex_state = 3}, + [1886] = {.lex_state = 0, .external_lex_state = 3}, + [1887] = {.lex_state = 0, .external_lex_state = 3}, + [1888] = {.lex_state = 57, .external_lex_state = 3}, + [1889] = {.lex_state = 0, .external_lex_state = 3}, + [1890] = {.lex_state = 57, .external_lex_state = 3}, [1891] = {.lex_state = 0, .external_lex_state = 3}, - [1892] = {.lex_state = 0, .external_lex_state = 3}, - [1893] = {.lex_state = 0, .external_lex_state = 3}, - [1894] = {.lex_state = 0, .external_lex_state = 3}, - [1895] = {.lex_state = 0, .external_lex_state = 3}, - [1896] = {.lex_state = 0, .external_lex_state = 3}, - [1897] = {.lex_state = 0, .external_lex_state = 3}, - [1898] = {.lex_state = 3, .external_lex_state = 3}, - [1899] = {.lex_state = 3, .external_lex_state = 3}, - [1900] = {.lex_state = 7, .external_lex_state = 3}, - [1901] = {.lex_state = 57, .external_lex_state = 3}, - [1902] = {.lex_state = 3, .external_lex_state = 3}, - [1903] = {.lex_state = 0, .external_lex_state = 3}, - [1904] = {.lex_state = 57, .external_lex_state = 3}, + [1892] = {.lex_state = 57, .external_lex_state = 3}, + [1893] = {.lex_state = 57, .external_lex_state = 3}, + [1894] = {.lex_state = 57, .external_lex_state = 3}, + [1895] = {.lex_state = 3, .external_lex_state = 3}, + [1896] = {.lex_state = 57, .external_lex_state = 3}, + [1897] = {.lex_state = 3, .external_lex_state = 3}, + [1898] = {.lex_state = 57, .external_lex_state = 3}, + [1899] = {.lex_state = 0, .external_lex_state = 3}, + [1900] = {.lex_state = 0, .external_lex_state = 3}, + [1901] = {.lex_state = 0, .external_lex_state = 3}, + [1902] = {.lex_state = 57, .external_lex_state = 3}, + [1903] = {.lex_state = 57, .external_lex_state = 3}, + [1904] = {.lex_state = 10, .external_lex_state = 3}, [1905] = {.lex_state = 0, .external_lex_state = 3}, [1906] = {.lex_state = 57, .external_lex_state = 3}, - [1907] = {.lex_state = 0, .external_lex_state = 3}, - [1908] = {.lex_state = 0, .external_lex_state = 3}, - [1909] = {.lex_state = 0, .external_lex_state = 3}, - [1910] = {.lex_state = 0, .external_lex_state = 3}, + [1907] = {.lex_state = 3, .external_lex_state = 3}, + [1908] = {.lex_state = 3, .external_lex_state = 3}, + [1909] = {.lex_state = 57, .external_lex_state = 3}, + [1910] = {.lex_state = 7, .external_lex_state = 3}, [1911] = {.lex_state = 0, .external_lex_state = 3}, - [1912] = {.lex_state = 0, .external_lex_state = 3}, - [1913] = {.lex_state = 0, .external_lex_state = 3}, - [1914] = {.lex_state = 0, .external_lex_state = 3}, - [1915] = {.lex_state = 3, .external_lex_state = 3}, - [1916] = {.lex_state = 0, .external_lex_state = 3}, + [1912] = {.lex_state = 3, .external_lex_state = 3}, + [1913] = {.lex_state = 57, .external_lex_state = 3}, + [1914] = {.lex_state = 57, .external_lex_state = 3}, + [1915] = {.lex_state = 0, .external_lex_state = 3}, + [1916] = {.lex_state = 3, .external_lex_state = 3}, [1917] = {.lex_state = 3, .external_lex_state = 3}, - [1918] = {.lex_state = 0, .external_lex_state = 3}, - [1919] = {.lex_state = 7, .external_lex_state = 3}, + [1918] = {.lex_state = 3, .external_lex_state = 3}, + [1919] = {.lex_state = 0, .external_lex_state = 3}, [1920] = {.lex_state = 0, .external_lex_state = 3}, - [1921] = {.lex_state = 3, .external_lex_state = 3}, - [1922] = {.lex_state = 0, .external_lex_state = 3}, + [1921] = {.lex_state = 0, .external_lex_state = 3}, + [1922] = {.lex_state = 57, .external_lex_state = 3}, [1923] = {.lex_state = 0, .external_lex_state = 3}, - [1924] = {.lex_state = 57, .external_lex_state = 3}, - [1925] = {.lex_state = 0, .external_lex_state = 3}, + [1924] = {.lex_state = 0, .external_lex_state = 3}, + [1925] = {.lex_state = 57, .external_lex_state = 3}, [1926] = {.lex_state = 0, .external_lex_state = 3}, - [1927] = {.lex_state = 0, .external_lex_state = 3}, - [1928] = {.lex_state = 0, .external_lex_state = 3}, - [1929] = {.lex_state = 17, .external_lex_state = 3}, - [1930] = {.lex_state = 3, .external_lex_state = 3}, - [1931] = {.lex_state = 0, .external_lex_state = 3}, - [1932] = {.lex_state = 0, .external_lex_state = 3}, - [1933] = {.lex_state = 57, .external_lex_state = 3}, - [1934] = {.lex_state = 57, .external_lex_state = 3}, + [1927] = {.lex_state = 10, .external_lex_state = 3}, + [1928] = {.lex_state = 57, .external_lex_state = 3}, + [1929] = {.lex_state = 57, .external_lex_state = 3}, + [1930] = {.lex_state = 0, .external_lex_state = 3}, + [1931] = {.lex_state = 3, .external_lex_state = 3}, + [1932] = {.lex_state = 3, .external_lex_state = 3}, + [1933] = {.lex_state = 3, .external_lex_state = 3}, + [1934] = {.lex_state = 0, .external_lex_state = 3}, [1935] = {.lex_state = 0, .external_lex_state = 3}, - [1936] = {.lex_state = 0, .external_lex_state = 3}, + [1936] = {.lex_state = 3, .external_lex_state = 3}, [1937] = {.lex_state = 0, .external_lex_state = 3}, - [1938] = {.lex_state = 10, .external_lex_state = 3}, + [1938] = {.lex_state = 57, .external_lex_state = 3}, [1939] = {.lex_state = 0, .external_lex_state = 3}, - [1940] = {.lex_state = 0, .external_lex_state = 3}, + [1940] = {.lex_state = 57, .external_lex_state = 3}, [1941] = {.lex_state = 0, .external_lex_state = 3}, - [1942] = {.lex_state = 57, .external_lex_state = 3}, - [1943] = {.lex_state = 0, .external_lex_state = 3}, + [1942] = {.lex_state = 0, .external_lex_state = 3}, + [1943] = {.lex_state = 7, .external_lex_state = 3}, [1944] = {.lex_state = 0, .external_lex_state = 3}, - [1945] = {.lex_state = 7, .external_lex_state = 3}, - [1946] = {.lex_state = 57, .external_lex_state = 3}, + [1945] = {.lex_state = 0, .external_lex_state = 3}, + [1946] = {.lex_state = 0, .external_lex_state = 3}, [1947] = {.lex_state = 0, .external_lex_state = 3}, [1948] = {.lex_state = 57, .external_lex_state = 3}, [1949] = {.lex_state = 0, .external_lex_state = 3}, [1950] = {.lex_state = 0, .external_lex_state = 3}, - [1951] = {.lex_state = 0, .external_lex_state = 3}, - [1952] = {.lex_state = 7, .external_lex_state = 3}, - [1953] = {.lex_state = 0, .external_lex_state = 3}, + [1951] = {.lex_state = 7, .external_lex_state = 3}, + [1952] = {.lex_state = 0, .external_lex_state = 3}, + [1953] = {.lex_state = 7, .external_lex_state = 3}, [1954] = {.lex_state = 57, .external_lex_state = 3}, - [1955] = {.lex_state = 7, .external_lex_state = 3}, - [1956] = {.lex_state = 57, .external_lex_state = 3}, + [1955] = {.lex_state = 0, .external_lex_state = 3}, + [1956] = {.lex_state = 0, .external_lex_state = 3}, [1957] = {.lex_state = 0, .external_lex_state = 3}, - [1958] = {.lex_state = 0, .external_lex_state = 3}, + [1958] = {.lex_state = 57, .external_lex_state = 3}, [1959] = {.lex_state = 0, .external_lex_state = 3}, - [1960] = {.lex_state = 10, .external_lex_state = 3}, + [1960] = {.lex_state = 0, .external_lex_state = 3}, [1961] = {.lex_state = 0, .external_lex_state = 3}, - [1962] = {.lex_state = 10, .external_lex_state = 3}, - [1963] = {.lex_state = 57, .external_lex_state = 3}, - [1964] = {.lex_state = 57, .external_lex_state = 3}, + [1962] = {.lex_state = 0, .external_lex_state = 3}, + [1963] = {.lex_state = 0, .external_lex_state = 3}, + [1964] = {.lex_state = 0, .external_lex_state = 3}, [1965] = {.lex_state = 0, .external_lex_state = 3}, [1966] = {.lex_state = 0, .external_lex_state = 3}, - [1967] = {.lex_state = 4, .external_lex_state = 3}, + [1967] = {.lex_state = 57, .external_lex_state = 3}, [1968] = {.lex_state = 0, .external_lex_state = 3}, - [1969] = {.lex_state = 57, .external_lex_state = 3}, - [1970] = {.lex_state = 57, .external_lex_state = 3}, - [1971] = {.lex_state = 57, .external_lex_state = 3}, - [1972] = {.lex_state = 57, .external_lex_state = 3}, + [1969] = {.lex_state = 0, .external_lex_state = 3}, + [1970] = {.lex_state = 0, .external_lex_state = 3}, + [1971] = {.lex_state = 0, .external_lex_state = 3}, + [1972] = {.lex_state = 7, .external_lex_state = 3}, [1973] = {.lex_state = 57, .external_lex_state = 3}, - [1974] = {.lex_state = 57, .external_lex_state = 3}, - [1975] = {.lex_state = 10, .external_lex_state = 3}, - [1976] = {.lex_state = 10, .external_lex_state = 3}, - [1977] = {.lex_state = 57, .external_lex_state = 3}, - [1978] = {.lex_state = 57, .external_lex_state = 3}, + [1974] = {.lex_state = 0, .external_lex_state = 3}, + [1975] = {.lex_state = 0, .external_lex_state = 3}, + [1976] = {.lex_state = 0, .external_lex_state = 3}, + [1977] = {.lex_state = 0, .external_lex_state = 3}, + [1978] = {.lex_state = 0, .external_lex_state = 3}, [1979] = {.lex_state = 0, .external_lex_state = 3}, - [1980] = {.lex_state = 57, .external_lex_state = 3}, + [1980] = {.lex_state = 7, .external_lex_state = 3}, [1981] = {.lex_state = 57, .external_lex_state = 3}, [1982] = {.lex_state = 57, .external_lex_state = 3}, - [1983] = {.lex_state = 57, .external_lex_state = 3}, + [1983] = {.lex_state = 0, .external_lex_state = 3}, [1984] = {.lex_state = 0, .external_lex_state = 3}, - [1985] = {.lex_state = 57, .external_lex_state = 3}, + [1985] = {.lex_state = 0, .external_lex_state = 3}, [1986] = {.lex_state = 0, .external_lex_state = 3}, [1987] = {.lex_state = 0, .external_lex_state = 3}, [1988] = {.lex_state = 0, .external_lex_state = 3}, - [1989] = {.lex_state = 7, .external_lex_state = 3}, - [1990] = {.lex_state = 57, .external_lex_state = 3}, + [1989] = {.lex_state = 0, .external_lex_state = 3}, + [1990] = {.lex_state = 0, .external_lex_state = 3}, [1991] = {.lex_state = 0, .external_lex_state = 3}, - [1992] = {.lex_state = 0, .external_lex_state = 3}, + [1992] = {.lex_state = 57, .external_lex_state = 3}, [1993] = {.lex_state = 0, .external_lex_state = 3}, - [1994] = {.lex_state = 57, .external_lex_state = 3}, - [1995] = {.lex_state = 0, .external_lex_state = 3}, - [1996] = {.lex_state = 0, .external_lex_state = 3}, + [1994] = {.lex_state = 0, .external_lex_state = 3}, + [1995] = {.lex_state = 57, .external_lex_state = 3}, + [1996] = {.lex_state = 57, .external_lex_state = 3}, [1997] = {.lex_state = 0, .external_lex_state = 3}, [1998] = {.lex_state = 0, .external_lex_state = 3}, - [1999] = {.lex_state = 0, .external_lex_state = 3}, + [1999] = {.lex_state = 57, .external_lex_state = 3}, [2000] = {.lex_state = 0, .external_lex_state = 3}, - [2001] = {.lex_state = 7, .external_lex_state = 3}, + [2001] = {.lex_state = 57, .external_lex_state = 3}, [2002] = {.lex_state = 0, .external_lex_state = 3}, - [2003] = {.lex_state = 3, .external_lex_state = 3}, + [2003] = {.lex_state = 57, .external_lex_state = 3}, [2004] = {.lex_state = 0, .external_lex_state = 3}, [2005] = {.lex_state = 0, .external_lex_state = 3}, - [2006] = {.lex_state = 10, .external_lex_state = 3}, - [2007] = {.lex_state = 7, .external_lex_state = 3}, + [2006] = {.lex_state = 57, .external_lex_state = 3}, + [2007] = {.lex_state = 57, .external_lex_state = 3}, [2008] = {.lex_state = 0, .external_lex_state = 3}, - [2009] = {.lex_state = 0, .external_lex_state = 3}, - [2010] = {.lex_state = 7, .external_lex_state = 3}, + [2009] = {.lex_state = 57, .external_lex_state = 3}, + [2010] = {.lex_state = 0, .external_lex_state = 3}, [2011] = {.lex_state = 0, .external_lex_state = 3}, [2012] = {.lex_state = 0, .external_lex_state = 3}, - [2013] = {.lex_state = 0, .external_lex_state = 3}, + [2013] = {.lex_state = 57, .external_lex_state = 3}, [2014] = {.lex_state = 0, .external_lex_state = 3}, - [2015] = {.lex_state = 0, .external_lex_state = 3}, - [2016] = {.lex_state = 7, .external_lex_state = 3}, + [2015] = {.lex_state = 57, .external_lex_state = 3}, + [2016] = {.lex_state = 10, .external_lex_state = 3}, [2017] = {.lex_state = 0, .external_lex_state = 3}, [2018] = {.lex_state = 0, .external_lex_state = 3}, - [2019] = {.lex_state = 7, .external_lex_state = 3}, + [2019] = {.lex_state = 57, .external_lex_state = 3}, [2020] = {.lex_state = 0, .external_lex_state = 3}, [2021] = {.lex_state = 0, .external_lex_state = 3}, [2022] = {.lex_state = 0, .external_lex_state = 3}, - [2023] = {.lex_state = 0, .external_lex_state = 3}, - [2024] = {.lex_state = 0, .external_lex_state = 3}, + [2023] = {.lex_state = 57, .external_lex_state = 3}, + [2024] = {.lex_state = 57, .external_lex_state = 3}, [2025] = {.lex_state = 0, .external_lex_state = 3}, - [2026] = {.lex_state = 57, .external_lex_state = 3}, - [2027] = {.lex_state = 0, .external_lex_state = 3}, + [2026] = {.lex_state = 0, .external_lex_state = 3}, + [2027] = {.lex_state = 7, .external_lex_state = 3}, [2028] = {.lex_state = 0, .external_lex_state = 3}, - [2029] = {.lex_state = 0, .external_lex_state = 3}, - [2030] = {.lex_state = 10, .external_lex_state = 3}, - [2031] = {.lex_state = 0, .external_lex_state = 3}, - [2032] = {.lex_state = 7, .external_lex_state = 3}, - [2033] = {.lex_state = 0, .external_lex_state = 3}, - [2034] = {.lex_state = 0, .external_lex_state = 3}, - [2035] = {.lex_state = 0, .external_lex_state = 3}, - [2036] = {.lex_state = 57, .external_lex_state = 3}, + [2029] = {.lex_state = 57, .external_lex_state = 3}, + [2030] = {.lex_state = 0, .external_lex_state = 3}, + [2031] = {.lex_state = 7, .external_lex_state = 3}, + [2032] = {.lex_state = 57, .external_lex_state = 3}, + [2033] = {.lex_state = 57, .external_lex_state = 3}, + [2034] = {.lex_state = 7, .external_lex_state = 3}, + [2035] = {.lex_state = 57, .external_lex_state = 3}, + [2036] = {.lex_state = 0, .external_lex_state = 3}, [2037] = {.lex_state = 0, .external_lex_state = 3}, - [2038] = {.lex_state = 57, .external_lex_state = 3}, - [2039] = {.lex_state = 0, .external_lex_state = 3}, + [2038] = {.lex_state = 0, .external_lex_state = 3}, + [2039] = {.lex_state = 57, .external_lex_state = 3}, [2040] = {.lex_state = 0, .external_lex_state = 3}, [2041] = {.lex_state = 0, .external_lex_state = 3}, [2042] = {.lex_state = 0, .external_lex_state = 3}, [2043] = {.lex_state = 0, .external_lex_state = 3}, [2044] = {.lex_state = 0, .external_lex_state = 3}, - [2045] = {.lex_state = 57, .external_lex_state = 3}, - [2046] = {.lex_state = 0, .external_lex_state = 3}, - [2047] = {.lex_state = 7, .external_lex_state = 3}, - [2048] = {.lex_state = 57, .external_lex_state = 3}, - [2049] = {.lex_state = 57, .external_lex_state = 3}, + [2045] = {.lex_state = 0, .external_lex_state = 3}, + [2046] = {.lex_state = 57, .external_lex_state = 3}, + [2047] = {.lex_state = 0, .external_lex_state = 3}, + [2048] = {.lex_state = 10, .external_lex_state = 3}, + [2049] = {.lex_state = 7, .external_lex_state = 3}, [2050] = {.lex_state = 0, .external_lex_state = 3}, - [2051] = {.lex_state = 7, .external_lex_state = 3}, + [2051] = {.lex_state = 57, .external_lex_state = 3}, [2052] = {.lex_state = 57, .external_lex_state = 3}, [2053] = {.lex_state = 0, .external_lex_state = 3}, - [2054] = {.lex_state = 57, .external_lex_state = 3}, + [2054] = {.lex_state = 0, .external_lex_state = 3}, [2055] = {.lex_state = 0, .external_lex_state = 3}, - [2056] = {.lex_state = 0, .external_lex_state = 3}, - [2057] = {.lex_state = 7, .external_lex_state = 3}, + [2056] = {.lex_state = 7, .external_lex_state = 3}, + [2057] = {.lex_state = 0, .external_lex_state = 3}, [2058] = {.lex_state = 0, .external_lex_state = 3}, [2059] = {.lex_state = 0, .external_lex_state = 3}, [2060] = {.lex_state = 0, .external_lex_state = 3}, - [2061] = {.lex_state = 7, .external_lex_state = 3}, - [2062] = {.lex_state = 17, .external_lex_state = 3}, - [2063] = {.lex_state = 57, .external_lex_state = 3}, - [2064] = {.lex_state = 7, .external_lex_state = 3}, - [2065] = {.lex_state = 7, .external_lex_state = 3}, + [2061] = {.lex_state = 17, .external_lex_state = 3}, + [2062] = {.lex_state = 7, .external_lex_state = 3}, + [2063] = {.lex_state = 17, .external_lex_state = 3}, + [2064] = {.lex_state = 0, .external_lex_state = 3}, + [2065] = {.lex_state = 0, .external_lex_state = 3}, [2066] = {.lex_state = 0, .external_lex_state = 3}, [2067] = {.lex_state = 0, .external_lex_state = 3}, [2068] = {.lex_state = 0, .external_lex_state = 3}, [2069] = {.lex_state = 0, .external_lex_state = 3}, - [2070] = {.lex_state = 57, .external_lex_state = 3}, + [2070] = {.lex_state = 7, .external_lex_state = 3}, [2071] = {.lex_state = 0, .external_lex_state = 3}, - [2072] = {.lex_state = 0, .external_lex_state = 3}, + [2072] = {.lex_state = 57, .external_lex_state = 3}, [2073] = {.lex_state = 0, .external_lex_state = 3}, [2074] = {.lex_state = 0, .external_lex_state = 3}, [2075] = {.lex_state = 0, .external_lex_state = 3}, [2076] = {.lex_state = 0, .external_lex_state = 3}, - [2077] = {.lex_state = 4, .external_lex_state = 3}, - [2078] = {.lex_state = 57, .external_lex_state = 3}, - [2079] = {.lex_state = 0, .external_lex_state = 3}, - [2080] = {.lex_state = 4, .external_lex_state = 3}, + [2077] = {.lex_state = 7, .external_lex_state = 3}, + [2078] = {.lex_state = 0, .external_lex_state = 3}, + [2079] = {.lex_state = 57, .external_lex_state = 3}, + [2080] = {.lex_state = 57, .external_lex_state = 3}, [2081] = {.lex_state = 0, .external_lex_state = 3}, [2082] = {.lex_state = 7, .external_lex_state = 3}, - [2083] = {.lex_state = 0, .external_lex_state = 3}, + [2083] = {.lex_state = 57, .external_lex_state = 3}, [2084] = {.lex_state = 7, .external_lex_state = 3}, [2085] = {.lex_state = 0, .external_lex_state = 3}, [2086] = {.lex_state = 0, .external_lex_state = 3}, - [2087] = {.lex_state = 0, .external_lex_state = 3}, - [2088] = {.lex_state = 0, .external_lex_state = 3}, - [2089] = {.lex_state = 57, .external_lex_state = 3}, - [2090] = {.lex_state = 7, .external_lex_state = 3}, + [2087] = {.lex_state = 7, .external_lex_state = 3}, + [2088] = {.lex_state = 57, .external_lex_state = 3}, + [2089] = {.lex_state = 17, .external_lex_state = 3}, + [2090] = {.lex_state = 0, .external_lex_state = 3}, [2091] = {.lex_state = 57, .external_lex_state = 3}, - [2092] = {.lex_state = 0, .external_lex_state = 3}, + [2092] = {.lex_state = 17, .external_lex_state = 3}, [2093] = {.lex_state = 0, .external_lex_state = 3}, [2094] = {.lex_state = 0, .external_lex_state = 3}, [2095] = {.lex_state = 0, .external_lex_state = 3}, [2096] = {.lex_state = 0, .external_lex_state = 3}, - [2097] = {.lex_state = 0, .external_lex_state = 3}, - [2098] = {.lex_state = 0, .external_lex_state = 3}, - [2099] = {.lex_state = 0, .external_lex_state = 3}, - [2100] = {.lex_state = 17, .external_lex_state = 3}, - [2101] = {.lex_state = 57, .external_lex_state = 3}, + [2097] = {.lex_state = 57, .external_lex_state = 3}, + [2098] = {.lex_state = 4, .external_lex_state = 3}, + [2099] = {.lex_state = 57, .external_lex_state = 3}, + [2100] = {.lex_state = 57, .external_lex_state = 3}, + [2101] = {.lex_state = 0, .external_lex_state = 3}, [2102] = {.lex_state = 57, .external_lex_state = 3}, [2103] = {.lex_state = 0, .external_lex_state = 3}, - [2104] = {.lex_state = 0, .external_lex_state = 3}, + [2104] = {.lex_state = 7, .external_lex_state = 3}, [2105] = {.lex_state = 0, .external_lex_state = 3}, - [2106] = {.lex_state = 7, .external_lex_state = 3}, - [2107] = {.lex_state = 0, .external_lex_state = 3}, + [2106] = {.lex_state = 0, .external_lex_state = 3}, + [2107] = {.lex_state = 57, .external_lex_state = 3}, [2108] = {.lex_state = 0, .external_lex_state = 3}, - [2109] = {.lex_state = 17, .external_lex_state = 3}, - [2110] = {.lex_state = 57, .external_lex_state = 3}, - [2111] = {.lex_state = 17, .external_lex_state = 3}, + [2109] = {.lex_state = 0, .external_lex_state = 3}, + [2110] = {.lex_state = 0, .external_lex_state = 3}, + [2111] = {.lex_state = 0, .external_lex_state = 3}, [2112] = {.lex_state = 0, .external_lex_state = 3}, - [2113] = {.lex_state = 57, .external_lex_state = 3}, - [2114] = {.lex_state = 17, .external_lex_state = 3}, + [2113] = {.lex_state = 17, .external_lex_state = 3}, + [2114] = {.lex_state = 7, .external_lex_state = 3}, [2115] = {.lex_state = 57, .external_lex_state = 3}, - [2116] = {.lex_state = 0, .external_lex_state = 3}, + [2116] = {.lex_state = 7, .external_lex_state = 3}, [2117] = {.lex_state = 0, .external_lex_state = 3}, - [2118] = {.lex_state = 57, .external_lex_state = 3}, + [2118] = {.lex_state = 0, .external_lex_state = 3}, [2119] = {.lex_state = 0, .external_lex_state = 3}, - [2120] = {.lex_state = 7, .external_lex_state = 3}, + [2120] = {.lex_state = 0, .external_lex_state = 3}, [2121] = {.lex_state = 0, .external_lex_state = 3}, [2122] = {.lex_state = 0, .external_lex_state = 3}, [2123] = {.lex_state = 0, .external_lex_state = 3}, - [2124] = {.lex_state = 0, .external_lex_state = 3}, + [2124] = {.lex_state = 7, .external_lex_state = 3}, [2125] = {.lex_state = 0, .external_lex_state = 3}, - [2126] = {.lex_state = 57, .external_lex_state = 3}, + [2126] = {.lex_state = 0, .external_lex_state = 3}, [2127] = {.lex_state = 0, .external_lex_state = 3}, [2128] = {.lex_state = 0, .external_lex_state = 3}, - [2129] = {.lex_state = 57, .external_lex_state = 3}, + [2129] = {.lex_state = 0, .external_lex_state = 3}, [2130] = {.lex_state = 0, .external_lex_state = 3}, [2131] = {.lex_state = 0, .external_lex_state = 3}, [2132] = {.lex_state = 0, .external_lex_state = 3}, - [2133] = {.lex_state = 0, .external_lex_state = 3}, - [2134] = {.lex_state = 0, .external_lex_state = 3}, - [2135] = {.lex_state = 0, .external_lex_state = 3}, + [2133] = {.lex_state = 57, .external_lex_state = 3}, + [2134] = {.lex_state = 17, .external_lex_state = 3}, + [2135] = {.lex_state = 57, .external_lex_state = 3}, [2136] = {.lex_state = 0, .external_lex_state = 3}, - [2137] = {.lex_state = 7, .external_lex_state = 3}, + [2137] = {.lex_state = 57, .external_lex_state = 3}, [2138] = {.lex_state = 0, .external_lex_state = 3}, [2139] = {.lex_state = 0, .external_lex_state = 3}, - [2140] = {.lex_state = 0, .external_lex_state = 3}, + [2140] = {.lex_state = 57, .external_lex_state = 3}, [2141] = {.lex_state = 0, .external_lex_state = 3}, [2142] = {.lex_state = 0, .external_lex_state = 3}, [2143] = {.lex_state = 57, .external_lex_state = 3}, [2144] = {.lex_state = 7, .external_lex_state = 3}, - [2145] = {.lex_state = 0, .external_lex_state = 3}, - [2146] = {.lex_state = 57, .external_lex_state = 3}, - [2147] = {.lex_state = 0, .external_lex_state = 5}, - [2148] = {.lex_state = 0, .external_lex_state = 3}, + [2145] = {.lex_state = 7, .external_lex_state = 3}, + [2146] = {.lex_state = 0, .external_lex_state = 3}, + [2147] = {.lex_state = 0, .external_lex_state = 3}, + [2148] = {.lex_state = 7, .external_lex_state = 3}, [2149] = {.lex_state = 0, .external_lex_state = 3}, [2150] = {.lex_state = 0, .external_lex_state = 3}, [2151] = {.lex_state = 0, .external_lex_state = 3}, [2152] = {.lex_state = 0, .external_lex_state = 3}, - [2153] = {.lex_state = 7, .external_lex_state = 3}, + [2153] = {.lex_state = 0, .external_lex_state = 3}, [2154] = {.lex_state = 0, .external_lex_state = 3}, [2155] = {.lex_state = 0, .external_lex_state = 3}, - [2156] = {.lex_state = 0, .external_lex_state = 3}, + [2156] = {.lex_state = 57, .external_lex_state = 3}, [2157] = {.lex_state = 0, .external_lex_state = 3}, [2158] = {.lex_state = 0, .external_lex_state = 3}, - [2159] = {.lex_state = 0, .external_lex_state = 3}, - [2160] = {.lex_state = 7, .external_lex_state = 3}, + [2159] = {.lex_state = 57, .external_lex_state = 3}, + [2160] = {.lex_state = 0, .external_lex_state = 3}, [2161] = {.lex_state = 0, .external_lex_state = 3}, - [2162] = {.lex_state = 0, .external_lex_state = 3}, - [2163] = {.lex_state = 57, .external_lex_state = 3}, + [2162] = {.lex_state = 57, .external_lex_state = 3}, + [2163] = {.lex_state = 0, .external_lex_state = 3}, [2164] = {.lex_state = 0, .external_lex_state = 3}, [2165] = {.lex_state = 0, .external_lex_state = 3}, - [2166] = {.lex_state = 7, .external_lex_state = 3}, + [2166] = {.lex_state = 0, .external_lex_state = 3}, [2167] = {.lex_state = 0, .external_lex_state = 3}, [2168] = {.lex_state = 0, .external_lex_state = 3}, [2169] = {.lex_state = 0, .external_lex_state = 3}, - [2170] = {.lex_state = 57, .external_lex_state = 3}, + [2170] = {.lex_state = 0, .external_lex_state = 3}, [2171] = {.lex_state = 0, .external_lex_state = 3}, [2172] = {.lex_state = 0, .external_lex_state = 3}, [2173] = {.lex_state = 0, .external_lex_state = 3}, [2174] = {.lex_state = 0, .external_lex_state = 3}, - [2175] = {.lex_state = 57, .external_lex_state = 3}, - [2176] = {.lex_state = 57, .external_lex_state = 3}, + [2175] = {.lex_state = 0, .external_lex_state = 3}, + [2176] = {.lex_state = 0, .external_lex_state = 3}, [2177] = {.lex_state = 0, .external_lex_state = 3}, [2178] = {.lex_state = 0, .external_lex_state = 3}, [2179] = {.lex_state = 0, .external_lex_state = 3}, - [2180] = {.lex_state = 7, .external_lex_state = 3}, + [2180] = {.lex_state = 0, .external_lex_state = 3}, [2181] = {.lex_state = 0, .external_lex_state = 3}, - [2182] = {.lex_state = 57, .external_lex_state = 3}, - [2183] = {.lex_state = 0, .external_lex_state = 3}, - [2184] = {.lex_state = 57, .external_lex_state = 3}, + [2182] = {.lex_state = 0, .external_lex_state = 3}, + [2183] = {.lex_state = 7, .external_lex_state = 3}, + [2184] = {.lex_state = 0, .external_lex_state = 3}, [2185] = {.lex_state = 0, .external_lex_state = 3}, - [2186] = {.lex_state = 0, .external_lex_state = 3}, - [2187] = {.lex_state = 7, .external_lex_state = 3}, + [2186] = {.lex_state = 57, .external_lex_state = 3}, + [2187] = {.lex_state = 0, .external_lex_state = 3}, [2188] = {.lex_state = 0, .external_lex_state = 3}, [2189] = {.lex_state = 0, .external_lex_state = 3}, [2190] = {.lex_state = 0, .external_lex_state = 3}, [2191] = {.lex_state = 0, .external_lex_state = 3}, - [2192] = {.lex_state = 0, .external_lex_state = 3}, + [2192] = {.lex_state = 7, .external_lex_state = 3}, [2193] = {.lex_state = 0, .external_lex_state = 3}, [2194] = {.lex_state = 57, .external_lex_state = 3}, - [2195] = {.lex_state = 57, .external_lex_state = 3}, + [2195] = {.lex_state = 0, .external_lex_state = 3}, [2196] = {.lex_state = 0, .external_lex_state = 3}, [2197] = {.lex_state = 0, .external_lex_state = 3}, [2198] = {.lex_state = 0, .external_lex_state = 3}, - [2199] = {.lex_state = 0, .external_lex_state = 3}, - [2200] = {.lex_state = 57, .external_lex_state = 3}, - [2201] = {.lex_state = 7, .external_lex_state = 3}, + [2199] = {.lex_state = 7, .external_lex_state = 3}, + [2200] = {.lex_state = 0, .external_lex_state = 3}, + [2201] = {.lex_state = 0, .external_lex_state = 3}, [2202] = {.lex_state = 0, .external_lex_state = 3}, - [2203] = {.lex_state = 17, .external_lex_state = 3}, - [2204] = {.lex_state = 7, .external_lex_state = 3}, - [2205] = {.lex_state = 57, .external_lex_state = 3}, + [2203] = {.lex_state = 0, .external_lex_state = 3}, + [2204] = {.lex_state = 0, .external_lex_state = 3}, + [2205] = {.lex_state = 0, .external_lex_state = 3}, [2206] = {.lex_state = 0, .external_lex_state = 3}, [2207] = {.lex_state = 0, .external_lex_state = 3}, - [2208] = {.lex_state = 7, .external_lex_state = 3}, - [2209] = {.lex_state = 7, .external_lex_state = 3}, - [2210] = {.lex_state = 7, .external_lex_state = 3}, - [2211] = {.lex_state = 7, .external_lex_state = 3}, + [2208] = {.lex_state = 0, .external_lex_state = 3}, + [2209] = {.lex_state = 0, .external_lex_state = 3}, + [2210] = {.lex_state = 57, .external_lex_state = 3}, + [2211] = {.lex_state = 0, .external_lex_state = 3}, [2212] = {.lex_state = 0, .external_lex_state = 3}, [2213] = {.lex_state = 7, .external_lex_state = 3}, - [2214] = {.lex_state = 7, .external_lex_state = 3}, - [2215] = {.lex_state = 7, .external_lex_state = 3}, + [2214] = {.lex_state = 57, .external_lex_state = 3}, + [2215] = {.lex_state = 0, .external_lex_state = 3}, [2216] = {.lex_state = 0, .external_lex_state = 3}, - [2217] = {.lex_state = 7, .external_lex_state = 3}, - [2218] = {.lex_state = 7, .external_lex_state = 3}, - [2219] = {.lex_state = 0, .external_lex_state = 3}, - [2220] = {.lex_state = 7, .external_lex_state = 3}, + [2217] = {.lex_state = 57, .external_lex_state = 3}, + [2218] = {.lex_state = 0, .external_lex_state = 3}, + [2219] = {.lex_state = 7, .external_lex_state = 3}, + [2220] = {.lex_state = 0, .external_lex_state = 3}, [2221] = {.lex_state = 7, .external_lex_state = 3}, - [2222] = {.lex_state = 0, .external_lex_state = 3}, - [2223] = {.lex_state = 7, .external_lex_state = 3}, - [2224] = {.lex_state = 7, .external_lex_state = 3}, + [2222] = {.lex_state = 57, .external_lex_state = 3}, + [2223] = {.lex_state = 57, .external_lex_state = 3}, + [2224] = {.lex_state = 0, .external_lex_state = 3}, [2225] = {.lex_state = 7, .external_lex_state = 3}, - [2226] = {.lex_state = 57, .external_lex_state = 3}, - [2227] = {.lex_state = 7, .external_lex_state = 3}, - [2228] = {.lex_state = 10, .external_lex_state = 3}, - [2229] = {.lex_state = 7, .external_lex_state = 3}, - [2230] = {.lex_state = 7, .external_lex_state = 3}, + [2226] = {.lex_state = 0, .external_lex_state = 3}, + [2227] = {.lex_state = 57, .external_lex_state = 3}, + [2228] = {.lex_state = 0, .external_lex_state = 3}, + [2229] = {.lex_state = 57, .external_lex_state = 3}, + [2230] = {.lex_state = 0, .external_lex_state = 3}, [2231] = {.lex_state = 0, .external_lex_state = 3}, - [2232] = {.lex_state = 7, .external_lex_state = 3}, - [2233] = {.lex_state = 7, .external_lex_state = 3}, + [2232] = {.lex_state = 0, .external_lex_state = 3}, + [2233] = {.lex_state = 0, .external_lex_state = 3}, [2234] = {.lex_state = 0, .external_lex_state = 3}, - [2235] = {.lex_state = 57, .external_lex_state = 3}, + [2235] = {.lex_state = 0, .external_lex_state = 3}, [2236] = {.lex_state = 0, .external_lex_state = 3}, - [2237] = {.lex_state = 7, .external_lex_state = 3}, + [2237] = {.lex_state = 0, .external_lex_state = 3}, [2238] = {.lex_state = 7, .external_lex_state = 3}, - [2239] = {.lex_state = 7, .external_lex_state = 3}, - [2240] = {.lex_state = 7, .external_lex_state = 3}, - [2241] = {.lex_state = 7, .external_lex_state = 3}, + [2239] = {.lex_state = 57, .external_lex_state = 3}, + [2240] = {.lex_state = 57, .external_lex_state = 3}, + [2241] = {.lex_state = 0, .external_lex_state = 3}, [2242] = {.lex_state = 0, .external_lex_state = 3}, [2243] = {.lex_state = 0, .external_lex_state = 3}, - [2244] = {.lex_state = 0, .external_lex_state = 3}, - [2245] = {.lex_state = 0, .external_lex_state = 3}, - [2246] = {.lex_state = 0, .external_lex_state = 3}, - [2247] = {.lex_state = 7, .external_lex_state = 3}, - [2248] = {.lex_state = 0, .external_lex_state = 3}, - [2249] = {.lex_state = 7, .external_lex_state = 3}, + [2244] = {.lex_state = 0, .external_lex_state = 5}, + [2245] = {.lex_state = 7, .external_lex_state = 3}, + [2246] = {.lex_state = 4, .external_lex_state = 3}, + [2247] = {.lex_state = 57, .external_lex_state = 3}, + [2248] = {.lex_state = 10, .external_lex_state = 3}, + [2249] = {.lex_state = 0, .external_lex_state = 3}, [2250] = {.lex_state = 7, .external_lex_state = 3}, - [2251] = {.lex_state = 10, .external_lex_state = 3}, - [2252] = {.lex_state = 0, .external_lex_state = 3}, - [2253] = {.lex_state = 0, .external_lex_state = 3}, - [2254] = {.lex_state = 0, .external_lex_state = 3}, - [2255] = {.lex_state = 7, .external_lex_state = 3}, + [2251] = {.lex_state = 7, .external_lex_state = 3}, + [2252] = {.lex_state = 7, .external_lex_state = 3}, + [2253] = {.lex_state = 7, .external_lex_state = 3}, + [2254] = {.lex_state = 7, .external_lex_state = 3}, + [2255] = {.lex_state = 0, .external_lex_state = 3}, [2256] = {.lex_state = 7, .external_lex_state = 3}, - [2257] = {.lex_state = 7, .external_lex_state = 3}, - [2258] = {.lex_state = 7, .external_lex_state = 3}, + [2257] = {.lex_state = 57, .external_lex_state = 3}, + [2258] = {.lex_state = 0, .external_lex_state = 3}, [2259] = {.lex_state = 7, .external_lex_state = 3}, - [2260] = {.lex_state = 7, .external_lex_state = 3}, - [2261] = {.lex_state = 7, .external_lex_state = 3}, + [2260] = {.lex_state = 0, .external_lex_state = 3}, + [2261] = {.lex_state = 0, .external_lex_state = 3}, [2262] = {.lex_state = 7, .external_lex_state = 3}, [2263] = {.lex_state = 7, .external_lex_state = 3}, [2264] = {.lex_state = 7, .external_lex_state = 3}, - [2265] = {.lex_state = 0, .external_lex_state = 3}, - [2266] = {.lex_state = 0, .external_lex_state = 3}, - [2267] = {.lex_state = 7, .external_lex_state = 3}, - [2268] = {.lex_state = 7, .external_lex_state = 3}, + [2265] = {.lex_state = 7, .external_lex_state = 3}, + [2266] = {.lex_state = 7, .external_lex_state = 3}, + [2267] = {.lex_state = 0, .external_lex_state = 3}, + [2268] = {.lex_state = 0, .external_lex_state = 3}, [2269] = {.lex_state = 10, .external_lex_state = 3}, - [2270] = {.lex_state = 7, .external_lex_state = 3}, + [2270] = {.lex_state = 0, .external_lex_state = 3}, [2271] = {.lex_state = 0, .external_lex_state = 3}, [2272] = {.lex_state = 7, .external_lex_state = 3}, [2273] = {.lex_state = 7, .external_lex_state = 3}, [2274] = {.lex_state = 7, .external_lex_state = 3}, - [2275] = {.lex_state = 0, .external_lex_state = 3}, + [2275] = {.lex_state = 7, .external_lex_state = 3}, [2276] = {.lex_state = 7, .external_lex_state = 3}, - [2277] = {.lex_state = 7, .external_lex_state = 3}, + [2277] = {.lex_state = 0, .external_lex_state = 3}, [2278] = {.lex_state = 0, .external_lex_state = 3}, - [2279] = {.lex_state = 7, .external_lex_state = 3}, + [2279] = {.lex_state = 0, .external_lex_state = 3}, [2280] = {.lex_state = 7, .external_lex_state = 3}, - [2281] = {.lex_state = 57, .external_lex_state = 3}, - [2282] = {.lex_state = 0, .external_lex_state = 3}, + [2281] = {.lex_state = 7, .external_lex_state = 3}, + [2282] = {.lex_state = 7, .external_lex_state = 3}, [2283] = {.lex_state = 7, .external_lex_state = 3}, - [2284] = {.lex_state = 7, .external_lex_state = 3}, - [2285] = {.lex_state = 0, .external_lex_state = 3}, + [2284] = {.lex_state = 0, .external_lex_state = 3}, + [2285] = {.lex_state = 7, .external_lex_state = 3}, [2286] = {.lex_state = 0, .external_lex_state = 3}, [2287] = {.lex_state = 0, .external_lex_state = 3}, - [2288] = {.lex_state = 0, .external_lex_state = 3}, + [2288] = {.lex_state = 7, .external_lex_state = 3}, [2289] = {.lex_state = 0, .external_lex_state = 3}, [2290] = {.lex_state = 0, .external_lex_state = 3}, [2291] = {.lex_state = 7, .external_lex_state = 3}, [2292] = {.lex_state = 7, .external_lex_state = 3}, [2293] = {.lex_state = 0, .external_lex_state = 3}, - [2294] = {.lex_state = 0, .external_lex_state = 3}, - [2295] = {.lex_state = 0, .external_lex_state = 3}, + [2294] = {.lex_state = 7, .external_lex_state = 3}, + [2295] = {.lex_state = 7, .external_lex_state = 3}, [2296] = {.lex_state = 7, .external_lex_state = 3}, - [2297] = {.lex_state = 0, .external_lex_state = 3}, - [2298] = {.lex_state = 57, .external_lex_state = 3}, - [2299] = {.lex_state = 0, .external_lex_state = 3}, + [2297] = {.lex_state = 7, .external_lex_state = 3}, + [2298] = {.lex_state = 7, .external_lex_state = 3}, + [2299] = {.lex_state = 7, .external_lex_state = 3}, [2300] = {.lex_state = 7, .external_lex_state = 3}, [2301] = {.lex_state = 7, .external_lex_state = 3}, - [2302] = {.lex_state = 0, .external_lex_state = 3}, - [2303] = {.lex_state = 7, .external_lex_state = 3}, + [2302] = {.lex_state = 7, .external_lex_state = 3}, + [2303] = {.lex_state = 10, .external_lex_state = 3}, [2304] = {.lex_state = 7, .external_lex_state = 3}, - [2305] = {.lex_state = 10, .external_lex_state = 3}, + [2305] = {.lex_state = 7, .external_lex_state = 3}, [2306] = {.lex_state = 0, .external_lex_state = 3}, [2307] = {.lex_state = 7, .external_lex_state = 3}, [2308] = {.lex_state = 7, .external_lex_state = 3}, [2309] = {.lex_state = 7, .external_lex_state = 3}, - [2310] = {.lex_state = 0, .external_lex_state = 3}, + [2310] = {.lex_state = 7, .external_lex_state = 3}, [2311] = {.lex_state = 0, .external_lex_state = 3}, - [2312] = {.lex_state = 7, .external_lex_state = 3}, - [2313] = {.lex_state = 7, .external_lex_state = 3}, - [2314] = {.lex_state = 10, .external_lex_state = 3}, - [2315] = {.lex_state = 0, .external_lex_state = 3}, - [2316] = {.lex_state = 0, .external_lex_state = 3}, - [2317] = {.lex_state = 7, .external_lex_state = 3}, - [2318] = {.lex_state = 0, .external_lex_state = 3}, - [2319] = {.lex_state = 0, .external_lex_state = 3}, - [2320] = {.lex_state = 7, .external_lex_state = 3}, - [2321] = {.lex_state = 7, .external_lex_state = 3}, - [2322] = {.lex_state = 7, .external_lex_state = 3}, - [2323] = {.lex_state = 7, .external_lex_state = 3}, - [2324] = {.lex_state = 7, .external_lex_state = 3}, + [2312] = {.lex_state = 0, .external_lex_state = 3}, + [2313] = {.lex_state = 0, .external_lex_state = 3}, + [2314] = {.lex_state = 7, .external_lex_state = 3}, + [2315] = {.lex_state = 7, .external_lex_state = 3}, + [2316] = {.lex_state = 7, .external_lex_state = 3}, + [2317] = {.lex_state = 0, .external_lex_state = 3}, + [2318] = {.lex_state = 7, .external_lex_state = 3}, + [2319] = {.lex_state = 7, .external_lex_state = 3}, + [2320] = {.lex_state = 10, .external_lex_state = 3}, + [2321] = {.lex_state = 0, .external_lex_state = 3}, + [2322] = {.lex_state = 0, .external_lex_state = 3}, + [2323] = {.lex_state = 0, .external_lex_state = 3}, + [2324] = {.lex_state = 0, .external_lex_state = 3}, [2325] = {.lex_state = 7, .external_lex_state = 3}, - [2326] = {.lex_state = 0, .external_lex_state = 3}, - [2327] = {.lex_state = 10, .external_lex_state = 3}, + [2326] = {.lex_state = 7, .external_lex_state = 3}, + [2327] = {.lex_state = 0, .external_lex_state = 3}, [2328] = {.lex_state = 0, .external_lex_state = 3}, - [2329] = {.lex_state = 0, .external_lex_state = 3}, - [2330] = {.lex_state = 7, .external_lex_state = 3}, - [2331] = {.lex_state = 0, .external_lex_state = 3}, - [2332] = {.lex_state = 0, .external_lex_state = 3}, + [2329] = {.lex_state = 7, .external_lex_state = 3}, + [2330] = {.lex_state = 0, .external_lex_state = 3}, + [2331] = {.lex_state = 7, .external_lex_state = 3}, + [2332] = {.lex_state = 57, .external_lex_state = 3}, [2333] = {.lex_state = 7, .external_lex_state = 3}, [2334] = {.lex_state = 7, .external_lex_state = 3}, - [2335] = {.lex_state = 7, .external_lex_state = 3}, + [2335] = {.lex_state = 0, .external_lex_state = 3}, [2336] = {.lex_state = 7, .external_lex_state = 3}, [2337] = {.lex_state = 7, .external_lex_state = 3}, - [2338] = {.lex_state = 10, .external_lex_state = 3}, + [2338] = {.lex_state = 0, .external_lex_state = 3}, [2339] = {.lex_state = 0, .external_lex_state = 3}, - [2340] = {.lex_state = 0, .external_lex_state = 3}, + [2340] = {.lex_state = 7, .external_lex_state = 3}, [2341] = {.lex_state = 0, .external_lex_state = 3}, - [2342] = {.lex_state = 0, .external_lex_state = 3}, - [2343] = {.lex_state = 10, .external_lex_state = 3}, + [2342] = {.lex_state = 10, .external_lex_state = 3}, + [2343] = {.lex_state = 7, .external_lex_state = 3}, [2344] = {.lex_state = 0, .external_lex_state = 3}, [2345] = {.lex_state = 0, .external_lex_state = 3}, [2346] = {.lex_state = 0, .external_lex_state = 3}, [2347] = {.lex_state = 7, .external_lex_state = 3}, - [2348] = {.lex_state = 7, .external_lex_state = 3}, - [2349] = {.lex_state = 0, .external_lex_state = 3}, - [2350] = {.lex_state = 0, .external_lex_state = 3}, - [2351] = {.lex_state = 0, .external_lex_state = 3}, + [2348] = {.lex_state = 10, .external_lex_state = 3}, + [2349] = {.lex_state = 10, .external_lex_state = 3}, + [2350] = {.lex_state = 7, .external_lex_state = 3}, + [2351] = {.lex_state = 7, .external_lex_state = 3}, [2352] = {.lex_state = 0, .external_lex_state = 3}, - [2353] = {.lex_state = 0, .external_lex_state = 3}, - [2354] = {.lex_state = 7, .external_lex_state = 3}, - [2355] = {.lex_state = 7, .external_lex_state = 3}, + [2353] = {.lex_state = 7, .external_lex_state = 3}, + [2354] = {.lex_state = 0, .external_lex_state = 3}, + [2355] = {.lex_state = 0, .external_lex_state = 3}, [2356] = {.lex_state = 7, .external_lex_state = 3}, - [2357] = {.lex_state = 7, .external_lex_state = 3}, - [2358] = {.lex_state = 7, .external_lex_state = 3}, - [2359] = {.lex_state = 0, .external_lex_state = 3}, + [2357] = {.lex_state = 57, .external_lex_state = 3}, + [2358] = {.lex_state = 0, .external_lex_state = 3}, + [2359] = {.lex_state = 7, .external_lex_state = 3}, [2360] = {.lex_state = 0, .external_lex_state = 3}, [2361] = {.lex_state = 0, .external_lex_state = 3}, - [2362] = {.lex_state = 0, .external_lex_state = 3}, + [2362] = {.lex_state = 7, .external_lex_state = 3}, [2363] = {.lex_state = 0, .external_lex_state = 3}, [2364] = {.lex_state = 0, .external_lex_state = 3}, [2365] = {.lex_state = 0, .external_lex_state = 3}, [2366] = {.lex_state = 0, .external_lex_state = 3}, - [2367] = {.lex_state = 7, .external_lex_state = 3}, - [2368] = {.lex_state = 0, .external_lex_state = 3}, + [2367] = {.lex_state = 0, .external_lex_state = 3}, + [2368] = {.lex_state = 7, .external_lex_state = 3}, [2369] = {.lex_state = 0, .external_lex_state = 3}, - [2370] = {.lex_state = 7, .external_lex_state = 3}, - [2371] = {.lex_state = 0, .external_lex_state = 3}, - [2372] = {.lex_state = 0, .external_lex_state = 3}, + [2370] = {.lex_state = 0, .external_lex_state = 3}, + [2371] = {.lex_state = 7, .external_lex_state = 3}, + [2372] = {.lex_state = 10, .external_lex_state = 3}, [2373] = {.lex_state = 0, .external_lex_state = 3}, - [2374] = {.lex_state = 10, .external_lex_state = 3}, + [2374] = {.lex_state = 0, .external_lex_state = 3}, [2375] = {.lex_state = 0, .external_lex_state = 3}, - [2376] = {.lex_state = 10, .external_lex_state = 3}, + [2376] = {.lex_state = 7, .external_lex_state = 3}, [2377] = {.lex_state = 0, .external_lex_state = 3}, - [2378] = {.lex_state = 7, .external_lex_state = 3}, + [2378] = {.lex_state = 0, .external_lex_state = 3}, [2379] = {.lex_state = 0, .external_lex_state = 3}, [2380] = {.lex_state = 0, .external_lex_state = 3}, - [2381] = {.lex_state = 10, .external_lex_state = 3}, - [2382] = {.lex_state = 0, .external_lex_state = 3}, + [2381] = {.lex_state = 7, .external_lex_state = 3}, + [2382] = {.lex_state = 7, .external_lex_state = 3}, [2383] = {.lex_state = 0, .external_lex_state = 3}, [2384] = {.lex_state = 0, .external_lex_state = 3}, [2385] = {.lex_state = 0, .external_lex_state = 3}, - [2386] = {.lex_state = 0, .external_lex_state = 3}, - [2387] = {.lex_state = 7, .external_lex_state = 3}, - [2388] = {.lex_state = 10, .external_lex_state = 3}, + [2386] = {.lex_state = 7, .external_lex_state = 3}, + [2387] = {.lex_state = 0, .external_lex_state = 3}, + [2388] = {.lex_state = 0, .external_lex_state = 3}, [2389] = {.lex_state = 0, .external_lex_state = 3}, - [2390] = {.lex_state = 10, .external_lex_state = 3}, + [2390] = {.lex_state = 7, .external_lex_state = 3}, [2391] = {.lex_state = 0, .external_lex_state = 3}, [2392] = {.lex_state = 0, .external_lex_state = 3}, [2393] = {.lex_state = 0, .external_lex_state = 3}, - [2394] = {.lex_state = 0, .external_lex_state = 3}, + [2394] = {.lex_state = 7, .external_lex_state = 3}, [2395] = {.lex_state = 0, .external_lex_state = 3}, - [2396] = {.lex_state = 10, .external_lex_state = 3}, - [2397] = {.lex_state = 0, .external_lex_state = 3}, - [2398] = {.lex_state = 0, .external_lex_state = 3}, - [2399] = {.lex_state = 10, .external_lex_state = 3}, - [2400] = {.lex_state = 0, .external_lex_state = 3}, - [2401] = {.lex_state = 0, .external_lex_state = 3}, - [2402] = {.lex_state = 7, .external_lex_state = 3}, - [2403] = {.lex_state = 0, .external_lex_state = 3}, + [2396] = {.lex_state = 7, .external_lex_state = 3}, + [2397] = {.lex_state = 7, .external_lex_state = 3}, + [2398] = {.lex_state = 10, .external_lex_state = 3}, + [2399] = {.lex_state = 0, .external_lex_state = 3}, + [2400] = {.lex_state = 7, .external_lex_state = 3}, + [2401] = {.lex_state = 7, .external_lex_state = 3}, + [2402] = {.lex_state = 0, .external_lex_state = 3}, + [2403] = {.lex_state = 7, .external_lex_state = 3}, [2404] = {.lex_state = 0, .external_lex_state = 3}, - [2405] = {.lex_state = 10, .external_lex_state = 3}, - [2406] = {.lex_state = 10, .external_lex_state = 3}, - [2407] = {.lex_state = 10, .external_lex_state = 3}, + [2405] = {.lex_state = 0, .external_lex_state = 3}, + [2406] = {.lex_state = 0, .external_lex_state = 3}, + [2407] = {.lex_state = 0, .external_lex_state = 3}, [2408] = {.lex_state = 0, .external_lex_state = 3}, - [2409] = {.lex_state = 0, .external_lex_state = 3}, + [2409] = {.lex_state = 7, .external_lex_state = 3}, [2410] = {.lex_state = 0, .external_lex_state = 3}, [2411] = {.lex_state = 0, .external_lex_state = 3}, - [2412] = {.lex_state = 0, .external_lex_state = 3}, + [2412] = {.lex_state = 7, .external_lex_state = 3}, [2413] = {.lex_state = 0, .external_lex_state = 3}, - [2414] = {.lex_state = 7, .external_lex_state = 3}, + [2414] = {.lex_state = 0, .external_lex_state = 3}, [2415] = {.lex_state = 0, .external_lex_state = 3}, - [2416] = {.lex_state = 7, .external_lex_state = 3}, - [2417] = {.lex_state = 7, .external_lex_state = 3}, - [2418] = {.lex_state = 0, .external_lex_state = 3}, - [2419] = {.lex_state = 7, .external_lex_state = 3}, + [2416] = {.lex_state = 0, .external_lex_state = 3}, + [2417] = {.lex_state = 0, .external_lex_state = 3}, + [2418] = {.lex_state = 7, .external_lex_state = 3}, + [2419] = {.lex_state = 10, .external_lex_state = 3}, [2420] = {.lex_state = 0, .external_lex_state = 3}, - [2421] = {.lex_state = 7, .external_lex_state = 3}, + [2421] = {.lex_state = 10, .external_lex_state = 3}, [2422] = {.lex_state = 0, .external_lex_state = 3}, - [2423] = {.lex_state = 7, .external_lex_state = 3}, + [2423] = {.lex_state = 0, .external_lex_state = 3}, [2424] = {.lex_state = 7, .external_lex_state = 3}, - [2425] = {.lex_state = 7, .external_lex_state = 3}, - [2426] = {.lex_state = 7, .external_lex_state = 3}, - [2427] = {.lex_state = 7, .external_lex_state = 3}, - [2428] = {.lex_state = 7, .external_lex_state = 3}, + [2425] = {.lex_state = 0, .external_lex_state = 3}, + [2426] = {.lex_state = 10, .external_lex_state = 3}, + [2427] = {.lex_state = 0, .external_lex_state = 3}, + [2428] = {.lex_state = 0, .external_lex_state = 3}, [2429] = {.lex_state = 0, .external_lex_state = 3}, - [2430] = {.lex_state = 7, .external_lex_state = 3}, - [2431] = {.lex_state = 7, .external_lex_state = 3}, + [2430] = {.lex_state = 0, .external_lex_state = 3}, + [2431] = {.lex_state = 0, .external_lex_state = 3}, [2432] = {.lex_state = 7, .external_lex_state = 3}, [2433] = {.lex_state = 0, .external_lex_state = 3}, - [2434] = {.lex_state = 7, .external_lex_state = 3}, + [2434] = {.lex_state = 0, .external_lex_state = 3}, + [2435] = {.lex_state = 10, .external_lex_state = 3}, + [2436] = {.lex_state = 0, .external_lex_state = 3}, + [2437] = {.lex_state = 0, .external_lex_state = 3}, + [2438] = {.lex_state = 10, .external_lex_state = 3}, + [2439] = {.lex_state = 0, .external_lex_state = 3}, + [2440] = {.lex_state = 0, .external_lex_state = 3}, + [2441] = {.lex_state = 10, .external_lex_state = 3}, + [2442] = {.lex_state = 7, .external_lex_state = 3}, + [2443] = {.lex_state = 0, .external_lex_state = 3}, + [2444] = {.lex_state = 10, .external_lex_state = 3}, + [2445] = {.lex_state = 7, .external_lex_state = 3}, + [2446] = {.lex_state = 7, .external_lex_state = 3}, + [2447] = {.lex_state = 7, .external_lex_state = 3}, + [2448] = {.lex_state = 0, .external_lex_state = 3}, + [2449] = {.lex_state = 0, .external_lex_state = 3}, + [2450] = {.lex_state = 10, .external_lex_state = 3}, + [2451] = {.lex_state = 0, .external_lex_state = 3}, + [2452] = {.lex_state = 10, .external_lex_state = 3}, + [2453] = {.lex_state = 0, .external_lex_state = 3}, + [2454] = {.lex_state = 0, .external_lex_state = 3}, + [2455] = {.lex_state = 0, .external_lex_state = 3}, + [2456] = {.lex_state = 0, .external_lex_state = 3}, + [2457] = {.lex_state = 7, .external_lex_state = 3}, + [2458] = {.lex_state = 0, .external_lex_state = 3}, + [2459] = {.lex_state = 7, .external_lex_state = 3}, + [2460] = {.lex_state = 7, .external_lex_state = 3}, + [2461] = {.lex_state = 7, .external_lex_state = 3}, + [2462] = {.lex_state = 7, .external_lex_state = 3}, + [2463] = {.lex_state = 0, .external_lex_state = 3}, + [2464] = {.lex_state = 7, .external_lex_state = 3}, + [2465] = {.lex_state = 7, .external_lex_state = 3}, + [2466] = {.lex_state = 0, .external_lex_state = 3}, + [2467] = {.lex_state = 0, .external_lex_state = 3}, + [2468] = {.lex_state = 7, .external_lex_state = 3}, + [2469] = {.lex_state = 7, .external_lex_state = 3}, + [2470] = {.lex_state = 7, .external_lex_state = 3}, + [2471] = {.lex_state = 0, .external_lex_state = 3}, + [2472] = {.lex_state = 7, .external_lex_state = 3}, + [2473] = {.lex_state = 7, .external_lex_state = 3}, + [2474] = {.lex_state = 7, .external_lex_state = 3}, + [2475] = {.lex_state = 0, .external_lex_state = 3}, + [2476] = {.lex_state = 0, .external_lex_state = 3}, + [2477] = {.lex_state = 7, .external_lex_state = 3}, + [2478] = {.lex_state = 7, .external_lex_state = 3}, + [2479] = {.lex_state = 0, .external_lex_state = 3}, }; enum { @@ -14151,54 +14204,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2350), - [sym__statement] = STATE(2), - [sym_empty_statement] = STATE(2), - [sym__expression_statement] = STATE(2), - [sym_macro_definition] = STATE(2), - [sym_attribute_item] = STATE(2), - [sym_inner_attribute_item] = STATE(2), - [sym_mod_item] = STATE(2), - [sym_foreign_mod_item] = STATE(2), - [sym_struct_item] = STATE(2), - [sym_union_item] = STATE(2), - [sym_enum_item] = STATE(2), - [sym_extern_crate_declaration] = STATE(2), - [sym_const_item] = STATE(2), - [sym_static_item] = STATE(2), - [sym_type_item] = STATE(2), - [sym_function_item] = STATE(2), - [sym_function_signature_item] = STATE(2), - [sym_function_modifiers] = STATE(2347), - [sym_impl_item] = STATE(2), - [sym_trait_item] = STATE(2), - [sym_associated_type] = STATE(2), - [sym_let_declaration] = STATE(2), - [sym_use_declaration] = STATE(2), - [sym_extern_modifier] = STATE(1427), - [sym_visibility_modifier] = STATE(1260), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1173), + [sym_source_file] = STATE(2377), + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym__expression_statement] = STATE(8), + [sym_macro_definition] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_foreign_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_union_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_extern_crate_declaration] = STATE(8), + [sym_const_item] = STATE(8), + [sym_static_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2376), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_extern_modifier] = STATE(1439), + [sym_visibility_modifier] = STATE(1273), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1212), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1090), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), + [sym_scoped_identifier] = STATE(1101), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -14207,22 +14260,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2338), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2248), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1491), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -14298,53 +14351,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym__expression_statement] = STATE(9), - [sym_macro_definition] = STATE(9), - [sym_attribute_item] = STATE(9), - [sym_inner_attribute_item] = STATE(9), - [sym_mod_item] = STATE(9), - [sym_foreign_mod_item] = STATE(9), - [sym_struct_item] = STATE(9), - [sym_union_item] = STATE(9), - [sym_enum_item] = STATE(9), - [sym_extern_crate_declaration] = STATE(9), - [sym_const_item] = STATE(9), - [sym_static_item] = STATE(9), - [sym_type_item] = STATE(9), - [sym_function_item] = STATE(9), - [sym_function_signature_item] = STATE(9), - [sym_function_modifiers] = STATE(2347), - [sym_impl_item] = STATE(9), - [sym_trait_item] = STATE(9), - [sym_associated_type] = STATE(9), - [sym_let_declaration] = STATE(9), - [sym_use_declaration] = STATE(9), - [sym_extern_modifier] = STATE(1427), - [sym_visibility_modifier] = STATE(1260), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1173), + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym__expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2376), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_extern_modifier] = STATE(1439), + [sym_visibility_modifier] = STATE(1273), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1166), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1090), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), + [sym_scoped_identifier] = STATE(1101), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -14353,28 +14406,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2338), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2248), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [ts_builtin_sym_end] = ACTIONS(103), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1491), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(103), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -14444,53 +14497,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym__expression_statement] = STATE(7), - [sym_macro_definition] = STATE(7), - [sym_attribute_item] = STATE(7), - [sym_inner_attribute_item] = STATE(7), - [sym_mod_item] = STATE(7), - [sym_foreign_mod_item] = STATE(7), - [sym_struct_item] = STATE(7), - [sym_union_item] = STATE(7), - [sym_enum_item] = STATE(7), - [sym_extern_crate_declaration] = STATE(7), - [sym_const_item] = STATE(7), - [sym_static_item] = STATE(7), - [sym_type_item] = STATE(7), - [sym_function_item] = STATE(7), - [sym_function_signature_item] = STATE(7), - [sym_function_modifiers] = STATE(2347), - [sym_impl_item] = STATE(7), - [sym_trait_item] = STATE(7), - [sym_associated_type] = STATE(7), - [sym_let_declaration] = STATE(7), - [sym_use_declaration] = STATE(7), - [sym_extern_modifier] = STATE(1427), - [sym_visibility_modifier] = STATE(1260), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1139), + [sym__statement] = STATE(14), + [sym_empty_statement] = STATE(14), + [sym__expression_statement] = STATE(14), + [sym_macro_definition] = STATE(14), + [sym_attribute_item] = STATE(14), + [sym_inner_attribute_item] = STATE(14), + [sym_mod_item] = STATE(14), + [sym_foreign_mod_item] = STATE(14), + [sym_struct_item] = STATE(14), + [sym_union_item] = STATE(14), + [sym_enum_item] = STATE(14), + [sym_extern_crate_declaration] = STATE(14), + [sym_const_item] = STATE(14), + [sym_static_item] = STATE(14), + [sym_type_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_function_modifiers] = STATE(2376), + [sym_impl_item] = STATE(14), + [sym_trait_item] = STATE(14), + [sym_associated_type] = STATE(14), + [sym_let_declaration] = STATE(14), + [sym_use_declaration] = STATE(14), + [sym_extern_modifier] = STATE(1439), + [sym_visibility_modifier] = STATE(1273), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1129), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1090), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), + [sym_scoped_identifier] = STATE(1101), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -14499,22 +14552,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2338), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2248), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1491), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -14590,53 +14643,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [4] = { - [sym__statement] = STATE(11), - [sym_empty_statement] = STATE(11), - [sym__expression_statement] = STATE(11), - [sym_macro_definition] = STATE(11), - [sym_attribute_item] = STATE(11), - [sym_inner_attribute_item] = STATE(11), - [sym_mod_item] = STATE(11), - [sym_foreign_mod_item] = STATE(11), - [sym_struct_item] = STATE(11), - [sym_union_item] = STATE(11), - [sym_enum_item] = STATE(11), - [sym_extern_crate_declaration] = STATE(11), - [sym_const_item] = STATE(11), - [sym_static_item] = STATE(11), - [sym_type_item] = STATE(11), - [sym_function_item] = STATE(11), - [sym_function_signature_item] = STATE(11), - [sym_function_modifiers] = STATE(2347), - [sym_impl_item] = STATE(11), - [sym_trait_item] = STATE(11), - [sym_associated_type] = STATE(11), - [sym_let_declaration] = STATE(11), - [sym_use_declaration] = STATE(11), - [sym_extern_modifier] = STATE(1427), - [sym_visibility_modifier] = STATE(1260), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1115), + [sym__statement] = STATE(6), + [sym_empty_statement] = STATE(6), + [sym__expression_statement] = STATE(6), + [sym_macro_definition] = STATE(6), + [sym_attribute_item] = STATE(6), + [sym_inner_attribute_item] = STATE(6), + [sym_mod_item] = STATE(6), + [sym_foreign_mod_item] = STATE(6), + [sym_struct_item] = STATE(6), + [sym_union_item] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_extern_crate_declaration] = STATE(6), + [sym_const_item] = STATE(6), + [sym_static_item] = STATE(6), + [sym_type_item] = STATE(6), + [sym_function_item] = STATE(6), + [sym_function_signature_item] = STATE(6), + [sym_function_modifiers] = STATE(2376), + [sym_impl_item] = STATE(6), + [sym_trait_item] = STATE(6), + [sym_associated_type] = STATE(6), + [sym_let_declaration] = STATE(6), + [sym_use_declaration] = STATE(6), + [sym_extern_modifier] = STATE(1439), + [sym_visibility_modifier] = STATE(1273), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1151), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1090), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), + [sym_scoped_identifier] = STATE(1101), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -14645,22 +14698,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2338), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2248), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(1491), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -14736,53 +14789,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [5] = { - [sym__statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym__expression_statement] = STATE(7), - [sym_macro_definition] = STATE(7), - [sym_attribute_item] = STATE(7), - [sym_inner_attribute_item] = STATE(7), - [sym_mod_item] = STATE(7), - [sym_foreign_mod_item] = STATE(7), - [sym_struct_item] = STATE(7), - [sym_union_item] = STATE(7), - [sym_enum_item] = STATE(7), - [sym_extern_crate_declaration] = STATE(7), - [sym_const_item] = STATE(7), - [sym_static_item] = STATE(7), - [sym_type_item] = STATE(7), - [sym_function_item] = STATE(7), - [sym_function_signature_item] = STATE(7), - [sym_function_modifiers] = STATE(2347), - [sym_impl_item] = STATE(7), - [sym_trait_item] = STATE(7), - [sym_associated_type] = STATE(7), - [sym_let_declaration] = STATE(7), - [sym_use_declaration] = STATE(7), - [sym_extern_modifier] = STATE(1427), - [sym_visibility_modifier] = STATE(1260), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1131), + [sym__statement] = STATE(3), + [sym_empty_statement] = STATE(3), + [sym__expression_statement] = STATE(3), + [sym_macro_definition] = STATE(3), + [sym_attribute_item] = STATE(3), + [sym_inner_attribute_item] = STATE(3), + [sym_mod_item] = STATE(3), + [sym_foreign_mod_item] = STATE(3), + [sym_struct_item] = STATE(3), + [sym_union_item] = STATE(3), + [sym_enum_item] = STATE(3), + [sym_extern_crate_declaration] = STATE(3), + [sym_const_item] = STATE(3), + [sym_static_item] = STATE(3), + [sym_type_item] = STATE(3), + [sym_function_item] = STATE(3), + [sym_function_signature_item] = STATE(3), + [sym_function_modifiers] = STATE(2376), + [sym_impl_item] = STATE(3), + [sym_trait_item] = STATE(3), + [sym_associated_type] = STATE(3), + [sym_let_declaration] = STATE(3), + [sym_use_declaration] = STATE(3), + [sym_extern_modifier] = STATE(1439), + [sym_visibility_modifier] = STATE(1273), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1116), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1090), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), + [sym_scoped_identifier] = STATE(1101), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -14791,22 +14844,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2338), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2248), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_function_modifiers_repeat1] = STATE(1491), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -14882,53 +14935,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [6] = { - [sym__statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym__expression_statement] = STATE(7), - [sym_macro_definition] = STATE(7), - [sym_attribute_item] = STATE(7), - [sym_inner_attribute_item] = STATE(7), - [sym_mod_item] = STATE(7), - [sym_foreign_mod_item] = STATE(7), - [sym_struct_item] = STATE(7), - [sym_union_item] = STATE(7), - [sym_enum_item] = STATE(7), - [sym_extern_crate_declaration] = STATE(7), - [sym_const_item] = STATE(7), - [sym_static_item] = STATE(7), - [sym_type_item] = STATE(7), - [sym_function_item] = STATE(7), - [sym_function_signature_item] = STATE(7), - [sym_function_modifiers] = STATE(2347), - [sym_impl_item] = STATE(7), - [sym_trait_item] = STATE(7), - [sym_associated_type] = STATE(7), - [sym_let_declaration] = STATE(7), - [sym_use_declaration] = STATE(7), - [sym_extern_modifier] = STATE(1427), - [sym_visibility_modifier] = STATE(1260), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1146), + [sym__statement] = STATE(14), + [sym_empty_statement] = STATE(14), + [sym__expression_statement] = STATE(14), + [sym_macro_definition] = STATE(14), + [sym_attribute_item] = STATE(14), + [sym_inner_attribute_item] = STATE(14), + [sym_mod_item] = STATE(14), + [sym_foreign_mod_item] = STATE(14), + [sym_struct_item] = STATE(14), + [sym_union_item] = STATE(14), + [sym_enum_item] = STATE(14), + [sym_extern_crate_declaration] = STATE(14), + [sym_const_item] = STATE(14), + [sym_static_item] = STATE(14), + [sym_type_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_function_modifiers] = STATE(2376), + [sym_impl_item] = STATE(14), + [sym_trait_item] = STATE(14), + [sym_associated_type] = STATE(14), + [sym_let_declaration] = STATE(14), + [sym_use_declaration] = STATE(14), + [sym_extern_modifier] = STATE(1439), + [sym_visibility_modifier] = STATE(1273), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1142), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1090), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), + [sym_scoped_identifier] = STATE(1101), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -14937,22 +14990,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2338), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2248), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1491), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -15028,199 +15081,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [7] = { - [sym__statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym__expression_statement] = STATE(7), - [sym_macro_definition] = STATE(7), - [sym_attribute_item] = STATE(7), - [sym_inner_attribute_item] = STATE(7), - [sym_mod_item] = STATE(7), - [sym_foreign_mod_item] = STATE(7), - [sym_struct_item] = STATE(7), - [sym_union_item] = STATE(7), - [sym_enum_item] = STATE(7), - [sym_extern_crate_declaration] = STATE(7), - [sym_const_item] = STATE(7), - [sym_static_item] = STATE(7), - [sym_type_item] = STATE(7), - [sym_function_item] = STATE(7), - [sym_function_signature_item] = STATE(7), - [sym_function_modifiers] = STATE(2347), - [sym_impl_item] = STATE(7), - [sym_trait_item] = STATE(7), - [sym_associated_type] = STATE(7), - [sym_let_declaration] = STATE(7), - [sym_use_declaration] = STATE(7), - [sym_extern_modifier] = STATE(1427), - [sym_visibility_modifier] = STATE(1260), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1173), - [sym_macro_invocation] = STATE(73), - [sym_scoped_identifier] = STATE(1090), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2338), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(113), - [anon_sym_SEMI] = ACTIONS(116), - [anon_sym_macro_rules_BANG] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(125), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(130), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_u8] = ACTIONS(136), - [anon_sym_i8] = ACTIONS(136), - [anon_sym_u16] = ACTIONS(136), - [anon_sym_i16] = ACTIONS(136), - [anon_sym_u32] = ACTIONS(136), - [anon_sym_i32] = ACTIONS(136), - [anon_sym_u64] = ACTIONS(136), - [anon_sym_i64] = ACTIONS(136), - [anon_sym_u128] = ACTIONS(136), - [anon_sym_i128] = ACTIONS(136), - [anon_sym_isize] = ACTIONS(136), - [anon_sym_usize] = ACTIONS(136), - [anon_sym_f32] = ACTIONS(136), - [anon_sym_f64] = ACTIONS(136), - [anon_sym_bool] = ACTIONS(136), - [anon_sym_str] = ACTIONS(136), - [anon_sym_char] = ACTIONS(136), - [anon_sym_SQUOTE] = ACTIONS(139), - [anon_sym_async] = ACTIONS(142), - [anon_sym_break] = ACTIONS(145), - [anon_sym_const] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_default] = ACTIONS(154), - [anon_sym_enum] = ACTIONS(157), - [anon_sym_fn] = ACTIONS(160), - [anon_sym_for] = ACTIONS(163), - [anon_sym_if] = ACTIONS(166), - [anon_sym_impl] = ACTIONS(169), - [anon_sym_let] = ACTIONS(172), - [anon_sym_loop] = ACTIONS(175), - [anon_sym_match] = ACTIONS(178), - [anon_sym_mod] = ACTIONS(181), - [anon_sym_pub] = ACTIONS(184), - [anon_sym_return] = ACTIONS(187), - [anon_sym_static] = ACTIONS(190), - [anon_sym_struct] = ACTIONS(193), - [anon_sym_trait] = ACTIONS(196), - [anon_sym_type] = ACTIONS(199), - [anon_sym_union] = ACTIONS(202), - [anon_sym_unsafe] = ACTIONS(205), - [anon_sym_use] = ACTIONS(208), - [anon_sym_while] = ACTIONS(211), - [anon_sym_POUND] = ACTIONS(214), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(220), - [anon_sym_COLON_COLON] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(226), - [anon_sym_DOT_DOT] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(232), - [anon_sym_move] = ACTIONS(235), - [sym_integer_literal] = ACTIONS(238), - [aux_sym_string_literal_token1] = ACTIONS(241), - [sym_char_literal] = ACTIONS(238), - [anon_sym_true] = ACTIONS(244), - [anon_sym_false] = ACTIONS(244), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(247), - [sym_super] = ACTIONS(250), - [sym_crate] = ACTIONS(253), - [sym_metavariable] = ACTIONS(256), - [sym_raw_string_literal] = ACTIONS(238), - [sym_float_literal] = ACTIONS(238), - [sym_block_comment] = ACTIONS(3), - }, - [8] = { - [sym__statement] = STATE(6), - [sym_empty_statement] = STATE(6), - [sym__expression_statement] = STATE(6), - [sym_macro_definition] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_foreign_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_union_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_extern_crate_declaration] = STATE(6), - [sym_const_item] = STATE(6), - [sym_static_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function_modifiers] = STATE(2347), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_extern_modifier] = STATE(1427), - [sym_visibility_modifier] = STATE(1260), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1127), + [sym__statement] = STATE(14), + [sym_empty_statement] = STATE(14), + [sym__expression_statement] = STATE(14), + [sym_macro_definition] = STATE(14), + [sym_attribute_item] = STATE(14), + [sym_inner_attribute_item] = STATE(14), + [sym_mod_item] = STATE(14), + [sym_foreign_mod_item] = STATE(14), + [sym_struct_item] = STATE(14), + [sym_union_item] = STATE(14), + [sym_enum_item] = STATE(14), + [sym_extern_crate_declaration] = STATE(14), + [sym_const_item] = STATE(14), + [sym_static_item] = STATE(14), + [sym_type_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_function_modifiers] = STATE(2376), + [sym_impl_item] = STATE(14), + [sym_trait_item] = STATE(14), + [sym_associated_type] = STATE(14), + [sym_let_declaration] = STATE(14), + [sym_use_declaration] = STATE(14), + [sym_extern_modifier] = STATE(1439), + [sym_visibility_modifier] = STATE(1273), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1165), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1090), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), + [sym_scoped_identifier] = STATE(1101), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -15229,28 +15136,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2338), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2248), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1491), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(259), + [anon_sym_RBRACE] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15319,200 +15226,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [9] = { - [sym__statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym__expression_statement] = STATE(9), - [sym_macro_definition] = STATE(9), - [sym_attribute_item] = STATE(9), - [sym_inner_attribute_item] = STATE(9), - [sym_mod_item] = STATE(9), - [sym_foreign_mod_item] = STATE(9), - [sym_struct_item] = STATE(9), - [sym_union_item] = STATE(9), - [sym_enum_item] = STATE(9), - [sym_extern_crate_declaration] = STATE(9), - [sym_const_item] = STATE(9), - [sym_static_item] = STATE(9), - [sym_type_item] = STATE(9), - [sym_function_item] = STATE(9), - [sym_function_signature_item] = STATE(9), - [sym_function_modifiers] = STATE(2347), - [sym_impl_item] = STATE(9), - [sym_trait_item] = STATE(9), - [sym_associated_type] = STATE(9), - [sym_let_declaration] = STATE(9), - [sym_use_declaration] = STATE(9), - [sym_extern_modifier] = STATE(1427), - [sym_visibility_modifier] = STATE(1260), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1173), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1090), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2338), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [ts_builtin_sym_end] = ACTIONS(128), - [sym_identifier] = ACTIONS(113), - [anon_sym_SEMI] = ACTIONS(116), - [anon_sym_macro_rules_BANG] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(130), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_u8] = ACTIONS(136), - [anon_sym_i8] = ACTIONS(136), - [anon_sym_u16] = ACTIONS(136), - [anon_sym_i16] = ACTIONS(136), - [anon_sym_u32] = ACTIONS(136), - [anon_sym_i32] = ACTIONS(136), - [anon_sym_u64] = ACTIONS(136), - [anon_sym_i64] = ACTIONS(136), - [anon_sym_u128] = ACTIONS(136), - [anon_sym_i128] = ACTIONS(136), - [anon_sym_isize] = ACTIONS(136), - [anon_sym_usize] = ACTIONS(136), - [anon_sym_f32] = ACTIONS(136), - [anon_sym_f64] = ACTIONS(136), - [anon_sym_bool] = ACTIONS(136), - [anon_sym_str] = ACTIONS(136), - [anon_sym_char] = ACTIONS(136), - [anon_sym_SQUOTE] = ACTIONS(139), - [anon_sym_async] = ACTIONS(142), - [anon_sym_break] = ACTIONS(145), - [anon_sym_const] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_default] = ACTIONS(154), - [anon_sym_enum] = ACTIONS(157), - [anon_sym_fn] = ACTIONS(160), - [anon_sym_for] = ACTIONS(163), - [anon_sym_if] = ACTIONS(166), - [anon_sym_impl] = ACTIONS(169), - [anon_sym_let] = ACTIONS(172), - [anon_sym_loop] = ACTIONS(175), - [anon_sym_match] = ACTIONS(178), - [anon_sym_mod] = ACTIONS(181), - [anon_sym_pub] = ACTIONS(184), - [anon_sym_return] = ACTIONS(187), - [anon_sym_static] = ACTIONS(190), - [anon_sym_struct] = ACTIONS(193), - [anon_sym_trait] = ACTIONS(196), - [anon_sym_type] = ACTIONS(199), - [anon_sym_union] = ACTIONS(202), - [anon_sym_unsafe] = ACTIONS(205), - [anon_sym_use] = ACTIONS(208), - [anon_sym_while] = ACTIONS(211), - [anon_sym_POUND] = ACTIONS(214), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(220), - [anon_sym_COLON_COLON] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(226), - [anon_sym_DOT_DOT] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(232), - [anon_sym_move] = ACTIONS(235), - [sym_integer_literal] = ACTIONS(238), - [aux_sym_string_literal_token1] = ACTIONS(241), - [sym_char_literal] = ACTIONS(238), - [anon_sym_true] = ACTIONS(244), - [anon_sym_false] = ACTIONS(244), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(247), - [sym_super] = ACTIONS(250), - [sym_crate] = ACTIONS(253), - [sym_metavariable] = ACTIONS(256), - [sym_raw_string_literal] = ACTIONS(238), - [sym_float_literal] = ACTIONS(238), - [sym_block_comment] = ACTIONS(3), - }, - [10] = { - [sym__statement] = STATE(5), - [sym_empty_statement] = STATE(5), - [sym__expression_statement] = STATE(5), - [sym_macro_definition] = STATE(5), - [sym_attribute_item] = STATE(5), - [sym_inner_attribute_item] = STATE(5), - [sym_mod_item] = STATE(5), - [sym_foreign_mod_item] = STATE(5), - [sym_struct_item] = STATE(5), - [sym_union_item] = STATE(5), - [sym_enum_item] = STATE(5), - [sym_extern_crate_declaration] = STATE(5), - [sym_const_item] = STATE(5), - [sym_static_item] = STATE(5), - [sym_type_item] = STATE(5), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), - [sym_function_modifiers] = STATE(2347), - [sym_impl_item] = STATE(5), - [sym_trait_item] = STATE(5), - [sym_associated_type] = STATE(5), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_extern_modifier] = STATE(1427), - [sym_visibility_modifier] = STATE(1260), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1133), + [8] = { + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym__expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2376), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1439), + [sym_visibility_modifier] = STATE(1273), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1212), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1090), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), + [sym_scoped_identifier] = STATE(1101), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -15521,28 +15282,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2338), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2248), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [ts_builtin_sym_end] = ACTIONS(115), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(261), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15611,54 +15372,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [11] = { - [sym__statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym__expression_statement] = STATE(7), - [sym_macro_definition] = STATE(7), - [sym_attribute_item] = STATE(7), - [sym_inner_attribute_item] = STATE(7), - [sym_mod_item] = STATE(7), - [sym_foreign_mod_item] = STATE(7), - [sym_struct_item] = STATE(7), - [sym_union_item] = STATE(7), - [sym_enum_item] = STATE(7), - [sym_extern_crate_declaration] = STATE(7), - [sym_const_item] = STATE(7), - [sym_static_item] = STATE(7), - [sym_type_item] = STATE(7), - [sym_function_item] = STATE(7), - [sym_function_signature_item] = STATE(7), - [sym_function_modifiers] = STATE(2347), - [sym_impl_item] = STATE(7), - [sym_trait_item] = STATE(7), - [sym_associated_type] = STATE(7), - [sym_let_declaration] = STATE(7), - [sym_use_declaration] = STATE(7), - [sym_extern_modifier] = STATE(1427), - [sym_visibility_modifier] = STATE(1260), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1149), + [9] = { + [sym__statement] = STATE(14), + [sym_empty_statement] = STATE(14), + [sym__expression_statement] = STATE(14), + [sym_macro_definition] = STATE(14), + [sym_attribute_item] = STATE(14), + [sym_inner_attribute_item] = STATE(14), + [sym_mod_item] = STATE(14), + [sym_foreign_mod_item] = STATE(14), + [sym_struct_item] = STATE(14), + [sym_union_item] = STATE(14), + [sym_enum_item] = STATE(14), + [sym_extern_crate_declaration] = STATE(14), + [sym_const_item] = STATE(14), + [sym_static_item] = STATE(14), + [sym_type_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_function_modifiers] = STATE(2376), + [sym_impl_item] = STATE(14), + [sym_trait_item] = STATE(14), + [sym_associated_type] = STATE(14), + [sym_let_declaration] = STATE(14), + [sym_use_declaration] = STATE(14), + [sym_extern_modifier] = STATE(1439), + [sym_visibility_modifier] = STATE(1273), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1139), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1090), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), + [sym_scoped_identifier] = STATE(1101), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -15667,28 +15428,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2338), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2248), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1491), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(263), + [anon_sym_RBRACE] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15757,54 +15518,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [12] = { - [sym__statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym__expression_statement] = STATE(7), - [sym_macro_definition] = STATE(7), - [sym_attribute_item] = STATE(7), - [sym_inner_attribute_item] = STATE(7), - [sym_mod_item] = STATE(7), - [sym_foreign_mod_item] = STATE(7), - [sym_struct_item] = STATE(7), - [sym_union_item] = STATE(7), - [sym_enum_item] = STATE(7), - [sym_extern_crate_declaration] = STATE(7), - [sym_const_item] = STATE(7), - [sym_static_item] = STATE(7), - [sym_type_item] = STATE(7), - [sym_function_item] = STATE(7), - [sym_function_signature_item] = STATE(7), - [sym_function_modifiers] = STATE(2347), - [sym_impl_item] = STATE(7), - [sym_trait_item] = STATE(7), - [sym_associated_type] = STATE(7), - [sym_let_declaration] = STATE(7), - [sym_use_declaration] = STATE(7), - [sym_extern_modifier] = STATE(1427), - [sym_visibility_modifier] = STATE(1260), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1136), + [10] = { + [sym__statement] = STATE(14), + [sym_empty_statement] = STATE(14), + [sym__expression_statement] = STATE(14), + [sym_macro_definition] = STATE(14), + [sym_attribute_item] = STATE(14), + [sym_inner_attribute_item] = STATE(14), + [sym_mod_item] = STATE(14), + [sym_foreign_mod_item] = STATE(14), + [sym_struct_item] = STATE(14), + [sym_union_item] = STATE(14), + [sym_enum_item] = STATE(14), + [sym_extern_crate_declaration] = STATE(14), + [sym_const_item] = STATE(14), + [sym_static_item] = STATE(14), + [sym_type_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_function_modifiers] = STATE(2376), + [sym_impl_item] = STATE(14), + [sym_trait_item] = STATE(14), + [sym_associated_type] = STATE(14), + [sym_let_declaration] = STATE(14), + [sym_use_declaration] = STATE(14), + [sym_extern_modifier] = STATE(1439), + [sym_visibility_modifier] = STATE(1273), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1177), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1090), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), + [sym_scoped_identifier] = STATE(1101), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -15813,28 +15574,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2338), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2248), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1491), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(119), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15903,54 +15664,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [13] = { - [sym__statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym__expression_statement] = STATE(7), - [sym_macro_definition] = STATE(7), - [sym_attribute_item] = STATE(7), - [sym_inner_attribute_item] = STATE(7), - [sym_mod_item] = STATE(7), - [sym_foreign_mod_item] = STATE(7), - [sym_struct_item] = STATE(7), - [sym_union_item] = STATE(7), - [sym_enum_item] = STATE(7), - [sym_extern_crate_declaration] = STATE(7), - [sym_const_item] = STATE(7), - [sym_static_item] = STATE(7), - [sym_type_item] = STATE(7), - [sym_function_item] = STATE(7), - [sym_function_signature_item] = STATE(7), - [sym_function_modifiers] = STATE(2347), - [sym_impl_item] = STATE(7), - [sym_trait_item] = STATE(7), - [sym_associated_type] = STATE(7), - [sym_let_declaration] = STATE(7), - [sym_use_declaration] = STATE(7), - [sym_extern_modifier] = STATE(1427), - [sym_visibility_modifier] = STATE(1260), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1161), + [11] = { + [sym__statement] = STATE(10), + [sym_empty_statement] = STATE(10), + [sym__expression_statement] = STATE(10), + [sym_macro_definition] = STATE(10), + [sym_attribute_item] = STATE(10), + [sym_inner_attribute_item] = STATE(10), + [sym_mod_item] = STATE(10), + [sym_foreign_mod_item] = STATE(10), + [sym_struct_item] = STATE(10), + [sym_union_item] = STATE(10), + [sym_enum_item] = STATE(10), + [sym_extern_crate_declaration] = STATE(10), + [sym_const_item] = STATE(10), + [sym_static_item] = STATE(10), + [sym_type_item] = STATE(10), + [sym_function_item] = STATE(10), + [sym_function_signature_item] = STATE(10), + [sym_function_modifiers] = STATE(2376), + [sym_impl_item] = STATE(10), + [sym_trait_item] = STATE(10), + [sym_associated_type] = STATE(10), + [sym_let_declaration] = STATE(10), + [sym_use_declaration] = STATE(10), + [sym_extern_modifier] = STATE(1439), + [sym_visibility_modifier] = STATE(1273), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1112), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1090), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), + [sym_scoped_identifier] = STATE(1101), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -15959,28 +15720,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2338), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2248), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_function_modifiers_repeat1] = STATE(1491), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(267), + [anon_sym_RBRACE] = ACTIONS(121), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16049,54 +15810,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [14] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym__expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2347), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1427), - [sym_visibility_modifier] = STATE(1260), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1150), + [12] = { + [sym__statement] = STATE(14), + [sym_empty_statement] = STATE(14), + [sym__expression_statement] = STATE(14), + [sym_macro_definition] = STATE(14), + [sym_attribute_item] = STATE(14), + [sym_inner_attribute_item] = STATE(14), + [sym_mod_item] = STATE(14), + [sym_foreign_mod_item] = STATE(14), + [sym_struct_item] = STATE(14), + [sym_union_item] = STATE(14), + [sym_enum_item] = STATE(14), + [sym_extern_crate_declaration] = STATE(14), + [sym_const_item] = STATE(14), + [sym_static_item] = STATE(14), + [sym_type_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_function_modifiers] = STATE(2376), + [sym_impl_item] = STATE(14), + [sym_trait_item] = STATE(14), + [sym_associated_type] = STATE(14), + [sym_let_declaration] = STATE(14), + [sym_use_declaration] = STATE(14), + [sym_extern_modifier] = STATE(1439), + [sym_visibility_modifier] = STATE(1273), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1152), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1090), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), + [sym_scoped_identifier] = STATE(1101), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -16105,28 +15866,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2338), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2248), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1491), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_RBRACE] = ACTIONS(123), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16195,7 +15956,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [15] = { + [13] = { [sym__statement] = STATE(12), [sym_empty_statement] = STATE(12), [sym__expression_statement] = STATE(12), @@ -16213,36 +15974,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(12), [sym_function_item] = STATE(12), [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2347), + [sym_function_modifiers] = STATE(2376), [sym_impl_item] = STATE(12), [sym_trait_item] = STATE(12), [sym_associated_type] = STATE(12), [sym_let_declaration] = STATE(12), [sym_use_declaration] = STATE(12), - [sym_extern_modifier] = STATE(1427), - [sym_visibility_modifier] = STATE(1260), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1137), + [sym_extern_modifier] = STATE(1439), + [sym_visibility_modifier] = STATE(1273), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1136), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1090), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), + [sym_scoped_identifier] = STATE(1101), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -16251,28 +16012,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2338), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2248), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1466), + [aux_sym_function_modifiers_repeat1] = STATE(1491), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_RBRACE] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16341,54 +16102,346 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, + [14] = { + [sym__statement] = STATE(14), + [sym_empty_statement] = STATE(14), + [sym__expression_statement] = STATE(14), + [sym_macro_definition] = STATE(14), + [sym_attribute_item] = STATE(14), + [sym_inner_attribute_item] = STATE(14), + [sym_mod_item] = STATE(14), + [sym_foreign_mod_item] = STATE(14), + [sym_struct_item] = STATE(14), + [sym_union_item] = STATE(14), + [sym_enum_item] = STATE(14), + [sym_extern_crate_declaration] = STATE(14), + [sym_const_item] = STATE(14), + [sym_static_item] = STATE(14), + [sym_type_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_function_modifiers] = STATE(2376), + [sym_impl_item] = STATE(14), + [sym_trait_item] = STATE(14), + [sym_associated_type] = STATE(14), + [sym_let_declaration] = STATE(14), + [sym_use_declaration] = STATE(14), + [sym_extern_modifier] = STATE(1439), + [sym_visibility_modifier] = STATE(1273), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(74), + [sym_scoped_identifier] = STATE(1101), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2248), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(130), + [anon_sym_macro_rules_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_RBRACE] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_u8] = ACTIONS(150), + [anon_sym_i8] = ACTIONS(150), + [anon_sym_u16] = ACTIONS(150), + [anon_sym_i16] = ACTIONS(150), + [anon_sym_u32] = ACTIONS(150), + [anon_sym_i32] = ACTIONS(150), + [anon_sym_u64] = ACTIONS(150), + [anon_sym_i64] = ACTIONS(150), + [anon_sym_u128] = ACTIONS(150), + [anon_sym_i128] = ACTIONS(150), + [anon_sym_isize] = ACTIONS(150), + [anon_sym_usize] = ACTIONS(150), + [anon_sym_f32] = ACTIONS(150), + [anon_sym_f64] = ACTIONS(150), + [anon_sym_bool] = ACTIONS(150), + [anon_sym_str] = ACTIONS(150), + [anon_sym_char] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_async] = ACTIONS(156), + [anon_sym_break] = ACTIONS(159), + [anon_sym_const] = ACTIONS(162), + [anon_sym_continue] = ACTIONS(165), + [anon_sym_default] = ACTIONS(168), + [anon_sym_enum] = ACTIONS(171), + [anon_sym_fn] = ACTIONS(174), + [anon_sym_for] = ACTIONS(177), + [anon_sym_if] = ACTIONS(180), + [anon_sym_impl] = ACTIONS(183), + [anon_sym_let] = ACTIONS(186), + [anon_sym_loop] = ACTIONS(189), + [anon_sym_match] = ACTIONS(192), + [anon_sym_mod] = ACTIONS(195), + [anon_sym_pub] = ACTIONS(198), + [anon_sym_return] = ACTIONS(201), + [anon_sym_static] = ACTIONS(204), + [anon_sym_struct] = ACTIONS(207), + [anon_sym_trait] = ACTIONS(210), + [anon_sym_type] = ACTIONS(213), + [anon_sym_union] = ACTIONS(216), + [anon_sym_unsafe] = ACTIONS(219), + [anon_sym_use] = ACTIONS(222), + [anon_sym_while] = ACTIONS(225), + [anon_sym_POUND] = ACTIONS(228), + [anon_sym_BANG] = ACTIONS(147), + [anon_sym_extern] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(234), + [anon_sym_COLON_COLON] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(240), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(246), + [anon_sym_move] = ACTIONS(249), + [sym_integer_literal] = ACTIONS(252), + [aux_sym_string_literal_token1] = ACTIONS(255), + [sym_char_literal] = ACTIONS(252), + [anon_sym_true] = ACTIONS(258), + [anon_sym_false] = ACTIONS(258), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(261), + [sym_super] = ACTIONS(264), + [sym_crate] = ACTIONS(267), + [sym_metavariable] = ACTIONS(270), + [sym_raw_string_literal] = ACTIONS(252), + [sym_float_literal] = ACTIONS(252), + [sym_block_comment] = ACTIONS(3), + }, + [15] = { + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym__expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2376), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1439), + [sym_visibility_modifier] = STATE(1273), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(57), + [sym_scoped_identifier] = STATE(1101), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2248), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [ts_builtin_sym_end] = ACTIONS(142), + [sym_identifier] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(130), + [anon_sym_macro_rules_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_u8] = ACTIONS(150), + [anon_sym_i8] = ACTIONS(150), + [anon_sym_u16] = ACTIONS(150), + [anon_sym_i16] = ACTIONS(150), + [anon_sym_u32] = ACTIONS(150), + [anon_sym_i32] = ACTIONS(150), + [anon_sym_u64] = ACTIONS(150), + [anon_sym_i64] = ACTIONS(150), + [anon_sym_u128] = ACTIONS(150), + [anon_sym_i128] = ACTIONS(150), + [anon_sym_isize] = ACTIONS(150), + [anon_sym_usize] = ACTIONS(150), + [anon_sym_f32] = ACTIONS(150), + [anon_sym_f64] = ACTIONS(150), + [anon_sym_bool] = ACTIONS(150), + [anon_sym_str] = ACTIONS(150), + [anon_sym_char] = ACTIONS(150), + [anon_sym_SQUOTE] = ACTIONS(153), + [anon_sym_async] = ACTIONS(156), + [anon_sym_break] = ACTIONS(159), + [anon_sym_const] = ACTIONS(162), + [anon_sym_continue] = ACTIONS(165), + [anon_sym_default] = ACTIONS(168), + [anon_sym_enum] = ACTIONS(171), + [anon_sym_fn] = ACTIONS(174), + [anon_sym_for] = ACTIONS(177), + [anon_sym_if] = ACTIONS(180), + [anon_sym_impl] = ACTIONS(183), + [anon_sym_let] = ACTIONS(186), + [anon_sym_loop] = ACTIONS(189), + [anon_sym_match] = ACTIONS(192), + [anon_sym_mod] = ACTIONS(195), + [anon_sym_pub] = ACTIONS(198), + [anon_sym_return] = ACTIONS(201), + [anon_sym_static] = ACTIONS(204), + [anon_sym_struct] = ACTIONS(207), + [anon_sym_trait] = ACTIONS(210), + [anon_sym_type] = ACTIONS(213), + [anon_sym_union] = ACTIONS(216), + [anon_sym_unsafe] = ACTIONS(219), + [anon_sym_use] = ACTIONS(222), + [anon_sym_while] = ACTIONS(225), + [anon_sym_POUND] = ACTIONS(228), + [anon_sym_BANG] = ACTIONS(147), + [anon_sym_extern] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(234), + [anon_sym_COLON_COLON] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(240), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(246), + [anon_sym_move] = ACTIONS(249), + [sym_integer_literal] = ACTIONS(252), + [aux_sym_string_literal_token1] = ACTIONS(255), + [sym_char_literal] = ACTIONS(252), + [anon_sym_true] = ACTIONS(258), + [anon_sym_false] = ACTIONS(258), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(261), + [sym_super] = ACTIONS(264), + [sym_crate] = ACTIONS(267), + [sym_metavariable] = ACTIONS(270), + [sym_raw_string_literal] = ACTIONS(252), + [sym_float_literal] = ACTIONS(252), + [sym_block_comment] = ACTIONS(3), + }, [16] = { - [sym__statement] = STATE(3), - [sym_empty_statement] = STATE(3), - [sym__expression_statement] = STATE(3), - [sym_macro_definition] = STATE(3), - [sym_attribute_item] = STATE(3), - [sym_inner_attribute_item] = STATE(3), - [sym_mod_item] = STATE(3), - [sym_foreign_mod_item] = STATE(3), - [sym_struct_item] = STATE(3), - [sym_union_item] = STATE(3), - [sym_enum_item] = STATE(3), - [sym_extern_crate_declaration] = STATE(3), - [sym_const_item] = STATE(3), - [sym_static_item] = STATE(3), - [sym_type_item] = STATE(3), - [sym_function_item] = STATE(3), - [sym_function_signature_item] = STATE(3), - [sym_function_modifiers] = STATE(2347), - [sym_impl_item] = STATE(3), - [sym_trait_item] = STATE(3), - [sym_associated_type] = STATE(3), - [sym_let_declaration] = STATE(3), - [sym_use_declaration] = STATE(3), - [sym_extern_modifier] = STATE(1427), - [sym_visibility_modifier] = STATE(1260), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1141), + [sym__statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym__expression_statement] = STATE(9), + [sym_macro_definition] = STATE(9), + [sym_attribute_item] = STATE(9), + [sym_inner_attribute_item] = STATE(9), + [sym_mod_item] = STATE(9), + [sym_foreign_mod_item] = STATE(9), + [sym_struct_item] = STATE(9), + [sym_union_item] = STATE(9), + [sym_enum_item] = STATE(9), + [sym_extern_crate_declaration] = STATE(9), + [sym_const_item] = STATE(9), + [sym_static_item] = STATE(9), + [sym_type_item] = STATE(9), + [sym_function_item] = STATE(9), + [sym_function_signature_item] = STATE(9), + [sym_function_modifiers] = STATE(2376), + [sym_impl_item] = STATE(9), + [sym_trait_item] = STATE(9), + [sym_associated_type] = STATE(9), + [sym_let_declaration] = STATE(9), + [sym_use_declaration] = STATE(9), + [sym_extern_modifier] = STATE(1439), + [sym_visibility_modifier] = STATE(1273), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1121), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1090), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), + [sym_scoped_identifier] = STATE(1101), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -16397,22 +16450,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2338), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2248), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(1466), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_function_modifiers_repeat1] = STATE(1491), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16488,50 +16541,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1026), - [sym_macro_invocation] = STATE(1015), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(978), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_LPAREN] = ACTIONS(277), @@ -16627,50 +16680,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(980), - [sym_macro_invocation] = STATE(1015), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1042), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(17), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_SEMI] = ACTIONS(305), [anon_sym_LPAREN] = ACTIONS(305), @@ -16700,7 +16753,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(21), [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(309), [anon_sym_as] = ACTIONS(307), [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(27), @@ -16765,62 +16818,62 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1005), - [sym_macro_invocation] = STATE(1015), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(761), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(309), - [anon_sym_RPAREN] = ACTIONS(309), + [anon_sym_SEMI] = ACTIONS(311), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(311), [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(309), - [anon_sym_EQ_GT] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(309), - [anon_sym_RBRACK] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(311), - [anon_sym_QMARK] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_EQ_GT] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_QMARK] = ACTIONS(311), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -16838,8 +16891,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(21), [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(313), - [anon_sym_as] = ACTIONS(311), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(313), [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), @@ -16854,40 +16907,40 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(309), - [anon_sym_LT] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(311), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(309), - [anon_sym_DOT_DOT] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_AMP_AMP] = ACTIONS(309), - [anon_sym_PIPE_PIPE] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_EQ_EQ] = ACTIONS(309), - [anon_sym_BANG_EQ] = ACTIONS(309), - [anon_sym_LT_EQ] = ACTIONS(309), - [anon_sym_GT_EQ] = ACTIONS(309), - [anon_sym_LT_LT] = ACTIONS(311), - [anon_sym_GT_GT] = ACTIONS(311), - [anon_sym_SLASH] = ACTIONS(311), - [anon_sym_PERCENT] = ACTIONS(311), - [anon_sym_PLUS_EQ] = ACTIONS(309), - [anon_sym_DASH_EQ] = ACTIONS(309), - [anon_sym_STAR_EQ] = ACTIONS(309), - [anon_sym_SLASH_EQ] = ACTIONS(309), - [anon_sym_PERCENT_EQ] = ACTIONS(309), - [anon_sym_AMP_EQ] = ACTIONS(309), - [anon_sym_PIPE_EQ] = ACTIONS(309), - [anon_sym_CARET_EQ] = ACTIONS(309), - [anon_sym_LT_LT_EQ] = ACTIONS(309), - [anon_sym_GT_GT_EQ] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(311), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_DOT_DOT_EQ] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_PIPE_PIPE] = ACTIONS(311), + [anon_sym_PIPE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(313), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(311), + [anon_sym_DOT] = ACTIONS(313), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -16903,62 +16956,62 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(764), - [sym_macro_invocation] = STATE(1015), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1003), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(315), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_RPAREN] = ACTIONS(323), [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(315), - [anon_sym_EQ_GT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(315), + [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_EQ_GT] = ACTIONS(323), + [anon_sym_LBRACK] = ACTIONS(323), + [anon_sym_RBRACK] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_QMARK] = ACTIONS(323), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -16977,7 +17030,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(317), + [anon_sym_as] = ACTIONS(325), [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), @@ -16992,40 +17045,40 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_COMMA] = ACTIONS(315), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_GT] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(325), + [anon_sym_COMMA] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(315), - [anon_sym_DOT_DOT] = ACTIONS(323), - [anon_sym_DOT_DOT_EQ] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_AMP_AMP] = ACTIONS(315), - [anon_sym_PIPE_PIPE] = ACTIONS(315), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_DOT_DOT_DOT] = ACTIONS(323), + [anon_sym_DOT_DOT] = ACTIONS(325), + [anon_sym_DOT_DOT_EQ] = ACTIONS(323), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_AMP_AMP] = ACTIONS(323), + [anon_sym_PIPE_PIPE] = ACTIONS(323), [anon_sym_PIPE] = ACTIONS(325), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_EQ_EQ] = ACTIONS(315), - [anon_sym_BANG_EQ] = ACTIONS(315), - [anon_sym_LT_EQ] = ACTIONS(315), - [anon_sym_GT_EQ] = ACTIONS(315), - [anon_sym_LT_LT] = ACTIONS(317), - [anon_sym_GT_GT] = ACTIONS(317), - [anon_sym_SLASH] = ACTIONS(317), - [anon_sym_PERCENT] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(315), - [anon_sym_DASH_EQ] = ACTIONS(315), - [anon_sym_STAR_EQ] = ACTIONS(315), - [anon_sym_SLASH_EQ] = ACTIONS(315), - [anon_sym_PERCENT_EQ] = ACTIONS(315), - [anon_sym_AMP_EQ] = ACTIONS(315), - [anon_sym_PIPE_EQ] = ACTIONS(315), - [anon_sym_CARET_EQ] = ACTIONS(315), - [anon_sym_LT_LT_EQ] = ACTIONS(315), - [anon_sym_GT_GT_EQ] = ACTIONS(315), + [anon_sym_CARET] = ACTIONS(325), + [anon_sym_EQ_EQ] = ACTIONS(323), + [anon_sym_BANG_EQ] = ACTIONS(323), + [anon_sym_LT_EQ] = ACTIONS(323), + [anon_sym_GT_EQ] = ACTIONS(323), + [anon_sym_LT_LT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_SLASH] = ACTIONS(325), + [anon_sym_PERCENT] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(323), + [anon_sym_DASH_EQ] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(323), + [anon_sym_SLASH_EQ] = ACTIONS(323), + [anon_sym_PERCENT_EQ] = ACTIONS(323), + [anon_sym_AMP_EQ] = ACTIONS(323), + [anon_sym_PIPE_EQ] = ACTIONS(323), + [anon_sym_CARET_EQ] = ACTIONS(323), + [anon_sym_LT_LT_EQ] = ACTIONS(323), + [anon_sym_GT_GT_EQ] = ACTIONS(323), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(325), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -17041,50 +17094,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(987), - [sym_macro_invocation] = STATE(1015), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1035), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_SEMI] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(13), @@ -17132,17 +17185,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(303), [anon_sym_EQ] = ACTIONS(329), [anon_sym_COMMA] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(329), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(317), [anon_sym_DOT_DOT_DOT] = ACTIONS(327), - [anon_sym_DOT_DOT] = ACTIONS(323), + [anon_sym_DOT_DOT] = ACTIONS(319), [anon_sym_DOT_DOT_EQ] = ACTIONS(327), [anon_sym_DASH] = ACTIONS(303), [anon_sym_AMP_AMP] = ACTIONS(327), [anon_sym_PIPE_PIPE] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(321), [anon_sym_CARET] = ACTIONS(329), [anon_sym_EQ_EQ] = ACTIONS(327), [anon_sym_BANG_EQ] = ACTIONS(327), @@ -17179,50 +17232,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1168), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1188), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(277), [anon_sym_LBRACE] = ACTIONS(277), @@ -17312,50 +17365,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1201), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -17397,7 +17450,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(341), [anon_sym_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(329), [anon_sym_COLON_COLON] = ACTIONS(343), [anon_sym_AMP] = ACTIONS(353), @@ -17407,7 +17460,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(341), [anon_sym_AMP_AMP] = ACTIONS(327), [anon_sym_PIPE_PIPE] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(321), [anon_sym_CARET] = ACTIONS(329), [anon_sym_EQ_EQ] = ACTIONS(327), [anon_sym_BANG_EQ] = ACTIONS(327), @@ -17444,57 +17497,57 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1203), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(761), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(307), - [anon_sym_QMARK] = ACTIONS(305), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_QMARK] = ACTIONS(311), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -17513,7 +17566,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(333), [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(307), + [anon_sym_as] = ACTIONS(313), [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), @@ -17528,39 +17581,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(307), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(305), - [anon_sym_DOT_DOT] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(307), - [anon_sym_AMP_AMP] = ACTIONS(305), - [anon_sym_PIPE_PIPE] = ACTIONS(305), - [anon_sym_PIPE] = ACTIONS(307), - [anon_sym_CARET] = ACTIONS(307), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_LT_LT] = ACTIONS(307), - [anon_sym_GT_GT] = ACTIONS(307), - [anon_sym_SLASH] = ACTIONS(307), - [anon_sym_PERCENT] = ACTIONS(307), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_PERCENT_EQ] = ACTIONS(305), - [anon_sym_AMP_EQ] = ACTIONS(305), - [anon_sym_PIPE_EQ] = ACTIONS(305), - [anon_sym_CARET_EQ] = ACTIONS(305), - [anon_sym_LT_LT_EQ] = ACTIONS(305), - [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(311), + [anon_sym_DOT_DOT] = ACTIONS(355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(341), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_PIPE_PIPE] = ACTIONS(311), + [anon_sym_PIPE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(313), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), [anon_sym_move] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DOT] = ACTIONS(313), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -17576,57 +17629,57 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(764), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1203), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_QMARK] = ACTIONS(315), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_LBRACE] = ACTIONS(323), + [anon_sym_LBRACK] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_QMARK] = ACTIONS(323), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -17645,7 +17698,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(333), [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(317), + [anon_sym_as] = ACTIONS(325), [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), @@ -17660,39 +17713,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_GT] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(325), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_GT] = ACTIONS(325), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(315), - [anon_sym_DOT_DOT] = ACTIONS(355), - [anon_sym_DOT_DOT_EQ] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(315), - [anon_sym_PIPE_PIPE] = ACTIONS(315), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_DOT_DOT_DOT] = ACTIONS(323), + [anon_sym_DOT_DOT] = ACTIONS(325), + [anon_sym_DOT_DOT_EQ] = ACTIONS(323), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_AMP_AMP] = ACTIONS(323), + [anon_sym_PIPE_PIPE] = ACTIONS(323), [anon_sym_PIPE] = ACTIONS(325), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_EQ_EQ] = ACTIONS(315), - [anon_sym_BANG_EQ] = ACTIONS(315), - [anon_sym_LT_EQ] = ACTIONS(315), - [anon_sym_GT_EQ] = ACTIONS(315), - [anon_sym_LT_LT] = ACTIONS(317), - [anon_sym_GT_GT] = ACTIONS(317), - [anon_sym_SLASH] = ACTIONS(317), - [anon_sym_PERCENT] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(315), - [anon_sym_DASH_EQ] = ACTIONS(315), - [anon_sym_STAR_EQ] = ACTIONS(315), - [anon_sym_SLASH_EQ] = ACTIONS(315), - [anon_sym_PERCENT_EQ] = ACTIONS(315), - [anon_sym_AMP_EQ] = ACTIONS(315), - [anon_sym_PIPE_EQ] = ACTIONS(315), - [anon_sym_CARET_EQ] = ACTIONS(315), - [anon_sym_LT_LT_EQ] = ACTIONS(315), - [anon_sym_GT_GT_EQ] = ACTIONS(315), + [anon_sym_CARET] = ACTIONS(325), + [anon_sym_EQ_EQ] = ACTIONS(323), + [anon_sym_BANG_EQ] = ACTIONS(323), + [anon_sym_LT_EQ] = ACTIONS(323), + [anon_sym_GT_EQ] = ACTIONS(323), + [anon_sym_LT_LT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_SLASH] = ACTIONS(325), + [anon_sym_PERCENT] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(323), + [anon_sym_DASH_EQ] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(323), + [anon_sym_SLASH_EQ] = ACTIONS(323), + [anon_sym_PERCENT_EQ] = ACTIONS(323), + [anon_sym_AMP_EQ] = ACTIONS(323), + [anon_sym_PIPE_EQ] = ACTIONS(323), + [anon_sym_CARET_EQ] = ACTIONS(323), + [anon_sym_LT_LT_EQ] = ACTIONS(323), + [anon_sym_GT_GT_EQ] = ACTIONS(323), [anon_sym_move] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(325), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -17708,57 +17761,57 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1213), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1221), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), [sym_loop_label] = STATE(22), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(311), - [anon_sym_QMARK] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_STAR] = ACTIONS(307), + [anon_sym_QMARK] = ACTIONS(305), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -17776,8 +17829,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(333), [anon_sym_str] = ACTIONS(333), [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(313), - [anon_sym_as] = ACTIONS(311), + [anon_sym_SQUOTE] = ACTIONS(309), + [anon_sym_as] = ACTIONS(307), [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), @@ -17792,39 +17845,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(311), + [anon_sym_EQ] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(309), - [anon_sym_DOT_DOT] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_AMP_AMP] = ACTIONS(309), - [anon_sym_PIPE_PIPE] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_EQ_EQ] = ACTIONS(309), - [anon_sym_BANG_EQ] = ACTIONS(309), - [anon_sym_LT_EQ] = ACTIONS(309), - [anon_sym_GT_EQ] = ACTIONS(309), - [anon_sym_LT_LT] = ACTIONS(311), - [anon_sym_GT_GT] = ACTIONS(311), - [anon_sym_SLASH] = ACTIONS(311), - [anon_sym_PERCENT] = ACTIONS(311), - [anon_sym_PLUS_EQ] = ACTIONS(309), - [anon_sym_DASH_EQ] = ACTIONS(309), - [anon_sym_STAR_EQ] = ACTIONS(309), - [anon_sym_SLASH_EQ] = ACTIONS(309), - [anon_sym_PERCENT_EQ] = ACTIONS(309), - [anon_sym_AMP_EQ] = ACTIONS(309), - [anon_sym_PIPE_EQ] = ACTIONS(309), - [anon_sym_CARET_EQ] = ACTIONS(309), - [anon_sym_LT_LT_EQ] = ACTIONS(309), - [anon_sym_GT_GT_EQ] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(305), + [anon_sym_DOT_DOT] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(307), + [anon_sym_AMP_AMP] = ACTIONS(305), + [anon_sym_PIPE_PIPE] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(307), + [anon_sym_CARET] = ACTIONS(307), + [anon_sym_EQ_EQ] = ACTIONS(305), + [anon_sym_BANG_EQ] = ACTIONS(305), + [anon_sym_LT_EQ] = ACTIONS(305), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(307), + [anon_sym_SLASH] = ACTIONS(307), + [anon_sym_PERCENT] = ACTIONS(307), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_PERCENT_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [anon_sym_CARET_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), [anon_sym_move] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(311), + [anon_sym_DOT] = ACTIONS(307), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -17840,52 +17893,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1091), - [sym_macro_invocation] = STATE(1015), + [sym_attribute_item] = STATE(37), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1102), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_enum_variant_list_repeat1] = STATE(40), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_enum_variant_list_repeat1] = STATE(37), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(357), @@ -17948,52 +18001,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym_attribute_item] = STATE(582), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1087), - [sym_macro_invocation] = STATE(1015), + [sym_attribute_item] = STATE(592), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_enum_variant_list_repeat1] = STATE(582), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_enum_variant_list_repeat1] = STATE(592), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -18057,50 +18110,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [29] = { [sym_attribute_item] = STATE(28), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1080), - [sym_macro_invocation] = STATE(1015), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1090), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [aux_sym_enum_variant_list_repeat1] = STATE(28), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), @@ -18164,162 +18217,162 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym_else_clause] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(371), - [sym_identifier] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(371), - [anon_sym_macro_rules_BANG] = ACTIONS(371), - [anon_sym_LPAREN] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_RBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(371), - [anon_sym_PLUS] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(373), - [anon_sym_QMARK] = ACTIONS(371), - [anon_sym_u8] = ACTIONS(373), - [anon_sym_i8] = ACTIONS(373), - [anon_sym_u16] = ACTIONS(373), - [anon_sym_i16] = ACTIONS(373), - [anon_sym_u32] = ACTIONS(373), - [anon_sym_i32] = ACTIONS(373), - [anon_sym_u64] = ACTIONS(373), - [anon_sym_i64] = ACTIONS(373), - [anon_sym_u128] = ACTIONS(373), - [anon_sym_i128] = ACTIONS(373), - [anon_sym_isize] = ACTIONS(373), - [anon_sym_usize] = ACTIONS(373), - [anon_sym_f32] = ACTIONS(373), - [anon_sym_f64] = ACTIONS(373), - [anon_sym_bool] = ACTIONS(373), - [anon_sym_str] = ACTIONS(373), - [anon_sym_char] = ACTIONS(373), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_as] = ACTIONS(373), - [anon_sym_async] = ACTIONS(373), - [anon_sym_break] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_default] = ACTIONS(373), - [anon_sym_enum] = ACTIONS(373), - [anon_sym_fn] = ACTIONS(373), - [anon_sym_for] = ACTIONS(373), - [anon_sym_if] = ACTIONS(373), - [anon_sym_impl] = ACTIONS(373), - [anon_sym_let] = ACTIONS(373), - [anon_sym_loop] = ACTIONS(373), - [anon_sym_match] = ACTIONS(373), - [anon_sym_mod] = ACTIONS(373), - [anon_sym_pub] = ACTIONS(373), - [anon_sym_return] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_struct] = ACTIONS(373), - [anon_sym_trait] = ACTIONS(373), - [anon_sym_type] = ACTIONS(373), - [anon_sym_union] = ACTIONS(373), - [anon_sym_unsafe] = ACTIONS(373), - [anon_sym_use] = ACTIONS(373), - [anon_sym_while] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(373), - [anon_sym_EQ] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT_EQ] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(371), - [anon_sym_PIPE_PIPE] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(373), - [anon_sym_CARET] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(371), - [anon_sym_BANG_EQ] = ACTIONS(371), - [anon_sym_LT_EQ] = ACTIONS(371), - [anon_sym_GT_EQ] = ACTIONS(371), - [anon_sym_LT_LT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_SLASH] = ACTIONS(373), - [anon_sym_PERCENT] = ACTIONS(373), - [anon_sym_PLUS_EQ] = ACTIONS(371), - [anon_sym_DASH_EQ] = ACTIONS(371), - [anon_sym_STAR_EQ] = ACTIONS(371), - [anon_sym_SLASH_EQ] = ACTIONS(371), - [anon_sym_PERCENT_EQ] = ACTIONS(371), - [anon_sym_AMP_EQ] = ACTIONS(371), - [anon_sym_PIPE_EQ] = ACTIONS(371), - [anon_sym_CARET_EQ] = ACTIONS(371), - [anon_sym_LT_LT_EQ] = ACTIONS(371), - [anon_sym_GT_GT_EQ] = ACTIONS(371), - [anon_sym_else] = ACTIONS(375), - [anon_sym_move] = ACTIONS(373), - [anon_sym_DOT] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(371), - [aux_sym_string_literal_token1] = ACTIONS(371), - [sym_char_literal] = ACTIONS(371), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(373), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(371), - [sym_raw_string_literal] = ACTIONS(371), - [sym_float_literal] = ACTIONS(371), + [sym_attribute_item] = STATE(42), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1120), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_enum_variant_list_repeat1] = STATE(42), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [31] = { - [sym_attribute_item] = STATE(37), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1112), - [sym_macro_invocation] = STATE(1015), + [sym_attribute_item] = STATE(42), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1120), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_enum_variant_list_repeat1] = STATE(37), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_enum_variant_list_repeat1] = STATE(42), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(377), + [anon_sym_RPAREN] = ACTIONS(373), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -18378,159 +18431,159 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym_attribute_item] = STATE(36), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_enum_variant_list_repeat1] = STATE(36), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(379), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [sym_else_clause] = STATE(56), + [ts_builtin_sym_end] = ACTIONS(375), + [sym_identifier] = ACTIONS(377), + [anon_sym_SEMI] = ACTIONS(375), + [anon_sym_macro_rules_BANG] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(377), + [anon_sym_i8] = ACTIONS(377), + [anon_sym_u16] = ACTIONS(377), + [anon_sym_i16] = ACTIONS(377), + [anon_sym_u32] = ACTIONS(377), + [anon_sym_i32] = ACTIONS(377), + [anon_sym_u64] = ACTIONS(377), + [anon_sym_i64] = ACTIONS(377), + [anon_sym_u128] = ACTIONS(377), + [anon_sym_i128] = ACTIONS(377), + [anon_sym_isize] = ACTIONS(377), + [anon_sym_usize] = ACTIONS(377), + [anon_sym_f32] = ACTIONS(377), + [anon_sym_f64] = ACTIONS(377), + [anon_sym_bool] = ACTIONS(377), + [anon_sym_str] = ACTIONS(377), + [anon_sym_char] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(377), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(377), + [anon_sym_break] = ACTIONS(377), + [anon_sym_const] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(377), + [anon_sym_default] = ACTIONS(377), + [anon_sym_enum] = ACTIONS(377), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_for] = ACTIONS(377), + [anon_sym_if] = ACTIONS(377), + [anon_sym_impl] = ACTIONS(377), + [anon_sym_let] = ACTIONS(377), + [anon_sym_loop] = ACTIONS(377), + [anon_sym_match] = ACTIONS(377), + [anon_sym_mod] = ACTIONS(377), + [anon_sym_pub] = ACTIONS(377), + [anon_sym_return] = ACTIONS(377), + [anon_sym_static] = ACTIONS(377), + [anon_sym_struct] = ACTIONS(377), + [anon_sym_trait] = ACTIONS(377), + [anon_sym_type] = ACTIONS(377), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(377), + [anon_sym_use] = ACTIONS(377), + [anon_sym_while] = ACTIONS(377), + [anon_sym_POUND] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_extern] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_else] = ACTIONS(379), + [anon_sym_move] = ACTIONS(377), + [anon_sym_DOT] = ACTIONS(377), + [sym_integer_literal] = ACTIONS(375), + [aux_sym_string_literal_token1] = ACTIONS(375), + [sym_char_literal] = ACTIONS(375), + [anon_sym_true] = ACTIONS(377), + [anon_sym_false] = ACTIONS(377), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(377), + [sym_super] = ACTIONS(377), + [sym_crate] = ACTIONS(377), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(375), + [sym_float_literal] = ACTIONS(375), [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym_attribute_item] = STATE(36), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(1015), + [sym_attribute_item] = STATE(39), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1114), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_enum_variant_list_repeat1] = STATE(36), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_enum_variant_list_repeat1] = STATE(39), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(381), @@ -18592,7 +18645,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym_else_clause] = STATE(43), + [sym_else_clause] = STATE(62), [ts_builtin_sym_end] = ACTIONS(383), [sym_identifier] = ACTIONS(385), [anon_sym_SEMI] = ACTIONS(383), @@ -18681,7 +18734,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(383), [anon_sym_LT_LT_EQ] = ACTIONS(383), [anon_sym_GT_GT_EQ] = ACTIONS(383), - [anon_sym_else] = ACTIONS(375), + [anon_sym_else] = ACTIONS(379), [anon_sym_move] = ACTIONS(385), [anon_sym_DOT] = ACTIONS(385), [sym_integer_literal] = ACTIONS(383), @@ -18699,52 +18752,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym_attribute_item] = STATE(36), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(1015), + [sym_attribute_item] = STATE(42), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1120), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_enum_variant_list_repeat1] = STATE(36), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_enum_variant_list_repeat1] = STATE(42), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(387), @@ -18806,218 +18859,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym_attribute_item] = STATE(582), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1130), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_enum_variant_list_repeat1] = STATE(582), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [37] = { - [sym_attribute_item] = STATE(582), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1198), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_enum_variant_list_repeat1] = STATE(582), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [38] = { [ts_builtin_sym_end] = ACTIONS(389), [sym_identifier] = ACTIONS(391), [anon_sym_SEMI] = ACTIONS(389), @@ -19123,7 +18964,113 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(389), [sym_block_comment] = ACTIONS(3), }, - [39] = { + [37] = { + [sym_attribute_item] = STATE(592), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1103), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_enum_variant_list_repeat1] = STATE(592), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [38] = { [ts_builtin_sym_end] = ACTIONS(393), [sym_identifier] = ACTIONS(395), [anon_sym_SEMI] = ACTIONS(393), @@ -19229,53 +19176,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(393), [sym_block_comment] = ACTIONS(3), }, - [40] = { - [sym_attribute_item] = STATE(582), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1096), - [sym_macro_invocation] = STATE(1015), + [39] = { + [sym_attribute_item] = STATE(592), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1224), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_enum_variant_list_repeat1] = STATE(582), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_enum_variant_list_repeat1] = STATE(592), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -19335,7 +19282,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [41] = { + [40] = { [ts_builtin_sym_end] = ACTIONS(397), [sym_identifier] = ACTIONS(399), [anon_sym_SEMI] = ACTIONS(397), @@ -19441,53 +19388,159 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(397), [sym_block_comment] = ACTIONS(3), }, - [42] = { - [sym_attribute_item] = STATE(36), - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(1015), + [41] = { + [sym_attribute_item] = STATE(42), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1120), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_enum_variant_list_repeat1] = STATE(36), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_enum_variant_list_repeat1] = STATE(42), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [42] = { + [sym_attribute_item] = STATE(592), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1148), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_enum_variant_list_repeat1] = STATE(592), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -19863,54 +19916,264 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [46] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1101), - [sym_macro_invocation] = STATE(1015), + [ts_builtin_sym_end] = ACTIONS(413), + [sym_identifier] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_macro_rules_BANG] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(413), + [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_QMARK] = ACTIONS(413), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_as] = ACTIONS(415), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(415), + [anon_sym_const] = ACTIONS(415), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_default] = ACTIONS(415), + [anon_sym_enum] = ACTIONS(415), + [anon_sym_fn] = ACTIONS(415), + [anon_sym_for] = ACTIONS(415), + [anon_sym_if] = ACTIONS(415), + [anon_sym_impl] = ACTIONS(415), + [anon_sym_let] = ACTIONS(415), + [anon_sym_loop] = ACTIONS(415), + [anon_sym_match] = ACTIONS(415), + [anon_sym_mod] = ACTIONS(415), + [anon_sym_pub] = ACTIONS(415), + [anon_sym_return] = ACTIONS(415), + [anon_sym_static] = ACTIONS(415), + [anon_sym_struct] = ACTIONS(415), + [anon_sym_trait] = ACTIONS(415), + [anon_sym_type] = ACTIONS(415), + [anon_sym_union] = ACTIONS(415), + [anon_sym_unsafe] = ACTIONS(415), + [anon_sym_use] = ACTIONS(415), + [anon_sym_while] = ACTIONS(415), + [anon_sym_POUND] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(415), + [anon_sym_EQ] = ACTIONS(415), + [anon_sym_extern] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT] = ACTIONS(415), + [anon_sym_DOT_DOT_EQ] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [anon_sym_PIPE] = ACTIONS(415), + [anon_sym_CARET] = ACTIONS(415), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(415), + [anon_sym_GT_GT] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(415), + [anon_sym_PERCENT] = ACTIONS(415), + [anon_sym_PLUS_EQ] = ACTIONS(413), + [anon_sym_DASH_EQ] = ACTIONS(413), + [anon_sym_STAR_EQ] = ACTIONS(413), + [anon_sym_SLASH_EQ] = ACTIONS(413), + [anon_sym_PERCENT_EQ] = ACTIONS(413), + [anon_sym_AMP_EQ] = ACTIONS(413), + [anon_sym_PIPE_EQ] = ACTIONS(413), + [anon_sym_CARET_EQ] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(413), + [anon_sym_GT_GT_EQ] = ACTIONS(413), + [anon_sym_move] = ACTIONS(415), + [anon_sym_DOT] = ACTIONS(415), + [sym_integer_literal] = ACTIONS(413), + [aux_sym_string_literal_token1] = ACTIONS(413), + [sym_char_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(415), + [sym_super] = ACTIONS(415), + [sym_crate] = ACTIONS(415), + [sym_metavariable] = ACTIONS(413), + [sym_raw_string_literal] = ACTIONS(413), + [sym_float_literal] = ACTIONS(413), + [sym_block_comment] = ACTIONS(3), + }, + [47] = { + [ts_builtin_sym_end] = ACTIONS(417), + [sym_identifier] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_macro_rules_BANG] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(417), + [anon_sym_u8] = ACTIONS(419), + [anon_sym_i8] = ACTIONS(419), + [anon_sym_u16] = ACTIONS(419), + [anon_sym_i16] = ACTIONS(419), + [anon_sym_u32] = ACTIONS(419), + [anon_sym_i32] = ACTIONS(419), + [anon_sym_u64] = ACTIONS(419), + [anon_sym_i64] = ACTIONS(419), + [anon_sym_u128] = ACTIONS(419), + [anon_sym_i128] = ACTIONS(419), + [anon_sym_isize] = ACTIONS(419), + [anon_sym_usize] = ACTIONS(419), + [anon_sym_f32] = ACTIONS(419), + [anon_sym_f64] = ACTIONS(419), + [anon_sym_bool] = ACTIONS(419), + [anon_sym_str] = ACTIONS(419), + [anon_sym_char] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(419), + [anon_sym_as] = ACTIONS(419), + [anon_sym_async] = ACTIONS(419), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(419), + [anon_sym_default] = ACTIONS(419), + [anon_sym_enum] = ACTIONS(419), + [anon_sym_fn] = ACTIONS(419), + [anon_sym_for] = ACTIONS(419), + [anon_sym_if] = ACTIONS(419), + [anon_sym_impl] = ACTIONS(419), + [anon_sym_let] = ACTIONS(419), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(419), + [anon_sym_mod] = ACTIONS(419), + [anon_sym_pub] = ACTIONS(419), + [anon_sym_return] = ACTIONS(419), + [anon_sym_static] = ACTIONS(419), + [anon_sym_struct] = ACTIONS(419), + [anon_sym_trait] = ACTIONS(419), + [anon_sym_type] = ACTIONS(419), + [anon_sym_union] = ACTIONS(419), + [anon_sym_unsafe] = ACTIONS(419), + [anon_sym_use] = ACTIONS(419), + [anon_sym_while] = ACTIONS(419), + [anon_sym_POUND] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_extern] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_COLON_COLON] = ACTIONS(417), + [anon_sym_AMP] = ACTIONS(419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(417), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(417), + [anon_sym_BANG_EQ] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(419), + [anon_sym_GT_GT] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(417), + [anon_sym_DASH_EQ] = ACTIONS(417), + [anon_sym_STAR_EQ] = ACTIONS(417), + [anon_sym_SLASH_EQ] = ACTIONS(417), + [anon_sym_PERCENT_EQ] = ACTIONS(417), + [anon_sym_AMP_EQ] = ACTIONS(417), + [anon_sym_PIPE_EQ] = ACTIONS(417), + [anon_sym_CARET_EQ] = ACTIONS(417), + [anon_sym_LT_LT_EQ] = ACTIONS(417), + [anon_sym_GT_GT_EQ] = ACTIONS(417), + [anon_sym_move] = ACTIONS(419), + [anon_sym_DOT] = ACTIONS(419), + [sym_integer_literal] = ACTIONS(417), + [aux_sym_string_literal_token1] = ACTIONS(417), + [sym_char_literal] = ACTIONS(417), + [anon_sym_true] = ACTIONS(419), + [anon_sym_false] = ACTIONS(419), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(419), + [sym_super] = ACTIONS(419), + [sym_crate] = ACTIONS(419), + [sym_metavariable] = ACTIONS(417), + [sym_raw_string_literal] = ACTIONS(417), + [sym_float_literal] = ACTIONS(417), + [sym_block_comment] = ACTIONS(3), + }, + [48] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1171), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_tuple_expression_repeat1] = STATE(56), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_tuple_expression_repeat1] = STATE(72), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(413), + [anon_sym_RPAREN] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -19967,216 +20230,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [47] = { - [ts_builtin_sym_end] = ACTIONS(415), - [sym_identifier] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [anon_sym_macro_rules_BANG] = ACTIONS(415), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_LBRACE] = ACTIONS(415), - [anon_sym_RBRACE] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(415), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_QMARK] = ACTIONS(415), - [anon_sym_u8] = ACTIONS(417), - [anon_sym_i8] = ACTIONS(417), - [anon_sym_u16] = ACTIONS(417), - [anon_sym_i16] = ACTIONS(417), - [anon_sym_u32] = ACTIONS(417), - [anon_sym_i32] = ACTIONS(417), - [anon_sym_u64] = ACTIONS(417), - [anon_sym_i64] = ACTIONS(417), - [anon_sym_u128] = ACTIONS(417), - [anon_sym_i128] = ACTIONS(417), - [anon_sym_isize] = ACTIONS(417), - [anon_sym_usize] = ACTIONS(417), - [anon_sym_f32] = ACTIONS(417), - [anon_sym_f64] = ACTIONS(417), - [anon_sym_bool] = ACTIONS(417), - [anon_sym_str] = ACTIONS(417), - [anon_sym_char] = ACTIONS(417), - [anon_sym_SQUOTE] = ACTIONS(417), - [anon_sym_as] = ACTIONS(417), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(417), - [anon_sym_const] = ACTIONS(417), - [anon_sym_continue] = ACTIONS(417), - [anon_sym_default] = ACTIONS(417), - [anon_sym_enum] = ACTIONS(417), - [anon_sym_fn] = ACTIONS(417), - [anon_sym_for] = ACTIONS(417), - [anon_sym_if] = ACTIONS(417), - [anon_sym_impl] = ACTIONS(417), - [anon_sym_let] = ACTIONS(417), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(417), - [anon_sym_mod] = ACTIONS(417), - [anon_sym_pub] = ACTIONS(417), - [anon_sym_return] = ACTIONS(417), - [anon_sym_static] = ACTIONS(417), - [anon_sym_struct] = ACTIONS(417), - [anon_sym_trait] = ACTIONS(417), - [anon_sym_type] = ACTIONS(417), - [anon_sym_union] = ACTIONS(417), - [anon_sym_unsafe] = ACTIONS(417), - [anon_sym_use] = ACTIONS(417), - [anon_sym_while] = ACTIONS(417), - [anon_sym_POUND] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_EQ] = ACTIONS(417), - [anon_sym_extern] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(415), - [anon_sym_DOT_DOT] = ACTIONS(417), - [anon_sym_DOT_DOT_EQ] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_EQ_EQ] = ACTIONS(415), - [anon_sym_BANG_EQ] = ACTIONS(415), - [anon_sym_LT_EQ] = ACTIONS(415), - [anon_sym_GT_EQ] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_EQ] = ACTIONS(415), - [anon_sym_DASH_EQ] = ACTIONS(415), - [anon_sym_STAR_EQ] = ACTIONS(415), - [anon_sym_SLASH_EQ] = ACTIONS(415), - [anon_sym_PERCENT_EQ] = ACTIONS(415), - [anon_sym_AMP_EQ] = ACTIONS(415), - [anon_sym_PIPE_EQ] = ACTIONS(415), - [anon_sym_CARET_EQ] = ACTIONS(415), - [anon_sym_LT_LT_EQ] = ACTIONS(415), - [anon_sym_GT_GT_EQ] = ACTIONS(415), - [anon_sym_move] = ACTIONS(417), - [anon_sym_DOT] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(415), - [aux_sym_string_literal_token1] = ACTIONS(415), - [sym_char_literal] = ACTIONS(415), - [anon_sym_true] = ACTIONS(417), - [anon_sym_false] = ACTIONS(417), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(417), - [sym_super] = ACTIONS(417), - [sym_crate] = ACTIONS(417), - [sym_metavariable] = ACTIONS(415), - [sym_raw_string_literal] = ACTIONS(415), - [sym_float_literal] = ACTIONS(415), - [sym_block_comment] = ACTIONS(3), - }, - [48] = { - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_macro_rules_BANG] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(421), - [anon_sym_STAR] = ACTIONS(421), - [anon_sym_QMARK] = ACTIONS(419), - [anon_sym_u8] = ACTIONS(421), - [anon_sym_i8] = ACTIONS(421), - [anon_sym_u16] = ACTIONS(421), - [anon_sym_i16] = ACTIONS(421), - [anon_sym_u32] = ACTIONS(421), - [anon_sym_i32] = ACTIONS(421), - [anon_sym_u64] = ACTIONS(421), - [anon_sym_i64] = ACTIONS(421), - [anon_sym_u128] = ACTIONS(421), - [anon_sym_i128] = ACTIONS(421), - [anon_sym_isize] = ACTIONS(421), - [anon_sym_usize] = ACTIONS(421), - [anon_sym_f32] = ACTIONS(421), - [anon_sym_f64] = ACTIONS(421), - [anon_sym_bool] = ACTIONS(421), - [anon_sym_str] = ACTIONS(421), - [anon_sym_char] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(421), - [anon_sym_as] = ACTIONS(421), - [anon_sym_async] = ACTIONS(421), - [anon_sym_break] = ACTIONS(421), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_default] = ACTIONS(421), - [anon_sym_enum] = ACTIONS(421), - [anon_sym_fn] = ACTIONS(421), - [anon_sym_for] = ACTIONS(421), - [anon_sym_if] = ACTIONS(421), - [anon_sym_impl] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_loop] = ACTIONS(421), - [anon_sym_match] = ACTIONS(421), - [anon_sym_mod] = ACTIONS(421), - [anon_sym_pub] = ACTIONS(421), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(421), - [anon_sym_struct] = ACTIONS(421), - [anon_sym_trait] = ACTIONS(421), - [anon_sym_type] = ACTIONS(421), - [anon_sym_union] = ACTIONS(421), - [anon_sym_unsafe] = ACTIONS(421), - [anon_sym_use] = ACTIONS(421), - [anon_sym_while] = ACTIONS(421), - [anon_sym_POUND] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_extern] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(421), - [anon_sym_GT] = ACTIONS(421), - [anon_sym_COLON_COLON] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_DOT_DOT] = ACTIONS(421), - [anon_sym_DOT_DOT_EQ] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(421), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(421), - [anon_sym_CARET] = ACTIONS(421), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(421), - [anon_sym_GT_GT] = ACTIONS(421), - [anon_sym_SLASH] = ACTIONS(421), - [anon_sym_PERCENT] = ACTIONS(421), - [anon_sym_PLUS_EQ] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), - [anon_sym_STAR_EQ] = ACTIONS(419), - [anon_sym_SLASH_EQ] = ACTIONS(419), - [anon_sym_PERCENT_EQ] = ACTIONS(419), - [anon_sym_AMP_EQ] = ACTIONS(419), - [anon_sym_PIPE_EQ] = ACTIONS(419), - [anon_sym_CARET_EQ] = ACTIONS(419), - [anon_sym_LT_LT_EQ] = ACTIONS(419), - [anon_sym_GT_GT_EQ] = ACTIONS(419), - [anon_sym_move] = ACTIONS(421), - [anon_sym_DOT] = ACTIONS(421), - [sym_integer_literal] = ACTIONS(419), - [aux_sym_string_literal_token1] = ACTIONS(419), - [sym_char_literal] = ACTIONS(419), - [anon_sym_true] = ACTIONS(421), - [anon_sym_false] = ACTIONS(421), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(421), - [sym_super] = ACTIONS(421), - [sym_crate] = ACTIONS(421), - [sym_metavariable] = ACTIONS(419), - [sym_raw_string_literal] = ACTIONS(419), - [sym_float_literal] = ACTIONS(419), - [sym_block_comment] = ACTIONS(3), - }, [49] = { [ts_builtin_sym_end] = ACTIONS(423), [sym_identifier] = ACTIONS(425), @@ -20598,54 +20651,1104 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [53] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1109), - [sym_macro_invocation] = STATE(1015), + [ts_builtin_sym_end] = ACTIONS(439), + [sym_identifier] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_macro_rules_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(441), + [anon_sym_QMARK] = ACTIONS(439), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_isize] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_f32] = ACTIONS(441), + [anon_sym_f64] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_str] = ACTIONS(441), + [anon_sym_char] = ACTIONS(441), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_as] = ACTIONS(441), + [anon_sym_async] = ACTIONS(441), + [anon_sym_break] = ACTIONS(441), + [anon_sym_const] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(441), + [anon_sym_default] = ACTIONS(441), + [anon_sym_enum] = ACTIONS(441), + [anon_sym_fn] = ACTIONS(441), + [anon_sym_for] = ACTIONS(441), + [anon_sym_if] = ACTIONS(441), + [anon_sym_impl] = ACTIONS(441), + [anon_sym_let] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(441), + [anon_sym_match] = ACTIONS(441), + [anon_sym_mod] = ACTIONS(441), + [anon_sym_pub] = ACTIONS(441), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(441), + [anon_sym_struct] = ACTIONS(441), + [anon_sym_trait] = ACTIONS(441), + [anon_sym_type] = ACTIONS(441), + [anon_sym_union] = ACTIONS(441), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_use] = ACTIONS(441), + [anon_sym_while] = ACTIONS(441), + [anon_sym_POUND] = ACTIONS(439), + [anon_sym_BANG] = ACTIONS(441), + [anon_sym_EQ] = ACTIONS(441), + [anon_sym_extern] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(441), + [anon_sym_GT] = ACTIONS(441), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(439), + [anon_sym_DOT_DOT] = ACTIONS(441), + [anon_sym_DOT_DOT_EQ] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_EQ_EQ] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(439), + [anon_sym_LT_EQ] = ACTIONS(439), + [anon_sym_GT_EQ] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(441), + [anon_sym_GT_GT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_PLUS_EQ] = ACTIONS(439), + [anon_sym_DASH_EQ] = ACTIONS(439), + [anon_sym_STAR_EQ] = ACTIONS(439), + [anon_sym_SLASH_EQ] = ACTIONS(439), + [anon_sym_PERCENT_EQ] = ACTIONS(439), + [anon_sym_AMP_EQ] = ACTIONS(439), + [anon_sym_PIPE_EQ] = ACTIONS(439), + [anon_sym_CARET_EQ] = ACTIONS(439), + [anon_sym_LT_LT_EQ] = ACTIONS(439), + [anon_sym_GT_GT_EQ] = ACTIONS(439), + [anon_sym_move] = ACTIONS(441), + [anon_sym_DOT] = ACTIONS(441), + [sym_integer_literal] = ACTIONS(439), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(439), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(441), + [sym_super] = ACTIONS(441), + [sym_crate] = ACTIONS(441), + [sym_metavariable] = ACTIONS(439), + [sym_raw_string_literal] = ACTIONS(439), + [sym_float_literal] = ACTIONS(439), + [sym_block_comment] = ACTIONS(3), + }, + [54] = { + [ts_builtin_sym_end] = ACTIONS(443), + [sym_identifier] = ACTIONS(445), + [anon_sym_SEMI] = ACTIONS(443), + [anon_sym_macro_rules_BANG] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(445), + [anon_sym_QMARK] = ACTIONS(443), + [anon_sym_u8] = ACTIONS(445), + [anon_sym_i8] = ACTIONS(445), + [anon_sym_u16] = ACTIONS(445), + [anon_sym_i16] = ACTIONS(445), + [anon_sym_u32] = ACTIONS(445), + [anon_sym_i32] = ACTIONS(445), + [anon_sym_u64] = ACTIONS(445), + [anon_sym_i64] = ACTIONS(445), + [anon_sym_u128] = ACTIONS(445), + [anon_sym_i128] = ACTIONS(445), + [anon_sym_isize] = ACTIONS(445), + [anon_sym_usize] = ACTIONS(445), + [anon_sym_f32] = ACTIONS(445), + [anon_sym_f64] = ACTIONS(445), + [anon_sym_bool] = ACTIONS(445), + [anon_sym_str] = ACTIONS(445), + [anon_sym_char] = ACTIONS(445), + [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_as] = ACTIONS(445), + [anon_sym_async] = ACTIONS(445), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_default] = ACTIONS(445), + [anon_sym_enum] = ACTIONS(445), + [anon_sym_fn] = ACTIONS(445), + [anon_sym_for] = ACTIONS(445), + [anon_sym_if] = ACTIONS(445), + [anon_sym_impl] = ACTIONS(445), + [anon_sym_let] = ACTIONS(445), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(445), + [anon_sym_mod] = ACTIONS(445), + [anon_sym_pub] = ACTIONS(445), + [anon_sym_return] = ACTIONS(445), + [anon_sym_static] = ACTIONS(445), + [anon_sym_struct] = ACTIONS(445), + [anon_sym_trait] = ACTIONS(445), + [anon_sym_type] = ACTIONS(445), + [anon_sym_union] = ACTIONS(445), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_use] = ACTIONS(445), + [anon_sym_while] = ACTIONS(445), + [anon_sym_POUND] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(445), + [anon_sym_extern] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), + [anon_sym_COLON_COLON] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_DOT_DOT_DOT] = ACTIONS(443), + [anon_sym_DOT_DOT] = ACTIONS(445), + [anon_sym_DOT_DOT_EQ] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_AMP_AMP] = ACTIONS(443), + [anon_sym_PIPE_PIPE] = ACTIONS(443), + [anon_sym_PIPE] = ACTIONS(445), + [anon_sym_CARET] = ACTIONS(445), + [anon_sym_EQ_EQ] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(443), + [anon_sym_LT_EQ] = ACTIONS(443), + [anon_sym_GT_EQ] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(445), + [anon_sym_GT_GT] = ACTIONS(445), + [anon_sym_SLASH] = ACTIONS(445), + [anon_sym_PERCENT] = ACTIONS(445), + [anon_sym_PLUS_EQ] = ACTIONS(443), + [anon_sym_DASH_EQ] = ACTIONS(443), + [anon_sym_STAR_EQ] = ACTIONS(443), + [anon_sym_SLASH_EQ] = ACTIONS(443), + [anon_sym_PERCENT_EQ] = ACTIONS(443), + [anon_sym_AMP_EQ] = ACTIONS(443), + [anon_sym_PIPE_EQ] = ACTIONS(443), + [anon_sym_CARET_EQ] = ACTIONS(443), + [anon_sym_LT_LT_EQ] = ACTIONS(443), + [anon_sym_GT_GT_EQ] = ACTIONS(443), + [anon_sym_move] = ACTIONS(445), + [anon_sym_DOT] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(443), + [aux_sym_string_literal_token1] = ACTIONS(443), + [sym_char_literal] = ACTIONS(443), + [anon_sym_true] = ACTIONS(445), + [anon_sym_false] = ACTIONS(445), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(445), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(443), + [sym_raw_string_literal] = ACTIONS(443), + [sym_float_literal] = ACTIONS(443), + [sym_block_comment] = ACTIONS(3), + }, + [55] = { + [ts_builtin_sym_end] = ACTIONS(447), + [sym_identifier] = ACTIONS(449), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym_macro_rules_BANG] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_RBRACE] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(449), + [anon_sym_QMARK] = ACTIONS(447), + [anon_sym_u8] = ACTIONS(449), + [anon_sym_i8] = ACTIONS(449), + [anon_sym_u16] = ACTIONS(449), + [anon_sym_i16] = ACTIONS(449), + [anon_sym_u32] = ACTIONS(449), + [anon_sym_i32] = ACTIONS(449), + [anon_sym_u64] = ACTIONS(449), + [anon_sym_i64] = ACTIONS(449), + [anon_sym_u128] = ACTIONS(449), + [anon_sym_i128] = ACTIONS(449), + [anon_sym_isize] = ACTIONS(449), + [anon_sym_usize] = ACTIONS(449), + [anon_sym_f32] = ACTIONS(449), + [anon_sym_f64] = ACTIONS(449), + [anon_sym_bool] = ACTIONS(449), + [anon_sym_str] = ACTIONS(449), + [anon_sym_char] = ACTIONS(449), + [anon_sym_SQUOTE] = ACTIONS(449), + [anon_sym_as] = ACTIONS(449), + [anon_sym_async] = ACTIONS(449), + [anon_sym_break] = ACTIONS(449), + [anon_sym_const] = ACTIONS(449), + [anon_sym_continue] = ACTIONS(449), + [anon_sym_default] = ACTIONS(449), + [anon_sym_enum] = ACTIONS(449), + [anon_sym_fn] = ACTIONS(449), + [anon_sym_for] = ACTIONS(449), + [anon_sym_if] = ACTIONS(449), + [anon_sym_impl] = ACTIONS(449), + [anon_sym_let] = ACTIONS(449), + [anon_sym_loop] = ACTIONS(449), + [anon_sym_match] = ACTIONS(449), + [anon_sym_mod] = ACTIONS(449), + [anon_sym_pub] = ACTIONS(449), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(449), + [anon_sym_struct] = ACTIONS(449), + [anon_sym_trait] = ACTIONS(449), + [anon_sym_type] = ACTIONS(449), + [anon_sym_union] = ACTIONS(449), + [anon_sym_unsafe] = ACTIONS(449), + [anon_sym_use] = ACTIONS(449), + [anon_sym_while] = ACTIONS(449), + [anon_sym_POUND] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(449), + [anon_sym_EQ] = ACTIONS(449), + [anon_sym_extern] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_AMP_AMP] = ACTIONS(447), + [anon_sym_PIPE_PIPE] = ACTIONS(447), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_EQ_EQ] = ACTIONS(447), + [anon_sym_BANG_EQ] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(447), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_PERCENT] = ACTIONS(449), + [anon_sym_PLUS_EQ] = ACTIONS(447), + [anon_sym_DASH_EQ] = ACTIONS(447), + [anon_sym_STAR_EQ] = ACTIONS(447), + [anon_sym_SLASH_EQ] = ACTIONS(447), + [anon_sym_PERCENT_EQ] = ACTIONS(447), + [anon_sym_AMP_EQ] = ACTIONS(447), + [anon_sym_PIPE_EQ] = ACTIONS(447), + [anon_sym_CARET_EQ] = ACTIONS(447), + [anon_sym_LT_LT_EQ] = ACTIONS(447), + [anon_sym_GT_GT_EQ] = ACTIONS(447), + [anon_sym_move] = ACTIONS(449), + [anon_sym_DOT] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(447), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(449), + [anon_sym_false] = ACTIONS(449), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(449), + [sym_super] = ACTIONS(449), + [sym_crate] = ACTIONS(449), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(447), + [sym_float_literal] = ACTIONS(447), + [sym_block_comment] = ACTIONS(3), + }, + [56] = { + [ts_builtin_sym_end] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [anon_sym_SEMI] = ACTIONS(451), + [anon_sym_macro_rules_BANG] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_LBRACE] = ACTIONS(451), + [anon_sym_RBRACE] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_STAR] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(453), + [anon_sym_i8] = ACTIONS(453), + [anon_sym_u16] = ACTIONS(453), + [anon_sym_i16] = ACTIONS(453), + [anon_sym_u32] = ACTIONS(453), + [anon_sym_i32] = ACTIONS(453), + [anon_sym_u64] = ACTIONS(453), + [anon_sym_i64] = ACTIONS(453), + [anon_sym_u128] = ACTIONS(453), + [anon_sym_i128] = ACTIONS(453), + [anon_sym_isize] = ACTIONS(453), + [anon_sym_usize] = ACTIONS(453), + [anon_sym_f32] = ACTIONS(453), + [anon_sym_f64] = ACTIONS(453), + [anon_sym_bool] = ACTIONS(453), + [anon_sym_str] = ACTIONS(453), + [anon_sym_char] = ACTIONS(453), + [anon_sym_SQUOTE] = ACTIONS(453), + [anon_sym_as] = ACTIONS(453), + [anon_sym_async] = ACTIONS(453), + [anon_sym_break] = ACTIONS(453), + [anon_sym_const] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(453), + [anon_sym_default] = ACTIONS(453), + [anon_sym_enum] = ACTIONS(453), + [anon_sym_fn] = ACTIONS(453), + [anon_sym_for] = ACTIONS(453), + [anon_sym_if] = ACTIONS(453), + [anon_sym_impl] = ACTIONS(453), + [anon_sym_let] = ACTIONS(453), + [anon_sym_loop] = ACTIONS(453), + [anon_sym_match] = ACTIONS(453), + [anon_sym_mod] = ACTIONS(453), + [anon_sym_pub] = ACTIONS(453), + [anon_sym_return] = ACTIONS(453), + [anon_sym_static] = ACTIONS(453), + [anon_sym_struct] = ACTIONS(453), + [anon_sym_trait] = ACTIONS(453), + [anon_sym_type] = ACTIONS(453), + [anon_sym_union] = ACTIONS(453), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_use] = ACTIONS(453), + [anon_sym_while] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_extern] = ACTIONS(453), + [anon_sym_LT] = ACTIONS(453), + [anon_sym_GT] = ACTIONS(453), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym_AMP] = ACTIONS(453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(451), + [anon_sym_PIPE_PIPE] = ACTIONS(451), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(451), + [anon_sym_BANG_EQ] = ACTIONS(451), + [anon_sym_LT_EQ] = ACTIONS(451), + [anon_sym_GT_EQ] = ACTIONS(451), + [anon_sym_LT_LT] = ACTIONS(453), + [anon_sym_GT_GT] = ACTIONS(453), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS_EQ] = ACTIONS(451), + [anon_sym_DASH_EQ] = ACTIONS(451), + [anon_sym_STAR_EQ] = ACTIONS(451), + [anon_sym_SLASH_EQ] = ACTIONS(451), + [anon_sym_PERCENT_EQ] = ACTIONS(451), + [anon_sym_AMP_EQ] = ACTIONS(451), + [anon_sym_PIPE_EQ] = ACTIONS(451), + [anon_sym_CARET_EQ] = ACTIONS(451), + [anon_sym_LT_LT_EQ] = ACTIONS(451), + [anon_sym_GT_GT_EQ] = ACTIONS(451), + [anon_sym_move] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(451), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(453), + [sym_crate] = ACTIONS(453), + [sym_metavariable] = ACTIONS(451), + [sym_raw_string_literal] = ACTIONS(451), + [sym_float_literal] = ACTIONS(451), + [sym_block_comment] = ACTIONS(3), + }, + [57] = { + [ts_builtin_sym_end] = ACTIONS(455), + [sym_identifier] = ACTIONS(457), + [anon_sym_SEMI] = ACTIONS(459), + [anon_sym_macro_rules_BANG] = ACTIONS(455), + [anon_sym_LPAREN] = ACTIONS(459), + [anon_sym_LBRACE] = ACTIONS(455), + [anon_sym_RBRACE] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_u8] = ACTIONS(457), + [anon_sym_i8] = ACTIONS(457), + [anon_sym_u16] = ACTIONS(457), + [anon_sym_i16] = ACTIONS(457), + [anon_sym_u32] = ACTIONS(457), + [anon_sym_i32] = ACTIONS(457), + [anon_sym_u64] = ACTIONS(457), + [anon_sym_i64] = ACTIONS(457), + [anon_sym_u128] = ACTIONS(457), + [anon_sym_i128] = ACTIONS(457), + [anon_sym_isize] = ACTIONS(457), + [anon_sym_usize] = ACTIONS(457), + [anon_sym_f32] = ACTIONS(457), + [anon_sym_f64] = ACTIONS(457), + [anon_sym_bool] = ACTIONS(457), + [anon_sym_str] = ACTIONS(457), + [anon_sym_char] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(457), + [anon_sym_as] = ACTIONS(461), + [anon_sym_async] = ACTIONS(457), + [anon_sym_break] = ACTIONS(457), + [anon_sym_const] = ACTIONS(457), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_default] = ACTIONS(457), + [anon_sym_enum] = ACTIONS(457), + [anon_sym_fn] = ACTIONS(457), + [anon_sym_for] = ACTIONS(457), + [anon_sym_if] = ACTIONS(457), + [anon_sym_impl] = ACTIONS(457), + [anon_sym_let] = ACTIONS(457), + [anon_sym_loop] = ACTIONS(457), + [anon_sym_match] = ACTIONS(457), + [anon_sym_mod] = ACTIONS(457), + [anon_sym_pub] = ACTIONS(457), + [anon_sym_return] = ACTIONS(457), + [anon_sym_static] = ACTIONS(457), + [anon_sym_struct] = ACTIONS(457), + [anon_sym_trait] = ACTIONS(457), + [anon_sym_type] = ACTIONS(457), + [anon_sym_union] = ACTIONS(457), + [anon_sym_unsafe] = ACTIONS(457), + [anon_sym_use] = ACTIONS(457), + [anon_sym_while] = ACTIONS(457), + [anon_sym_POUND] = ACTIONS(455), + [anon_sym_BANG] = ACTIONS(457), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_extern] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_COLON_COLON] = ACTIONS(455), + [anon_sym_AMP] = ACTIONS(461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [anon_sym_DOT_DOT] = ACTIONS(461), + [anon_sym_DOT_DOT_EQ] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_PIPE] = ACTIONS(461), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(459), + [anon_sym_GT_EQ] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(461), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_PERCENT] = ACTIONS(461), + [anon_sym_PLUS_EQ] = ACTIONS(459), + [anon_sym_DASH_EQ] = ACTIONS(459), + [anon_sym_STAR_EQ] = ACTIONS(459), + [anon_sym_SLASH_EQ] = ACTIONS(459), + [anon_sym_PERCENT_EQ] = ACTIONS(459), + [anon_sym_AMP_EQ] = ACTIONS(459), + [anon_sym_PIPE_EQ] = ACTIONS(459), + [anon_sym_CARET_EQ] = ACTIONS(459), + [anon_sym_LT_LT_EQ] = ACTIONS(459), + [anon_sym_GT_GT_EQ] = ACTIONS(459), + [anon_sym_move] = ACTIONS(457), + [anon_sym_DOT] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(455), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(457), + [anon_sym_false] = ACTIONS(457), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(457), + [sym_crate] = ACTIONS(457), + [sym_metavariable] = ACTIONS(455), + [sym_raw_string_literal] = ACTIONS(455), + [sym_float_literal] = ACTIONS(455), + [sym_block_comment] = ACTIONS(3), + }, + [58] = { + [ts_builtin_sym_end] = ACTIONS(463), + [sym_identifier] = ACTIONS(465), + [anon_sym_SEMI] = ACTIONS(463), + [anon_sym_macro_rules_BANG] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(463), + [anon_sym_RBRACE] = ACTIONS(463), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_QMARK] = ACTIONS(463), + [anon_sym_u8] = ACTIONS(465), + [anon_sym_i8] = ACTIONS(465), + [anon_sym_u16] = ACTIONS(465), + [anon_sym_i16] = ACTIONS(465), + [anon_sym_u32] = ACTIONS(465), + [anon_sym_i32] = ACTIONS(465), + [anon_sym_u64] = ACTIONS(465), + [anon_sym_i64] = ACTIONS(465), + [anon_sym_u128] = ACTIONS(465), + [anon_sym_i128] = ACTIONS(465), + [anon_sym_isize] = ACTIONS(465), + [anon_sym_usize] = ACTIONS(465), + [anon_sym_f32] = ACTIONS(465), + [anon_sym_f64] = ACTIONS(465), + [anon_sym_bool] = ACTIONS(465), + [anon_sym_str] = ACTIONS(465), + [anon_sym_char] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(465), + [anon_sym_as] = ACTIONS(465), + [anon_sym_async] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_default] = ACTIONS(465), + [anon_sym_enum] = ACTIONS(465), + [anon_sym_fn] = ACTIONS(465), + [anon_sym_for] = ACTIONS(465), + [anon_sym_if] = ACTIONS(465), + [anon_sym_impl] = ACTIONS(465), + [anon_sym_let] = ACTIONS(465), + [anon_sym_loop] = ACTIONS(465), + [anon_sym_match] = ACTIONS(465), + [anon_sym_mod] = ACTIONS(465), + [anon_sym_pub] = ACTIONS(465), + [anon_sym_return] = ACTIONS(465), + [anon_sym_static] = ACTIONS(465), + [anon_sym_struct] = ACTIONS(465), + [anon_sym_trait] = ACTIONS(465), + [anon_sym_type] = ACTIONS(465), + [anon_sym_union] = ACTIONS(465), + [anon_sym_unsafe] = ACTIONS(465), + [anon_sym_use] = ACTIONS(465), + [anon_sym_while] = ACTIONS(465), + [anon_sym_POUND] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_EQ] = ACTIONS(465), + [anon_sym_extern] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(465), + [anon_sym_GT] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(463), + [anon_sym_DOT_DOT] = ACTIONS(465), + [anon_sym_DOT_DOT_EQ] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(465), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE_PIPE] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_BANG_EQ] = ACTIONS(463), + [anon_sym_LT_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(463), + [anon_sym_LT_LT] = ACTIONS(465), + [anon_sym_GT_GT] = ACTIONS(465), + [anon_sym_SLASH] = ACTIONS(465), + [anon_sym_PERCENT] = ACTIONS(465), + [anon_sym_PLUS_EQ] = ACTIONS(463), + [anon_sym_DASH_EQ] = ACTIONS(463), + [anon_sym_STAR_EQ] = ACTIONS(463), + [anon_sym_SLASH_EQ] = ACTIONS(463), + [anon_sym_PERCENT_EQ] = ACTIONS(463), + [anon_sym_AMP_EQ] = ACTIONS(463), + [anon_sym_PIPE_EQ] = ACTIONS(463), + [anon_sym_CARET_EQ] = ACTIONS(463), + [anon_sym_LT_LT_EQ] = ACTIONS(463), + [anon_sym_GT_GT_EQ] = ACTIONS(463), + [anon_sym_move] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(465), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_crate] = ACTIONS(465), + [sym_metavariable] = ACTIONS(463), + [sym_raw_string_literal] = ACTIONS(463), + [sym_float_literal] = ACTIONS(463), + [sym_block_comment] = ACTIONS(3), + }, + [59] = { + [ts_builtin_sym_end] = ACTIONS(467), + [sym_identifier] = ACTIONS(469), + [anon_sym_SEMI] = ACTIONS(467), + [anon_sym_macro_rules_BANG] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_RBRACE] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(467), + [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_SQUOTE] = ACTIONS(469), + [anon_sym_as] = ACTIONS(469), + [anon_sym_async] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_const] = ACTIONS(469), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_default] = ACTIONS(469), + [anon_sym_enum] = ACTIONS(469), + [anon_sym_fn] = ACTIONS(469), + [anon_sym_for] = ACTIONS(469), + [anon_sym_if] = ACTIONS(469), + [anon_sym_impl] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_loop] = ACTIONS(469), + [anon_sym_match] = ACTIONS(469), + [anon_sym_mod] = ACTIONS(469), + [anon_sym_pub] = ACTIONS(469), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(469), + [anon_sym_struct] = ACTIONS(469), + [anon_sym_trait] = ACTIONS(469), + [anon_sym_type] = ACTIONS(469), + [anon_sym_union] = ACTIONS(469), + [anon_sym_unsafe] = ACTIONS(469), + [anon_sym_use] = ACTIONS(469), + [anon_sym_while] = ACTIONS(469), + [anon_sym_POUND] = ACTIONS(467), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(469), + [anon_sym_extern] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_AMP] = ACTIONS(469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(467), + [anon_sym_DOT_DOT] = ACTIONS(469), + [anon_sym_DOT_DOT_EQ] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(467), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_CARET] = ACTIONS(469), + [anon_sym_EQ_EQ] = ACTIONS(467), + [anon_sym_BANG_EQ] = ACTIONS(467), + [anon_sym_LT_EQ] = ACTIONS(467), + [anon_sym_GT_EQ] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(469), + [anon_sym_GT_GT] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(469), + [anon_sym_PERCENT] = ACTIONS(469), + [anon_sym_PLUS_EQ] = ACTIONS(467), + [anon_sym_DASH_EQ] = ACTIONS(467), + [anon_sym_STAR_EQ] = ACTIONS(467), + [anon_sym_SLASH_EQ] = ACTIONS(467), + [anon_sym_PERCENT_EQ] = ACTIONS(467), + [anon_sym_AMP_EQ] = ACTIONS(467), + [anon_sym_PIPE_EQ] = ACTIONS(467), + [anon_sym_CARET_EQ] = ACTIONS(467), + [anon_sym_LT_LT_EQ] = ACTIONS(467), + [anon_sym_GT_GT_EQ] = ACTIONS(467), + [anon_sym_move] = ACTIONS(469), + [anon_sym_DOT] = ACTIONS(469), + [sym_integer_literal] = ACTIONS(467), + [aux_sym_string_literal_token1] = ACTIONS(467), + [sym_char_literal] = ACTIONS(467), + [anon_sym_true] = ACTIONS(469), + [anon_sym_false] = ACTIONS(469), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(467), + [sym_raw_string_literal] = ACTIONS(467), + [sym_float_literal] = ACTIONS(467), + [sym_block_comment] = ACTIONS(3), + }, + [60] = { + [ts_builtin_sym_end] = ACTIONS(471), + [sym_identifier] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_macro_rules_BANG] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_RBRACE] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_as] = ACTIONS(461), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(473), + [anon_sym_default] = ACTIONS(473), + [anon_sym_enum] = ACTIONS(473), + [anon_sym_fn] = ACTIONS(473), + [anon_sym_for] = ACTIONS(473), + [anon_sym_if] = ACTIONS(473), + [anon_sym_impl] = ACTIONS(473), + [anon_sym_let] = ACTIONS(473), + [anon_sym_loop] = ACTIONS(473), + [anon_sym_match] = ACTIONS(473), + [anon_sym_mod] = ACTIONS(473), + [anon_sym_pub] = ACTIONS(473), + [anon_sym_return] = ACTIONS(473), + [anon_sym_static] = ACTIONS(473), + [anon_sym_struct] = ACTIONS(473), + [anon_sym_trait] = ACTIONS(473), + [anon_sym_type] = ACTIONS(473), + [anon_sym_union] = ACTIONS(473), + [anon_sym_unsafe] = ACTIONS(473), + [anon_sym_use] = ACTIONS(473), + [anon_sym_while] = ACTIONS(473), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_extern] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_AMP] = ACTIONS(473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_PIPE] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(459), + [anon_sym_GT_EQ] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(461), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_PERCENT] = ACTIONS(461), + [anon_sym_PLUS_EQ] = ACTIONS(459), + [anon_sym_DASH_EQ] = ACTIONS(459), + [anon_sym_STAR_EQ] = ACTIONS(459), + [anon_sym_SLASH_EQ] = ACTIONS(459), + [anon_sym_PERCENT_EQ] = ACTIONS(459), + [anon_sym_AMP_EQ] = ACTIONS(459), + [anon_sym_PIPE_EQ] = ACTIONS(459), + [anon_sym_CARET_EQ] = ACTIONS(459), + [anon_sym_LT_LT_EQ] = ACTIONS(459), + [anon_sym_GT_GT_EQ] = ACTIONS(459), + [anon_sym_move] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(471), + [aux_sym_string_literal_token1] = ACTIONS(471), + [sym_char_literal] = ACTIONS(471), + [anon_sym_true] = ACTIONS(473), + [anon_sym_false] = ACTIONS(473), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(473), + [sym_super] = ACTIONS(473), + [sym_crate] = ACTIONS(473), + [sym_metavariable] = ACTIONS(471), + [sym_raw_string_literal] = ACTIONS(471), + [sym_float_literal] = ACTIONS(471), + [sym_block_comment] = ACTIONS(3), + }, + [61] = { + [ts_builtin_sym_end] = ACTIONS(475), + [sym_identifier] = ACTIONS(477), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_macro_rules_BANG] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(477), + [anon_sym_QMARK] = ACTIONS(475), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(477), + [anon_sym_as] = ACTIONS(477), + [anon_sym_async] = ACTIONS(477), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(477), + [anon_sym_default] = ACTIONS(477), + [anon_sym_enum] = ACTIONS(477), + [anon_sym_fn] = ACTIONS(477), + [anon_sym_for] = ACTIONS(477), + [anon_sym_if] = ACTIONS(477), + [anon_sym_impl] = ACTIONS(477), + [anon_sym_let] = ACTIONS(477), + [anon_sym_loop] = ACTIONS(477), + [anon_sym_match] = ACTIONS(477), + [anon_sym_mod] = ACTIONS(477), + [anon_sym_pub] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(477), + [anon_sym_struct] = ACTIONS(477), + [anon_sym_trait] = ACTIONS(477), + [anon_sym_type] = ACTIONS(477), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(477), + [anon_sym_use] = ACTIONS(477), + [anon_sym_while] = ACTIONS(477), + [anon_sym_POUND] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(477), + [anon_sym_extern] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(477), + [anon_sym_GT] = ACTIONS(477), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(475), + [anon_sym_DOT_DOT] = ACTIONS(477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_EQ_EQ] = ACTIONS(475), + [anon_sym_BANG_EQ] = ACTIONS(475), + [anon_sym_LT_EQ] = ACTIONS(475), + [anon_sym_GT_EQ] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(477), + [anon_sym_GT_GT] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_PERCENT] = ACTIONS(477), + [anon_sym_PLUS_EQ] = ACTIONS(475), + [anon_sym_DASH_EQ] = ACTIONS(475), + [anon_sym_STAR_EQ] = ACTIONS(475), + [anon_sym_SLASH_EQ] = ACTIONS(475), + [anon_sym_PERCENT_EQ] = ACTIONS(475), + [anon_sym_AMP_EQ] = ACTIONS(475), + [anon_sym_PIPE_EQ] = ACTIONS(475), + [anon_sym_CARET_EQ] = ACTIONS(475), + [anon_sym_LT_LT_EQ] = ACTIONS(475), + [anon_sym_GT_GT_EQ] = ACTIONS(475), + [anon_sym_move] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(477), + [sym_integer_literal] = ACTIONS(475), + [aux_sym_string_literal_token1] = ACTIONS(475), + [sym_char_literal] = ACTIONS(475), + [anon_sym_true] = ACTIONS(477), + [anon_sym_false] = ACTIONS(477), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(477), + [sym_crate] = ACTIONS(477), + [sym_metavariable] = ACTIONS(475), + [sym_raw_string_literal] = ACTIONS(475), + [sym_float_literal] = ACTIONS(475), + [sym_block_comment] = ACTIONS(3), + }, + [62] = { + [ts_builtin_sym_end] = ACTIONS(479), + [sym_identifier] = ACTIONS(481), + [anon_sym_SEMI] = ACTIONS(479), + [anon_sym_macro_rules_BANG] = ACTIONS(479), + [anon_sym_LPAREN] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_RBRACE] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(479), + [anon_sym_u8] = ACTIONS(481), + [anon_sym_i8] = ACTIONS(481), + [anon_sym_u16] = ACTIONS(481), + [anon_sym_i16] = ACTIONS(481), + [anon_sym_u32] = ACTIONS(481), + [anon_sym_i32] = ACTIONS(481), + [anon_sym_u64] = ACTIONS(481), + [anon_sym_i64] = ACTIONS(481), + [anon_sym_u128] = ACTIONS(481), + [anon_sym_i128] = ACTIONS(481), + [anon_sym_isize] = ACTIONS(481), + [anon_sym_usize] = ACTIONS(481), + [anon_sym_f32] = ACTIONS(481), + [anon_sym_f64] = ACTIONS(481), + [anon_sym_bool] = ACTIONS(481), + [anon_sym_str] = ACTIONS(481), + [anon_sym_char] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(481), + [anon_sym_as] = ACTIONS(481), + [anon_sym_async] = ACTIONS(481), + [anon_sym_break] = ACTIONS(481), + [anon_sym_const] = ACTIONS(481), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_default] = ACTIONS(481), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_for] = ACTIONS(481), + [anon_sym_if] = ACTIONS(481), + [anon_sym_impl] = ACTIONS(481), + [anon_sym_let] = ACTIONS(481), + [anon_sym_loop] = ACTIONS(481), + [anon_sym_match] = ACTIONS(481), + [anon_sym_mod] = ACTIONS(481), + [anon_sym_pub] = ACTIONS(481), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(481), + [anon_sym_struct] = ACTIONS(481), + [anon_sym_trait] = ACTIONS(481), + [anon_sym_type] = ACTIONS(481), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(481), + [anon_sym_use] = ACTIONS(481), + [anon_sym_while] = ACTIONS(481), + [anon_sym_POUND] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_extern] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_COLON_COLON] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(479), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_STAR_EQ] = ACTIONS(479), + [anon_sym_SLASH_EQ] = ACTIONS(479), + [anon_sym_PERCENT_EQ] = ACTIONS(479), + [anon_sym_AMP_EQ] = ACTIONS(479), + [anon_sym_PIPE_EQ] = ACTIONS(479), + [anon_sym_CARET_EQ] = ACTIONS(479), + [anon_sym_LT_LT_EQ] = ACTIONS(479), + [anon_sym_GT_GT_EQ] = ACTIONS(479), + [anon_sym_move] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(479), + [aux_sym_string_literal_token1] = ACTIONS(479), + [sym_char_literal] = ACTIONS(479), + [anon_sym_true] = ACTIONS(481), + [anon_sym_false] = ACTIONS(481), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(481), + [sym_super] = ACTIONS(481), + [sym_crate] = ACTIONS(481), + [sym_metavariable] = ACTIONS(479), + [sym_raw_string_literal] = ACTIONS(479), + [sym_float_literal] = ACTIONS(479), + [sym_block_comment] = ACTIONS(3), + }, + [63] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1149), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_tuple_expression_repeat1] = STATE(61), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_tuple_expression_repeat1] = STATE(64), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_RPAREN] = ACTIONS(483), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -20702,265 +21805,790 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [54] = { - [ts_builtin_sym_end] = ACTIONS(441), - [sym_identifier] = ACTIONS(443), - [anon_sym_SEMI] = ACTIONS(441), - [anon_sym_macro_rules_BANG] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(441), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_PLUS] = ACTIONS(443), - [anon_sym_STAR] = ACTIONS(443), - [anon_sym_QMARK] = ACTIONS(441), - [anon_sym_u8] = ACTIONS(443), - [anon_sym_i8] = ACTIONS(443), - [anon_sym_u16] = ACTIONS(443), - [anon_sym_i16] = ACTIONS(443), - [anon_sym_u32] = ACTIONS(443), - [anon_sym_i32] = ACTIONS(443), - [anon_sym_u64] = ACTIONS(443), - [anon_sym_i64] = ACTIONS(443), - [anon_sym_u128] = ACTIONS(443), - [anon_sym_i128] = ACTIONS(443), - [anon_sym_isize] = ACTIONS(443), - [anon_sym_usize] = ACTIONS(443), - [anon_sym_f32] = ACTIONS(443), - [anon_sym_f64] = ACTIONS(443), - [anon_sym_bool] = ACTIONS(443), - [anon_sym_str] = ACTIONS(443), - [anon_sym_char] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(443), - [anon_sym_as] = ACTIONS(443), - [anon_sym_async] = ACTIONS(443), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_default] = ACTIONS(443), - [anon_sym_enum] = ACTIONS(443), - [anon_sym_fn] = ACTIONS(443), - [anon_sym_for] = ACTIONS(443), - [anon_sym_if] = ACTIONS(443), - [anon_sym_impl] = ACTIONS(443), - [anon_sym_let] = ACTIONS(443), - [anon_sym_loop] = ACTIONS(443), - [anon_sym_match] = ACTIONS(443), - [anon_sym_mod] = ACTIONS(443), - [anon_sym_pub] = ACTIONS(443), - [anon_sym_return] = ACTIONS(443), - [anon_sym_static] = ACTIONS(443), - [anon_sym_struct] = ACTIONS(443), - [anon_sym_trait] = ACTIONS(443), - [anon_sym_type] = ACTIONS(443), - [anon_sym_union] = ACTIONS(443), - [anon_sym_unsafe] = ACTIONS(443), - [anon_sym_use] = ACTIONS(443), - [anon_sym_while] = ACTIONS(443), - [anon_sym_POUND] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(443), - [anon_sym_extern] = ACTIONS(443), - [anon_sym_LT] = ACTIONS(443), - [anon_sym_GT] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(441), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(441), - [anon_sym_DOT_DOT] = ACTIONS(443), - [anon_sym_DOT_DOT_EQ] = ACTIONS(441), - [anon_sym_DASH] = ACTIONS(443), - [anon_sym_AMP_AMP] = ACTIONS(441), - [anon_sym_PIPE_PIPE] = ACTIONS(441), - [anon_sym_PIPE] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(443), - [anon_sym_EQ_EQ] = ACTIONS(441), - [anon_sym_BANG_EQ] = ACTIONS(441), - [anon_sym_LT_EQ] = ACTIONS(441), - [anon_sym_GT_EQ] = ACTIONS(441), - [anon_sym_LT_LT] = ACTIONS(443), - [anon_sym_GT_GT] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(443), - [anon_sym_PERCENT] = ACTIONS(443), - [anon_sym_PLUS_EQ] = ACTIONS(441), - [anon_sym_DASH_EQ] = ACTIONS(441), - [anon_sym_STAR_EQ] = ACTIONS(441), - [anon_sym_SLASH_EQ] = ACTIONS(441), - [anon_sym_PERCENT_EQ] = ACTIONS(441), - [anon_sym_AMP_EQ] = ACTIONS(441), - [anon_sym_PIPE_EQ] = ACTIONS(441), - [anon_sym_CARET_EQ] = ACTIONS(441), - [anon_sym_LT_LT_EQ] = ACTIONS(441), - [anon_sym_GT_GT_EQ] = ACTIONS(441), - [anon_sym_move] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(443), - [sym_integer_literal] = ACTIONS(441), - [aux_sym_string_literal_token1] = ACTIONS(441), - [sym_char_literal] = ACTIONS(441), - [anon_sym_true] = ACTIONS(443), - [anon_sym_false] = ACTIONS(443), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(443), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(441), - [sym_raw_string_literal] = ACTIONS(441), - [sym_float_literal] = ACTIONS(441), + [64] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1181), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_tuple_expression_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(488), + [anon_sym_RPAREN] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(496), + [anon_sym_STAR] = ACTIONS(499), + [anon_sym_u8] = ACTIONS(502), + [anon_sym_i8] = ACTIONS(502), + [anon_sym_u16] = ACTIONS(502), + [anon_sym_i16] = ACTIONS(502), + [anon_sym_u32] = ACTIONS(502), + [anon_sym_i32] = ACTIONS(502), + [anon_sym_u64] = ACTIONS(502), + [anon_sym_i64] = ACTIONS(502), + [anon_sym_u128] = ACTIONS(502), + [anon_sym_i128] = ACTIONS(502), + [anon_sym_isize] = ACTIONS(502), + [anon_sym_usize] = ACTIONS(502), + [anon_sym_f32] = ACTIONS(502), + [anon_sym_f64] = ACTIONS(502), + [anon_sym_bool] = ACTIONS(502), + [anon_sym_str] = ACTIONS(502), + [anon_sym_char] = ACTIONS(502), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_async] = ACTIONS(508), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(514), + [anon_sym_continue] = ACTIONS(517), + [anon_sym_default] = ACTIONS(520), + [anon_sym_for] = ACTIONS(523), + [anon_sym_if] = ACTIONS(526), + [anon_sym_loop] = ACTIONS(529), + [anon_sym_match] = ACTIONS(532), + [anon_sym_return] = ACTIONS(535), + [anon_sym_union] = ACTIONS(520), + [anon_sym_unsafe] = ACTIONS(538), + [anon_sym_while] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(544), + [anon_sym_COLON_COLON] = ACTIONS(547), + [anon_sym_AMP] = ACTIONS(550), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(556), + [anon_sym_move] = ACTIONS(559), + [sym_integer_literal] = ACTIONS(562), + [aux_sym_string_literal_token1] = ACTIONS(565), + [sym_char_literal] = ACTIONS(562), + [anon_sym_true] = ACTIONS(568), + [anon_sym_false] = ACTIONS(568), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(571), + [sym_super] = ACTIONS(574), + [sym_crate] = ACTIONS(574), + [sym_metavariable] = ACTIONS(577), + [sym_raw_string_literal] = ACTIONS(562), + [sym_float_literal] = ACTIONS(562), [sym_block_comment] = ACTIONS(3), }, - [55] = { - [ts_builtin_sym_end] = ACTIONS(445), - [sym_identifier] = ACTIONS(447), - [anon_sym_SEMI] = ACTIONS(445), - [anon_sym_macro_rules_BANG] = ACTIONS(445), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_RBRACE] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_QMARK] = ACTIONS(445), - [anon_sym_u8] = ACTIONS(447), - [anon_sym_i8] = ACTIONS(447), - [anon_sym_u16] = ACTIONS(447), - [anon_sym_i16] = ACTIONS(447), - [anon_sym_u32] = ACTIONS(447), - [anon_sym_i32] = ACTIONS(447), - [anon_sym_u64] = ACTIONS(447), - [anon_sym_i64] = ACTIONS(447), - [anon_sym_u128] = ACTIONS(447), - [anon_sym_i128] = ACTIONS(447), - [anon_sym_isize] = ACTIONS(447), - [anon_sym_usize] = ACTIONS(447), - [anon_sym_f32] = ACTIONS(447), - [anon_sym_f64] = ACTIONS(447), - [anon_sym_bool] = ACTIONS(447), - [anon_sym_str] = ACTIONS(447), - [anon_sym_char] = ACTIONS(447), - [anon_sym_SQUOTE] = ACTIONS(447), - [anon_sym_as] = ACTIONS(447), - [anon_sym_async] = ACTIONS(447), - [anon_sym_break] = ACTIONS(447), - [anon_sym_const] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(447), - [anon_sym_default] = ACTIONS(447), - [anon_sym_enum] = ACTIONS(447), - [anon_sym_fn] = ACTIONS(447), - [anon_sym_for] = ACTIONS(447), - [anon_sym_if] = ACTIONS(447), - [anon_sym_impl] = ACTIONS(447), - [anon_sym_let] = ACTIONS(447), - [anon_sym_loop] = ACTIONS(447), - [anon_sym_match] = ACTIONS(447), - [anon_sym_mod] = ACTIONS(447), - [anon_sym_pub] = ACTIONS(447), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(447), - [anon_sym_struct] = ACTIONS(447), - [anon_sym_trait] = ACTIONS(447), - [anon_sym_type] = ACTIONS(447), - [anon_sym_union] = ACTIONS(447), - [anon_sym_unsafe] = ACTIONS(447), - [anon_sym_use] = ACTIONS(447), - [anon_sym_while] = ACTIONS(447), - [anon_sym_POUND] = ACTIONS(445), - [anon_sym_BANG] = ACTIONS(447), - [anon_sym_EQ] = ACTIONS(447), - [anon_sym_extern] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(447), - [anon_sym_GT] = ACTIONS(447), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(445), - [anon_sym_DOT_DOT] = ACTIONS(447), - [anon_sym_DOT_DOT_EQ] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(447), - [anon_sym_AMP_AMP] = ACTIONS(445), - [anon_sym_PIPE_PIPE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(447), - [anon_sym_CARET] = ACTIONS(447), - [anon_sym_EQ_EQ] = ACTIONS(445), - [anon_sym_BANG_EQ] = ACTIONS(445), - [anon_sym_LT_EQ] = ACTIONS(445), - [anon_sym_GT_EQ] = ACTIONS(445), - [anon_sym_LT_LT] = ACTIONS(447), - [anon_sym_GT_GT] = ACTIONS(447), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_PERCENT] = ACTIONS(447), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_DOT] = ACTIONS(447), - [sym_integer_literal] = ACTIONS(445), - [aux_sym_string_literal_token1] = ACTIONS(445), - [sym_char_literal] = ACTIONS(445), - [anon_sym_true] = ACTIONS(447), - [anon_sym_false] = ACTIONS(447), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(447), - [sym_super] = ACTIONS(447), - [sym_crate] = ACTIONS(447), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(445), - [sym_float_literal] = ACTIONS(445), + [65] = { + [ts_builtin_sym_end] = ACTIONS(580), + [sym_identifier] = ACTIONS(582), + [anon_sym_SEMI] = ACTIONS(580), + [anon_sym_macro_rules_BANG] = ACTIONS(580), + [anon_sym_LPAREN] = ACTIONS(580), + [anon_sym_LBRACE] = ACTIONS(580), + [anon_sym_RBRACE] = ACTIONS(580), + [anon_sym_LBRACK] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(580), + [anon_sym_u8] = ACTIONS(582), + [anon_sym_i8] = ACTIONS(582), + [anon_sym_u16] = ACTIONS(582), + [anon_sym_i16] = ACTIONS(582), + [anon_sym_u32] = ACTIONS(582), + [anon_sym_i32] = ACTIONS(582), + [anon_sym_u64] = ACTIONS(582), + [anon_sym_i64] = ACTIONS(582), + [anon_sym_u128] = ACTIONS(582), + [anon_sym_i128] = ACTIONS(582), + [anon_sym_isize] = ACTIONS(582), + [anon_sym_usize] = ACTIONS(582), + [anon_sym_f32] = ACTIONS(582), + [anon_sym_f64] = ACTIONS(582), + [anon_sym_bool] = ACTIONS(582), + [anon_sym_str] = ACTIONS(582), + [anon_sym_char] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_as] = ACTIONS(582), + [anon_sym_async] = ACTIONS(582), + [anon_sym_break] = ACTIONS(582), + [anon_sym_const] = ACTIONS(582), + [anon_sym_continue] = ACTIONS(582), + [anon_sym_default] = ACTIONS(582), + [anon_sym_enum] = ACTIONS(582), + [anon_sym_fn] = ACTIONS(582), + [anon_sym_for] = ACTIONS(582), + [anon_sym_if] = ACTIONS(582), + [anon_sym_impl] = ACTIONS(582), + [anon_sym_let] = ACTIONS(582), + [anon_sym_loop] = ACTIONS(582), + [anon_sym_match] = ACTIONS(582), + [anon_sym_mod] = ACTIONS(582), + [anon_sym_pub] = ACTIONS(582), + [anon_sym_return] = ACTIONS(582), + [anon_sym_static] = ACTIONS(582), + [anon_sym_struct] = ACTIONS(582), + [anon_sym_trait] = ACTIONS(582), + [anon_sym_type] = ACTIONS(582), + [anon_sym_union] = ACTIONS(582), + [anon_sym_unsafe] = ACTIONS(582), + [anon_sym_use] = ACTIONS(582), + [anon_sym_while] = ACTIONS(582), + [anon_sym_POUND] = ACTIONS(580), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_extern] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_COLON_COLON] = ACTIONS(580), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(580), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_EQ] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(580), + [anon_sym_PIPE_PIPE] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT_EQ] = ACTIONS(580), + [anon_sym_GT_EQ] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(580), + [anon_sym_DASH_EQ] = ACTIONS(580), + [anon_sym_STAR_EQ] = ACTIONS(580), + [anon_sym_SLASH_EQ] = ACTIONS(580), + [anon_sym_PERCENT_EQ] = ACTIONS(580), + [anon_sym_AMP_EQ] = ACTIONS(580), + [anon_sym_PIPE_EQ] = ACTIONS(580), + [anon_sym_CARET_EQ] = ACTIONS(580), + [anon_sym_LT_LT_EQ] = ACTIONS(580), + [anon_sym_GT_GT_EQ] = ACTIONS(580), + [anon_sym_move] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [sym_integer_literal] = ACTIONS(580), + [aux_sym_string_literal_token1] = ACTIONS(580), + [sym_char_literal] = ACTIONS(580), + [anon_sym_true] = ACTIONS(582), + [anon_sym_false] = ACTIONS(582), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(582), + [sym_super] = ACTIONS(582), + [sym_crate] = ACTIONS(582), + [sym_metavariable] = ACTIONS(580), + [sym_raw_string_literal] = ACTIONS(580), + [sym_float_literal] = ACTIONS(580), [sym_block_comment] = ACTIONS(3), }, - [56] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1109), - [sym_macro_invocation] = STATE(1015), + [66] = { + [ts_builtin_sym_end] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [anon_sym_SEMI] = ACTIONS(584), + [anon_sym_macro_rules_BANG] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_RBRACE] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(584), + [anon_sym_u8] = ACTIONS(586), + [anon_sym_i8] = ACTIONS(586), + [anon_sym_u16] = ACTIONS(586), + [anon_sym_i16] = ACTIONS(586), + [anon_sym_u32] = ACTIONS(586), + [anon_sym_i32] = ACTIONS(586), + [anon_sym_u64] = ACTIONS(586), + [anon_sym_i64] = ACTIONS(586), + [anon_sym_u128] = ACTIONS(586), + [anon_sym_i128] = ACTIONS(586), + [anon_sym_isize] = ACTIONS(586), + [anon_sym_usize] = ACTIONS(586), + [anon_sym_f32] = ACTIONS(586), + [anon_sym_f64] = ACTIONS(586), + [anon_sym_bool] = ACTIONS(586), + [anon_sym_str] = ACTIONS(586), + [anon_sym_char] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_as] = ACTIONS(586), + [anon_sym_async] = ACTIONS(586), + [anon_sym_break] = ACTIONS(586), + [anon_sym_const] = ACTIONS(586), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_default] = ACTIONS(586), + [anon_sym_enum] = ACTIONS(586), + [anon_sym_fn] = ACTIONS(586), + [anon_sym_for] = ACTIONS(586), + [anon_sym_if] = ACTIONS(586), + [anon_sym_impl] = ACTIONS(586), + [anon_sym_let] = ACTIONS(586), + [anon_sym_loop] = ACTIONS(586), + [anon_sym_match] = ACTIONS(586), + [anon_sym_mod] = ACTIONS(586), + [anon_sym_pub] = ACTIONS(586), + [anon_sym_return] = ACTIONS(586), + [anon_sym_static] = ACTIONS(586), + [anon_sym_struct] = ACTIONS(586), + [anon_sym_trait] = ACTIONS(586), + [anon_sym_type] = ACTIONS(586), + [anon_sym_union] = ACTIONS(586), + [anon_sym_unsafe] = ACTIONS(586), + [anon_sym_use] = ACTIONS(586), + [anon_sym_while] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(584), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_extern] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(584), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(584), + [anon_sym_PIPE_PIPE] = ACTIONS(584), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(584), + [anon_sym_BANG_EQ] = ACTIONS(584), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(584), + [anon_sym_DASH_EQ] = ACTIONS(584), + [anon_sym_STAR_EQ] = ACTIONS(584), + [anon_sym_SLASH_EQ] = ACTIONS(584), + [anon_sym_PERCENT_EQ] = ACTIONS(584), + [anon_sym_AMP_EQ] = ACTIONS(584), + [anon_sym_PIPE_EQ] = ACTIONS(584), + [anon_sym_CARET_EQ] = ACTIONS(584), + [anon_sym_LT_LT_EQ] = ACTIONS(584), + [anon_sym_GT_GT_EQ] = ACTIONS(584), + [anon_sym_move] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [sym_integer_literal] = ACTIONS(584), + [aux_sym_string_literal_token1] = ACTIONS(584), + [sym_char_literal] = ACTIONS(584), + [anon_sym_true] = ACTIONS(586), + [anon_sym_false] = ACTIONS(586), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(586), + [sym_super] = ACTIONS(586), + [sym_crate] = ACTIONS(586), + [sym_metavariable] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(584), + [sym_float_literal] = ACTIONS(584), + [sym_block_comment] = ACTIONS(3), + }, + [67] = { + [ts_builtin_sym_end] = ACTIONS(588), + [sym_identifier] = ACTIONS(590), + [anon_sym_SEMI] = ACTIONS(588), + [anon_sym_macro_rules_BANG] = ACTIONS(588), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_RBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_STAR] = ACTIONS(590), + [anon_sym_QMARK] = ACTIONS(588), + [anon_sym_u8] = ACTIONS(590), + [anon_sym_i8] = ACTIONS(590), + [anon_sym_u16] = ACTIONS(590), + [anon_sym_i16] = ACTIONS(590), + [anon_sym_u32] = ACTIONS(590), + [anon_sym_i32] = ACTIONS(590), + [anon_sym_u64] = ACTIONS(590), + [anon_sym_i64] = ACTIONS(590), + [anon_sym_u128] = ACTIONS(590), + [anon_sym_i128] = ACTIONS(590), + [anon_sym_isize] = ACTIONS(590), + [anon_sym_usize] = ACTIONS(590), + [anon_sym_f32] = ACTIONS(590), + [anon_sym_f64] = ACTIONS(590), + [anon_sym_bool] = ACTIONS(590), + [anon_sym_str] = ACTIONS(590), + [anon_sym_char] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(590), + [anon_sym_as] = ACTIONS(590), + [anon_sym_async] = ACTIONS(590), + [anon_sym_break] = ACTIONS(590), + [anon_sym_const] = ACTIONS(590), + [anon_sym_continue] = ACTIONS(590), + [anon_sym_default] = ACTIONS(590), + [anon_sym_enum] = ACTIONS(590), + [anon_sym_fn] = ACTIONS(590), + [anon_sym_for] = ACTIONS(590), + [anon_sym_if] = ACTIONS(590), + [anon_sym_impl] = ACTIONS(590), + [anon_sym_let] = ACTIONS(590), + [anon_sym_loop] = ACTIONS(590), + [anon_sym_match] = ACTIONS(590), + [anon_sym_mod] = ACTIONS(590), + [anon_sym_pub] = ACTIONS(590), + [anon_sym_return] = ACTIONS(590), + [anon_sym_static] = ACTIONS(590), + [anon_sym_struct] = ACTIONS(590), + [anon_sym_trait] = ACTIONS(590), + [anon_sym_type] = ACTIONS(590), + [anon_sym_union] = ACTIONS(590), + [anon_sym_unsafe] = ACTIONS(590), + [anon_sym_use] = ACTIONS(590), + [anon_sym_while] = ACTIONS(590), + [anon_sym_POUND] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(590), + [anon_sym_EQ] = ACTIONS(590), + [anon_sym_extern] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(590), + [anon_sym_GT] = ACTIONS(590), + [anon_sym_COLON_COLON] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(588), + [anon_sym_DOT_DOT] = ACTIONS(590), + [anon_sym_DOT_DOT_EQ] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_AMP_AMP] = ACTIONS(588), + [anon_sym_PIPE_PIPE] = ACTIONS(588), + [anon_sym_PIPE] = ACTIONS(590), + [anon_sym_CARET] = ACTIONS(590), + [anon_sym_EQ_EQ] = ACTIONS(588), + [anon_sym_BANG_EQ] = ACTIONS(588), + [anon_sym_LT_EQ] = ACTIONS(588), + [anon_sym_GT_EQ] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_PERCENT] = ACTIONS(590), + [anon_sym_PLUS_EQ] = ACTIONS(588), + [anon_sym_DASH_EQ] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(588), + [anon_sym_SLASH_EQ] = ACTIONS(588), + [anon_sym_PERCENT_EQ] = ACTIONS(588), + [anon_sym_AMP_EQ] = ACTIONS(588), + [anon_sym_PIPE_EQ] = ACTIONS(588), + [anon_sym_CARET_EQ] = ACTIONS(588), + [anon_sym_LT_LT_EQ] = ACTIONS(588), + [anon_sym_GT_GT_EQ] = ACTIONS(588), + [anon_sym_move] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(590), + [sym_integer_literal] = ACTIONS(588), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(588), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(590), + [sym_super] = ACTIONS(590), + [sym_crate] = ACTIONS(590), + [sym_metavariable] = ACTIONS(588), + [sym_raw_string_literal] = ACTIONS(588), + [sym_float_literal] = ACTIONS(588), + [sym_block_comment] = ACTIONS(3), + }, + [68] = { + [ts_builtin_sym_end] = ACTIONS(592), + [sym_identifier] = ACTIONS(594), + [anon_sym_SEMI] = ACTIONS(592), + [anon_sym_macro_rules_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(592), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_RBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_PLUS] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(594), + [anon_sym_QMARK] = ACTIONS(592), + [anon_sym_u8] = ACTIONS(594), + [anon_sym_i8] = ACTIONS(594), + [anon_sym_u16] = ACTIONS(594), + [anon_sym_i16] = ACTIONS(594), + [anon_sym_u32] = ACTIONS(594), + [anon_sym_i32] = ACTIONS(594), + [anon_sym_u64] = ACTIONS(594), + [anon_sym_i64] = ACTIONS(594), + [anon_sym_u128] = ACTIONS(594), + [anon_sym_i128] = ACTIONS(594), + [anon_sym_isize] = ACTIONS(594), + [anon_sym_usize] = ACTIONS(594), + [anon_sym_f32] = ACTIONS(594), + [anon_sym_f64] = ACTIONS(594), + [anon_sym_bool] = ACTIONS(594), + [anon_sym_str] = ACTIONS(594), + [anon_sym_char] = ACTIONS(594), + [anon_sym_SQUOTE] = ACTIONS(594), + [anon_sym_as] = ACTIONS(594), + [anon_sym_async] = ACTIONS(594), + [anon_sym_break] = ACTIONS(594), + [anon_sym_const] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(594), + [anon_sym_default] = ACTIONS(594), + [anon_sym_enum] = ACTIONS(594), + [anon_sym_fn] = ACTIONS(594), + [anon_sym_for] = ACTIONS(594), + [anon_sym_if] = ACTIONS(594), + [anon_sym_impl] = ACTIONS(594), + [anon_sym_let] = ACTIONS(594), + [anon_sym_loop] = ACTIONS(594), + [anon_sym_match] = ACTIONS(594), + [anon_sym_mod] = ACTIONS(594), + [anon_sym_pub] = ACTIONS(594), + [anon_sym_return] = ACTIONS(594), + [anon_sym_static] = ACTIONS(594), + [anon_sym_struct] = ACTIONS(594), + [anon_sym_trait] = ACTIONS(594), + [anon_sym_type] = ACTIONS(594), + [anon_sym_union] = ACTIONS(594), + [anon_sym_unsafe] = ACTIONS(594), + [anon_sym_use] = ACTIONS(594), + [anon_sym_while] = ACTIONS(594), + [anon_sym_POUND] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(594), + [anon_sym_extern] = ACTIONS(594), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_GT] = ACTIONS(594), + [anon_sym_COLON_COLON] = ACTIONS(592), + [anon_sym_AMP] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(592), + [anon_sym_DOT_DOT] = ACTIONS(594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(592), + [anon_sym_PIPE_PIPE] = ACTIONS(592), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_CARET] = ACTIONS(594), + [anon_sym_EQ_EQ] = ACTIONS(592), + [anon_sym_BANG_EQ] = ACTIONS(592), + [anon_sym_LT_EQ] = ACTIONS(592), + [anon_sym_GT_EQ] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(594), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_SLASH] = ACTIONS(594), + [anon_sym_PERCENT] = ACTIONS(594), + [anon_sym_PLUS_EQ] = ACTIONS(592), + [anon_sym_DASH_EQ] = ACTIONS(592), + [anon_sym_STAR_EQ] = ACTIONS(592), + [anon_sym_SLASH_EQ] = ACTIONS(592), + [anon_sym_PERCENT_EQ] = ACTIONS(592), + [anon_sym_AMP_EQ] = ACTIONS(592), + [anon_sym_PIPE_EQ] = ACTIONS(592), + [anon_sym_CARET_EQ] = ACTIONS(592), + [anon_sym_LT_LT_EQ] = ACTIONS(592), + [anon_sym_GT_GT_EQ] = ACTIONS(592), + [anon_sym_move] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(594), + [sym_integer_literal] = ACTIONS(592), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(592), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(594), + [sym_super] = ACTIONS(594), + [sym_crate] = ACTIONS(594), + [sym_metavariable] = ACTIONS(592), + [sym_raw_string_literal] = ACTIONS(592), + [sym_float_literal] = ACTIONS(592), + [sym_block_comment] = ACTIONS(3), + }, + [69] = { + [ts_builtin_sym_end] = ACTIONS(596), + [sym_identifier] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_macro_rules_BANG] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(596), + [anon_sym_LBRACE] = ACTIONS(596), + [anon_sym_RBRACE] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_PLUS] = ACTIONS(598), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_QMARK] = ACTIONS(596), + [anon_sym_u8] = ACTIONS(598), + [anon_sym_i8] = ACTIONS(598), + [anon_sym_u16] = ACTIONS(598), + [anon_sym_i16] = ACTIONS(598), + [anon_sym_u32] = ACTIONS(598), + [anon_sym_i32] = ACTIONS(598), + [anon_sym_u64] = ACTIONS(598), + [anon_sym_i64] = ACTIONS(598), + [anon_sym_u128] = ACTIONS(598), + [anon_sym_i128] = ACTIONS(598), + [anon_sym_isize] = ACTIONS(598), + [anon_sym_usize] = ACTIONS(598), + [anon_sym_f32] = ACTIONS(598), + [anon_sym_f64] = ACTIONS(598), + [anon_sym_bool] = ACTIONS(598), + [anon_sym_str] = ACTIONS(598), + [anon_sym_char] = ACTIONS(598), + [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_as] = ACTIONS(598), + [anon_sym_async] = ACTIONS(598), + [anon_sym_break] = ACTIONS(598), + [anon_sym_const] = ACTIONS(598), + [anon_sym_continue] = ACTIONS(598), + [anon_sym_default] = ACTIONS(598), + [anon_sym_enum] = ACTIONS(598), + [anon_sym_fn] = ACTIONS(598), + [anon_sym_for] = ACTIONS(598), + [anon_sym_if] = ACTIONS(598), + [anon_sym_impl] = ACTIONS(598), + [anon_sym_let] = ACTIONS(598), + [anon_sym_loop] = ACTIONS(598), + [anon_sym_match] = ACTIONS(598), + [anon_sym_mod] = ACTIONS(598), + [anon_sym_pub] = ACTIONS(598), + [anon_sym_return] = ACTIONS(598), + [anon_sym_static] = ACTIONS(598), + [anon_sym_struct] = ACTIONS(598), + [anon_sym_trait] = ACTIONS(598), + [anon_sym_type] = ACTIONS(598), + [anon_sym_union] = ACTIONS(598), + [anon_sym_unsafe] = ACTIONS(598), + [anon_sym_use] = ACTIONS(598), + [anon_sym_while] = ACTIONS(598), + [anon_sym_POUND] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(598), + [anon_sym_extern] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_COLON_COLON] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(596), + [anon_sym_DASH] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_CARET] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(596), + [anon_sym_BANG_EQ] = ACTIONS(596), + [anon_sym_LT_EQ] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(596), + [anon_sym_LT_LT] = ACTIONS(598), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_SLASH] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_PLUS_EQ] = ACTIONS(596), + [anon_sym_DASH_EQ] = ACTIONS(596), + [anon_sym_STAR_EQ] = ACTIONS(596), + [anon_sym_SLASH_EQ] = ACTIONS(596), + [anon_sym_PERCENT_EQ] = ACTIONS(596), + [anon_sym_AMP_EQ] = ACTIONS(596), + [anon_sym_PIPE_EQ] = ACTIONS(596), + [anon_sym_CARET_EQ] = ACTIONS(596), + [anon_sym_LT_LT_EQ] = ACTIONS(596), + [anon_sym_GT_GT_EQ] = ACTIONS(596), + [anon_sym_move] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(598), + [sym_integer_literal] = ACTIONS(596), + [aux_sym_string_literal_token1] = ACTIONS(596), + [sym_char_literal] = ACTIONS(596), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(598), + [sym_super] = ACTIONS(598), + [sym_crate] = ACTIONS(598), + [sym_metavariable] = ACTIONS(596), + [sym_raw_string_literal] = ACTIONS(596), + [sym_float_literal] = ACTIONS(596), + [sym_block_comment] = ACTIONS(3), + }, + [70] = { + [ts_builtin_sym_end] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_macro_rules_BANG] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(600), + [anon_sym_RBRACE] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(602), + [anon_sym_i8] = ACTIONS(602), + [anon_sym_u16] = ACTIONS(602), + [anon_sym_i16] = ACTIONS(602), + [anon_sym_u32] = ACTIONS(602), + [anon_sym_i32] = ACTIONS(602), + [anon_sym_u64] = ACTIONS(602), + [anon_sym_i64] = ACTIONS(602), + [anon_sym_u128] = ACTIONS(602), + [anon_sym_i128] = ACTIONS(602), + [anon_sym_isize] = ACTIONS(602), + [anon_sym_usize] = ACTIONS(602), + [anon_sym_f32] = ACTIONS(602), + [anon_sym_f64] = ACTIONS(602), + [anon_sym_bool] = ACTIONS(602), + [anon_sym_str] = ACTIONS(602), + [anon_sym_char] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(602), + [anon_sym_as] = ACTIONS(602), + [anon_sym_async] = ACTIONS(602), + [anon_sym_break] = ACTIONS(602), + [anon_sym_const] = ACTIONS(602), + [anon_sym_continue] = ACTIONS(602), + [anon_sym_default] = ACTIONS(602), + [anon_sym_enum] = ACTIONS(602), + [anon_sym_fn] = ACTIONS(602), + [anon_sym_for] = ACTIONS(602), + [anon_sym_if] = ACTIONS(602), + [anon_sym_impl] = ACTIONS(602), + [anon_sym_let] = ACTIONS(602), + [anon_sym_loop] = ACTIONS(602), + [anon_sym_match] = ACTIONS(602), + [anon_sym_mod] = ACTIONS(602), + [anon_sym_pub] = ACTIONS(602), + [anon_sym_return] = ACTIONS(602), + [anon_sym_static] = ACTIONS(602), + [anon_sym_struct] = ACTIONS(602), + [anon_sym_trait] = ACTIONS(602), + [anon_sym_type] = ACTIONS(602), + [anon_sym_union] = ACTIONS(602), + [anon_sym_unsafe] = ACTIONS(602), + [anon_sym_use] = ACTIONS(602), + [anon_sym_while] = ACTIONS(602), + [anon_sym_POUND] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_EQ] = ACTIONS(602), + [anon_sym_extern] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(600), + [anon_sym_AMP] = ACTIONS(602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_DOT_DOT] = ACTIONS(602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_EQ_EQ] = ACTIONS(600), + [anon_sym_BANG_EQ] = ACTIONS(600), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(602), + [anon_sym_PERCENT] = ACTIONS(602), + [anon_sym_PLUS_EQ] = ACTIONS(600), + [anon_sym_DASH_EQ] = ACTIONS(600), + [anon_sym_STAR_EQ] = ACTIONS(600), + [anon_sym_SLASH_EQ] = ACTIONS(600), + [anon_sym_PERCENT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(600), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_move] = ACTIONS(602), + [anon_sym_DOT] = ACTIONS(602), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(600), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(602), + [anon_sym_false] = ACTIONS(602), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(602), + [sym_super] = ACTIONS(602), + [sym_crate] = ACTIONS(602), + [sym_metavariable] = ACTIONS(600), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), + [sym_block_comment] = ACTIONS(3), + }, + [71] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1110), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_tuple_expression_repeat1] = STATE(59), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_tuple_expression_repeat1] = STATE(63), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_RPAREN] = ACTIONS(604), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -21017,475 +22645,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [57] = { - [ts_builtin_sym_end] = ACTIONS(449), - [sym_identifier] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(453), - [anon_sym_macro_rules_BANG] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u128] = ACTIONS(451), - [anon_sym_i128] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_str] = ACTIONS(451), - [anon_sym_char] = ACTIONS(451), - [anon_sym_SQUOTE] = ACTIONS(451), - [anon_sym_as] = ACTIONS(455), - [anon_sym_async] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_const] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_default] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(451), - [anon_sym_fn] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_impl] = ACTIONS(451), - [anon_sym_let] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_mod] = ACTIONS(451), - [anon_sym_pub] = ACTIONS(451), - [anon_sym_return] = ACTIONS(451), - [anon_sym_static] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_trait] = ACTIONS(451), - [anon_sym_type] = ACTIONS(451), - [anon_sym_union] = ACTIONS(451), - [anon_sym_unsafe] = ACTIONS(451), - [anon_sym_use] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_POUND] = ACTIONS(449), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(455), - [anon_sym_extern] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(455), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_COLON_COLON] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT_EQ] = ACTIONS(453), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(455), - [anon_sym_PERCENT] = ACTIONS(455), - [anon_sym_PLUS_EQ] = ACTIONS(453), - [anon_sym_DASH_EQ] = ACTIONS(453), - [anon_sym_STAR_EQ] = ACTIONS(453), - [anon_sym_SLASH_EQ] = ACTIONS(453), - [anon_sym_PERCENT_EQ] = ACTIONS(453), - [anon_sym_AMP_EQ] = ACTIONS(453), - [anon_sym_PIPE_EQ] = ACTIONS(453), - [anon_sym_CARET_EQ] = ACTIONS(453), - [anon_sym_LT_LT_EQ] = ACTIONS(453), - [anon_sym_GT_GT_EQ] = ACTIONS(453), - [anon_sym_move] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(455), - [sym_integer_literal] = ACTIONS(449), - [aux_sym_string_literal_token1] = ACTIONS(449), - [sym_char_literal] = ACTIONS(449), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(451), - [sym_super] = ACTIONS(451), - [sym_crate] = ACTIONS(451), - [sym_metavariable] = ACTIONS(449), - [sym_raw_string_literal] = ACTIONS(449), - [sym_float_literal] = ACTIONS(449), - [sym_block_comment] = ACTIONS(3), - }, - [58] = { - [ts_builtin_sym_end] = ACTIONS(457), - [sym_identifier] = ACTIONS(459), - [anon_sym_SEMI] = ACTIONS(457), - [anon_sym_macro_rules_BANG] = ACTIONS(457), - [anon_sym_LPAREN] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(457), - [anon_sym_RBRACE] = ACTIONS(457), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(459), - [anon_sym_QMARK] = ACTIONS(457), - [anon_sym_u8] = ACTIONS(459), - [anon_sym_i8] = ACTIONS(459), - [anon_sym_u16] = ACTIONS(459), - [anon_sym_i16] = ACTIONS(459), - [anon_sym_u32] = ACTIONS(459), - [anon_sym_i32] = ACTIONS(459), - [anon_sym_u64] = ACTIONS(459), - [anon_sym_i64] = ACTIONS(459), - [anon_sym_u128] = ACTIONS(459), - [anon_sym_i128] = ACTIONS(459), - [anon_sym_isize] = ACTIONS(459), - [anon_sym_usize] = ACTIONS(459), - [anon_sym_f32] = ACTIONS(459), - [anon_sym_f64] = ACTIONS(459), - [anon_sym_bool] = ACTIONS(459), - [anon_sym_str] = ACTIONS(459), - [anon_sym_char] = ACTIONS(459), - [anon_sym_SQUOTE] = ACTIONS(459), - [anon_sym_as] = ACTIONS(459), - [anon_sym_async] = ACTIONS(459), - [anon_sym_break] = ACTIONS(459), - [anon_sym_const] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(459), - [anon_sym_default] = ACTIONS(459), - [anon_sym_enum] = ACTIONS(459), - [anon_sym_fn] = ACTIONS(459), - [anon_sym_for] = ACTIONS(459), - [anon_sym_if] = ACTIONS(459), - [anon_sym_impl] = ACTIONS(459), - [anon_sym_let] = ACTIONS(459), - [anon_sym_loop] = ACTIONS(459), - [anon_sym_match] = ACTIONS(459), - [anon_sym_mod] = ACTIONS(459), - [anon_sym_pub] = ACTIONS(459), - [anon_sym_return] = ACTIONS(459), - [anon_sym_static] = ACTIONS(459), - [anon_sym_struct] = ACTIONS(459), - [anon_sym_trait] = ACTIONS(459), - [anon_sym_type] = ACTIONS(459), - [anon_sym_union] = ACTIONS(459), - [anon_sym_unsafe] = ACTIONS(459), - [anon_sym_use] = ACTIONS(459), - [anon_sym_while] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_EQ] = ACTIONS(459), - [anon_sym_extern] = ACTIONS(459), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(457), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(457), - [anon_sym_DOT_DOT] = ACTIONS(459), - [anon_sym_DOT_DOT_EQ] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_PIPE] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(459), - [anon_sym_GT_GT] = ACTIONS(459), - [anon_sym_SLASH] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(459), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_STAR_EQ] = ACTIONS(457), - [anon_sym_SLASH_EQ] = ACTIONS(457), - [anon_sym_PERCENT_EQ] = ACTIONS(457), - [anon_sym_AMP_EQ] = ACTIONS(457), - [anon_sym_PIPE_EQ] = ACTIONS(457), - [anon_sym_CARET_EQ] = ACTIONS(457), - [anon_sym_LT_LT_EQ] = ACTIONS(457), - [anon_sym_GT_GT_EQ] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_DOT] = ACTIONS(459), - [sym_integer_literal] = ACTIONS(457), - [aux_sym_string_literal_token1] = ACTIONS(457), - [sym_char_literal] = ACTIONS(457), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(459), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(457), - [sym_raw_string_literal] = ACTIONS(457), - [sym_float_literal] = ACTIONS(457), - [sym_block_comment] = ACTIONS(3), - }, - [59] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1167), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_tuple_expression_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_RPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(472), - [anon_sym_STAR] = ACTIONS(475), - [anon_sym_u8] = ACTIONS(478), - [anon_sym_i8] = ACTIONS(478), - [anon_sym_u16] = ACTIONS(478), - [anon_sym_i16] = ACTIONS(478), - [anon_sym_u32] = ACTIONS(478), - [anon_sym_i32] = ACTIONS(478), - [anon_sym_u64] = ACTIONS(478), - [anon_sym_i64] = ACTIONS(478), - [anon_sym_u128] = ACTIONS(478), - [anon_sym_i128] = ACTIONS(478), - [anon_sym_isize] = ACTIONS(478), - [anon_sym_usize] = ACTIONS(478), - [anon_sym_f32] = ACTIONS(478), - [anon_sym_f64] = ACTIONS(478), - [anon_sym_bool] = ACTIONS(478), - [anon_sym_str] = ACTIONS(478), - [anon_sym_char] = ACTIONS(478), - [anon_sym_SQUOTE] = ACTIONS(481), - [anon_sym_async] = ACTIONS(484), - [anon_sym_break] = ACTIONS(487), - [anon_sym_const] = ACTIONS(490), - [anon_sym_continue] = ACTIONS(493), - [anon_sym_default] = ACTIONS(496), - [anon_sym_for] = ACTIONS(499), - [anon_sym_if] = ACTIONS(502), - [anon_sym_loop] = ACTIONS(505), - [anon_sym_match] = ACTIONS(508), - [anon_sym_return] = ACTIONS(511), - [anon_sym_union] = ACTIONS(496), - [anon_sym_unsafe] = ACTIONS(514), - [anon_sym_while] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(520), - [anon_sym_COLON_COLON] = ACTIONS(523), - [anon_sym_AMP] = ACTIONS(526), - [anon_sym_DOT_DOT] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_PIPE] = ACTIONS(532), - [anon_sym_move] = ACTIONS(535), - [sym_integer_literal] = ACTIONS(538), - [aux_sym_string_literal_token1] = ACTIONS(541), - [sym_char_literal] = ACTIONS(538), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(547), - [sym_super] = ACTIONS(550), - [sym_crate] = ACTIONS(550), - [sym_metavariable] = ACTIONS(553), - [sym_raw_string_literal] = ACTIONS(538), - [sym_float_literal] = ACTIONS(538), - [sym_block_comment] = ACTIONS(3), - }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(556), - [sym_identifier] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(556), - [anon_sym_macro_rules_BANG] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(558), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_u8] = ACTIONS(558), - [anon_sym_i8] = ACTIONS(558), - [anon_sym_u16] = ACTIONS(558), - [anon_sym_i16] = ACTIONS(558), - [anon_sym_u32] = ACTIONS(558), - [anon_sym_i32] = ACTIONS(558), - [anon_sym_u64] = ACTIONS(558), - [anon_sym_i64] = ACTIONS(558), - [anon_sym_u128] = ACTIONS(558), - [anon_sym_i128] = ACTIONS(558), - [anon_sym_isize] = ACTIONS(558), - [anon_sym_usize] = ACTIONS(558), - [anon_sym_f32] = ACTIONS(558), - [anon_sym_f64] = ACTIONS(558), - [anon_sym_bool] = ACTIONS(558), - [anon_sym_str] = ACTIONS(558), - [anon_sym_char] = ACTIONS(558), - [anon_sym_SQUOTE] = ACTIONS(558), - [anon_sym_as] = ACTIONS(455), - [anon_sym_async] = ACTIONS(558), - [anon_sym_break] = ACTIONS(558), - [anon_sym_const] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(558), - [anon_sym_default] = ACTIONS(558), - [anon_sym_enum] = ACTIONS(558), - [anon_sym_fn] = ACTIONS(558), - [anon_sym_for] = ACTIONS(558), - [anon_sym_if] = ACTIONS(558), - [anon_sym_impl] = ACTIONS(558), - [anon_sym_let] = ACTIONS(558), - [anon_sym_loop] = ACTIONS(558), - [anon_sym_match] = ACTIONS(558), - [anon_sym_mod] = ACTIONS(558), - [anon_sym_pub] = ACTIONS(558), - [anon_sym_return] = ACTIONS(558), - [anon_sym_static] = ACTIONS(558), - [anon_sym_struct] = ACTIONS(558), - [anon_sym_trait] = ACTIONS(558), - [anon_sym_type] = ACTIONS(558), - [anon_sym_union] = ACTIONS(558), - [anon_sym_unsafe] = ACTIONS(558), - [anon_sym_use] = ACTIONS(558), - [anon_sym_while] = ACTIONS(558), - [anon_sym_POUND] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(558), - [anon_sym_EQ] = ACTIONS(455), - [anon_sym_extern] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(558), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_COLON_COLON] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(558), - [anon_sym_DOT_DOT_DOT] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(558), - [anon_sym_DOT_DOT_EQ] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(558), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT_EQ] = ACTIONS(453), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(455), - [anon_sym_PERCENT] = ACTIONS(455), - [anon_sym_PLUS_EQ] = ACTIONS(453), - [anon_sym_DASH_EQ] = ACTIONS(453), - [anon_sym_STAR_EQ] = ACTIONS(453), - [anon_sym_SLASH_EQ] = ACTIONS(453), - [anon_sym_PERCENT_EQ] = ACTIONS(453), - [anon_sym_AMP_EQ] = ACTIONS(453), - [anon_sym_PIPE_EQ] = ACTIONS(453), - [anon_sym_CARET_EQ] = ACTIONS(453), - [anon_sym_LT_LT_EQ] = ACTIONS(453), - [anon_sym_GT_GT_EQ] = ACTIONS(453), - [anon_sym_move] = ACTIONS(558), - [anon_sym_DOT] = ACTIONS(455), - [sym_integer_literal] = ACTIONS(556), - [aux_sym_string_literal_token1] = ACTIONS(556), - [sym_char_literal] = ACTIONS(556), - [anon_sym_true] = ACTIONS(558), - [anon_sym_false] = ACTIONS(558), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(558), - [sym_super] = ACTIONS(558), - [sym_crate] = ACTIONS(558), - [sym_metavariable] = ACTIONS(556), - [sym_raw_string_literal] = ACTIONS(556), - [sym_float_literal] = ACTIONS(556), - [sym_block_comment] = ACTIONS(3), - }, - [61] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1118), - [sym_macro_invocation] = STATE(1015), + [72] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1110), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [aux_sym_tuple_expression_repeat1] = STATE(59), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [aux_sym_tuple_expression_repeat1] = STATE(64), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(560), + [anon_sym_RPAREN] = ACTIONS(604), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -21542,1106 +22750,264 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [62] = { - [ts_builtin_sym_end] = ACTIONS(562), - [sym_identifier] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(562), - [anon_sym_macro_rules_BANG] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(562), - [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(562), - [anon_sym_u8] = ACTIONS(564), - [anon_sym_i8] = ACTIONS(564), - [anon_sym_u16] = ACTIONS(564), - [anon_sym_i16] = ACTIONS(564), - [anon_sym_u32] = ACTIONS(564), - [anon_sym_i32] = ACTIONS(564), - [anon_sym_u64] = ACTIONS(564), - [anon_sym_i64] = ACTIONS(564), - [anon_sym_u128] = ACTIONS(564), - [anon_sym_i128] = ACTIONS(564), - [anon_sym_isize] = ACTIONS(564), - [anon_sym_usize] = ACTIONS(564), - [anon_sym_f32] = ACTIONS(564), - [anon_sym_f64] = ACTIONS(564), - [anon_sym_bool] = ACTIONS(564), - [anon_sym_str] = ACTIONS(564), - [anon_sym_char] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_as] = ACTIONS(564), - [anon_sym_async] = ACTIONS(564), - [anon_sym_break] = ACTIONS(564), - [anon_sym_const] = ACTIONS(564), - [anon_sym_continue] = ACTIONS(564), - [anon_sym_default] = ACTIONS(564), - [anon_sym_enum] = ACTIONS(564), - [anon_sym_fn] = ACTIONS(564), - [anon_sym_for] = ACTIONS(564), - [anon_sym_if] = ACTIONS(564), - [anon_sym_impl] = ACTIONS(564), - [anon_sym_let] = ACTIONS(564), - [anon_sym_loop] = ACTIONS(564), - [anon_sym_match] = ACTIONS(564), - [anon_sym_mod] = ACTIONS(564), - [anon_sym_pub] = ACTIONS(564), - [anon_sym_return] = ACTIONS(564), - [anon_sym_static] = ACTIONS(564), - [anon_sym_struct] = ACTIONS(564), - [anon_sym_trait] = ACTIONS(564), - [anon_sym_type] = ACTIONS(564), - [anon_sym_union] = ACTIONS(564), - [anon_sym_unsafe] = ACTIONS(564), - [anon_sym_use] = ACTIONS(564), - [anon_sym_while] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_extern] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_COLON_COLON] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(562), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_EQ] = ACTIONS(562), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(562), - [anon_sym_PIPE_PIPE] = ACTIONS(562), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(562), - [anon_sym_BANG_EQ] = ACTIONS(562), - [anon_sym_LT_EQ] = ACTIONS(562), - [anon_sym_GT_EQ] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(562), - [anon_sym_DASH_EQ] = ACTIONS(562), - [anon_sym_STAR_EQ] = ACTIONS(562), - [anon_sym_SLASH_EQ] = ACTIONS(562), - [anon_sym_PERCENT_EQ] = ACTIONS(562), - [anon_sym_AMP_EQ] = ACTIONS(562), - [anon_sym_PIPE_EQ] = ACTIONS(562), - [anon_sym_CARET_EQ] = ACTIONS(562), - [anon_sym_LT_LT_EQ] = ACTIONS(562), - [anon_sym_GT_GT_EQ] = ACTIONS(562), - [anon_sym_move] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [sym_integer_literal] = ACTIONS(562), - [aux_sym_string_literal_token1] = ACTIONS(562), - [sym_char_literal] = ACTIONS(562), - [anon_sym_true] = ACTIONS(564), - [anon_sym_false] = ACTIONS(564), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(564), - [sym_super] = ACTIONS(564), - [sym_crate] = ACTIONS(564), - [sym_metavariable] = ACTIONS(562), - [sym_raw_string_literal] = ACTIONS(562), - [sym_float_literal] = ACTIONS(562), - [sym_block_comment] = ACTIONS(3), - }, - [63] = { - [ts_builtin_sym_end] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_macro_rules_BANG] = ACTIONS(566), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(568), - [anon_sym_i8] = ACTIONS(568), - [anon_sym_u16] = ACTIONS(568), - [anon_sym_i16] = ACTIONS(568), - [anon_sym_u32] = ACTIONS(568), - [anon_sym_i32] = ACTIONS(568), - [anon_sym_u64] = ACTIONS(568), - [anon_sym_i64] = ACTIONS(568), - [anon_sym_u128] = ACTIONS(568), - [anon_sym_i128] = ACTIONS(568), - [anon_sym_isize] = ACTIONS(568), - [anon_sym_usize] = ACTIONS(568), - [anon_sym_f32] = ACTIONS(568), - [anon_sym_f64] = ACTIONS(568), - [anon_sym_bool] = ACTIONS(568), - [anon_sym_str] = ACTIONS(568), - [anon_sym_char] = ACTIONS(568), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_as] = ACTIONS(568), - [anon_sym_async] = ACTIONS(568), - [anon_sym_break] = ACTIONS(568), - [anon_sym_const] = ACTIONS(568), - [anon_sym_continue] = ACTIONS(568), - [anon_sym_default] = ACTIONS(568), - [anon_sym_enum] = ACTIONS(568), - [anon_sym_fn] = ACTIONS(568), - [anon_sym_for] = ACTIONS(568), - [anon_sym_if] = ACTIONS(568), - [anon_sym_impl] = ACTIONS(568), - [anon_sym_let] = ACTIONS(568), - [anon_sym_loop] = ACTIONS(568), - [anon_sym_match] = ACTIONS(568), - [anon_sym_mod] = ACTIONS(568), - [anon_sym_pub] = ACTIONS(568), - [anon_sym_return] = ACTIONS(568), - [anon_sym_static] = ACTIONS(568), - [anon_sym_struct] = ACTIONS(568), - [anon_sym_trait] = ACTIONS(568), - [anon_sym_type] = ACTIONS(568), - [anon_sym_union] = ACTIONS(568), - [anon_sym_unsafe] = ACTIONS(568), - [anon_sym_use] = ACTIONS(568), - [anon_sym_while] = ACTIONS(568), - [anon_sym_POUND] = ACTIONS(566), - [anon_sym_BANG] = ACTIONS(568), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_extern] = ACTIONS(568), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(566), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(568), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_move] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(566), - [aux_sym_string_literal_token1] = ACTIONS(566), - [sym_char_literal] = ACTIONS(566), - [anon_sym_true] = ACTIONS(568), - [anon_sym_false] = ACTIONS(568), + [73] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1122), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(608), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(568), - [sym_super] = ACTIONS(568), - [sym_crate] = ACTIONS(568), - [sym_metavariable] = ACTIONS(566), - [sym_raw_string_literal] = ACTIONS(566), - [sym_float_literal] = ACTIONS(566), - [sym_block_comment] = ACTIONS(3), - }, - [64] = { - [ts_builtin_sym_end] = ACTIONS(570), - [sym_identifier] = ACTIONS(572), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_macro_rules_BANG] = ACTIONS(570), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_u8] = ACTIONS(572), - [anon_sym_i8] = ACTIONS(572), - [anon_sym_u16] = ACTIONS(572), - [anon_sym_i16] = ACTIONS(572), - [anon_sym_u32] = ACTIONS(572), - [anon_sym_i32] = ACTIONS(572), - [anon_sym_u64] = ACTIONS(572), - [anon_sym_i64] = ACTIONS(572), - [anon_sym_u128] = ACTIONS(572), - [anon_sym_i128] = ACTIONS(572), - [anon_sym_isize] = ACTIONS(572), - [anon_sym_usize] = ACTIONS(572), - [anon_sym_f32] = ACTIONS(572), - [anon_sym_f64] = ACTIONS(572), - [anon_sym_bool] = ACTIONS(572), - [anon_sym_str] = ACTIONS(572), - [anon_sym_char] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(572), - [anon_sym_as] = ACTIONS(572), - [anon_sym_async] = ACTIONS(572), - [anon_sym_break] = ACTIONS(572), - [anon_sym_const] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(572), - [anon_sym_default] = ACTIONS(572), - [anon_sym_enum] = ACTIONS(572), - [anon_sym_fn] = ACTIONS(572), - [anon_sym_for] = ACTIONS(572), - [anon_sym_if] = ACTIONS(572), - [anon_sym_impl] = ACTIONS(572), - [anon_sym_let] = ACTIONS(572), - [anon_sym_loop] = ACTIONS(572), - [anon_sym_match] = ACTIONS(572), - [anon_sym_mod] = ACTIONS(572), - [anon_sym_pub] = ACTIONS(572), - [anon_sym_return] = ACTIONS(572), - [anon_sym_static] = ACTIONS(572), - [anon_sym_struct] = ACTIONS(572), - [anon_sym_trait] = ACTIONS(572), - [anon_sym_type] = ACTIONS(572), - [anon_sym_union] = ACTIONS(572), - [anon_sym_unsafe] = ACTIONS(572), - [anon_sym_use] = ACTIONS(572), - [anon_sym_while] = ACTIONS(572), - [anon_sym_POUND] = ACTIONS(570), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_EQ] = ACTIONS(572), - [anon_sym_extern] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_COLON_COLON] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(570), - [anon_sym_DOT_DOT] = ACTIONS(572), - [anon_sym_DOT_DOT_EQ] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_AMP_AMP] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_CARET] = ACTIONS(572), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_LT_LT] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(572), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_move] = ACTIONS(572), - [anon_sym_DOT] = ACTIONS(572), - [sym_integer_literal] = ACTIONS(570), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(570), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(572), - [sym_super] = ACTIONS(572), - [sym_crate] = ACTIONS(572), - [sym_metavariable] = ACTIONS(570), - [sym_raw_string_literal] = ACTIONS(570), - [sym_float_literal] = ACTIONS(570), - [sym_block_comment] = ACTIONS(3), - }, - [65] = { - [ts_builtin_sym_end] = ACTIONS(574), - [sym_identifier] = ACTIONS(576), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym_macro_rules_BANG] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_RBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_u8] = ACTIONS(576), - [anon_sym_i8] = ACTIONS(576), - [anon_sym_u16] = ACTIONS(576), - [anon_sym_i16] = ACTIONS(576), - [anon_sym_u32] = ACTIONS(576), - [anon_sym_i32] = ACTIONS(576), - [anon_sym_u64] = ACTIONS(576), - [anon_sym_i64] = ACTIONS(576), - [anon_sym_u128] = ACTIONS(576), - [anon_sym_i128] = ACTIONS(576), - [anon_sym_isize] = ACTIONS(576), - [anon_sym_usize] = ACTIONS(576), - [anon_sym_f32] = ACTIONS(576), - [anon_sym_f64] = ACTIONS(576), - [anon_sym_bool] = ACTIONS(576), - [anon_sym_str] = ACTIONS(576), - [anon_sym_char] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(576), - [anon_sym_as] = ACTIONS(576), - [anon_sym_async] = ACTIONS(576), - [anon_sym_break] = ACTIONS(576), - [anon_sym_const] = ACTIONS(576), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_default] = ACTIONS(576), - [anon_sym_enum] = ACTIONS(576), - [anon_sym_fn] = ACTIONS(576), - [anon_sym_for] = ACTIONS(576), - [anon_sym_if] = ACTIONS(576), - [anon_sym_impl] = ACTIONS(576), - [anon_sym_let] = ACTIONS(576), - [anon_sym_loop] = ACTIONS(576), - [anon_sym_match] = ACTIONS(576), - [anon_sym_mod] = ACTIONS(576), - [anon_sym_pub] = ACTIONS(576), - [anon_sym_return] = ACTIONS(576), - [anon_sym_static] = ACTIONS(576), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_trait] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_union] = ACTIONS(576), - [anon_sym_unsafe] = ACTIONS(576), - [anon_sym_use] = ACTIONS(576), - [anon_sym_while] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(576), - [anon_sym_extern] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(574), - [anon_sym_AMP] = ACTIONS(576), - [anon_sym_DOT_DOT_DOT] = ACTIONS(574), - [anon_sym_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(574), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_EQ_EQ] = ACTIONS(574), - [anon_sym_BANG_EQ] = ACTIONS(574), - [anon_sym_LT_EQ] = ACTIONS(574), - [anon_sym_GT_EQ] = ACTIONS(574), - [anon_sym_LT_LT] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(576), - [anon_sym_SLASH] = ACTIONS(576), - [anon_sym_PERCENT] = ACTIONS(576), - [anon_sym_PLUS_EQ] = ACTIONS(574), - [anon_sym_DASH_EQ] = ACTIONS(574), - [anon_sym_STAR_EQ] = ACTIONS(574), - [anon_sym_SLASH_EQ] = ACTIONS(574), - [anon_sym_PERCENT_EQ] = ACTIONS(574), - [anon_sym_AMP_EQ] = ACTIONS(574), - [anon_sym_PIPE_EQ] = ACTIONS(574), - [anon_sym_CARET_EQ] = ACTIONS(574), - [anon_sym_LT_LT_EQ] = ACTIONS(574), - [anon_sym_GT_GT_EQ] = ACTIONS(574), - [anon_sym_move] = ACTIONS(576), - [anon_sym_DOT] = ACTIONS(576), - [sym_integer_literal] = ACTIONS(574), - [aux_sym_string_literal_token1] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [anon_sym_true] = ACTIONS(576), - [anon_sym_false] = ACTIONS(576), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(576), - [sym_super] = ACTIONS(576), - [sym_crate] = ACTIONS(576), - [sym_metavariable] = ACTIONS(574), - [sym_raw_string_literal] = ACTIONS(574), - [sym_float_literal] = ACTIONS(574), - [sym_block_comment] = ACTIONS(3), - }, - [66] = { - [ts_builtin_sym_end] = ACTIONS(578), - [sym_identifier] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(578), - [anon_sym_macro_rules_BANG] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u128] = ACTIONS(580), - [anon_sym_i128] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_str] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_async] = ACTIONS(580), - [anon_sym_break] = ACTIONS(580), - [anon_sym_const] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_enum] = ACTIONS(580), - [anon_sym_fn] = ACTIONS(580), - [anon_sym_for] = ACTIONS(580), - [anon_sym_if] = ACTIONS(580), - [anon_sym_impl] = ACTIONS(580), - [anon_sym_let] = ACTIONS(580), - [anon_sym_loop] = ACTIONS(580), - [anon_sym_match] = ACTIONS(580), - [anon_sym_mod] = ACTIONS(580), - [anon_sym_pub] = ACTIONS(580), - [anon_sym_return] = ACTIONS(580), - [anon_sym_static] = ACTIONS(580), - [anon_sym_struct] = ACTIONS(580), - [anon_sym_trait] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_union] = ACTIONS(580), - [anon_sym_unsafe] = ACTIONS(580), - [anon_sym_use] = ACTIONS(580), - [anon_sym_while] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_extern] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_COLON_COLON] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [anon_sym_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(580), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_PLUS_EQ] = ACTIONS(578), - [anon_sym_DASH_EQ] = ACTIONS(578), - [anon_sym_STAR_EQ] = ACTIONS(578), - [anon_sym_SLASH_EQ] = ACTIONS(578), - [anon_sym_PERCENT_EQ] = ACTIONS(578), - [anon_sym_AMP_EQ] = ACTIONS(578), - [anon_sym_PIPE_EQ] = ACTIONS(578), - [anon_sym_CARET_EQ] = ACTIONS(578), - [anon_sym_LT_LT_EQ] = ACTIONS(578), - [anon_sym_GT_GT_EQ] = ACTIONS(578), - [anon_sym_move] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [sym_integer_literal] = ACTIONS(578), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(580), - [sym_super] = ACTIONS(580), - [sym_crate] = ACTIONS(580), - [sym_metavariable] = ACTIONS(578), - [sym_raw_string_literal] = ACTIONS(578), - [sym_float_literal] = ACTIONS(578), - [sym_block_comment] = ACTIONS(3), - }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(582), - [sym_identifier] = ACTIONS(584), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_macro_rules_BANG] = ACTIONS(582), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_QMARK] = ACTIONS(582), - [anon_sym_u8] = ACTIONS(584), - [anon_sym_i8] = ACTIONS(584), - [anon_sym_u16] = ACTIONS(584), - [anon_sym_i16] = ACTIONS(584), - [anon_sym_u32] = ACTIONS(584), - [anon_sym_i32] = ACTIONS(584), - [anon_sym_u64] = ACTIONS(584), - [anon_sym_i64] = ACTIONS(584), - [anon_sym_u128] = ACTIONS(584), - [anon_sym_i128] = ACTIONS(584), - [anon_sym_isize] = ACTIONS(584), - [anon_sym_usize] = ACTIONS(584), - [anon_sym_f32] = ACTIONS(584), - [anon_sym_f64] = ACTIONS(584), - [anon_sym_bool] = ACTIONS(584), - [anon_sym_str] = ACTIONS(584), - [anon_sym_char] = ACTIONS(584), - [anon_sym_SQUOTE] = ACTIONS(584), - [anon_sym_as] = ACTIONS(584), - [anon_sym_async] = ACTIONS(584), - [anon_sym_break] = ACTIONS(584), - [anon_sym_const] = ACTIONS(584), - [anon_sym_continue] = ACTIONS(584), - [anon_sym_default] = ACTIONS(584), - [anon_sym_enum] = ACTIONS(584), - [anon_sym_fn] = ACTIONS(584), - [anon_sym_for] = ACTIONS(584), - [anon_sym_if] = ACTIONS(584), - [anon_sym_impl] = ACTIONS(584), - [anon_sym_let] = ACTIONS(584), - [anon_sym_loop] = ACTIONS(584), - [anon_sym_match] = ACTIONS(584), - [anon_sym_mod] = ACTIONS(584), - [anon_sym_pub] = ACTIONS(584), - [anon_sym_return] = ACTIONS(584), - [anon_sym_static] = ACTIONS(584), - [anon_sym_struct] = ACTIONS(584), - [anon_sym_trait] = ACTIONS(584), - [anon_sym_type] = ACTIONS(584), - [anon_sym_union] = ACTIONS(584), - [anon_sym_unsafe] = ACTIONS(584), - [anon_sym_use] = ACTIONS(584), - [anon_sym_while] = ACTIONS(584), - [anon_sym_POUND] = ACTIONS(582), - [anon_sym_BANG] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(584), - [anon_sym_extern] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_COLON_COLON] = ACTIONS(582), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(582), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT_EQ] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(582), - [anon_sym_PIPE_PIPE] = ACTIONS(582), - [anon_sym_PIPE] = ACTIONS(584), - [anon_sym_CARET] = ACTIONS(584), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_LT_LT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_PLUS_EQ] = ACTIONS(582), - [anon_sym_DASH_EQ] = ACTIONS(582), - [anon_sym_STAR_EQ] = ACTIONS(582), - [anon_sym_SLASH_EQ] = ACTIONS(582), - [anon_sym_PERCENT_EQ] = ACTIONS(582), - [anon_sym_AMP_EQ] = ACTIONS(582), - [anon_sym_PIPE_EQ] = ACTIONS(582), - [anon_sym_CARET_EQ] = ACTIONS(582), - [anon_sym_LT_LT_EQ] = ACTIONS(582), - [anon_sym_GT_GT_EQ] = ACTIONS(582), - [anon_sym_move] = ACTIONS(584), - [anon_sym_DOT] = ACTIONS(584), - [sym_integer_literal] = ACTIONS(582), - [aux_sym_string_literal_token1] = ACTIONS(582), - [sym_char_literal] = ACTIONS(582), - [anon_sym_true] = ACTIONS(584), - [anon_sym_false] = ACTIONS(584), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(584), - [sym_super] = ACTIONS(584), - [sym_crate] = ACTIONS(584), - [sym_metavariable] = ACTIONS(582), - [sym_raw_string_literal] = ACTIONS(582), - [sym_float_literal] = ACTIONS(582), - [sym_block_comment] = ACTIONS(3), - }, - [68] = { - [ts_builtin_sym_end] = ACTIONS(586), - [sym_identifier] = ACTIONS(588), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_macro_rules_BANG] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_RBRACE] = ACTIONS(586), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_STAR] = ACTIONS(588), - [anon_sym_QMARK] = ACTIONS(586), - [anon_sym_u8] = ACTIONS(588), - [anon_sym_i8] = ACTIONS(588), - [anon_sym_u16] = ACTIONS(588), - [anon_sym_i16] = ACTIONS(588), - [anon_sym_u32] = ACTIONS(588), - [anon_sym_i32] = ACTIONS(588), - [anon_sym_u64] = ACTIONS(588), - [anon_sym_i64] = ACTIONS(588), - [anon_sym_u128] = ACTIONS(588), - [anon_sym_i128] = ACTIONS(588), - [anon_sym_isize] = ACTIONS(588), - [anon_sym_usize] = ACTIONS(588), - [anon_sym_f32] = ACTIONS(588), - [anon_sym_f64] = ACTIONS(588), - [anon_sym_bool] = ACTIONS(588), - [anon_sym_str] = ACTIONS(588), - [anon_sym_char] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(588), - [anon_sym_as] = ACTIONS(588), - [anon_sym_async] = ACTIONS(588), - [anon_sym_break] = ACTIONS(588), - [anon_sym_const] = ACTIONS(588), - [anon_sym_continue] = ACTIONS(588), - [anon_sym_default] = ACTIONS(588), - [anon_sym_enum] = ACTIONS(588), - [anon_sym_fn] = ACTIONS(588), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(588), - [anon_sym_impl] = ACTIONS(588), - [anon_sym_let] = ACTIONS(588), - [anon_sym_loop] = ACTIONS(588), - [anon_sym_match] = ACTIONS(588), - [anon_sym_mod] = ACTIONS(588), - [anon_sym_pub] = ACTIONS(588), - [anon_sym_return] = ACTIONS(588), - [anon_sym_static] = ACTIONS(588), - [anon_sym_struct] = ACTIONS(588), - [anon_sym_trait] = ACTIONS(588), - [anon_sym_type] = ACTIONS(588), - [anon_sym_union] = ACTIONS(588), - [anon_sym_unsafe] = ACTIONS(588), - [anon_sym_use] = ACTIONS(588), - [anon_sym_while] = ACTIONS(588), - [anon_sym_POUND] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_EQ] = ACTIONS(588), - [anon_sym_extern] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(588), - [anon_sym_DOT_DOT_EQ] = ACTIONS(586), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_EQ_EQ] = ACTIONS(586), - [anon_sym_BANG_EQ] = ACTIONS(586), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(588), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_PLUS_EQ] = ACTIONS(586), - [anon_sym_DASH_EQ] = ACTIONS(586), - [anon_sym_STAR_EQ] = ACTIONS(586), - [anon_sym_SLASH_EQ] = ACTIONS(586), - [anon_sym_PERCENT_EQ] = ACTIONS(586), - [anon_sym_AMP_EQ] = ACTIONS(586), - [anon_sym_PIPE_EQ] = ACTIONS(586), - [anon_sym_CARET_EQ] = ACTIONS(586), - [anon_sym_LT_LT_EQ] = ACTIONS(586), - [anon_sym_GT_GT_EQ] = ACTIONS(586), - [anon_sym_move] = ACTIONS(588), - [anon_sym_DOT] = ACTIONS(588), - [sym_integer_literal] = ACTIONS(586), - [aux_sym_string_literal_token1] = ACTIONS(586), - [sym_char_literal] = ACTIONS(586), - [anon_sym_true] = ACTIONS(588), - [anon_sym_false] = ACTIONS(588), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(588), - [sym_super] = ACTIONS(588), - [sym_crate] = ACTIONS(588), - [sym_metavariable] = ACTIONS(586), - [sym_raw_string_literal] = ACTIONS(586), - [sym_float_literal] = ACTIONS(586), - [sym_block_comment] = ACTIONS(3), - }, - [69] = { - [ts_builtin_sym_end] = ACTIONS(590), - [sym_identifier] = ACTIONS(592), - [anon_sym_SEMI] = ACTIONS(590), - [anon_sym_macro_rules_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(590), - [anon_sym_RBRACE] = ACTIONS(590), - [anon_sym_LBRACK] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_STAR] = ACTIONS(592), - [anon_sym_QMARK] = ACTIONS(590), - [anon_sym_u8] = ACTIONS(592), - [anon_sym_i8] = ACTIONS(592), - [anon_sym_u16] = ACTIONS(592), - [anon_sym_i16] = ACTIONS(592), - [anon_sym_u32] = ACTIONS(592), - [anon_sym_i32] = ACTIONS(592), - [anon_sym_u64] = ACTIONS(592), - [anon_sym_i64] = ACTIONS(592), - [anon_sym_u128] = ACTIONS(592), - [anon_sym_i128] = ACTIONS(592), - [anon_sym_isize] = ACTIONS(592), - [anon_sym_usize] = ACTIONS(592), - [anon_sym_f32] = ACTIONS(592), - [anon_sym_f64] = ACTIONS(592), - [anon_sym_bool] = ACTIONS(592), - [anon_sym_str] = ACTIONS(592), - [anon_sym_char] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_as] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_break] = ACTIONS(592), - [anon_sym_const] = ACTIONS(592), - [anon_sym_continue] = ACTIONS(592), - [anon_sym_default] = ACTIONS(592), - [anon_sym_enum] = ACTIONS(592), - [anon_sym_fn] = ACTIONS(592), - [anon_sym_for] = ACTIONS(592), - [anon_sym_if] = ACTIONS(592), - [anon_sym_impl] = ACTIONS(592), - [anon_sym_let] = ACTIONS(592), - [anon_sym_loop] = ACTIONS(592), - [anon_sym_match] = ACTIONS(592), - [anon_sym_mod] = ACTIONS(592), - [anon_sym_pub] = ACTIONS(592), - [anon_sym_return] = ACTIONS(592), - [anon_sym_static] = ACTIONS(592), - [anon_sym_struct] = ACTIONS(592), - [anon_sym_trait] = ACTIONS(592), - [anon_sym_type] = ACTIONS(592), - [anon_sym_union] = ACTIONS(592), - [anon_sym_unsafe] = ACTIONS(592), - [anon_sym_use] = ACTIONS(592), - [anon_sym_while] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(592), - [anon_sym_extern] = ACTIONS(592), - [anon_sym_LT] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(590), - [anon_sym_AMP] = ACTIONS(592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(590), - [anon_sym_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_AMP_AMP] = ACTIONS(590), - [anon_sym_PIPE_PIPE] = ACTIONS(590), - [anon_sym_PIPE] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_EQ_EQ] = ACTIONS(590), - [anon_sym_BANG_EQ] = ACTIONS(590), - [anon_sym_LT_EQ] = ACTIONS(590), - [anon_sym_GT_EQ] = ACTIONS(590), - [anon_sym_LT_LT] = ACTIONS(592), - [anon_sym_GT_GT] = ACTIONS(592), - [anon_sym_SLASH] = ACTIONS(592), - [anon_sym_PERCENT] = ACTIONS(592), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_STAR_EQ] = ACTIONS(590), - [anon_sym_SLASH_EQ] = ACTIONS(590), - [anon_sym_PERCENT_EQ] = ACTIONS(590), - [anon_sym_AMP_EQ] = ACTIONS(590), - [anon_sym_PIPE_EQ] = ACTIONS(590), - [anon_sym_CARET_EQ] = ACTIONS(590), - [anon_sym_LT_LT_EQ] = ACTIONS(590), - [anon_sym_GT_GT_EQ] = ACTIONS(590), - [anon_sym_move] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(592), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(590), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(592), - [anon_sym_false] = ACTIONS(592), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(592), - [sym_super] = ACTIONS(592), - [sym_crate] = ACTIONS(592), - [sym_metavariable] = ACTIONS(590), - [sym_raw_string_literal] = ACTIONS(590), - [sym_float_literal] = ACTIONS(590), - [sym_block_comment] = ACTIONS(3), - }, - [70] = { - [ts_builtin_sym_end] = ACTIONS(594), - [sym_identifier] = ACTIONS(596), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_macro_rules_BANG] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_RBRACE] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(596), - [anon_sym_QMARK] = ACTIONS(594), - [anon_sym_u8] = ACTIONS(596), - [anon_sym_i8] = ACTIONS(596), - [anon_sym_u16] = ACTIONS(596), - [anon_sym_i16] = ACTIONS(596), - [anon_sym_u32] = ACTIONS(596), - [anon_sym_i32] = ACTIONS(596), - [anon_sym_u64] = ACTIONS(596), - [anon_sym_i64] = ACTIONS(596), - [anon_sym_u128] = ACTIONS(596), - [anon_sym_i128] = ACTIONS(596), - [anon_sym_isize] = ACTIONS(596), - [anon_sym_usize] = ACTIONS(596), - [anon_sym_f32] = ACTIONS(596), - [anon_sym_f64] = ACTIONS(596), - [anon_sym_bool] = ACTIONS(596), - [anon_sym_str] = ACTIONS(596), - [anon_sym_char] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(596), - [anon_sym_as] = ACTIONS(596), - [anon_sym_async] = ACTIONS(596), - [anon_sym_break] = ACTIONS(596), - [anon_sym_const] = ACTIONS(596), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_default] = ACTIONS(596), - [anon_sym_enum] = ACTIONS(596), - [anon_sym_fn] = ACTIONS(596), - [anon_sym_for] = ACTIONS(596), - [anon_sym_if] = ACTIONS(596), - [anon_sym_impl] = ACTIONS(596), - [anon_sym_let] = ACTIONS(596), - [anon_sym_loop] = ACTIONS(596), - [anon_sym_match] = ACTIONS(596), - [anon_sym_mod] = ACTIONS(596), - [anon_sym_pub] = ACTIONS(596), - [anon_sym_return] = ACTIONS(596), - [anon_sym_static] = ACTIONS(596), - [anon_sym_struct] = ACTIONS(596), - [anon_sym_trait] = ACTIONS(596), - [anon_sym_type] = ACTIONS(596), - [anon_sym_union] = ACTIONS(596), - [anon_sym_unsafe] = ACTIONS(596), - [anon_sym_use] = ACTIONS(596), - [anon_sym_while] = ACTIONS(596), - [anon_sym_POUND] = ACTIONS(594), - [anon_sym_BANG] = ACTIONS(596), - [anon_sym_EQ] = ACTIONS(596), - [anon_sym_extern] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(596), - [anon_sym_GT] = ACTIONS(596), - [anon_sym_COLON_COLON] = ACTIONS(594), - [anon_sym_AMP] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [anon_sym_DOT_DOT] = ACTIONS(596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(594), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(594), - [anon_sym_PIPE_PIPE] = ACTIONS(594), - [anon_sym_PIPE] = ACTIONS(596), - [anon_sym_CARET] = ACTIONS(596), - [anon_sym_EQ_EQ] = ACTIONS(594), - [anon_sym_BANG_EQ] = ACTIONS(594), - [anon_sym_LT_EQ] = ACTIONS(594), - [anon_sym_GT_EQ] = ACTIONS(594), - [anon_sym_LT_LT] = ACTIONS(596), - [anon_sym_GT_GT] = ACTIONS(596), - [anon_sym_SLASH] = ACTIONS(596), - [anon_sym_PERCENT] = ACTIONS(596), - [anon_sym_PLUS_EQ] = ACTIONS(594), - [anon_sym_DASH_EQ] = ACTIONS(594), - [anon_sym_STAR_EQ] = ACTIONS(594), - [anon_sym_SLASH_EQ] = ACTIONS(594), - [anon_sym_PERCENT_EQ] = ACTIONS(594), - [anon_sym_AMP_EQ] = ACTIONS(594), - [anon_sym_PIPE_EQ] = ACTIONS(594), - [anon_sym_CARET_EQ] = ACTIONS(594), - [anon_sym_LT_LT_EQ] = ACTIONS(594), - [anon_sym_GT_GT_EQ] = ACTIONS(594), - [anon_sym_move] = ACTIONS(596), - [anon_sym_DOT] = ACTIONS(596), - [sym_integer_literal] = ACTIONS(594), - [aux_sym_string_literal_token1] = ACTIONS(594), - [sym_char_literal] = ACTIONS(594), - [anon_sym_true] = ACTIONS(596), - [anon_sym_false] = ACTIONS(596), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(596), - [sym_super] = ACTIONS(596), - [sym_crate] = ACTIONS(596), - [sym_metavariable] = ACTIONS(594), - [sym_raw_string_literal] = ACTIONS(594), - [sym_float_literal] = ACTIONS(594), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [71] = { - [ts_builtin_sym_end] = ACTIONS(598), - [sym_identifier] = ACTIONS(600), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_macro_rules_BANG] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_RBRACE] = ACTIONS(598), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_PLUS] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_QMARK] = ACTIONS(598), - [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_SQUOTE] = ACTIONS(600), - [anon_sym_as] = ACTIONS(600), - [anon_sym_async] = 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_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_while] = ACTIONS(600), - [anon_sym_POUND] = ACTIONS(598), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(600), - [anon_sym_extern] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(600), - [anon_sym_GT] = ACTIONS(600), - [anon_sym_COLON_COLON] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_DOT_DOT] = ACTIONS(600), - [anon_sym_DOT_DOT_EQ] = ACTIONS(598), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_PIPE] = ACTIONS(600), - [anon_sym_CARET] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(598), - [anon_sym_BANG_EQ] = ACTIONS(598), - [anon_sym_LT_EQ] = ACTIONS(598), - [anon_sym_GT_EQ] = ACTIONS(598), - [anon_sym_LT_LT] = ACTIONS(600), - [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_PERCENT] = ACTIONS(600), - [anon_sym_PLUS_EQ] = ACTIONS(598), - [anon_sym_DASH_EQ] = ACTIONS(598), - [anon_sym_STAR_EQ] = ACTIONS(598), - [anon_sym_SLASH_EQ] = ACTIONS(598), - [anon_sym_PERCENT_EQ] = ACTIONS(598), - [anon_sym_AMP_EQ] = ACTIONS(598), - [anon_sym_PIPE_EQ] = ACTIONS(598), - [anon_sym_CARET_EQ] = ACTIONS(598), - [anon_sym_LT_LT_EQ] = ACTIONS(598), - [anon_sym_GT_GT_EQ] = ACTIONS(598), - [anon_sym_move] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(600), - [sym_integer_literal] = ACTIONS(598), - [aux_sym_string_literal_token1] = ACTIONS(598), - [sym_char_literal] = ACTIONS(598), - [anon_sym_true] = ACTIONS(600), - [anon_sym_false] = ACTIONS(600), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_crate] = ACTIONS(600), - [sym_metavariable] = ACTIONS(598), - [sym_raw_string_literal] = ACTIONS(598), - [sym_float_literal] = ACTIONS(598), + [74] = { + [sym_identifier] = ACTIONS(457), + [anon_sym_SEMI] = ACTIONS(459), + [anon_sym_macro_rules_BANG] = ACTIONS(455), + [anon_sym_LPAREN] = ACTIONS(459), + [anon_sym_LBRACE] = ACTIONS(455), + [anon_sym_RBRACE] = ACTIONS(455), + [anon_sym_LBRACK] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_u8] = ACTIONS(457), + [anon_sym_i8] = ACTIONS(457), + [anon_sym_u16] = ACTIONS(457), + [anon_sym_i16] = ACTIONS(457), + [anon_sym_u32] = ACTIONS(457), + [anon_sym_i32] = ACTIONS(457), + [anon_sym_u64] = ACTIONS(457), + [anon_sym_i64] = ACTIONS(457), + [anon_sym_u128] = ACTIONS(457), + [anon_sym_i128] = ACTIONS(457), + [anon_sym_isize] = ACTIONS(457), + [anon_sym_usize] = ACTIONS(457), + [anon_sym_f32] = ACTIONS(457), + [anon_sym_f64] = ACTIONS(457), + [anon_sym_bool] = ACTIONS(457), + [anon_sym_str] = ACTIONS(457), + [anon_sym_char] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(457), + [anon_sym_as] = ACTIONS(461), + [anon_sym_async] = ACTIONS(457), + [anon_sym_break] = ACTIONS(457), + [anon_sym_const] = ACTIONS(457), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_default] = ACTIONS(457), + [anon_sym_enum] = ACTIONS(457), + [anon_sym_fn] = ACTIONS(457), + [anon_sym_for] = ACTIONS(457), + [anon_sym_if] = ACTIONS(457), + [anon_sym_impl] = ACTIONS(457), + [anon_sym_let] = ACTIONS(457), + [anon_sym_loop] = ACTIONS(457), + [anon_sym_match] = ACTIONS(457), + [anon_sym_mod] = ACTIONS(457), + [anon_sym_pub] = ACTIONS(457), + [anon_sym_return] = ACTIONS(457), + [anon_sym_static] = ACTIONS(457), + [anon_sym_struct] = ACTIONS(457), + [anon_sym_trait] = ACTIONS(457), + [anon_sym_type] = ACTIONS(457), + [anon_sym_union] = ACTIONS(457), + [anon_sym_unsafe] = ACTIONS(457), + [anon_sym_use] = ACTIONS(457), + [anon_sym_while] = ACTIONS(457), + [anon_sym_POUND] = ACTIONS(455), + [anon_sym_BANG] = ACTIONS(457), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_extern] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_COLON_COLON] = ACTIONS(455), + [anon_sym_AMP] = ACTIONS(461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [anon_sym_DOT_DOT] = ACTIONS(461), + [anon_sym_DOT_DOT_EQ] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_PIPE] = ACTIONS(461), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(459), + [anon_sym_GT_EQ] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(461), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_PERCENT] = ACTIONS(461), + [anon_sym_PLUS_EQ] = ACTIONS(459), + [anon_sym_DASH_EQ] = ACTIONS(459), + [anon_sym_STAR_EQ] = ACTIONS(459), + [anon_sym_SLASH_EQ] = ACTIONS(459), + [anon_sym_PERCENT_EQ] = ACTIONS(459), + [anon_sym_AMP_EQ] = ACTIONS(459), + [anon_sym_PIPE_EQ] = ACTIONS(459), + [anon_sym_CARET_EQ] = ACTIONS(459), + [anon_sym_LT_LT_EQ] = ACTIONS(459), + [anon_sym_GT_GT_EQ] = ACTIONS(459), + [anon_sym_move] = ACTIONS(457), + [anon_sym_DOT] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(455), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(457), + [anon_sym_false] = ACTIONS(457), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(457), + [sym_crate] = ACTIONS(457), + [sym_metavariable] = ACTIONS(455), + [sym_raw_string_literal] = ACTIONS(455), + [sym_float_literal] = ACTIONS(455), [sym_block_comment] = ACTIONS(3), }, - [72] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1169), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(959), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [75] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1145), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -22667,19 +23033,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(614), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(339), [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_DASH_GT] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -22696,160 +23062,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [73] = { - [sym_identifier] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(453), - [anon_sym_macro_rules_BANG] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_u8] = ACTIONS(451), - [anon_sym_i8] = ACTIONS(451), - [anon_sym_u16] = ACTIONS(451), - [anon_sym_i16] = ACTIONS(451), - [anon_sym_u32] = ACTIONS(451), - [anon_sym_i32] = ACTIONS(451), - [anon_sym_u64] = ACTIONS(451), - [anon_sym_i64] = ACTIONS(451), - [anon_sym_u128] = ACTIONS(451), - [anon_sym_i128] = ACTIONS(451), - [anon_sym_isize] = ACTIONS(451), - [anon_sym_usize] = ACTIONS(451), - [anon_sym_f32] = ACTIONS(451), - [anon_sym_f64] = ACTIONS(451), - [anon_sym_bool] = ACTIONS(451), - [anon_sym_str] = ACTIONS(451), - [anon_sym_char] = ACTIONS(451), - [anon_sym_SQUOTE] = ACTIONS(451), - [anon_sym_as] = ACTIONS(455), - [anon_sym_async] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_const] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_default] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(451), - [anon_sym_fn] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_impl] = ACTIONS(451), - [anon_sym_let] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(451), - [anon_sym_match] = ACTIONS(451), - [anon_sym_mod] = ACTIONS(451), - [anon_sym_pub] = ACTIONS(451), - [anon_sym_return] = ACTIONS(451), - [anon_sym_static] = ACTIONS(451), - [anon_sym_struct] = ACTIONS(451), - [anon_sym_trait] = ACTIONS(451), - [anon_sym_type] = ACTIONS(451), - [anon_sym_union] = ACTIONS(451), - [anon_sym_unsafe] = ACTIONS(451), - [anon_sym_use] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_POUND] = ACTIONS(449), - [anon_sym_BANG] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(455), - [anon_sym_extern] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(455), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_COLON_COLON] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT_EQ] = ACTIONS(453), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(455), - [anon_sym_PERCENT] = ACTIONS(455), - [anon_sym_PLUS_EQ] = ACTIONS(453), - [anon_sym_DASH_EQ] = ACTIONS(453), - [anon_sym_STAR_EQ] = ACTIONS(453), - [anon_sym_SLASH_EQ] = ACTIONS(453), - [anon_sym_PERCENT_EQ] = ACTIONS(453), - [anon_sym_AMP_EQ] = ACTIONS(453), - [anon_sym_PIPE_EQ] = ACTIONS(453), - [anon_sym_CARET_EQ] = ACTIONS(453), - [anon_sym_LT_LT_EQ] = ACTIONS(453), - [anon_sym_GT_GT_EQ] = ACTIONS(453), - [anon_sym_move] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(455), - [sym_integer_literal] = ACTIONS(449), - [aux_sym_string_literal_token1] = ACTIONS(449), - [sym_char_literal] = ACTIONS(449), - [anon_sym_true] = ACTIONS(451), - [anon_sym_false] = ACTIONS(451), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(451), - [sym_super] = ACTIONS(451), - [sym_crate] = ACTIONS(451), - [sym_metavariable] = ACTIONS(449), - [sym_raw_string_literal] = ACTIONS(449), - [sym_float_literal] = ACTIONS(449), - [sym_block_comment] = ACTIONS(3), - }, - [74] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1151), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [76] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1189), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1068), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -22875,19 +23137,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(610), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(339), [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_DASH_GT] = ACTIONS(616), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(341), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -22904,56 +23166,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [75] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1119), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [77] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1164), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -22979,19 +23241,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(612), + [anon_sym_let] = ACTIONS(618), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(339), [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -23008,160 +23270,160 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [76] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1113), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(275), + [78] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1150), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), + [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(620), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [77] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1153), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [79] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1168), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -23187,19 +23449,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(616), + [anon_sym_let] = ACTIONS(622), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(339), [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -23216,51 +23478,155 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [78] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(961), - [sym_macro_invocation] = STATE(1015), + [80] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1176), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(624), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [81] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1002), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(959), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -23298,12 +23664,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(604), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), + [sym_mutable_specifier] = ACTIONS(626), [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), @@ -23320,160 +23686,160 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [79] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1142), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(331), + [82] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1163), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_RBRACK] = ACTIONS(628), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(618), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [80] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), + [83] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), [sym__expression] = STATE(1204), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1046), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1024), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -23505,12 +23871,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_DASH_GT] = ACTIONS(620), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_DASH_GT] = ACTIONS(630), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), [anon_sym_DASH] = ACTIONS(341), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), @@ -23528,56 +23894,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [81] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1208), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [84] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1137), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -23603,19 +23969,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(632), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(339), [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [sym_mutable_specifier] = ACTIONS(622), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -23632,56 +23998,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [82] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1154), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [85] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1124), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -23707,19 +24073,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(624), + [anon_sym_let] = ACTIONS(634), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(339), [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -23736,160 +24102,160 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [83] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1105), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(331), + [86] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1029), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1024), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(626), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(630), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(303), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1113), - [sym_macro_invocation] = STATE(1015), + [87] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1163), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(628), + [anon_sym_RBRACK] = ACTIONS(636), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -23944,159 +24310,160 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [85] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1128), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(331), + [88] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1070), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1068), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(630), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(616), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(303), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [86] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1042), - [sym_macro_invocation] = STATE(1015), + [89] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1163), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1046), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(638), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -24130,12 +24497,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(620), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), @@ -24152,56 +24518,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [87] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1159), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [90] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1197), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -24227,19 +24593,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(632), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(339), [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [sym_mutable_specifier] = ACTIONS(640), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -24256,160 +24622,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [88] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(981), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [sym_mutable_specifier] = ACTIONS(634), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [89] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1134), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [91] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1158), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -24435,19 +24697,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(636), + [anon_sym_let] = ACTIONS(642), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(339), [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -24464,56 +24726,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [90] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1113), - [sym_macro_invocation] = STATE(1015), + [92] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1117), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(638), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -24568,54 +24829,260 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [91] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1114), - [sym_macro_invocation] = STATE(1015), + [93] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1215), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [94] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1146), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [95] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1047), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(211), - [sym_if_let_expression] = STATE(211), - [sym_match_expression] = STATE(211), - [sym_while_expression] = STATE(211), - [sym_while_let_expression] = STATE(211), - [sym_loop_expression] = STATE(211), - [sym_for_expression] = STATE(211), - [sym_const_block] = STATE(211), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2407), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(211), - [sym_async_block] = STATE(211), - [sym_block] = STATE(211), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -24636,19 +25103,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(642), + [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(644), + [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(646), - [anon_sym_if] = ACTIONS(648), - [anon_sym_loop] = ACTIONS(650), - [anon_sym_match] = ACTIONS(652), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(654), - [anon_sym_while] = ACTIONS(656), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -24671,51 +25138,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [92] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1166), - [sym_macro_invocation] = STATE(1015), + [96] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1163), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -24774,51 +25241,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [93] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1124), - [sym_macro_invocation] = STATE(1015), + [97] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1193), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -24877,51 +25344,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [94] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1183), - [sym_macro_invocation] = STATE(1015), + [98] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1143), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -24980,360 +25447,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [95] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2292), - [sym_self_parameter] = STATE(1764), - [sym_variadic_parameter] = STATE(1764), - [sym_parameter] = STATE(1764), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1741), - [sym_bracketed_type] = STATE(2365), - [sym_lifetime] = STATE(1763), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2366), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(1443), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1638), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_RPAREN] = ACTIONS(662), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(668), - [anon_sym_i8] = ACTIONS(668), - [anon_sym_u16] = ACTIONS(668), - [anon_sym_i16] = ACTIONS(668), - [anon_sym_u32] = ACTIONS(668), - [anon_sym_i32] = ACTIONS(668), - [anon_sym_u64] = ACTIONS(668), - [anon_sym_i64] = ACTIONS(668), - [anon_sym_u128] = ACTIONS(668), - [anon_sym_i128] = ACTIONS(668), - [anon_sym_isize] = ACTIONS(668), - [anon_sym_usize] = ACTIONS(668), - [anon_sym_f32] = ACTIONS(668), - [anon_sym_f64] = ACTIONS(668), - [anon_sym_bool] = ACTIONS(668), - [anon_sym_str] = ACTIONS(668), - [anon_sym_char] = ACTIONS(668), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(684), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(696), - [anon_sym__] = ACTIONS(698), - [anon_sym_AMP] = ACTIONS(700), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(718), - [sym_super] = ACTIONS(720), - [sym_crate] = ACTIONS(720), - [sym_metavariable] = ACTIONS(722), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), - [sym_block_comment] = ACTIONS(3), - }, - [96] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1155), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [97] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1160), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [98] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1197), - [sym_macro_invocation] = STATE(1015), + [99] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(976), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -25392,51 +25550,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [99] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1175), - [sym_macro_invocation] = STATE(1015), + [100] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1141), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -25495,51 +25653,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [100] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1199), - [sym_macro_invocation] = STATE(1015), + [101] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1195), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -25598,56 +25756,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [101] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1219), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [102] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1144), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -25679,12 +25837,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -25701,154 +25859,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [102] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1143), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(331), + [103] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(972), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [103] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1007), - [sym_macro_invocation] = STATE(1015), + [104] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(971), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -25907,51 +26065,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [104] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1182), - [sym_macro_invocation] = STATE(1015), + [105] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(969), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -26010,51 +26168,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [105] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1180), - [sym_macro_invocation] = STATE(1015), + [106] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(968), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -26113,257 +26271,257 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [106] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(331), + [107] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(970), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [107] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1216), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(331), + [108] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [108] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1177), - [sym_macro_invocation] = STATE(1015), + [109] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1182), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -26422,365 +26580,262 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [109] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2292), - [sym_self_parameter] = STATE(1957), - [sym_variadic_parameter] = STATE(1957), - [sym_parameter] = STATE(1957), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1750), - [sym_bracketed_type] = STATE(2362), - [sym_lifetime] = STATE(1763), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2363), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2111), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(732), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(734), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_COMMA] = ACTIONS(736), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(740), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), - [sym_block_comment] = ACTIONS(3), - }, [110] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2292), - [sym_self_parameter] = STATE(1764), - [sym_variadic_parameter] = STATE(1764), - [sym_parameter] = STATE(1764), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1741), - [sym_bracketed_type] = STATE(2362), - [sym_lifetime] = STATE(1763), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2363), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2111), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(732), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(734), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_COMMA] = ACTIONS(752), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1138), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(754), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [111] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1144), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(761), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [112] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1163), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1161), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -26812,12 +26867,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -26835,50 +26890,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [113] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1113), - [sym_macro_invocation] = STATE(1015), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(999), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -26938,50 +26993,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [114] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1065), - [sym_macro_invocation] = STATE(1015), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1199), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -27041,467 +27096,570 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [115] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1211), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(995), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [116] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1209), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1190), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(221), + [sym_if_let_expression] = STATE(221), + [sym_match_expression] = STATE(221), + [sym_while_expression] = STATE(221), + [sym_while_let_expression] = STATE(221), + [sym_loop_expression] = STATE(221), + [sym_for_expression] = STATE(221), + [sym_const_block] = STATE(221), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2452), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(221), + [sym_async_block] = STATE(221), + [sym_block] = STATE(221), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), + [anon_sym_async] = ACTIONS(646), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(648), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(650), + [anon_sym_if] = ACTIONS(652), + [anon_sym_loop] = ACTIONS(654), + [anon_sym_match] = ACTIONS(656), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_while] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [117] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1207), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1132), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(221), + [sym_if_let_expression] = STATE(221), + [sym_match_expression] = STATE(221), + [sym_while_expression] = STATE(221), + [sym_while_let_expression] = STATE(221), + [sym_loop_expression] = STATE(221), + [sym_for_expression] = STATE(221), + [sym_const_block] = STATE(221), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2452), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(221), + [sym_async_block] = STATE(221), + [sym_block] = STATE(221), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(646), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(648), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(650), + [anon_sym_if] = ACTIONS(652), + [anon_sym_loop] = ACTIONS(654), + [anon_sym_match] = ACTIONS(656), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_while] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [118] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1214), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [118] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(764), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(331), + [119] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1191), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [119] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1206), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [120] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1127), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -27533,12 +27691,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -27555,159 +27713,159 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [120] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1205), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(331), + [121] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1207), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [121] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1196), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [122] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1119), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -27739,12 +27897,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -27761,51 +27919,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [122] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1174), - [sym_macro_invocation] = STATE(1015), + [123] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(994), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -27864,159 +28022,159 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [123] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1195), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(331), + [124] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1185), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [124] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1194), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [125] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1154), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -28048,12 +28206,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -28070,51 +28228,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [125] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1135), - [sym_macro_invocation] = STATE(1015), + [126] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1159), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -28173,154 +28331,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [126] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1215), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, [127] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1172), - [sym_macro_invocation] = STATE(1015), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(985), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -28380,153 +28435,153 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [128] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1156), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(983), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(910), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), + [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [129] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1184), - [sym_macro_invocation] = STATE(1015), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1223), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -28586,50 +28641,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [130] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1066), - [sym_macro_invocation] = STATE(1015), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1180), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -28689,50 +28744,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [131] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1067), - [sym_macro_invocation] = STATE(1015), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1192), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -28792,50 +28847,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [132] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1068), - [sym_macro_invocation] = STATE(1015), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1153), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -28895,153 +28950,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [133] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1145), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [134] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1069), - [sym_macro_invocation] = STATE(1015), + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1118), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -29100,51 +29052,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [135] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1070), - [sym_macro_invocation] = STATE(1015), + [134] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1232), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -29203,51 +29155,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1179), - [sym_macro_invocation] = STATE(1015), + [135] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1196), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -29306,51 +29258,463 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, + [136] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1130), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, [137] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(764), - [sym_macro_invocation] = STATE(1015), + [sym_attribute_item] = STATE(188), + [sym_function_modifiers] = STATE(2308), + [sym_self_parameter] = STATE(1978), + [sym_variadic_parameter] = STATE(1978), + [sym_parameter] = STATE(1978), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1723), + [sym_bracketed_type] = STATE(2410), + [sym_lifetime] = STATE(1972), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2411), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(1446), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1688), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(662), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_RPAREN] = ACTIONS(666), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(672), + [anon_sym_i8] = ACTIONS(672), + [anon_sym_u16] = ACTIONS(672), + [anon_sym_i16] = ACTIONS(672), + [anon_sym_u32] = ACTIONS(672), + [anon_sym_i32] = ACTIONS(672), + [anon_sym_u64] = ACTIONS(672), + [anon_sym_i64] = ACTIONS(672), + [anon_sym_u128] = ACTIONS(672), + [anon_sym_i128] = ACTIONS(672), + [anon_sym_isize] = ACTIONS(672), + [anon_sym_usize] = ACTIONS(672), + [anon_sym_f32] = ACTIONS(672), + [anon_sym_f64] = ACTIONS(672), + [anon_sym_bool] = ACTIONS(672), + [anon_sym_str] = ACTIONS(672), + [anon_sym_char] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(680), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(694), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(700), + [anon_sym__] = ACTIONS(702), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(706), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(710), + [anon_sym_DOT_DOT] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(722), + [sym_super] = ACTIONS(724), + [sym_crate] = ACTIONS(724), + [sym_metavariable] = ACTIONS(726), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), + [sym_block_comment] = ACTIONS(3), + }, + [138] = { + [sym_attribute_item] = STATE(188), + [sym_function_modifiers] = STATE(2308), + [sym_self_parameter] = STATE(1978), + [sym_variadic_parameter] = STATE(1978), + [sym_parameter] = STATE(1978), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1723), + [sym_bracketed_type] = STATE(2407), + [sym_lifetime] = STATE(1972), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2408), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2134), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(734), + [anon_sym_i8] = ACTIONS(734), + [anon_sym_u16] = ACTIONS(734), + [anon_sym_i16] = ACTIONS(734), + [anon_sym_u32] = ACTIONS(734), + [anon_sym_i32] = ACTIONS(734), + [anon_sym_u64] = ACTIONS(734), + [anon_sym_i64] = ACTIONS(734), + [anon_sym_u128] = ACTIONS(734), + [anon_sym_i128] = ACTIONS(734), + [anon_sym_isize] = ACTIONS(734), + [anon_sym_usize] = ACTIONS(734), + [anon_sym_f32] = ACTIONS(734), + [anon_sym_f64] = ACTIONS(734), + [anon_sym_bool] = ACTIONS(734), + [anon_sym_str] = ACTIONS(734), + [anon_sym_char] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(736), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(738), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(740), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym__] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(706), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(710), + [anon_sym_DOT_DOT] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(748), + [sym_super] = ACTIONS(750), + [sym_crate] = ACTIONS(750), + [sym_metavariable] = ACTIONS(752), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), + [sym_block_comment] = ACTIONS(3), + }, + [139] = { + [sym_attribute_item] = STATE(188), + [sym_function_modifiers] = STATE(2308), + [sym_self_parameter] = STATE(1978), + [sym_variadic_parameter] = STATE(1978), + [sym_parameter] = STATE(1978), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1723), + [sym_bracketed_type] = STATE(2410), + [sym_lifetime] = STATE(1972), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2411), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(1446), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1688), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(662), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(672), + [anon_sym_i8] = ACTIONS(672), + [anon_sym_u16] = ACTIONS(672), + [anon_sym_i16] = ACTIONS(672), + [anon_sym_u32] = ACTIONS(672), + [anon_sym_i32] = ACTIONS(672), + [anon_sym_u64] = ACTIONS(672), + [anon_sym_i64] = ACTIONS(672), + [anon_sym_u128] = ACTIONS(672), + [anon_sym_i128] = ACTIONS(672), + [anon_sym_isize] = ACTIONS(672), + [anon_sym_usize] = ACTIONS(672), + [anon_sym_f32] = ACTIONS(672), + [anon_sym_f64] = ACTIONS(672), + [anon_sym_bool] = ACTIONS(672), + [anon_sym_str] = ACTIONS(672), + [anon_sym_char] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(680), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(756), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(700), + [anon_sym__] = ACTIONS(702), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(706), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(710), + [anon_sym_DOT_DOT] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(722), + [sym_super] = ACTIONS(724), + [sym_crate] = ACTIONS(724), + [sym_metavariable] = ACTIONS(726), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), + [sym_block_comment] = ACTIONS(3), + }, + [140] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1198), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -29409,51 +29773,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [138] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1072), - [sym_macro_invocation] = STATE(1015), + [141] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1186), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -29512,51 +29876,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [139] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1074), - [sym_macro_invocation] = STATE(1015), + [142] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1205), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -29615,157 +29979,157 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [140] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1059), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(275), + [143] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1156), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), + [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [141] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1116), - [sym_macro_invocation] = STATE(1015), + [144] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1155), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(228), + [sym_if_let_expression] = STATE(228), + [sym_match_expression] = STATE(228), + [sym_while_expression] = STATE(228), + [sym_while_let_expression] = STATE(228), + [sym_loop_expression] = STATE(228), + [sym_for_expression] = STATE(228), + [sym_const_block] = STATE(228), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2452), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(228), + [sym_async_block] = STATE(228), + [sym_block] = STATE(228), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -29786,19 +30150,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), + [anon_sym_async] = ACTIONS(646), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), + [anon_sym_const] = ACTIONS(648), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), + [anon_sym_for] = ACTIONS(650), + [anon_sym_if] = ACTIONS(652), + [anon_sym_loop] = ACTIONS(654), + [anon_sym_match] = ACTIONS(656), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_while] = ACTIONS(660), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -29821,51 +30185,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [142] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1188), - [sym_macro_invocation] = STATE(1015), + [145] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1208), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -29924,154 +30288,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [143] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1178), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(275), + [146] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1222), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), + [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [144] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1043), - [sym_macro_invocation] = STATE(1015), + [147] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1228), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -30130,154 +30494,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [145] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1029), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(275), + [148] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1123), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), + [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [146] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1171), - [sym_macro_invocation] = STATE(1015), + [149] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1210), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -30336,154 +30700,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [147] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1129), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [148] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1170), - [sym_macro_invocation] = STATE(1015), + [150] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1231), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -30542,56 +30803,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [149] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1120), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [151] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1169), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -30623,12 +30884,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -30645,159 +30906,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [150] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1190), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [151] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1147), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [152] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1174), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -30829,12 +30987,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -30851,56 +31009,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1148), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [153] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1229), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -30932,12 +31090,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -30954,56 +31112,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [153] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1125), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [154] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -31035,12 +31193,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -31057,51 +31215,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [154] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1176), - [sym_macro_invocation] = STATE(1015), + [155] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1233), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -31160,54 +31318,466 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [155] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1214), - [sym_macro_invocation] = STATE(1015), + [156] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [157] = { + [sym_attribute_item] = STATE(188), + [sym_function_modifiers] = STATE(2308), + [sym_self_parameter] = STATE(1978), + [sym_variadic_parameter] = STATE(1978), + [sym_parameter] = STATE(1978), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1723), + [sym_bracketed_type] = STATE(2410), + [sym_lifetime] = STATE(1972), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2411), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(1446), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1688), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(662), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(672), + [anon_sym_i8] = ACTIONS(672), + [anon_sym_u16] = ACTIONS(672), + [anon_sym_i16] = ACTIONS(672), + [anon_sym_u32] = ACTIONS(672), + [anon_sym_i32] = ACTIONS(672), + [anon_sym_u64] = ACTIONS(672), + [anon_sym_i64] = ACTIONS(672), + [anon_sym_u128] = ACTIONS(672), + [anon_sym_i128] = ACTIONS(672), + [anon_sym_isize] = ACTIONS(672), + [anon_sym_usize] = ACTIONS(672), + [anon_sym_f32] = ACTIONS(672), + [anon_sym_f64] = ACTIONS(672), + [anon_sym_bool] = ACTIONS(672), + [anon_sym_str] = ACTIONS(672), + [anon_sym_char] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(680), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(760), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(700), + [anon_sym__] = ACTIONS(702), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(706), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(710), + [anon_sym_DOT_DOT] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(722), + [sym_super] = ACTIONS(724), + [sym_crate] = ACTIONS(724), + [sym_metavariable] = ACTIONS(726), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), + [sym_block_comment] = ACTIONS(3), + }, + [158] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1172), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [159] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1175), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(337), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(345), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [160] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1184), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(228), + [sym_if_let_expression] = STATE(228), + [sym_match_expression] = STATE(228), + [sym_while_expression] = STATE(228), + [sym_while_let_expression] = STATE(228), + [sym_loop_expression] = STATE(228), + [sym_for_expression] = STATE(228), + [sym_const_block] = STATE(228), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2452), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(228), + [sym_async_block] = STATE(228), + [sym_block] = STATE(228), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -31228,19 +31798,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), + [anon_sym_async] = ACTIONS(646), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), + [anon_sym_const] = ACTIONS(648), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), + [anon_sym_for] = ACTIONS(650), + [anon_sym_if] = ACTIONS(652), + [anon_sym_loop] = ACTIONS(654), + [anon_sym_match] = ACTIONS(656), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_while] = ACTIONS(660), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -31263,51 +31833,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [156] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1218), - [sym_macro_invocation] = STATE(1015), + [161] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1183), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -31366,56 +31936,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [157] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1098), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [162] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1131), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -31447,12 +32017,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -31469,51 +32039,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [158] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1100), - [sym_macro_invocation] = STATE(1015), + [163] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -31572,51 +32142,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [159] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1123), - [sym_macro_invocation] = STATE(1015), + [164] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1213), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -31675,262 +32245,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [160] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1193), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(221), - [sym_if_let_expression] = STATE(221), - [sym_match_expression] = STATE(221), - [sym_while_expression] = STATE(221), - [sym_while_let_expression] = STATE(221), - [sym_loop_expression] = STATE(221), - [sym_for_expression] = STATE(221), - [sym_const_block] = STATE(221), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2407), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(221), - [sym_async_block] = STATE(221), - [sym_block] = STATE(221), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(642), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(644), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(646), - [anon_sym_if] = ACTIONS(648), - [anon_sym_loop] = ACTIONS(650), - [anon_sym_match] = ACTIONS(652), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(654), - [anon_sym_while] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [161] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1181), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(211), - [sym_if_let_expression] = STATE(211), - [sym_match_expression] = STATE(211), - [sym_while_expression] = STATE(211), - [sym_while_let_expression] = STATE(211), - [sym_loop_expression] = STATE(211), - [sym_for_expression] = STATE(211), - [sym_const_block] = STATE(211), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2407), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(211), - [sym_async_block] = STATE(211), - [sym_block] = STATE(211), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(642), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(644), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(646), - [anon_sym_if] = ACTIONS(648), - [anon_sym_loop] = ACTIONS(650), - [anon_sym_match] = ACTIONS(652), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(654), - [anon_sym_while] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [162] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1162), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [165] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1225), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -31962,12 +32326,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -31984,51 +32348,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [163] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1186), - [sym_macro_invocation] = STATE(1015), + [166] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1033), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -32087,360 +32451,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [164] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1126), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(275), + [167] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1147), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), + [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [165] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2292), - [sym_self_parameter] = STATE(1764), - [sym_variadic_parameter] = STATE(1764), - [sym_parameter] = STATE(1764), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1741), - [sym_bracketed_type] = STATE(2365), - [sym_lifetime] = STATE(1763), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2366), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(1443), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1638), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(668), - [anon_sym_i8] = ACTIONS(668), - [anon_sym_u16] = ACTIONS(668), - [anon_sym_i16] = ACTIONS(668), - [anon_sym_u32] = ACTIONS(668), - [anon_sym_i32] = ACTIONS(668), - [anon_sym_u64] = ACTIONS(668), - [anon_sym_i64] = ACTIONS(668), - [anon_sym_u128] = ACTIONS(668), - [anon_sym_i128] = ACTIONS(668), - [anon_sym_isize] = ACTIONS(668), - [anon_sym_usize] = ACTIONS(668), - [anon_sym_f32] = ACTIONS(668), - [anon_sym_f64] = ACTIONS(668), - [anon_sym_bool] = ACTIONS(668), - [anon_sym_str] = ACTIONS(668), - [anon_sym_char] = ACTIONS(668), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(684), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_COMMA] = ACTIONS(758), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(696), - [anon_sym__] = ACTIONS(698), - [anon_sym_AMP] = ACTIONS(700), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(718), - [sym_super] = ACTIONS(720), - [sym_crate] = ACTIONS(720), - [sym_metavariable] = ACTIONS(722), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), - [sym_block_comment] = ACTIONS(3), - }, - [166] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2292), - [sym_self_parameter] = STATE(1764), - [sym_variadic_parameter] = STATE(1764), - [sym_parameter] = STATE(1764), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1741), - [sym_bracketed_type] = STATE(2365), - [sym_lifetime] = STATE(1763), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2366), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(1443), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1638), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(668), - [anon_sym_i8] = ACTIONS(668), - [anon_sym_u16] = ACTIONS(668), - [anon_sym_i16] = ACTIONS(668), - [anon_sym_u32] = ACTIONS(668), - [anon_sym_i32] = ACTIONS(668), - [anon_sym_u64] = ACTIONS(668), - [anon_sym_i64] = ACTIONS(668), - [anon_sym_u128] = ACTIONS(668), - [anon_sym_i128] = ACTIONS(668), - [anon_sym_isize] = ACTIONS(668), - [anon_sym_usize] = ACTIONS(668), - [anon_sym_f32] = ACTIONS(668), - [anon_sym_f64] = ACTIONS(668), - [anon_sym_bool] = ACTIONS(668), - [anon_sym_str] = ACTIONS(668), - [anon_sym_char] = ACTIONS(668), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(684), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(696), - [anon_sym__] = ACTIONS(698), - [anon_sym_AMP] = ACTIONS(700), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(718), - [sym_super] = ACTIONS(720), - [sym_crate] = ACTIONS(720), - [sym_metavariable] = ACTIONS(722), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), - [sym_block_comment] = ACTIONS(3), - }, - [167] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1202), - [sym_macro_invocation] = STATE(1015), + [168] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1838), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(1053), [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(88), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -32499,56 +32657,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [168] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1165), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [169] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1202), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -32580,12 +32738,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -32602,468 +32760,468 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [169] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1034), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(275), + [170] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1162), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), + [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [170] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1187), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(275), + [171] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1140), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), + [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [171] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1099), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(275), + [172] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), + [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [172] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1210), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(275), + [173] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1217), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), + [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [173] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1192), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [174] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1218), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -33095,12 +33253,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -33117,56 +33275,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [174] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1110), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [175] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1219), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -33198,12 +33356,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -33220,56 +33378,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [175] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1157), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [176] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1178), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -33301,12 +33459,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -33323,262 +33481,365 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [176] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1185), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(275), + [177] = { + [sym_attribute_item] = STATE(189), + [sym_function_modifiers] = STATE(2308), + [sym_self_parameter] = STATE(1994), + [sym_variadic_parameter] = STATE(1994), + [sym_parameter] = STATE(1994), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1764), + [sym_bracketed_type] = STATE(2407), + [sym_lifetime] = STATE(1972), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2408), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2134), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(734), + [anon_sym_i8] = ACTIONS(734), + [anon_sym_u16] = ACTIONS(734), + [anon_sym_i16] = ACTIONS(734), + [anon_sym_u32] = ACTIONS(734), + [anon_sym_i32] = ACTIONS(734), + [anon_sym_u64] = ACTIONS(734), + [anon_sym_i64] = ACTIONS(734), + [anon_sym_u128] = ACTIONS(734), + [anon_sym_i128] = ACTIONS(734), + [anon_sym_isize] = ACTIONS(734), + [anon_sym_usize] = ACTIONS(734), + [anon_sym_f32] = ACTIONS(734), + [anon_sym_f64] = ACTIONS(734), + [anon_sym_bool] = ACTIONS(734), + [anon_sym_str] = ACTIONS(734), + [anon_sym_char] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(736), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(738), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(764), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym__] = ACTIONS(766), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(706), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(710), + [anon_sym_DOT_DOT] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(748), + [sym_super] = ACTIONS(750), + [sym_crate] = ACTIONS(750), + [sym_metavariable] = ACTIONS(752), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), + [sym_block_comment] = ACTIONS(3), + }, + [178] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(761), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), + [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [177] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1221), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(275), + [179] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1170), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), + [anon_sym_default] = ACTIONS(337), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), + [anon_sym_return] = ACTIONS(339), + [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(347), + [sym_super] = ACTIONS(349), + [sym_crate] = ACTIONS(349), + [sym_metavariable] = ACTIONS(351), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [178] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1860), - [sym__expression] = STATE(1121), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(1107), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(1039), - [sym_if_let_expression] = STATE(1039), - [sym_match_expression] = STATE(1039), - [sym_while_expression] = STATE(1039), - [sym_while_let_expression] = STATE(1039), - [sym_loop_expression] = STATE(1039), - [sym_for_expression] = STATE(1039), - [sym_const_block] = STATE(1039), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2374), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(1039), - [sym_async_block] = STATE(1039), - [sym_block] = STATE(1039), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), + [180] = { + [sym_bracketed_type] = STATE(2370), + [sym_generic_function] = STATE(1076), + [sym_generic_type_with_turbofish] = STATE(1887), + [sym__expression] = STATE(1220), + [sym_macro_invocation] = STATE(1053), + [sym_scoped_identifier] = STATE(1167), + [sym_scoped_type_identifier_in_expression_position] = STATE(2165), + [sym_range_expression] = STATE(1076), + [sym_unary_expression] = STATE(1076), + [sym_try_expression] = STATE(1076), + [sym_reference_expression] = STATE(1076), + [sym_binary_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_compound_assignment_expr] = STATE(1076), + [sym_type_cast_expression] = STATE(1076), + [sym_return_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_array_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_tuple_expression] = STATE(1076), + [sym_unit_expression] = STATE(1076), + [sym_struct_expression] = STATE(1076), + [sym_if_expression] = STATE(1076), + [sym_if_let_expression] = STATE(1076), + [sym_match_expression] = STATE(1076), + [sym_while_expression] = STATE(1076), + [sym_while_let_expression] = STATE(1076), + [sym_loop_expression] = STATE(1076), + [sym_for_expression] = STATE(1076), + [sym_const_block] = STATE(1076), + [sym_closure_expression] = STATE(1076), + [sym_closure_parameters] = STATE(76), + [sym_loop_label] = STATE(2419), + [sym_break_expression] = STATE(1076), + [sym_continue_expression] = STATE(1076), + [sym_index_expression] = STATE(1076), + [sym_await_expression] = STATE(1076), + [sym_field_expression] = STATE(811), + [sym_unsafe_block] = STATE(1076), + [sym_async_block] = STATE(1076), + [sym_block] = STATE(1076), + [sym__literal] = STATE(1076), + [sym_string_literal] = STATE(965), + [sym_boolean_literal] = STATE(965), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(606), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -33610,12 +33871,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(337), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(606), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(606), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(345), [sym_integer_literal] = ACTIONS(89), @@ -33632,2639 +33893,2536 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [179] = { - [sym_bracketed_type] = STATE(2341), - [sym_generic_function] = STATE(1039), - [sym_generic_type_with_turbofish] = STATE(1804), - [sym__expression] = STATE(1132), - [sym_macro_invocation] = STATE(1015), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2127), - [sym_range_expression] = STATE(1039), - [sym_unary_expression] = STATE(1039), - [sym_try_expression] = STATE(1039), - [sym_reference_expression] = STATE(1039), - [sym_binary_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_compound_assignment_expr] = STATE(1039), - [sym_type_cast_expression] = STATE(1039), - [sym_return_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_array_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_tuple_expression] = STATE(1039), - [sym_unit_expression] = STATE(1039), - [sym_struct_expression] = STATE(1039), - [sym_if_expression] = STATE(221), - [sym_if_let_expression] = STATE(221), - [sym_match_expression] = STATE(221), - [sym_while_expression] = STATE(221), - [sym_while_let_expression] = STATE(221), - [sym_loop_expression] = STATE(221), - [sym_for_expression] = STATE(221), - [sym_const_block] = STATE(221), - [sym_closure_expression] = STATE(1039), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2407), - [sym_break_expression] = STATE(1039), - [sym_continue_expression] = STATE(1039), - [sym_index_expression] = STATE(1039), - [sym_await_expression] = STATE(1039), - [sym_field_expression] = STATE(809), - [sym_unsafe_block] = STATE(221), - [sym_async_block] = STATE(221), - [sym_block] = STATE(221), - [sym__literal] = STATE(1039), - [sym_string_literal] = STATE(990), - [sym_boolean_literal] = STATE(990), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(642), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(644), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(646), - [anon_sym_if] = ACTIONS(648), - [anon_sym_loop] = ACTIONS(650), - [anon_sym_match] = ACTIONS(652), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(654), - [anon_sym_while] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [180] = { - [sym_attribute_item] = STATE(189), - [sym_function_modifiers] = STATE(2292), - [sym_self_parameter] = STATE(2189), - [sym_variadic_parameter] = STATE(2189), - [sym_parameter] = STATE(2189), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1869), - [sym_bracketed_type] = STATE(2362), - [sym_lifetime] = STATE(1763), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2363), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2111), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(732), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(734), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), - [sym_block_comment] = ACTIONS(3), - }, [181] = { - [sym_attribute_item] = STATE(189), - [sym_function_modifiers] = STATE(2292), - [sym_self_parameter] = STATE(2189), - [sym_variadic_parameter] = STATE(2189), - [sym_parameter] = STATE(2189), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1869), - [sym_bracketed_type] = STATE(2362), - [sym_lifetime] = STATE(1763), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2363), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), + [sym_attribute_item] = STATE(190), + [sym_function_modifiers] = STATE(2308), + [sym_self_parameter] = STATE(2086), + [sym_variadic_parameter] = STATE(2086), + [sym_parameter] = STATE(2086), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1995), + [sym_bracketed_type] = STATE(2407), + [sym_lifetime] = STATE(1972), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2408), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2111), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2134), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(730), [anon_sym_RPAREN] = ACTIONS(768), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(732), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(734), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(734), + [anon_sym_i8] = ACTIONS(734), + [anon_sym_u16] = ACTIONS(734), + [anon_sym_i16] = ACTIONS(734), + [anon_sym_u32] = ACTIONS(734), + [anon_sym_i32] = ACTIONS(734), + [anon_sym_u64] = ACTIONS(734), + [anon_sym_i64] = ACTIONS(734), + [anon_sym_u128] = ACTIONS(734), + [anon_sym_i128] = ACTIONS(734), + [anon_sym_isize] = ACTIONS(734), + [anon_sym_usize] = ACTIONS(734), + [anon_sym_f32] = ACTIONS(734), + [anon_sym_f64] = ACTIONS(734), + [anon_sym_bool] = ACTIONS(734), + [anon_sym_str] = ACTIONS(734), + [anon_sym_char] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(736), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(738), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym__] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(706), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(710), + [anon_sym_DOT_DOT] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(748), + [sym_super] = ACTIONS(750), + [sym_crate] = ACTIONS(750), + [sym_metavariable] = ACTIONS(752), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [182] = { - [sym_attribute_item] = STATE(189), - [sym_function_modifiers] = STATE(2292), - [sym_self_parameter] = STATE(2189), - [sym_variadic_parameter] = STATE(2189), - [sym_parameter] = STATE(2189), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1869), - [sym_bracketed_type] = STATE(2362), - [sym_lifetime] = STATE(1763), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2363), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), + [sym_attribute_item] = STATE(190), + [sym_function_modifiers] = STATE(2308), + [sym_self_parameter] = STATE(2086), + [sym_variadic_parameter] = STATE(2086), + [sym_parameter] = STATE(2086), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1995), + [sym_bracketed_type] = STATE(2407), + [sym_lifetime] = STATE(1972), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2408), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2111), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_RPAREN] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(732), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(734), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2134), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(734), + [anon_sym_i8] = ACTIONS(734), + [anon_sym_u16] = ACTIONS(734), + [anon_sym_i16] = ACTIONS(734), + [anon_sym_u32] = ACTIONS(734), + [anon_sym_i32] = ACTIONS(734), + [anon_sym_u64] = ACTIONS(734), + [anon_sym_i64] = ACTIONS(734), + [anon_sym_u128] = ACTIONS(734), + [anon_sym_i128] = ACTIONS(734), + [anon_sym_isize] = ACTIONS(734), + [anon_sym_usize] = ACTIONS(734), + [anon_sym_f32] = ACTIONS(734), + [anon_sym_f64] = ACTIONS(734), + [anon_sym_bool] = ACTIONS(734), + [anon_sym_str] = ACTIONS(734), + [anon_sym_char] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(736), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(738), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym__] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(706), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(710), + [anon_sym_DOT_DOT] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(748), + [sym_super] = ACTIONS(750), + [sym_crate] = ACTIONS(750), + [sym_metavariable] = ACTIONS(752), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [183] = { - [sym_attribute_item] = STATE(189), - [sym_function_modifiers] = STATE(2292), - [sym_self_parameter] = STATE(2189), - [sym_variadic_parameter] = STATE(2189), - [sym_parameter] = STATE(2189), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1869), - [sym_bracketed_type] = STATE(2362), - [sym_lifetime] = STATE(1763), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2363), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), + [sym_attribute_item] = STATE(190), + [sym_function_modifiers] = STATE(2308), + [sym_self_parameter] = STATE(2086), + [sym_variadic_parameter] = STATE(2086), + [sym_parameter] = STATE(2086), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1995), + [sym_bracketed_type] = STATE(2407), + [sym_lifetime] = STATE(1972), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2408), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2111), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(732), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(734), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2134), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(774), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(734), + [anon_sym_i8] = ACTIONS(734), + [anon_sym_u16] = ACTIONS(734), + [anon_sym_i16] = ACTIONS(734), + [anon_sym_u32] = ACTIONS(734), + [anon_sym_i32] = ACTIONS(734), + [anon_sym_u64] = ACTIONS(734), + [anon_sym_i64] = ACTIONS(734), + [anon_sym_u128] = ACTIONS(734), + [anon_sym_i128] = ACTIONS(734), + [anon_sym_isize] = ACTIONS(734), + [anon_sym_usize] = ACTIONS(734), + [anon_sym_f32] = ACTIONS(734), + [anon_sym_f64] = ACTIONS(734), + [anon_sym_bool] = ACTIONS(734), + [anon_sym_str] = ACTIONS(734), + [anon_sym_char] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(736), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(738), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym__] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(706), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(710), + [anon_sym_DOT_DOT] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(748), + [sym_super] = ACTIONS(750), + [sym_crate] = ACTIONS(750), + [sym_metavariable] = ACTIONS(752), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [184] = { - [sym_attribute_item] = STATE(189), - [sym_function_modifiers] = STATE(2292), - [sym_self_parameter] = STATE(2189), - [sym_variadic_parameter] = STATE(2189), - [sym_parameter] = STATE(2189), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1869), - [sym_bracketed_type] = STATE(2362), - [sym_lifetime] = STATE(1763), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2363), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), + [sym_attribute_item] = STATE(190), + [sym_function_modifiers] = STATE(2308), + [sym_self_parameter] = STATE(2086), + [sym_variadic_parameter] = STATE(2086), + [sym_parameter] = STATE(2086), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1995), + [sym_bracketed_type] = STATE(2407), + [sym_lifetime] = STATE(1972), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2408), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2111), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_RPAREN] = ACTIONS(774), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(732), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(734), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2134), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(776), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(734), + [anon_sym_i8] = ACTIONS(734), + [anon_sym_u16] = ACTIONS(734), + [anon_sym_i16] = ACTIONS(734), + [anon_sym_u32] = ACTIONS(734), + [anon_sym_i32] = ACTIONS(734), + [anon_sym_u64] = ACTIONS(734), + [anon_sym_i64] = ACTIONS(734), + [anon_sym_u128] = ACTIONS(734), + [anon_sym_i128] = ACTIONS(734), + [anon_sym_isize] = ACTIONS(734), + [anon_sym_usize] = ACTIONS(734), + [anon_sym_f32] = ACTIONS(734), + [anon_sym_f64] = ACTIONS(734), + [anon_sym_bool] = ACTIONS(734), + [anon_sym_str] = ACTIONS(734), + [anon_sym_char] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(736), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(738), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym__] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(706), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(710), + [anon_sym_DOT_DOT] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(748), + [sym_super] = ACTIONS(750), + [sym_crate] = ACTIONS(750), + [sym_metavariable] = ACTIONS(752), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [185] = { - [sym_attribute_item] = STATE(189), - [sym_function_modifiers] = STATE(2292), - [sym_self_parameter] = STATE(2189), - [sym_variadic_parameter] = STATE(2189), - [sym_parameter] = STATE(2189), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1869), - [sym_bracketed_type] = STATE(2362), - [sym_lifetime] = STATE(1763), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2363), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), + [sym_attribute_item] = STATE(190), + [sym_function_modifiers] = STATE(2308), + [sym_self_parameter] = STATE(2086), + [sym_variadic_parameter] = STATE(2086), + [sym_parameter] = STATE(2086), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1995), + [sym_bracketed_type] = STATE(2407), + [sym_lifetime] = STATE(1972), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2408), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2111), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_RPAREN] = ACTIONS(776), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(732), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(734), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2134), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(734), + [anon_sym_i8] = ACTIONS(734), + [anon_sym_u16] = ACTIONS(734), + [anon_sym_i16] = ACTIONS(734), + [anon_sym_u32] = ACTIONS(734), + [anon_sym_i32] = ACTIONS(734), + [anon_sym_u64] = ACTIONS(734), + [anon_sym_i64] = ACTIONS(734), + [anon_sym_u128] = ACTIONS(734), + [anon_sym_i128] = ACTIONS(734), + [anon_sym_isize] = ACTIONS(734), + [anon_sym_usize] = ACTIONS(734), + [anon_sym_f32] = ACTIONS(734), + [anon_sym_f64] = ACTIONS(734), + [anon_sym_bool] = ACTIONS(734), + [anon_sym_str] = ACTIONS(734), + [anon_sym_char] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(736), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(738), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym__] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(706), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(710), + [anon_sym_DOT_DOT] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(748), + [sym_super] = ACTIONS(750), + [sym_crate] = ACTIONS(750), + [sym_metavariable] = ACTIONS(752), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [186] = { - [sym_attribute_item] = STATE(189), - [sym_function_modifiers] = STATE(2292), - [sym_self_parameter] = STATE(2189), - [sym_variadic_parameter] = STATE(2189), - [sym_parameter] = STATE(2189), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1869), - [sym_bracketed_type] = STATE(2362), - [sym_lifetime] = STATE(1763), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2363), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), + [sym_attribute_item] = STATE(190), + [sym_function_modifiers] = STATE(2308), + [sym_self_parameter] = STATE(2086), + [sym_variadic_parameter] = STATE(2086), + [sym_parameter] = STATE(2086), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1995), + [sym_bracketed_type] = STATE(2407), + [sym_lifetime] = STATE(1972), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2408), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2111), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(732), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(734), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2134), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(734), + [anon_sym_i8] = ACTIONS(734), + [anon_sym_u16] = ACTIONS(734), + [anon_sym_i16] = ACTIONS(734), + [anon_sym_u32] = ACTIONS(734), + [anon_sym_i32] = ACTIONS(734), + [anon_sym_u64] = ACTIONS(734), + [anon_sym_i64] = ACTIONS(734), + [anon_sym_u128] = ACTIONS(734), + [anon_sym_i128] = ACTIONS(734), + [anon_sym_isize] = ACTIONS(734), + [anon_sym_usize] = ACTIONS(734), + [anon_sym_f32] = ACTIONS(734), + [anon_sym_f64] = ACTIONS(734), + [anon_sym_bool] = ACTIONS(734), + [anon_sym_str] = ACTIONS(734), + [anon_sym_char] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(736), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(738), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym__] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(706), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(710), + [anon_sym_DOT_DOT] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(748), + [sym_super] = ACTIONS(750), + [sym_crate] = ACTIONS(750), + [sym_metavariable] = ACTIONS(752), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [187] = { - [sym_function_modifiers] = STATE(2292), - [sym_self_parameter] = STATE(2004), - [sym_variadic_parameter] = STATE(2004), - [sym_parameter] = STATE(2004), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1714), - [sym_bracketed_type] = STATE(2362), - [sym_lifetime] = STATE(1763), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2363), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), + [sym_attribute_item] = STATE(190), + [sym_function_modifiers] = STATE(2308), + [sym_self_parameter] = STATE(2086), + [sym_variadic_parameter] = STATE(2086), + [sym_parameter] = STATE(2086), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1995), + [sym_bracketed_type] = STATE(2407), + [sym_lifetime] = STATE(1972), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2408), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2111), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(732), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(734), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2134), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(734), + [anon_sym_i8] = ACTIONS(734), + [anon_sym_u16] = ACTIONS(734), + [anon_sym_i16] = ACTIONS(734), + [anon_sym_u32] = ACTIONS(734), + [anon_sym_i32] = ACTIONS(734), + [anon_sym_u64] = ACTIONS(734), + [anon_sym_i64] = ACTIONS(734), + [anon_sym_u128] = ACTIONS(734), + [anon_sym_i128] = ACTIONS(734), + [anon_sym_isize] = ACTIONS(734), + [anon_sym_usize] = ACTIONS(734), + [anon_sym_f32] = ACTIONS(734), + [anon_sym_f64] = ACTIONS(734), + [anon_sym_bool] = ACTIONS(734), + [anon_sym_str] = ACTIONS(734), + [anon_sym_char] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(736), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(738), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym__] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(706), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(710), + [anon_sym_DOT_DOT] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(748), + [sym_super] = ACTIONS(750), + [sym_crate] = ACTIONS(750), + [sym_metavariable] = ACTIONS(752), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [188] = { - [sym_function_modifiers] = STATE(2292), - [sym_self_parameter] = STATE(1986), - [sym_variadic_parameter] = STATE(1986), - [sym_parameter] = STATE(1986), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1720), - [sym_bracketed_type] = STATE(2362), - [sym_lifetime] = STATE(1763), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2363), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), + [sym_function_modifiers] = STATE(2308), + [sym_self_parameter] = STATE(1857), + [sym_variadic_parameter] = STATE(1857), + [sym_parameter] = STATE(1857), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1697), + [sym_bracketed_type] = STATE(2407), + [sym_lifetime] = STATE(1972), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2408), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2111), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(732), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(734), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2134), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(734), + [anon_sym_i8] = ACTIONS(734), + [anon_sym_u16] = ACTIONS(734), + [anon_sym_i16] = ACTIONS(734), + [anon_sym_u32] = ACTIONS(734), + [anon_sym_i32] = ACTIONS(734), + [anon_sym_u64] = ACTIONS(734), + [anon_sym_i64] = ACTIONS(734), + [anon_sym_u128] = ACTIONS(734), + [anon_sym_i128] = ACTIONS(734), + [anon_sym_isize] = ACTIONS(734), + [anon_sym_usize] = ACTIONS(734), + [anon_sym_f32] = ACTIONS(734), + [anon_sym_f64] = ACTIONS(734), + [anon_sym_bool] = ACTIONS(734), + [anon_sym_str] = ACTIONS(734), + [anon_sym_char] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(736), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(738), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(706), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(710), + [anon_sym_DOT_DOT] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(748), + [sym_super] = ACTIONS(750), + [sym_crate] = ACTIONS(750), + [sym_metavariable] = ACTIONS(752), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [189] = { - [sym_function_modifiers] = STATE(2292), - [sym_self_parameter] = STATE(2107), - [sym_variadic_parameter] = STATE(2107), - [sym_parameter] = STATE(2107), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1789), - [sym_bracketed_type] = STATE(2362), - [sym_lifetime] = STATE(1763), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2363), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), + [sym_function_modifiers] = STATE(2308), + [sym_self_parameter] = STATE(2020), + [sym_variadic_parameter] = STATE(2020), + [sym_parameter] = STATE(2020), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1740), + [sym_bracketed_type] = STATE(2407), + [sym_lifetime] = STATE(1972), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2408), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2111), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(732), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(734), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2134), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(734), + [anon_sym_i8] = ACTIONS(734), + [anon_sym_u16] = ACTIONS(734), + [anon_sym_i16] = ACTIONS(734), + [anon_sym_u32] = ACTIONS(734), + [anon_sym_i32] = ACTIONS(734), + [anon_sym_u64] = ACTIONS(734), + [anon_sym_i64] = ACTIONS(734), + [anon_sym_u128] = ACTIONS(734), + [anon_sym_i128] = ACTIONS(734), + [anon_sym_isize] = ACTIONS(734), + [anon_sym_usize] = ACTIONS(734), + [anon_sym_f32] = ACTIONS(734), + [anon_sym_f64] = ACTIONS(734), + [anon_sym_bool] = ACTIONS(734), + [anon_sym_str] = ACTIONS(734), + [anon_sym_char] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(736), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(738), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym__] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(706), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(710), + [anon_sym_DOT_DOT] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(748), + [sym_super] = ACTIONS(750), + [sym_crate] = ACTIONS(750), + [sym_metavariable] = ACTIONS(752), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [190] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1946), - [sym_bracketed_type] = STATE(2368), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2369), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(1457), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1670), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(784), - [anon_sym_LPAREN] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_RBRACK] = ACTIONS(788), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(790), - [anon_sym_i8] = ACTIONS(790), - [anon_sym_u16] = ACTIONS(790), - [anon_sym_i16] = ACTIONS(790), - [anon_sym_u32] = ACTIONS(790), - [anon_sym_i32] = ACTIONS(790), - [anon_sym_u64] = ACTIONS(790), - [anon_sym_i64] = ACTIONS(790), - [anon_sym_u128] = ACTIONS(790), - [anon_sym_i128] = ACTIONS(790), - [anon_sym_isize] = ACTIONS(790), - [anon_sym_usize] = ACTIONS(790), - [anon_sym_f32] = ACTIONS(790), - [anon_sym_f64] = ACTIONS(790), - [anon_sym_bool] = ACTIONS(790), - [anon_sym_str] = ACTIONS(790), - [anon_sym_char] = ACTIONS(790), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(792), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(794), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_COMMA] = ACTIONS(796), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_function_modifiers] = STATE(2308), + [sym_self_parameter] = STATE(2218), + [sym_variadic_parameter] = STATE(2218), + [sym_parameter] = STATE(2218), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1922), + [sym_bracketed_type] = STATE(2407), + [sym_lifetime] = STATE(1972), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2408), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2134), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(734), + [anon_sym_i8] = ACTIONS(734), + [anon_sym_u16] = ACTIONS(734), + [anon_sym_i16] = ACTIONS(734), + [anon_sym_u32] = ACTIONS(734), + [anon_sym_i32] = ACTIONS(734), + [anon_sym_u64] = ACTIONS(734), + [anon_sym_i64] = ACTIONS(734), + [anon_sym_u128] = ACTIONS(734), + [anon_sym_i128] = ACTIONS(734), + [anon_sym_isize] = ACTIONS(734), + [anon_sym_usize] = ACTIONS(734), + [anon_sym_f32] = ACTIONS(734), + [anon_sym_f64] = ACTIONS(734), + [anon_sym_bool] = ACTIONS(734), + [anon_sym_str] = ACTIONS(734), + [anon_sym_char] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(736), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(738), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(798), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(802), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(808), - [sym_super] = ACTIONS(808), - [sym_crate] = ACTIONS(808), - [sym_metavariable] = ACTIONS(810), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym__] = ACTIONS(786), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(706), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(710), + [anon_sym_DOT_DOT] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(748), + [sym_super] = ACTIONS(750), + [sym_crate] = ACTIONS(750), + [sym_metavariable] = ACTIONS(752), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [191] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1759), - [sym_bracketed_type] = STATE(2365), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2366), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(1443), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1701), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_RPAREN] = ACTIONS(812), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(668), - [anon_sym_i8] = ACTIONS(668), - [anon_sym_u16] = ACTIONS(668), - [anon_sym_i16] = ACTIONS(668), - [anon_sym_u32] = ACTIONS(668), - [anon_sym_i32] = ACTIONS(668), - [anon_sym_u64] = ACTIONS(668), - [anon_sym_i64] = ACTIONS(668), - [anon_sym_u128] = ACTIONS(668), - [anon_sym_i128] = ACTIONS(668), - [anon_sym_isize] = ACTIONS(668), - [anon_sym_usize] = ACTIONS(668), - [anon_sym_f32] = ACTIONS(668), - [anon_sym_f64] = ACTIONS(668), - [anon_sym_bool] = ACTIONS(668), - [anon_sym_str] = ACTIONS(668), - [anon_sym_char] = ACTIONS(668), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(814), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(816), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1733), + [sym_bracketed_type] = STATE(2410), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2411), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(1446), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1750), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(662), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(672), + [anon_sym_i8] = ACTIONS(672), + [anon_sym_u16] = ACTIONS(672), + [anon_sym_i16] = ACTIONS(672), + [anon_sym_u32] = ACTIONS(672), + [anon_sym_i32] = ACTIONS(672), + [anon_sym_u64] = ACTIONS(672), + [anon_sym_i64] = ACTIONS(672), + [anon_sym_u128] = ACTIONS(672), + [anon_sym_i128] = ACTIONS(672), + [anon_sym_isize] = ACTIONS(672), + [anon_sym_usize] = ACTIONS(672), + [anon_sym_f32] = ACTIONS(672), + [anon_sym_f64] = ACTIONS(672), + [anon_sym_bool] = ACTIONS(672), + [anon_sym_str] = ACTIONS(672), + [anon_sym_char] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(792), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(794), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(696), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(720), - [sym_super] = ACTIONS(720), - [sym_crate] = ACTIONS(720), - [sym_metavariable] = ACTIONS(722), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(700), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(798), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(724), + [sym_super] = ACTIONS(724), + [sym_crate] = ACTIONS(724), + [sym_metavariable] = ACTIONS(726), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [192] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1759), - [sym_bracketed_type] = STATE(2365), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2366), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(1443), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1701), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_RPAREN] = ACTIONS(822), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(668), - [anon_sym_i8] = ACTIONS(668), - [anon_sym_u16] = ACTIONS(668), - [anon_sym_i16] = ACTIONS(668), - [anon_sym_u32] = ACTIONS(668), - [anon_sym_i32] = ACTIONS(668), - [anon_sym_u64] = ACTIONS(668), - [anon_sym_i64] = ACTIONS(668), - [anon_sym_u128] = ACTIONS(668), - [anon_sym_i128] = ACTIONS(668), - [anon_sym_isize] = ACTIONS(668), - [anon_sym_usize] = ACTIONS(668), - [anon_sym_f32] = ACTIONS(668), - [anon_sym_f64] = ACTIONS(668), - [anon_sym_bool] = ACTIONS(668), - [anon_sym_str] = ACTIONS(668), - [anon_sym_char] = ACTIONS(668), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(814), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(816), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1733), + [sym_bracketed_type] = STATE(2410), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2411), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(1446), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1750), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(662), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_RPAREN] = ACTIONS(804), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(672), + [anon_sym_i8] = ACTIONS(672), + [anon_sym_u16] = ACTIONS(672), + [anon_sym_i16] = ACTIONS(672), + [anon_sym_u32] = ACTIONS(672), + [anon_sym_i32] = ACTIONS(672), + [anon_sym_u64] = ACTIONS(672), + [anon_sym_i64] = ACTIONS(672), + [anon_sym_u128] = ACTIONS(672), + [anon_sym_i128] = ACTIONS(672), + [anon_sym_isize] = ACTIONS(672), + [anon_sym_usize] = ACTIONS(672), + [anon_sym_f32] = ACTIONS(672), + [anon_sym_f64] = ACTIONS(672), + [anon_sym_bool] = ACTIONS(672), + [anon_sym_str] = ACTIONS(672), + [anon_sym_char] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(792), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(794), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(696), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(720), - [sym_super] = ACTIONS(720), - [sym_crate] = ACTIONS(720), - [sym_metavariable] = ACTIONS(722), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(700), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(798), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(724), + [sym_super] = ACTIONS(724), + [sym_crate] = ACTIONS(724), + [sym_metavariable] = ACTIONS(726), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [193] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1759), - [sym_bracketed_type] = STATE(2365), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2366), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(1443), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1701), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(668), - [anon_sym_i8] = ACTIONS(668), - [anon_sym_u16] = ACTIONS(668), - [anon_sym_i16] = ACTIONS(668), - [anon_sym_u32] = ACTIONS(668), - [anon_sym_i32] = ACTIONS(668), - [anon_sym_u64] = ACTIONS(668), - [anon_sym_i64] = ACTIONS(668), - [anon_sym_u128] = ACTIONS(668), - [anon_sym_i128] = ACTIONS(668), - [anon_sym_isize] = ACTIONS(668), - [anon_sym_usize] = ACTIONS(668), - [anon_sym_f32] = ACTIONS(668), - [anon_sym_f64] = ACTIONS(668), - [anon_sym_bool] = ACTIONS(668), - [anon_sym_str] = ACTIONS(668), - [anon_sym_char] = ACTIONS(668), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1823), + [sym_bracketed_type] = STATE(2413), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2414), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(1475), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1755), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_RBRACK] = ACTIONS(810), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(812), + [anon_sym_i8] = ACTIONS(812), + [anon_sym_u16] = ACTIONS(812), + [anon_sym_i16] = ACTIONS(812), + [anon_sym_u32] = ACTIONS(812), + [anon_sym_i32] = ACTIONS(812), + [anon_sym_u64] = ACTIONS(812), + [anon_sym_i64] = ACTIONS(812), + [anon_sym_u128] = ACTIONS(812), + [anon_sym_i128] = ACTIONS(812), + [anon_sym_isize] = ACTIONS(812), + [anon_sym_usize] = ACTIONS(812), + [anon_sym_f32] = ACTIONS(812), + [anon_sym_f64] = ACTIONS(812), + [anon_sym_bool] = ACTIONS(812), + [anon_sym_str] = ACTIONS(812), + [anon_sym_char] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), [anon_sym_default] = ACTIONS(814), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), [anon_sym_union] = ACTIONS(816), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(696), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(720), - [sym_super] = ACTIONS(720), - [sym_crate] = ACTIONS(720), - [sym_metavariable] = ACTIONS(722), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(820), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(822), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_crate] = ACTIONS(824), + [sym_metavariable] = ACTIONS(826), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [194] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1329), - [sym_bracketed_type] = STATE(2368), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2369), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(1457), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1377), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(784), - [anon_sym_LPAREN] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(790), - [anon_sym_i8] = ACTIONS(790), - [anon_sym_u16] = ACTIONS(790), - [anon_sym_i16] = ACTIONS(790), - [anon_sym_u32] = ACTIONS(790), - [anon_sym_i32] = ACTIONS(790), - [anon_sym_u64] = ACTIONS(790), - [anon_sym_i64] = ACTIONS(790), - [anon_sym_u128] = ACTIONS(790), - [anon_sym_i128] = ACTIONS(790), - [anon_sym_isize] = ACTIONS(790), - [anon_sym_usize] = ACTIONS(790), - [anon_sym_f32] = ACTIONS(790), - [anon_sym_f64] = ACTIONS(790), - [anon_sym_bool] = ACTIONS(790), - [anon_sym_str] = ACTIONS(790), - [anon_sym_char] = ACTIONS(790), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(792), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(794), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1733), + [sym_bracketed_type] = STATE(2410), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2411), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(1446), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1750), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(662), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(672), + [anon_sym_i8] = ACTIONS(672), + [anon_sym_u16] = ACTIONS(672), + [anon_sym_i16] = ACTIONS(672), + [anon_sym_u32] = ACTIONS(672), + [anon_sym_i32] = ACTIONS(672), + [anon_sym_u64] = ACTIONS(672), + [anon_sym_i64] = ACTIONS(672), + [anon_sym_u128] = ACTIONS(672), + [anon_sym_i128] = ACTIONS(672), + [anon_sym_isize] = ACTIONS(672), + [anon_sym_usize] = ACTIONS(672), + [anon_sym_f32] = ACTIONS(672), + [anon_sym_f64] = ACTIONS(672), + [anon_sym_bool] = ACTIONS(672), + [anon_sym_str] = ACTIONS(672), + [anon_sym_char] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(792), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(794), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(798), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(802), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(808), - [sym_super] = ACTIONS(808), - [sym_crate] = ACTIONS(808), - [sym_metavariable] = ACTIONS(810), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(700), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(798), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(724), + [sym_super] = ACTIONS(724), + [sym_crate] = ACTIONS(724), + [sym_metavariable] = ACTIONS(726), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [195] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1329), - [sym_bracketed_type] = STATE(2365), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2366), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(1443), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1377), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(668), - [anon_sym_i8] = ACTIONS(668), - [anon_sym_u16] = ACTIONS(668), - [anon_sym_i16] = ACTIONS(668), - [anon_sym_u32] = ACTIONS(668), - [anon_sym_i32] = ACTIONS(668), - [anon_sym_u64] = ACTIONS(668), - [anon_sym_i64] = ACTIONS(668), - [anon_sym_u128] = ACTIONS(668), - [anon_sym_i128] = ACTIONS(668), - [anon_sym_isize] = ACTIONS(668), - [anon_sym_usize] = ACTIONS(668), - [anon_sym_f32] = ACTIONS(668), - [anon_sym_f64] = ACTIONS(668), - [anon_sym_bool] = ACTIONS(668), - [anon_sym_str] = ACTIONS(668), - [anon_sym_char] = ACTIONS(668), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(814), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(816), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1340), + [sym_bracketed_type] = STATE(2410), + [sym_lifetime] = STATE(548), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2411), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(1446), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1392), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(662), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(672), + [anon_sym_i8] = ACTIONS(672), + [anon_sym_u16] = ACTIONS(672), + [anon_sym_i16] = ACTIONS(672), + [anon_sym_u32] = ACTIONS(672), + [anon_sym_i32] = ACTIONS(672), + [anon_sym_u64] = ACTIONS(672), + [anon_sym_i64] = ACTIONS(672), + [anon_sym_u128] = ACTIONS(672), + [anon_sym_i128] = ACTIONS(672), + [anon_sym_isize] = ACTIONS(672), + [anon_sym_usize] = ACTIONS(672), + [anon_sym_f32] = ACTIONS(672), + [anon_sym_f64] = ACTIONS(672), + [anon_sym_bool] = ACTIONS(672), + [anon_sym_str] = ACTIONS(672), + [anon_sym_char] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(830), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(792), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(696), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(720), - [sym_super] = ACTIONS(720), - [sym_crate] = ACTIONS(720), - [sym_metavariable] = ACTIONS(722), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(700), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(798), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(832), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(834), + [sym_super] = ACTIONS(724), + [sym_crate] = ACTIONS(724), + [sym_metavariable] = ACTIONS(726), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [196] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1329), - [sym_bracketed_type] = STATE(2362), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2363), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1377), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(826), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(828), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(830), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [sym_identifier] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_RPAREN] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_RBRACE] = ACTIONS(838), + [anon_sym_EQ_GT] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(836), + [anon_sym_STAR] = ACTIONS(836), + [anon_sym_QMARK] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(836), + [anon_sym_i8] = ACTIONS(836), + [anon_sym_u16] = ACTIONS(836), + [anon_sym_i16] = ACTIONS(836), + [anon_sym_u32] = ACTIONS(836), + [anon_sym_i32] = ACTIONS(836), + [anon_sym_u64] = ACTIONS(836), + [anon_sym_i64] = ACTIONS(836), + [anon_sym_u128] = ACTIONS(836), + [anon_sym_i128] = ACTIONS(836), + [anon_sym_isize] = ACTIONS(836), + [anon_sym_usize] = ACTIONS(836), + [anon_sym_f32] = ACTIONS(836), + [anon_sym_f64] = ACTIONS(836), + [anon_sym_bool] = ACTIONS(836), + [anon_sym_str] = ACTIONS(836), + [anon_sym_char] = ACTIONS(836), + [anon_sym_SQUOTE] = ACTIONS(836), + [anon_sym_as] = ACTIONS(836), + [anon_sym_async] = ACTIONS(836), + [anon_sym_break] = ACTIONS(836), + [anon_sym_const] = ACTIONS(836), + [anon_sym_continue] = ACTIONS(836), + [anon_sym_default] = ACTIONS(836), + [anon_sym_for] = ACTIONS(836), + [anon_sym_if] = ACTIONS(836), + [anon_sym_loop] = ACTIONS(836), + [anon_sym_match] = ACTIONS(836), + [anon_sym_return] = ACTIONS(836), + [anon_sym_union] = ACTIONS(836), + [anon_sym_unsafe] = ACTIONS(836), + [anon_sym_while] = ACTIONS(836), + [anon_sym_BANG] = ACTIONS(836), + [anon_sym_EQ] = ACTIONS(836), + [anon_sym_COMMA] = ACTIONS(838), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_COLON_COLON] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(838), + [anon_sym_DOT_DOT] = ACTIONS(836), + [anon_sym_DOT_DOT_EQ] = ACTIONS(838), + [anon_sym_DASH] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(838), + [anon_sym_PIPE_PIPE] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_CARET] = ACTIONS(836), + [anon_sym_EQ_EQ] = ACTIONS(838), + [anon_sym_BANG_EQ] = ACTIONS(838), + [anon_sym_LT_EQ] = ACTIONS(838), + [anon_sym_GT_EQ] = ACTIONS(838), + [anon_sym_LT_LT] = ACTIONS(836), + [anon_sym_GT_GT] = ACTIONS(836), + [anon_sym_SLASH] = ACTIONS(836), + [anon_sym_PERCENT] = ACTIONS(836), + [anon_sym_PLUS_EQ] = ACTIONS(838), + [anon_sym_DASH_EQ] = ACTIONS(838), + [anon_sym_STAR_EQ] = ACTIONS(838), + [anon_sym_SLASH_EQ] = ACTIONS(838), + [anon_sym_PERCENT_EQ] = ACTIONS(838), + [anon_sym_AMP_EQ] = ACTIONS(838), + [anon_sym_PIPE_EQ] = ACTIONS(838), + [anon_sym_CARET_EQ] = ACTIONS(838), + [anon_sym_LT_LT_EQ] = ACTIONS(838), + [anon_sym_GT_GT_EQ] = ACTIONS(838), + [anon_sym_move] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(836), + [sym_integer_literal] = ACTIONS(838), + [aux_sym_string_literal_token1] = ACTIONS(838), + [sym_char_literal] = ACTIONS(838), + [anon_sym_true] = ACTIONS(836), + [anon_sym_false] = ACTIONS(836), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(836), + [sym_super] = ACTIONS(836), + [sym_crate] = ACTIONS(836), + [sym_metavariable] = ACTIONS(838), + [sym_raw_string_literal] = ACTIONS(838), + [sym_float_literal] = ACTIONS(838), [sym_block_comment] = ACTIONS(3), }, [197] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1329), - [sym_bracketed_type] = STATE(2365), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2366), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(1443), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1377), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(668), - [anon_sym_i8] = ACTIONS(668), - [anon_sym_u16] = ACTIONS(668), - [anon_sym_i16] = ACTIONS(668), - [anon_sym_u32] = ACTIONS(668), - [anon_sym_i32] = ACTIONS(668), - [anon_sym_u64] = ACTIONS(668), - [anon_sym_i64] = ACTIONS(668), - [anon_sym_u128] = ACTIONS(668), - [anon_sym_i128] = ACTIONS(668), - [anon_sym_isize] = ACTIONS(668), - [anon_sym_usize] = ACTIONS(668), - [anon_sym_f32] = ACTIONS(668), - [anon_sym_f64] = ACTIONS(668), - [anon_sym_bool] = ACTIONS(668), - [anon_sym_str] = ACTIONS(668), - [anon_sym_char] = ACTIONS(668), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(814), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(816), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1340), + [sym_bracketed_type] = STATE(2407), + [sym_lifetime] = STATE(548), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2408), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1392), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(734), + [anon_sym_i8] = ACTIONS(734), + [anon_sym_u16] = ACTIONS(734), + [anon_sym_i16] = ACTIONS(734), + [anon_sym_u32] = ACTIONS(734), + [anon_sym_i32] = ACTIONS(734), + [anon_sym_u64] = ACTIONS(734), + [anon_sym_i64] = ACTIONS(734), + [anon_sym_u128] = ACTIONS(734), + [anon_sym_i128] = ACTIONS(734), + [anon_sym_isize] = ACTIONS(734), + [anon_sym_usize] = ACTIONS(734), + [anon_sym_f32] = ACTIONS(734), + [anon_sym_f64] = ACTIONS(734), + [anon_sym_bool] = ACTIONS(734), + [anon_sym_str] = ACTIONS(734), + [anon_sym_char] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(830), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(842), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(696), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(832), - [sym_super] = ACTIONS(720), - [sym_crate] = ACTIONS(720), - [sym_metavariable] = ACTIONS(722), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(844), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(846), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(848), + [sym_super] = ACTIONS(750), + [sym_crate] = ACTIONS(750), + [sym_metavariable] = ACTIONS(752), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [198] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1313), - [sym_bracketed_type] = STATE(2362), - [sym_lifetime] = STATE(567), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2363), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1340), + [sym_bracketed_type] = STATE(2407), + [sym_lifetime] = STATE(568), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2408), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1368), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(834), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(826), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(828), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1392), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(734), + [anon_sym_i8] = ACTIONS(734), + [anon_sym_u16] = ACTIONS(734), + [anon_sym_i16] = ACTIONS(734), + [anon_sym_u32] = ACTIONS(734), + [anon_sym_i32] = ACTIONS(734), + [anon_sym_u64] = ACTIONS(734), + [anon_sym_i64] = ACTIONS(734), + [anon_sym_u128] = ACTIONS(734), + [anon_sym_i128] = ACTIONS(734), + [anon_sym_isize] = ACTIONS(734), + [anon_sym_usize] = ACTIONS(734), + [anon_sym_f32] = ACTIONS(734), + [anon_sym_f64] = ACTIONS(734), + [anon_sym_bool] = ACTIONS(734), + [anon_sym_str] = ACTIONS(734), + [anon_sym_char] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(830), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(842), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(830), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(844), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(850), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(750), + [sym_super] = ACTIONS(750), + [sym_crate] = ACTIONS(750), + [sym_metavariable] = ACTIONS(752), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [199] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1313), - [sym_bracketed_type] = STATE(2365), - [sym_lifetime] = STATE(570), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2366), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(1443), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1368), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(668), - [anon_sym_i8] = ACTIONS(668), - [anon_sym_u16] = ACTIONS(668), - [anon_sym_i16] = ACTIONS(668), - [anon_sym_u32] = ACTIONS(668), - [anon_sym_i32] = ACTIONS(668), - [anon_sym_u64] = ACTIONS(668), - [anon_sym_i64] = ACTIONS(668), - [anon_sym_u128] = ACTIONS(668), - [anon_sym_i128] = ACTIONS(668), - [anon_sym_isize] = ACTIONS(668), - [anon_sym_usize] = ACTIONS(668), - [anon_sym_f32] = ACTIONS(668), - [anon_sym_f64] = ACTIONS(668), - [anon_sym_bool] = ACTIONS(668), - [anon_sym_str] = ACTIONS(668), - [anon_sym_char] = ACTIONS(668), - [anon_sym_SQUOTE] = ACTIONS(834), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(814), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(816), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1325), + [sym_bracketed_type] = STATE(2410), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2411), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(1446), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1383), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(662), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(672), + [anon_sym_i8] = ACTIONS(672), + [anon_sym_u16] = ACTIONS(672), + [anon_sym_i16] = ACTIONS(672), + [anon_sym_u32] = ACTIONS(672), + [anon_sym_i32] = ACTIONS(672), + [anon_sym_u64] = ACTIONS(672), + [anon_sym_i64] = ACTIONS(672), + [anon_sym_u128] = ACTIONS(672), + [anon_sym_i128] = ACTIONS(672), + [anon_sym_isize] = ACTIONS(672), + [anon_sym_usize] = ACTIONS(672), + [anon_sym_f32] = ACTIONS(672), + [anon_sym_f64] = ACTIONS(672), + [anon_sym_bool] = ACTIONS(672), + [anon_sym_str] = ACTIONS(672), + [anon_sym_char] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(792), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(696), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(838), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(840), - [sym_super] = ACTIONS(720), - [sym_crate] = ACTIONS(720), - [sym_metavariable] = ACTIONS(722), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(700), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(798), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(724), + [sym_super] = ACTIONS(724), + [sym_crate] = ACTIONS(724), + [sym_metavariable] = ACTIONS(726), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [200] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1313), - [sym_bracketed_type] = STATE(2368), - [sym_lifetime] = STATE(567), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2369), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(1457), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1368), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(784), - [anon_sym_LPAREN] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(790), - [anon_sym_i8] = ACTIONS(790), - [anon_sym_u16] = ACTIONS(790), - [anon_sym_i16] = ACTIONS(790), - [anon_sym_u32] = ACTIONS(790), - [anon_sym_i32] = ACTIONS(790), - [anon_sym_u64] = ACTIONS(790), - [anon_sym_i64] = ACTIONS(790), - [anon_sym_u128] = ACTIONS(790), - [anon_sym_i128] = ACTIONS(790), - [anon_sym_isize] = ACTIONS(790), - [anon_sym_usize] = ACTIONS(790), - [anon_sym_f32] = ACTIONS(790), - [anon_sym_f64] = ACTIONS(790), - [anon_sym_bool] = ACTIONS(790), - [anon_sym_str] = ACTIONS(790), - [anon_sym_char] = ACTIONS(790), - [anon_sym_SQUOTE] = ACTIONS(834), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(792), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(794), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1325), + [sym_bracketed_type] = STATE(2410), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2411), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(1446), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1383), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(662), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(672), + [anon_sym_i8] = ACTIONS(672), + [anon_sym_u16] = ACTIONS(672), + [anon_sym_i16] = ACTIONS(672), + [anon_sym_u32] = ACTIONS(672), + [anon_sym_i32] = ACTIONS(672), + [anon_sym_u64] = ACTIONS(672), + [anon_sym_i64] = ACTIONS(672), + [anon_sym_u128] = ACTIONS(672), + [anon_sym_i128] = ACTIONS(672), + [anon_sym_isize] = ACTIONS(672), + [anon_sym_usize] = ACTIONS(672), + [anon_sym_f32] = ACTIONS(672), + [anon_sym_f64] = ACTIONS(672), + [anon_sym_bool] = ACTIONS(672), + [anon_sym_str] = ACTIONS(672), + [anon_sym_char] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(792), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(798), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(802), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(842), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(808), - [sym_super] = ACTIONS(808), - [sym_crate] = ACTIONS(808), - [sym_metavariable] = ACTIONS(810), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(700), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(798), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(852), + [sym_super] = ACTIONS(724), + [sym_crate] = ACTIONS(724), + [sym_metavariable] = ACTIONS(726), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [201] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1313), - [sym_bracketed_type] = STATE(2365), - [sym_lifetime] = STATE(567), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2366), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(1443), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1368), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(668), - [anon_sym_i8] = ACTIONS(668), - [anon_sym_u16] = ACTIONS(668), - [anon_sym_i16] = ACTIONS(668), - [anon_sym_u32] = ACTIONS(668), - [anon_sym_i32] = ACTIONS(668), - [anon_sym_u64] = ACTIONS(668), - [anon_sym_i64] = ACTIONS(668), - [anon_sym_u128] = ACTIONS(668), - [anon_sym_i128] = ACTIONS(668), - [anon_sym_isize] = ACTIONS(668), - [anon_sym_usize] = ACTIONS(668), - [anon_sym_f32] = ACTIONS(668), - [anon_sym_f64] = ACTIONS(668), - [anon_sym_bool] = ACTIONS(668), - [anon_sym_str] = ACTIONS(668), - [anon_sym_char] = ACTIONS(668), - [anon_sym_SQUOTE] = ACTIONS(834), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(814), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(816), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1325), + [sym_bracketed_type] = STATE(2407), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2408), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1383), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(734), + [anon_sym_i8] = ACTIONS(734), + [anon_sym_u16] = ACTIONS(734), + [anon_sym_i16] = ACTIONS(734), + [anon_sym_u32] = ACTIONS(734), + [anon_sym_i32] = ACTIONS(734), + [anon_sym_u64] = ACTIONS(734), + [anon_sym_i64] = ACTIONS(734), + [anon_sym_u128] = ACTIONS(734), + [anon_sym_i128] = ACTIONS(734), + [anon_sym_isize] = ACTIONS(734), + [anon_sym_usize] = ACTIONS(734), + [anon_sym_f32] = ACTIONS(734), + [anon_sym_f64] = ACTIONS(734), + [anon_sym_bool] = ACTIONS(734), + [anon_sym_str] = ACTIONS(734), + [anon_sym_char] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(842), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(696), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(844), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(720), - [sym_super] = ACTIONS(720), - [sym_crate] = ACTIONS(720), - [sym_metavariable] = ACTIONS(722), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(844), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(750), + [sym_super] = ACTIONS(750), + [sym_crate] = ACTIONS(750), + [sym_metavariable] = ACTIONS(752), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [202] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1313), - [sym_bracketed_type] = STATE(2362), - [sym_lifetime] = STATE(570), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2363), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1368), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(834), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(826), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(828), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1340), + [sym_bracketed_type] = STATE(2413), + [sym_lifetime] = STATE(568), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2414), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(1475), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1392), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(812), + [anon_sym_i8] = ACTIONS(812), + [anon_sym_u16] = ACTIONS(812), + [anon_sym_i16] = ACTIONS(812), + [anon_sym_u32] = ACTIONS(812), + [anon_sym_i32] = ACTIONS(812), + [anon_sym_u64] = ACTIONS(812), + [anon_sym_i64] = ACTIONS(812), + [anon_sym_u128] = ACTIONS(812), + [anon_sym_i128] = ACTIONS(812), + [anon_sym_isize] = ACTIONS(812), + [anon_sym_usize] = ACTIONS(812), + [anon_sym_f32] = ACTIONS(812), + [anon_sym_f64] = ACTIONS(812), + [anon_sym_bool] = ACTIONS(812), + [anon_sym_str] = ACTIONS(812), + [anon_sym_char] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(830), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(814), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(816), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(830), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(846), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(848), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(820), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(822), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_crate] = ACTIONS(824), + [sym_metavariable] = ACTIONS(826), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [203] = { - [sym_identifier] = ACTIONS(850), - [anon_sym_SEMI] = ACTIONS(852), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_RPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(852), - [anon_sym_RBRACE] = ACTIONS(852), - [anon_sym_EQ_GT] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(852), - [anon_sym_RBRACK] = ACTIONS(852), - [anon_sym_COLON] = ACTIONS(850), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(850), - [anon_sym_QMARK] = ACTIONS(852), - [anon_sym_u8] = ACTIONS(850), - [anon_sym_i8] = ACTIONS(850), - [anon_sym_u16] = ACTIONS(850), - [anon_sym_i16] = ACTIONS(850), - [anon_sym_u32] = ACTIONS(850), - [anon_sym_i32] = ACTIONS(850), - [anon_sym_u64] = ACTIONS(850), - [anon_sym_i64] = ACTIONS(850), - [anon_sym_u128] = ACTIONS(850), - [anon_sym_i128] = ACTIONS(850), - [anon_sym_isize] = ACTIONS(850), - [anon_sym_usize] = ACTIONS(850), - [anon_sym_f32] = ACTIONS(850), - [anon_sym_f64] = ACTIONS(850), - [anon_sym_bool] = ACTIONS(850), - [anon_sym_str] = ACTIONS(850), - [anon_sym_char] = ACTIONS(850), - [anon_sym_SQUOTE] = ACTIONS(850), - [anon_sym_as] = ACTIONS(850), - [anon_sym_async] = ACTIONS(850), - [anon_sym_break] = ACTIONS(850), - [anon_sym_const] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_default] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_loop] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_return] = ACTIONS(850), - [anon_sym_union] = ACTIONS(850), - [anon_sym_unsafe] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_COMMA] = ACTIONS(852), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_COLON_COLON] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(852), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(852), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(852), - [anon_sym_PIPE_PIPE] = ACTIONS(852), - [anon_sym_PIPE] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(850), - [anon_sym_EQ_EQ] = ACTIONS(852), - [anon_sym_BANG_EQ] = ACTIONS(852), - [anon_sym_LT_EQ] = ACTIONS(852), - [anon_sym_GT_EQ] = ACTIONS(852), - [anon_sym_LT_LT] = ACTIONS(850), - [anon_sym_GT_GT] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_PERCENT] = ACTIONS(850), - [anon_sym_PLUS_EQ] = ACTIONS(852), - [anon_sym_DASH_EQ] = ACTIONS(852), - [anon_sym_STAR_EQ] = ACTIONS(852), - [anon_sym_SLASH_EQ] = ACTIONS(852), - [anon_sym_PERCENT_EQ] = ACTIONS(852), - [anon_sym_AMP_EQ] = ACTIONS(852), - [anon_sym_PIPE_EQ] = ACTIONS(852), - [anon_sym_CARET_EQ] = ACTIONS(852), - [anon_sym_LT_LT_EQ] = ACTIONS(852), - [anon_sym_GT_GT_EQ] = ACTIONS(852), - [anon_sym_move] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(850), - [sym_integer_literal] = ACTIONS(852), - [aux_sym_string_literal_token1] = ACTIONS(852), - [sym_char_literal] = ACTIONS(852), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_crate] = ACTIONS(850), - [sym_metavariable] = ACTIONS(852), - [sym_raw_string_literal] = ACTIONS(852), - [sym_float_literal] = ACTIONS(852), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1325), + [sym_bracketed_type] = STATE(2407), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2408), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(1532), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1383), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(734), + [anon_sym_i8] = ACTIONS(734), + [anon_sym_u16] = ACTIONS(734), + [anon_sym_i16] = ACTIONS(734), + [anon_sym_u32] = ACTIONS(734), + [anon_sym_i32] = ACTIONS(734), + [anon_sym_u64] = ACTIONS(734), + [anon_sym_i64] = ACTIONS(734), + [anon_sym_u128] = ACTIONS(734), + [anon_sym_i128] = ACTIONS(734), + [anon_sym_isize] = ACTIONS(734), + [anon_sym_usize] = ACTIONS(734), + [anon_sym_f32] = ACTIONS(734), + [anon_sym_f64] = ACTIONS(734), + [anon_sym_bool] = ACTIONS(734), + [anon_sym_str] = ACTIONS(734), + [anon_sym_char] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(842), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(844), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(856), + [sym_super] = ACTIONS(750), + [sym_crate] = ACTIONS(750), + [sym_metavariable] = ACTIONS(752), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [204] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1329), - [sym_bracketed_type] = STATE(2362), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2363), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1399), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1377), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(826), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(828), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_ref] = ACTIONS(694), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1325), + [sym_bracketed_type] = STATE(2413), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2414), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(1475), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1383), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(812), + [anon_sym_i8] = ACTIONS(812), + [anon_sym_u16] = ACTIONS(812), + [anon_sym_i16] = ACTIONS(812), + [anon_sym_u32] = ACTIONS(812), + [anon_sym_i32] = ACTIONS(812), + [anon_sym_u64] = ACTIONS(812), + [anon_sym_i64] = ACTIONS(812), + [anon_sym_u128] = ACTIONS(812), + [anon_sym_i128] = ACTIONS(812), + [anon_sym_isize] = ACTIONS(812), + [anon_sym_usize] = ACTIONS(812), + [anon_sym_f32] = ACTIONS(812), + [anon_sym_f64] = ACTIONS(812), + [anon_sym_bool] = ACTIONS(812), + [anon_sym_str] = ACTIONS(812), + [anon_sym_char] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(814), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(816), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(830), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(854), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(820), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(822), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_crate] = ACTIONS(824), + [sym_metavariable] = ACTIONS(826), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [205] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1385), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(856), - [anon_sym_LPAREN] = ACTIONS(858), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(858), - [anon_sym_STAR] = ACTIONS(858), - [anon_sym_u8] = ACTIONS(856), - [anon_sym_i8] = ACTIONS(856), - [anon_sym_u16] = ACTIONS(856), - [anon_sym_i16] = ACTIONS(856), - [anon_sym_u32] = ACTIONS(856), - [anon_sym_i32] = ACTIONS(856), - [anon_sym_u64] = ACTIONS(856), - [anon_sym_i64] = ACTIONS(856), - [anon_sym_u128] = ACTIONS(856), - [anon_sym_i128] = ACTIONS(856), - [anon_sym_isize] = ACTIONS(856), - [anon_sym_usize] = ACTIONS(856), - [anon_sym_f32] = ACTIONS(856), - [anon_sym_f64] = ACTIONS(856), - [anon_sym_bool] = ACTIONS(856), - [anon_sym_str] = ACTIONS(856), - [anon_sym_char] = ACTIONS(856), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(856), - [anon_sym_break] = ACTIONS(856), - [anon_sym_const] = ACTIONS(856), - [anon_sym_continue] = ACTIONS(856), - [anon_sym_default] = ACTIONS(856), - [anon_sym_for] = ACTIONS(856), - [anon_sym_if] = ACTIONS(856), - [anon_sym_loop] = ACTIONS(856), - [anon_sym_match] = ACTIONS(856), - [anon_sym_return] = ACTIONS(856), - [anon_sym_union] = ACTIONS(856), - [anon_sym_unsafe] = ACTIONS(856), - [anon_sym_while] = ACTIONS(856), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_ref] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(858), - [anon_sym_LT] = ACTIONS(858), - [anon_sym_COLON_COLON] = ACTIONS(858), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(858), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(856), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_move] = ACTIONS(856), - [sym_integer_literal] = ACTIONS(858), - [aux_sym_string_literal_token1] = ACTIONS(858), - [sym_char_literal] = ACTIONS(858), - [anon_sym_true] = ACTIONS(856), - [anon_sym_false] = ACTIONS(856), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(856), - [sym_super] = ACTIONS(856), - [sym_crate] = ACTIONS(856), - [sym_metavariable] = ACTIONS(858), - [sym_raw_string_literal] = ACTIONS(858), - [sym_float_literal] = ACTIONS(858), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1340), + [sym_bracketed_type] = STATE(2410), + [sym_lifetime] = STATE(568), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2411), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(1446), + [sym_scoped_type_identifier] = STATE(1418), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1392), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(662), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(672), + [anon_sym_i8] = ACTIONS(672), + [anon_sym_u16] = ACTIONS(672), + [anon_sym_i16] = ACTIONS(672), + [anon_sym_u32] = ACTIONS(672), + [anon_sym_i32] = ACTIONS(672), + [anon_sym_u64] = ACTIONS(672), + [anon_sym_i64] = ACTIONS(672), + [anon_sym_u128] = ACTIONS(672), + [anon_sym_i128] = ACTIONS(672), + [anon_sym_isize] = ACTIONS(672), + [anon_sym_usize] = ACTIONS(672), + [anon_sym_f32] = ACTIONS(672), + [anon_sym_f64] = ACTIONS(672), + [anon_sym_bool] = ACTIONS(672), + [anon_sym_str] = ACTIONS(672), + [anon_sym_char] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(830), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(792), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(700), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(798), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(858), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(724), + [sym_super] = ACTIONS(724), + [sym_crate] = ACTIONS(724), + [sym_metavariable] = ACTIONS(726), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [206] = { - [sym_else_clause] = STATE(235), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1393), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(862), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(860), + [anon_sym_i8] = ACTIONS(860), + [anon_sym_u16] = ACTIONS(860), + [anon_sym_i16] = ACTIONS(860), + [anon_sym_u32] = ACTIONS(860), + [anon_sym_i32] = ACTIONS(860), + [anon_sym_u64] = ACTIONS(860), + [anon_sym_i64] = ACTIONS(860), + [anon_sym_u128] = ACTIONS(860), + [anon_sym_i128] = ACTIONS(860), + [anon_sym_isize] = ACTIONS(860), + [anon_sym_usize] = ACTIONS(860), + [anon_sym_f32] = ACTIONS(860), + [anon_sym_f64] = ACTIONS(860), + [anon_sym_bool] = ACTIONS(860), + [anon_sym_str] = ACTIONS(860), + [anon_sym_char] = ACTIONS(860), + [anon_sym_SQUOTE] = ACTIONS(860), + [anon_sym_async] = ACTIONS(860), + [anon_sym_break] = ACTIONS(860), + [anon_sym_const] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_default] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_if] = ACTIONS(860), + [anon_sym_loop] = ACTIONS(860), + [anon_sym_match] = ACTIONS(860), + [anon_sym_return] = ACTIONS(860), + [anon_sym_union] = ACTIONS(860), + [anon_sym_unsafe] = ACTIONS(860), + [anon_sym_while] = ACTIONS(860), + [anon_sym_BANG] = ACTIONS(862), + [anon_sym_ref] = ACTIONS(698), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(862), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(862), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(862), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(862), + [anon_sym_move] = ACTIONS(860), + [sym_integer_literal] = ACTIONS(862), + [aux_sym_string_literal_token1] = ACTIONS(862), + [sym_char_literal] = ACTIONS(862), + [anon_sym_true] = ACTIONS(860), + [anon_sym_false] = ACTIONS(860), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_crate] = ACTIONS(860), + [sym_metavariable] = ACTIONS(862), + [sym_raw_string_literal] = ACTIONS(862), + [sym_float_literal] = ACTIONS(862), + [sym_block_comment] = ACTIONS(3), + }, + [207] = { + [sym_else_clause] = STATE(227), [sym_identifier] = ACTIONS(385), [anon_sym_LPAREN] = ACTIONS(383), [anon_sym_RBRACE] = ACTIONS(383), @@ -36329,7 +36487,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(383), [anon_sym_LT_LT_EQ] = ACTIONS(383), [anon_sym_GT_GT_EQ] = ACTIONS(383), - [anon_sym_else] = ACTIONS(860), + [anon_sym_else] = ACTIONS(864), [anon_sym_DOT] = ACTIONS(385), [sym_integer_literal] = ACTIONS(383), [aux_sym_string_literal_token1] = ACTIONS(383), @@ -36345,167 +36503,86 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(383), [sym_block_comment] = ACTIONS(3), }, - [207] = { - [sym_else_clause] = STATE(220), - [sym_identifier] = ACTIONS(373), - [anon_sym_LPAREN] = ACTIONS(371), - [anon_sym_RBRACE] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(371), - [anon_sym_PLUS] = ACTIONS(373), - [anon_sym_STAR] = ACTIONS(373), - [anon_sym_QMARK] = ACTIONS(371), - [anon_sym_u8] = ACTIONS(373), - [anon_sym_i8] = ACTIONS(373), - [anon_sym_u16] = ACTIONS(373), - [anon_sym_i16] = ACTIONS(373), - [anon_sym_u32] = ACTIONS(373), - [anon_sym_i32] = ACTIONS(373), - [anon_sym_u64] = ACTIONS(373), - [anon_sym_i64] = ACTIONS(373), - [anon_sym_u128] = ACTIONS(373), - [anon_sym_i128] = ACTIONS(373), - [anon_sym_isize] = ACTIONS(373), - [anon_sym_usize] = ACTIONS(373), - [anon_sym_f32] = ACTIONS(373), - [anon_sym_f64] = ACTIONS(373), - [anon_sym_bool] = ACTIONS(373), - [anon_sym_str] = ACTIONS(373), - [anon_sym_char] = ACTIONS(373), - [anon_sym_as] = ACTIONS(373), - [anon_sym_const] = ACTIONS(373), - [anon_sym_default] = ACTIONS(373), - [anon_sym_union] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(371), - [anon_sym_EQ] = ACTIONS(373), - [anon_sym_COMMA] = ACTIONS(371), - [anon_sym_ref] = ACTIONS(373), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(371), - [anon_sym__] = ACTIONS(373), - [anon_sym_AMP] = ACTIONS(373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT_EQ] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(371), - [anon_sym_PIPE_PIPE] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(373), - [anon_sym_CARET] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(371), - [anon_sym_BANG_EQ] = ACTIONS(371), - [anon_sym_LT_EQ] = ACTIONS(371), - [anon_sym_GT_EQ] = ACTIONS(371), - [anon_sym_LT_LT] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [anon_sym_SLASH] = ACTIONS(373), - [anon_sym_PERCENT] = ACTIONS(373), - [anon_sym_PLUS_EQ] = ACTIONS(371), - [anon_sym_DASH_EQ] = ACTIONS(371), - [anon_sym_STAR_EQ] = ACTIONS(371), - [anon_sym_SLASH_EQ] = ACTIONS(371), - [anon_sym_PERCENT_EQ] = ACTIONS(371), - [anon_sym_AMP_EQ] = ACTIONS(371), - [anon_sym_PIPE_EQ] = ACTIONS(371), - [anon_sym_CARET_EQ] = ACTIONS(371), - [anon_sym_LT_LT_EQ] = ACTIONS(371), - [anon_sym_GT_GT_EQ] = ACTIONS(371), - [anon_sym_else] = ACTIONS(860), - [anon_sym_DOT] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(371), - [aux_sym_string_literal_token1] = ACTIONS(371), - [sym_char_literal] = ACTIONS(371), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(373), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(371), - [sym_raw_string_literal] = ACTIONS(371), - [sym_float_literal] = ACTIONS(371), - [sym_block_comment] = ACTIONS(3), - }, [208] = { - [sym_identifier] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_as] = ACTIONS(399), - [anon_sym_const] = ACTIONS(399), - [anon_sym_default] = ACTIONS(399), - [anon_sym_union] = ACTIONS(399), - [anon_sym_POUND] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_COMMA] = ACTIONS(397), - [anon_sym_ref] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym__] = ACTIONS(399), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [sym_mutable_specifier] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_else] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(397), - [aux_sym_string_literal_token1] = ACTIONS(397), - [sym_char_literal] = ACTIONS(397), - [anon_sym_true] = ACTIONS(399), - [anon_sym_false] = ACTIONS(399), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(399), - [sym_super] = ACTIONS(399), - [sym_crate] = ACTIONS(399), - [sym_metavariable] = ACTIONS(397), - [sym_raw_string_literal] = ACTIONS(397), - [sym_float_literal] = ACTIONS(397), + [sym_else_clause] = STATE(225), + [sym_identifier] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(377), + [anon_sym_i8] = ACTIONS(377), + [anon_sym_u16] = ACTIONS(377), + [anon_sym_i16] = ACTIONS(377), + [anon_sym_u32] = ACTIONS(377), + [anon_sym_i32] = ACTIONS(377), + [anon_sym_u64] = ACTIONS(377), + [anon_sym_i64] = ACTIONS(377), + [anon_sym_u128] = ACTIONS(377), + [anon_sym_i128] = ACTIONS(377), + [anon_sym_isize] = ACTIONS(377), + [anon_sym_usize] = ACTIONS(377), + [anon_sym_f32] = ACTIONS(377), + [anon_sym_f64] = ACTIONS(377), + [anon_sym_bool] = ACTIONS(377), + [anon_sym_str] = ACTIONS(377), + [anon_sym_char] = ACTIONS(377), + [anon_sym_as] = ACTIONS(377), + [anon_sym_const] = ACTIONS(377), + [anon_sym_default] = ACTIONS(377), + [anon_sym_union] = ACTIONS(377), + [anon_sym_POUND] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_COMMA] = ACTIONS(375), + [anon_sym_ref] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(375), + [anon_sym__] = ACTIONS(377), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [sym_mutable_specifier] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_else] = ACTIONS(864), + [anon_sym_DOT] = ACTIONS(377), + [sym_integer_literal] = ACTIONS(375), + [aux_sym_string_literal_token1] = ACTIONS(375), + [sym_char_literal] = ACTIONS(375), + [anon_sym_true] = ACTIONS(377), + [anon_sym_false] = ACTIONS(377), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(377), + [sym_super] = ACTIONS(377), + [sym_crate] = ACTIONS(377), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(375), + [sym_float_literal] = ACTIONS(375), [sym_block_comment] = ACTIONS(3), }, [209] = { @@ -36590,6 +36667,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [210] = { + [sym_identifier] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_isize] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_f32] = ACTIONS(399), + [anon_sym_f64] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_str] = ACTIONS(399), + [anon_sym_char] = ACTIONS(399), + [anon_sym_as] = ACTIONS(399), + [anon_sym_const] = ACTIONS(399), + [anon_sym_default] = ACTIONS(399), + [anon_sym_union] = ACTIONS(399), + [anon_sym_POUND] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_ref] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym__] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [sym_mutable_specifier] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_else] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(399), + [sym_integer_literal] = ACTIONS(397), + [aux_sym_string_literal_token1] = ACTIONS(397), + [sym_char_literal] = ACTIONS(397), + [anon_sym_true] = ACTIONS(399), + [anon_sym_false] = ACTIONS(399), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(399), + [sym_super] = ACTIONS(399), + [sym_crate] = ACTIONS(399), + [sym_metavariable] = ACTIONS(397), + [sym_raw_string_literal] = ACTIONS(397), + [sym_float_literal] = ACTIONS(397), + [sym_block_comment] = ACTIONS(3), + }, + [211] = { [sym_identifier] = ACTIONS(395), [anon_sym_LPAREN] = ACTIONS(393), [anon_sym_RBRACE] = ACTIONS(393), @@ -36670,967 +36828,327 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(393), [sym_block_comment] = ACTIONS(3), }, - [211] = { - [sym_identifier] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(864), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(864), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), - [anon_sym_as] = ACTIONS(455), - [anon_sym_const] = ACTIONS(862), - [anon_sym_default] = ACTIONS(862), - [anon_sym_union] = ACTIONS(862), - [anon_sym_POUND] = ACTIONS(864), - [anon_sym_EQ] = ACTIONS(455), - [anon_sym_COMMA] = ACTIONS(453), - [anon_sym_ref] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(862), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_COLON_COLON] = ACTIONS(864), - [anon_sym__] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(862), - [anon_sym_DOT_DOT_DOT] = ACTIONS(453), - [sym_mutable_specifier] = ACTIONS(862), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_DOT_DOT_EQ] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT_EQ] = ACTIONS(453), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(455), - [anon_sym_PERCENT] = ACTIONS(455), - [anon_sym_PLUS_EQ] = ACTIONS(453), - [anon_sym_DASH_EQ] = ACTIONS(453), - [anon_sym_STAR_EQ] = ACTIONS(453), - [anon_sym_SLASH_EQ] = ACTIONS(453), - [anon_sym_PERCENT_EQ] = ACTIONS(453), - [anon_sym_AMP_EQ] = ACTIONS(453), - [anon_sym_PIPE_EQ] = ACTIONS(453), - [anon_sym_CARET_EQ] = ACTIONS(453), - [anon_sym_LT_LT_EQ] = ACTIONS(453), - [anon_sym_GT_GT_EQ] = ACTIONS(453), - [anon_sym_DOT] = ACTIONS(455), - [sym_integer_literal] = ACTIONS(864), - [aux_sym_string_literal_token1] = ACTIONS(864), - [sym_char_literal] = ACTIONS(864), - [anon_sym_true] = ACTIONS(862), - [anon_sym_false] = ACTIONS(862), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_raw_string_literal] = ACTIONS(864), - [sym_float_literal] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, [212] = { - [sym_identifier] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_RBRACE] = ACTIONS(590), - [anon_sym_LBRACK] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_STAR] = ACTIONS(592), - [anon_sym_QMARK] = ACTIONS(590), - [anon_sym_u8] = ACTIONS(592), - [anon_sym_i8] = ACTIONS(592), - [anon_sym_u16] = ACTIONS(592), - [anon_sym_i16] = ACTIONS(592), - [anon_sym_u32] = ACTIONS(592), - [anon_sym_i32] = ACTIONS(592), - [anon_sym_u64] = ACTIONS(592), - [anon_sym_i64] = ACTIONS(592), - [anon_sym_u128] = ACTIONS(592), - [anon_sym_i128] = ACTIONS(592), - [anon_sym_isize] = ACTIONS(592), - [anon_sym_usize] = ACTIONS(592), - [anon_sym_f32] = ACTIONS(592), - [anon_sym_f64] = ACTIONS(592), - [anon_sym_bool] = ACTIONS(592), - [anon_sym_str] = ACTIONS(592), - [anon_sym_char] = ACTIONS(592), - [anon_sym_as] = ACTIONS(592), - [anon_sym_const] = ACTIONS(592), - [anon_sym_default] = ACTIONS(592), - [anon_sym_union] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(590), - [anon_sym_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(590), - [anon_sym_ref] = ACTIONS(592), - [anon_sym_LT] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(590), - [anon_sym__] = ACTIONS(592), - [anon_sym_AMP] = ACTIONS(592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(590), - [sym_mutable_specifier] = ACTIONS(592), - [anon_sym_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_AMP_AMP] = ACTIONS(590), - [anon_sym_PIPE_PIPE] = ACTIONS(590), - [anon_sym_PIPE] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_EQ_EQ] = ACTIONS(590), - [anon_sym_BANG_EQ] = ACTIONS(590), - [anon_sym_LT_EQ] = ACTIONS(590), - [anon_sym_GT_EQ] = ACTIONS(590), - [anon_sym_LT_LT] = ACTIONS(592), - [anon_sym_GT_GT] = ACTIONS(592), - [anon_sym_SLASH] = ACTIONS(592), - [anon_sym_PERCENT] = ACTIONS(592), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_STAR_EQ] = ACTIONS(590), - [anon_sym_SLASH_EQ] = ACTIONS(590), - [anon_sym_PERCENT_EQ] = ACTIONS(590), - [anon_sym_AMP_EQ] = ACTIONS(590), - [anon_sym_PIPE_EQ] = ACTIONS(590), - [anon_sym_CARET_EQ] = ACTIONS(590), - [anon_sym_LT_LT_EQ] = ACTIONS(590), - [anon_sym_GT_GT_EQ] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(592), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(590), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(592), - [anon_sym_false] = ACTIONS(592), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(592), - [sym_super] = ACTIONS(592), - [sym_crate] = ACTIONS(592), - [sym_metavariable] = ACTIONS(590), - [sym_raw_string_literal] = ACTIONS(590), - [sym_float_literal] = ACTIONS(590), + [sym_identifier] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(441), + [anon_sym_QMARK] = ACTIONS(439), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_isize] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_f32] = ACTIONS(441), + [anon_sym_f64] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_str] = ACTIONS(441), + [anon_sym_char] = ACTIONS(441), + [anon_sym_as] = ACTIONS(441), + [anon_sym_const] = ACTIONS(441), + [anon_sym_default] = ACTIONS(441), + [anon_sym_union] = ACTIONS(441), + [anon_sym_POUND] = ACTIONS(439), + [anon_sym_EQ] = ACTIONS(441), + [anon_sym_COMMA] = ACTIONS(439), + [anon_sym_ref] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(441), + [anon_sym_GT] = ACTIONS(441), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym__] = ACTIONS(441), + [anon_sym_AMP] = ACTIONS(441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(439), + [sym_mutable_specifier] = ACTIONS(441), + [anon_sym_DOT_DOT] = ACTIONS(441), + [anon_sym_DOT_DOT_EQ] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_EQ_EQ] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(439), + [anon_sym_LT_EQ] = ACTIONS(439), + [anon_sym_GT_EQ] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(441), + [anon_sym_GT_GT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_PLUS_EQ] = ACTIONS(439), + [anon_sym_DASH_EQ] = ACTIONS(439), + [anon_sym_STAR_EQ] = ACTIONS(439), + [anon_sym_SLASH_EQ] = ACTIONS(439), + [anon_sym_PERCENT_EQ] = ACTIONS(439), + [anon_sym_AMP_EQ] = ACTIONS(439), + [anon_sym_PIPE_EQ] = ACTIONS(439), + [anon_sym_CARET_EQ] = ACTIONS(439), + [anon_sym_LT_LT_EQ] = ACTIONS(439), + [anon_sym_GT_GT_EQ] = ACTIONS(439), + [anon_sym_DOT] = ACTIONS(441), + [sym_integer_literal] = ACTIONS(439), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(439), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(441), + [sym_super] = ACTIONS(441), + [sym_crate] = ACTIONS(441), + [sym_metavariable] = ACTIONS(439), + [sym_raw_string_literal] = ACTIONS(439), + [sym_float_literal] = ACTIONS(439), [sym_block_comment] = ACTIONS(3), }, [213] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1849), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(1848), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_type_binding] = STATE(2205), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [sym_block] = STATE(2205), - [sym__literal] = STATE(2205), - [sym_string_literal] = STATE(2170), - [sym_boolean_literal] = STATE(2170), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(870), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_integer_literal] = ACTIONS(886), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(886), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), - [sym_raw_string_literal] = ACTIONS(886), - [sym_float_literal] = ACTIONS(886), + [sym_identifier] = ACTIONS(582), + [anon_sym_LPAREN] = ACTIONS(580), + [anon_sym_RBRACE] = ACTIONS(580), + [anon_sym_LBRACK] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(580), + [anon_sym_u8] = ACTIONS(582), + [anon_sym_i8] = ACTIONS(582), + [anon_sym_u16] = ACTIONS(582), + [anon_sym_i16] = ACTIONS(582), + [anon_sym_u32] = ACTIONS(582), + [anon_sym_i32] = ACTIONS(582), + [anon_sym_u64] = ACTIONS(582), + [anon_sym_i64] = ACTIONS(582), + [anon_sym_u128] = ACTIONS(582), + [anon_sym_i128] = ACTIONS(582), + [anon_sym_isize] = ACTIONS(582), + [anon_sym_usize] = ACTIONS(582), + [anon_sym_f32] = ACTIONS(582), + [anon_sym_f64] = ACTIONS(582), + [anon_sym_bool] = ACTIONS(582), + [anon_sym_str] = ACTIONS(582), + [anon_sym_char] = ACTIONS(582), + [anon_sym_as] = ACTIONS(582), + [anon_sym_const] = ACTIONS(582), + [anon_sym_default] = ACTIONS(582), + [anon_sym_union] = ACTIONS(582), + [anon_sym_POUND] = ACTIONS(580), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(580), + [anon_sym_ref] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_COLON_COLON] = ACTIONS(580), + [anon_sym__] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(580), + [sym_mutable_specifier] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_EQ] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(580), + [anon_sym_PIPE_PIPE] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(580), + [anon_sym_LT_EQ] = ACTIONS(580), + [anon_sym_GT_EQ] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(580), + [anon_sym_DASH_EQ] = ACTIONS(580), + [anon_sym_STAR_EQ] = ACTIONS(580), + [anon_sym_SLASH_EQ] = ACTIONS(580), + [anon_sym_PERCENT_EQ] = ACTIONS(580), + [anon_sym_AMP_EQ] = ACTIONS(580), + [anon_sym_PIPE_EQ] = ACTIONS(580), + [anon_sym_CARET_EQ] = ACTIONS(580), + [anon_sym_LT_LT_EQ] = ACTIONS(580), + [anon_sym_GT_GT_EQ] = ACTIONS(580), + [anon_sym_DOT] = ACTIONS(582), + [sym_integer_literal] = ACTIONS(580), + [aux_sym_string_literal_token1] = ACTIONS(580), + [sym_char_literal] = ACTIONS(580), + [anon_sym_true] = ACTIONS(582), + [anon_sym_false] = ACTIONS(582), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(582), + [sym_super] = ACTIONS(582), + [sym_crate] = ACTIONS(582), + [sym_metavariable] = ACTIONS(580), + [sym_raw_string_literal] = ACTIONS(580), + [sym_float_literal] = ACTIONS(580), [sym_block_comment] = ACTIONS(3), }, [214] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1849), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(1848), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_type_binding] = STATE(2205), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [sym_block] = STATE(2205), - [sym__literal] = STATE(2205), - [sym_string_literal] = STATE(2170), - [sym_boolean_literal] = STATE(2170), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(870), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(892), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_integer_literal] = ACTIONS(886), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(886), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), - [sym_raw_string_literal] = ACTIONS(886), - [sym_float_literal] = ACTIONS(886), + [sym_identifier] = ACTIONS(590), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_RBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_STAR] = ACTIONS(590), + [anon_sym_QMARK] = ACTIONS(588), + [anon_sym_u8] = ACTIONS(590), + [anon_sym_i8] = ACTIONS(590), + [anon_sym_u16] = ACTIONS(590), + [anon_sym_i16] = ACTIONS(590), + [anon_sym_u32] = ACTIONS(590), + [anon_sym_i32] = ACTIONS(590), + [anon_sym_u64] = ACTIONS(590), + [anon_sym_i64] = ACTIONS(590), + [anon_sym_u128] = ACTIONS(590), + [anon_sym_i128] = ACTIONS(590), + [anon_sym_isize] = ACTIONS(590), + [anon_sym_usize] = ACTIONS(590), + [anon_sym_f32] = ACTIONS(590), + [anon_sym_f64] = ACTIONS(590), + [anon_sym_bool] = ACTIONS(590), + [anon_sym_str] = ACTIONS(590), + [anon_sym_char] = ACTIONS(590), + [anon_sym_as] = ACTIONS(590), + [anon_sym_const] = ACTIONS(590), + [anon_sym_default] = ACTIONS(590), + [anon_sym_union] = ACTIONS(590), + [anon_sym_POUND] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(588), + [anon_sym_ref] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(590), + [anon_sym_GT] = ACTIONS(590), + [anon_sym_COLON_COLON] = ACTIONS(588), + [anon_sym__] = ACTIONS(590), + [anon_sym_AMP] = ACTIONS(590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(588), + [sym_mutable_specifier] = ACTIONS(590), + [anon_sym_DOT_DOT] = ACTIONS(590), + [anon_sym_DOT_DOT_EQ] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_AMP_AMP] = ACTIONS(588), + [anon_sym_PIPE_PIPE] = ACTIONS(588), + [anon_sym_PIPE] = ACTIONS(590), + [anon_sym_CARET] = ACTIONS(590), + [anon_sym_EQ_EQ] = ACTIONS(588), + [anon_sym_BANG_EQ] = ACTIONS(588), + [anon_sym_LT_EQ] = ACTIONS(588), + [anon_sym_GT_EQ] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_PERCENT] = ACTIONS(590), + [anon_sym_PLUS_EQ] = ACTIONS(588), + [anon_sym_DASH_EQ] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(588), + [anon_sym_SLASH_EQ] = ACTIONS(588), + [anon_sym_PERCENT_EQ] = ACTIONS(588), + [anon_sym_AMP_EQ] = ACTIONS(588), + [anon_sym_PIPE_EQ] = ACTIONS(588), + [anon_sym_CARET_EQ] = ACTIONS(588), + [anon_sym_LT_LT_EQ] = ACTIONS(588), + [anon_sym_GT_GT_EQ] = ACTIONS(588), + [anon_sym_DOT] = ACTIONS(590), + [sym_integer_literal] = ACTIONS(588), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(588), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(590), + [sym_super] = ACTIONS(590), + [sym_crate] = ACTIONS(590), + [sym_metavariable] = ACTIONS(588), + [sym_raw_string_literal] = ACTIONS(588), + [sym_float_literal] = ACTIONS(588), [sym_block_comment] = ACTIONS(3), }, [215] = { - [sym_identifier] = ACTIONS(411), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_RBRACE] = ACTIONS(409), - [anon_sym_LBRACK] = ACTIONS(409), - [anon_sym_PLUS] = ACTIONS(411), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_QMARK] = ACTIONS(409), - [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_as] = ACTIONS(411), - [anon_sym_const] = ACTIONS(411), - [anon_sym_default] = ACTIONS(411), - [anon_sym_union] = ACTIONS(411), - [anon_sym_POUND] = ACTIONS(409), - [anon_sym_EQ] = ACTIONS(411), - [anon_sym_COMMA] = ACTIONS(409), - [anon_sym_ref] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_COLON_COLON] = ACTIONS(409), - [anon_sym__] = ACTIONS(411), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_DOT_DOT_DOT] = ACTIONS(409), - [sym_mutable_specifier] = ACTIONS(411), - [anon_sym_DOT_DOT] = ACTIONS(411), - [anon_sym_DOT_DOT_EQ] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_CARET] = ACTIONS(411), - [anon_sym_EQ_EQ] = ACTIONS(409), - [anon_sym_BANG_EQ] = ACTIONS(409), - [anon_sym_LT_EQ] = ACTIONS(409), - [anon_sym_GT_EQ] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [anon_sym_SLASH] = ACTIONS(411), - [anon_sym_PERCENT] = ACTIONS(411), - [anon_sym_PLUS_EQ] = ACTIONS(409), - [anon_sym_DASH_EQ] = ACTIONS(409), - [anon_sym_STAR_EQ] = ACTIONS(409), - [anon_sym_SLASH_EQ] = ACTIONS(409), - [anon_sym_PERCENT_EQ] = ACTIONS(409), - [anon_sym_AMP_EQ] = ACTIONS(409), - [anon_sym_PIPE_EQ] = ACTIONS(409), - [anon_sym_CARET_EQ] = ACTIONS(409), - [anon_sym_LT_LT_EQ] = ACTIONS(409), - [anon_sym_GT_GT_EQ] = ACTIONS(409), - [anon_sym_DOT] = ACTIONS(411), - [sym_integer_literal] = ACTIONS(409), - [aux_sym_string_literal_token1] = ACTIONS(409), - [sym_char_literal] = ACTIONS(409), - [anon_sym_true] = ACTIONS(411), - [anon_sym_false] = ACTIONS(411), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(411), - [sym_super] = ACTIONS(411), - [sym_crate] = ACTIONS(411), - [sym_metavariable] = ACTIONS(409), - [sym_raw_string_literal] = ACTIONS(409), - [sym_float_literal] = ACTIONS(409), + [sym_identifier] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_RBRACE] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(602), + [anon_sym_i8] = ACTIONS(602), + [anon_sym_u16] = ACTIONS(602), + [anon_sym_i16] = ACTIONS(602), + [anon_sym_u32] = ACTIONS(602), + [anon_sym_i32] = ACTIONS(602), + [anon_sym_u64] = ACTIONS(602), + [anon_sym_i64] = ACTIONS(602), + [anon_sym_u128] = ACTIONS(602), + [anon_sym_i128] = ACTIONS(602), + [anon_sym_isize] = ACTIONS(602), + [anon_sym_usize] = ACTIONS(602), + [anon_sym_f32] = ACTIONS(602), + [anon_sym_f64] = ACTIONS(602), + [anon_sym_bool] = ACTIONS(602), + [anon_sym_str] = ACTIONS(602), + [anon_sym_char] = ACTIONS(602), + [anon_sym_as] = ACTIONS(602), + [anon_sym_const] = ACTIONS(602), + [anon_sym_default] = ACTIONS(602), + [anon_sym_union] = ACTIONS(602), + [anon_sym_POUND] = ACTIONS(600), + [anon_sym_EQ] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(600), + [anon_sym_ref] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(600), + [anon_sym__] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [sym_mutable_specifier] = ACTIONS(602), + [anon_sym_DOT_DOT] = ACTIONS(602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_EQ_EQ] = ACTIONS(600), + [anon_sym_BANG_EQ] = ACTIONS(600), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(602), + [anon_sym_PERCENT] = ACTIONS(602), + [anon_sym_PLUS_EQ] = ACTIONS(600), + [anon_sym_DASH_EQ] = ACTIONS(600), + [anon_sym_STAR_EQ] = ACTIONS(600), + [anon_sym_SLASH_EQ] = ACTIONS(600), + [anon_sym_PERCENT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(600), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_DOT] = ACTIONS(602), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(600), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(602), + [anon_sym_false] = ACTIONS(602), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(602), + [sym_super] = ACTIONS(602), + [sym_crate] = ACTIONS(602), + [sym_metavariable] = ACTIONS(600), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, [216] = { - [sym_identifier] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(574), - [anon_sym_RBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_u8] = ACTIONS(576), - [anon_sym_i8] = ACTIONS(576), - [anon_sym_u16] = ACTIONS(576), - [anon_sym_i16] = ACTIONS(576), - [anon_sym_u32] = ACTIONS(576), - [anon_sym_i32] = ACTIONS(576), - [anon_sym_u64] = ACTIONS(576), - [anon_sym_i64] = ACTIONS(576), - [anon_sym_u128] = ACTIONS(576), - [anon_sym_i128] = ACTIONS(576), - [anon_sym_isize] = ACTIONS(576), - [anon_sym_usize] = ACTIONS(576), - [anon_sym_f32] = ACTIONS(576), - [anon_sym_f64] = ACTIONS(576), - [anon_sym_bool] = ACTIONS(576), - [anon_sym_str] = ACTIONS(576), - [anon_sym_char] = ACTIONS(576), - [anon_sym_as] = ACTIONS(576), - [anon_sym_const] = ACTIONS(576), - [anon_sym_default] = ACTIONS(576), - [anon_sym_union] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(574), - [anon_sym_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(574), - [anon_sym_ref] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(574), - [anon_sym__] = ACTIONS(576), - [anon_sym_AMP] = ACTIONS(576), - [anon_sym_DOT_DOT_DOT] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(576), - [anon_sym_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(574), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_EQ_EQ] = ACTIONS(574), - [anon_sym_BANG_EQ] = ACTIONS(574), - [anon_sym_LT_EQ] = ACTIONS(574), - [anon_sym_GT_EQ] = ACTIONS(574), - [anon_sym_LT_LT] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(576), - [anon_sym_SLASH] = ACTIONS(576), - [anon_sym_PERCENT] = ACTIONS(576), - [anon_sym_PLUS_EQ] = ACTIONS(574), - [anon_sym_DASH_EQ] = ACTIONS(574), - [anon_sym_STAR_EQ] = ACTIONS(574), - [anon_sym_SLASH_EQ] = ACTIONS(574), - [anon_sym_PERCENT_EQ] = ACTIONS(574), - [anon_sym_AMP_EQ] = ACTIONS(574), - [anon_sym_PIPE_EQ] = ACTIONS(574), - [anon_sym_CARET_EQ] = ACTIONS(574), - [anon_sym_LT_LT_EQ] = ACTIONS(574), - [anon_sym_GT_GT_EQ] = ACTIONS(574), - [anon_sym_DOT] = ACTIONS(576), - [sym_integer_literal] = ACTIONS(574), - [aux_sym_string_literal_token1] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [anon_sym_true] = ACTIONS(576), - [anon_sym_false] = ACTIONS(576), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(576), - [sym_super] = ACTIONS(576), - [sym_crate] = ACTIONS(576), - [sym_metavariable] = ACTIONS(574), - [sym_raw_string_literal] = ACTIONS(574), - [sym_float_literal] = ACTIONS(574), - [sym_block_comment] = ACTIONS(3), - }, - [217] = { - [sym_identifier] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(568), - [anon_sym_i8] = ACTIONS(568), - [anon_sym_u16] = ACTIONS(568), - [anon_sym_i16] = ACTIONS(568), - [anon_sym_u32] = ACTIONS(568), - [anon_sym_i32] = ACTIONS(568), - [anon_sym_u64] = ACTIONS(568), - [anon_sym_i64] = ACTIONS(568), - [anon_sym_u128] = ACTIONS(568), - [anon_sym_i128] = ACTIONS(568), - [anon_sym_isize] = ACTIONS(568), - [anon_sym_usize] = ACTIONS(568), - [anon_sym_f32] = ACTIONS(568), - [anon_sym_f64] = ACTIONS(568), - [anon_sym_bool] = ACTIONS(568), - [anon_sym_str] = ACTIONS(568), - [anon_sym_char] = ACTIONS(568), - [anon_sym_as] = ACTIONS(568), - [anon_sym_const] = ACTIONS(568), - [anon_sym_default] = ACTIONS(568), - [anon_sym_union] = ACTIONS(568), - [anon_sym_POUND] = ACTIONS(566), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(566), - [anon_sym_ref] = ACTIONS(568), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(566), - [anon_sym__] = ACTIONS(568), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [sym_mutable_specifier] = ACTIONS(568), - [anon_sym_DOT_DOT] = ACTIONS(568), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(566), - [aux_sym_string_literal_token1] = ACTIONS(566), - [sym_char_literal] = ACTIONS(566), - [anon_sym_true] = ACTIONS(568), - [anon_sym_false] = ACTIONS(568), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(568), - [sym_super] = ACTIONS(568), - [sym_crate] = ACTIONS(568), - [sym_metavariable] = ACTIONS(566), - [sym_raw_string_literal] = ACTIONS(566), - [sym_float_literal] = ACTIONS(566), - [sym_block_comment] = ACTIONS(3), - }, - [218] = { - [sym_identifier] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u128] = ACTIONS(580), - [anon_sym_i128] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_str] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_const] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_union] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(578), - [anon_sym_ref] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_COLON_COLON] = ACTIONS(578), - [anon_sym__] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [sym_mutable_specifier] = ACTIONS(580), - [anon_sym_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(580), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_PLUS_EQ] = ACTIONS(578), - [anon_sym_DASH_EQ] = ACTIONS(578), - [anon_sym_STAR_EQ] = ACTIONS(578), - [anon_sym_SLASH_EQ] = ACTIONS(578), - [anon_sym_PERCENT_EQ] = ACTIONS(578), - [anon_sym_AMP_EQ] = ACTIONS(578), - [anon_sym_PIPE_EQ] = ACTIONS(578), - [anon_sym_CARET_EQ] = ACTIONS(578), - [anon_sym_LT_LT_EQ] = ACTIONS(578), - [anon_sym_GT_GT_EQ] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [sym_integer_literal] = ACTIONS(578), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(580), - [sym_super] = ACTIONS(580), - [sym_crate] = ACTIONS(580), - [sym_metavariable] = ACTIONS(578), - [sym_raw_string_literal] = ACTIONS(578), - [sym_float_literal] = ACTIONS(578), - [sym_block_comment] = ACTIONS(3), - }, - [219] = { - [sym_identifier] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(598), - [anon_sym_RBRACE] = ACTIONS(598), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_PLUS] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_QMARK] = ACTIONS(598), - [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_as] = ACTIONS(600), - [anon_sym_const] = ACTIONS(600), - [anon_sym_default] = ACTIONS(600), - [anon_sym_union] = ACTIONS(600), - [anon_sym_POUND] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(600), - [anon_sym_COMMA] = ACTIONS(598), - [anon_sym_ref] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(600), - [anon_sym_GT] = ACTIONS(600), - [anon_sym_COLON_COLON] = ACTIONS(598), - [anon_sym__] = ACTIONS(600), - [anon_sym_AMP] = ACTIONS(600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [sym_mutable_specifier] = ACTIONS(600), - [anon_sym_DOT_DOT] = ACTIONS(600), - [anon_sym_DOT_DOT_EQ] = ACTIONS(598), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_PIPE] = ACTIONS(600), - [anon_sym_CARET] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(598), - [anon_sym_BANG_EQ] = ACTIONS(598), - [anon_sym_LT_EQ] = ACTIONS(598), - [anon_sym_GT_EQ] = ACTIONS(598), - [anon_sym_LT_LT] = ACTIONS(600), - [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_PERCENT] = ACTIONS(600), - [anon_sym_PLUS_EQ] = ACTIONS(598), - [anon_sym_DASH_EQ] = ACTIONS(598), - [anon_sym_STAR_EQ] = ACTIONS(598), - [anon_sym_SLASH_EQ] = ACTIONS(598), - [anon_sym_PERCENT_EQ] = ACTIONS(598), - [anon_sym_AMP_EQ] = ACTIONS(598), - [anon_sym_PIPE_EQ] = ACTIONS(598), - [anon_sym_CARET_EQ] = ACTIONS(598), - [anon_sym_LT_LT_EQ] = ACTIONS(598), - [anon_sym_GT_GT_EQ] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(600), - [sym_integer_literal] = ACTIONS(598), - [aux_sym_string_literal_token1] = ACTIONS(598), - [sym_char_literal] = ACTIONS(598), - [anon_sym_true] = ACTIONS(600), - [anon_sym_false] = ACTIONS(600), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_crate] = ACTIONS(600), - [sym_metavariable] = ACTIONS(598), - [sym_raw_string_literal] = ACTIONS(598), - [sym_float_literal] = ACTIONS(598), - [sym_block_comment] = ACTIONS(3), - }, - [220] = { - [sym_identifier] = ACTIONS(429), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_RBRACE] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_QMARK] = ACTIONS(427), - [anon_sym_u8] = ACTIONS(429), - [anon_sym_i8] = ACTIONS(429), - [anon_sym_u16] = ACTIONS(429), - [anon_sym_i16] = ACTIONS(429), - [anon_sym_u32] = ACTIONS(429), - [anon_sym_i32] = ACTIONS(429), - [anon_sym_u64] = ACTIONS(429), - [anon_sym_i64] = ACTIONS(429), - [anon_sym_u128] = ACTIONS(429), - [anon_sym_i128] = ACTIONS(429), - [anon_sym_isize] = ACTIONS(429), - [anon_sym_usize] = ACTIONS(429), - [anon_sym_f32] = ACTIONS(429), - [anon_sym_f64] = ACTIONS(429), - [anon_sym_bool] = ACTIONS(429), - [anon_sym_str] = ACTIONS(429), - [anon_sym_char] = ACTIONS(429), - [anon_sym_as] = ACTIONS(429), - [anon_sym_const] = ACTIONS(429), - [anon_sym_default] = ACTIONS(429), - [anon_sym_union] = ACTIONS(429), - [anon_sym_POUND] = ACTIONS(427), - [anon_sym_EQ] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(427), - [anon_sym_ref] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_COLON_COLON] = ACTIONS(427), - [anon_sym__] = ACTIONS(429), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(427), - [sym_mutable_specifier] = ACTIONS(429), - [anon_sym_DOT_DOT] = ACTIONS(429), - [anon_sym_DOT_DOT_EQ] = ACTIONS(427), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_AMP_AMP] = ACTIONS(427), - [anon_sym_PIPE_PIPE] = ACTIONS(427), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(429), - [anon_sym_EQ_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_LT_EQ] = ACTIONS(427), - [anon_sym_GT_EQ] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_SLASH] = ACTIONS(429), - [anon_sym_PERCENT] = ACTIONS(429), - [anon_sym_PLUS_EQ] = ACTIONS(427), - [anon_sym_DASH_EQ] = ACTIONS(427), - [anon_sym_STAR_EQ] = ACTIONS(427), - [anon_sym_SLASH_EQ] = ACTIONS(427), - [anon_sym_PERCENT_EQ] = ACTIONS(427), - [anon_sym_AMP_EQ] = ACTIONS(427), - [anon_sym_PIPE_EQ] = ACTIONS(427), - [anon_sym_CARET_EQ] = ACTIONS(427), - [anon_sym_LT_LT_EQ] = ACTIONS(427), - [anon_sym_GT_GT_EQ] = ACTIONS(427), - [anon_sym_DOT] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [aux_sym_string_literal_token1] = ACTIONS(427), - [sym_char_literal] = ACTIONS(427), - [anon_sym_true] = ACTIONS(429), - [anon_sym_false] = ACTIONS(429), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_crate] = ACTIONS(429), - [sym_metavariable] = ACTIONS(427), - [sym_raw_string_literal] = ACTIONS(427), - [sym_float_literal] = ACTIONS(427), - [sym_block_comment] = ACTIONS(3), - }, - [221] = { - [sym_identifier] = ACTIONS(894), - [anon_sym_LPAREN] = ACTIONS(896), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_u8] = ACTIONS(894), - [anon_sym_i8] = ACTIONS(894), - [anon_sym_u16] = ACTIONS(894), - [anon_sym_i16] = ACTIONS(894), - [anon_sym_u32] = ACTIONS(894), - [anon_sym_i32] = ACTIONS(894), - [anon_sym_u64] = ACTIONS(894), - [anon_sym_i64] = ACTIONS(894), - [anon_sym_u128] = ACTIONS(894), - [anon_sym_i128] = ACTIONS(894), - [anon_sym_isize] = ACTIONS(894), - [anon_sym_usize] = ACTIONS(894), - [anon_sym_f32] = ACTIONS(894), - [anon_sym_f64] = ACTIONS(894), - [anon_sym_bool] = ACTIONS(894), - [anon_sym_str] = ACTIONS(894), - [anon_sym_char] = ACTIONS(894), - [anon_sym_as] = ACTIONS(455), - [anon_sym_const] = ACTIONS(894), - [anon_sym_default] = ACTIONS(894), - [anon_sym_union] = ACTIONS(894), - [anon_sym_POUND] = ACTIONS(896), - [anon_sym_EQ] = ACTIONS(455), - [anon_sym_COMMA] = ACTIONS(453), - [anon_sym_ref] = ACTIONS(894), - [anon_sym_LT] = ACTIONS(894), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym__] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_DOT_DOT_DOT] = ACTIONS(453), - [sym_mutable_specifier] = ACTIONS(894), - [anon_sym_DOT_DOT] = ACTIONS(894), - [anon_sym_DOT_DOT_EQ] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(455), - [anon_sym_CARET] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(453), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_GT_EQ] = ACTIONS(453), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(455), - [anon_sym_PERCENT] = ACTIONS(455), - [anon_sym_PLUS_EQ] = ACTIONS(453), - [anon_sym_DASH_EQ] = ACTIONS(453), - [anon_sym_STAR_EQ] = ACTIONS(453), - [anon_sym_SLASH_EQ] = ACTIONS(453), - [anon_sym_PERCENT_EQ] = ACTIONS(453), - [anon_sym_AMP_EQ] = ACTIONS(453), - [anon_sym_PIPE_EQ] = ACTIONS(453), - [anon_sym_CARET_EQ] = ACTIONS(453), - [anon_sym_LT_LT_EQ] = ACTIONS(453), - [anon_sym_GT_GT_EQ] = ACTIONS(453), - [anon_sym_DOT] = ACTIONS(455), - [sym_integer_literal] = ACTIONS(896), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(896), - [anon_sym_true] = ACTIONS(894), - [anon_sym_false] = ACTIONS(894), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(894), - [sym_super] = ACTIONS(894), - [sym_crate] = ACTIONS(894), - [sym_metavariable] = ACTIONS(896), - [sym_raw_string_literal] = ACTIONS(896), - [sym_float_literal] = ACTIONS(896), - [sym_block_comment] = ACTIONS(3), - }, - [222] = { - [sym_identifier] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_RBRACE] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_QMARK] = ACTIONS(445), - [anon_sym_u8] = ACTIONS(447), - [anon_sym_i8] = ACTIONS(447), - [anon_sym_u16] = ACTIONS(447), - [anon_sym_i16] = ACTIONS(447), - [anon_sym_u32] = ACTIONS(447), - [anon_sym_i32] = ACTIONS(447), - [anon_sym_u64] = ACTIONS(447), - [anon_sym_i64] = ACTIONS(447), - [anon_sym_u128] = ACTIONS(447), - [anon_sym_i128] = ACTIONS(447), - [anon_sym_isize] = ACTIONS(447), - [anon_sym_usize] = ACTIONS(447), - [anon_sym_f32] = ACTIONS(447), - [anon_sym_f64] = ACTIONS(447), - [anon_sym_bool] = ACTIONS(447), - [anon_sym_str] = ACTIONS(447), - [anon_sym_char] = ACTIONS(447), - [anon_sym_as] = ACTIONS(447), - [anon_sym_const] = ACTIONS(447), - [anon_sym_default] = ACTIONS(447), - [anon_sym_union] = ACTIONS(447), - [anon_sym_POUND] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(447), - [anon_sym_COMMA] = ACTIONS(445), - [anon_sym_ref] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(447), - [anon_sym_GT] = ACTIONS(447), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym__] = ACTIONS(447), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(445), - [sym_mutable_specifier] = ACTIONS(447), - [anon_sym_DOT_DOT] = ACTIONS(447), - [anon_sym_DOT_DOT_EQ] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(447), - [anon_sym_AMP_AMP] = ACTIONS(445), - [anon_sym_PIPE_PIPE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(447), - [anon_sym_CARET] = ACTIONS(447), - [anon_sym_EQ_EQ] = ACTIONS(445), - [anon_sym_BANG_EQ] = ACTIONS(445), - [anon_sym_LT_EQ] = ACTIONS(445), - [anon_sym_GT_EQ] = ACTIONS(445), - [anon_sym_LT_LT] = ACTIONS(447), - [anon_sym_GT_GT] = ACTIONS(447), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_PERCENT] = ACTIONS(447), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_STAR_EQ] = ACTIONS(445), - [anon_sym_SLASH_EQ] = ACTIONS(445), - [anon_sym_PERCENT_EQ] = ACTIONS(445), - [anon_sym_AMP_EQ] = ACTIONS(445), - [anon_sym_PIPE_EQ] = ACTIONS(445), - [anon_sym_CARET_EQ] = ACTIONS(445), - [anon_sym_LT_LT_EQ] = ACTIONS(445), - [anon_sym_GT_GT_EQ] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(447), - [sym_integer_literal] = ACTIONS(445), - [aux_sym_string_literal_token1] = ACTIONS(445), - [sym_char_literal] = ACTIONS(445), - [anon_sym_true] = ACTIONS(447), - [anon_sym_false] = ACTIONS(447), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(447), - [sym_super] = ACTIONS(447), - [sym_crate] = ACTIONS(447), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(445), - [sym_float_literal] = ACTIONS(445), - [sym_block_comment] = ACTIONS(3), - }, - [223] = { [sym_identifier] = ACTIONS(425), [anon_sym_LPAREN] = ACTIONS(423), [anon_sym_RBRACE] = ACTIONS(423), @@ -37710,247 +37228,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(423), [sym_block_comment] = ACTIONS(3), }, - [224] = { - [sym_identifier] = ACTIONS(417), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_RBRACE] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(415), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_QMARK] = ACTIONS(415), - [anon_sym_u8] = ACTIONS(417), - [anon_sym_i8] = ACTIONS(417), - [anon_sym_u16] = ACTIONS(417), - [anon_sym_i16] = ACTIONS(417), - [anon_sym_u32] = ACTIONS(417), - [anon_sym_i32] = ACTIONS(417), - [anon_sym_u64] = ACTIONS(417), - [anon_sym_i64] = ACTIONS(417), - [anon_sym_u128] = ACTIONS(417), - [anon_sym_i128] = ACTIONS(417), - [anon_sym_isize] = ACTIONS(417), - [anon_sym_usize] = ACTIONS(417), - [anon_sym_f32] = ACTIONS(417), - [anon_sym_f64] = ACTIONS(417), - [anon_sym_bool] = ACTIONS(417), - [anon_sym_str] = ACTIONS(417), - [anon_sym_char] = ACTIONS(417), - [anon_sym_as] = ACTIONS(417), - [anon_sym_const] = ACTIONS(417), - [anon_sym_default] = ACTIONS(417), - [anon_sym_union] = ACTIONS(417), - [anon_sym_POUND] = ACTIONS(415), - [anon_sym_EQ] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(415), - [anon_sym_ref] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym__] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(415), - [sym_mutable_specifier] = ACTIONS(417), - [anon_sym_DOT_DOT] = ACTIONS(417), - [anon_sym_DOT_DOT_EQ] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_EQ_EQ] = ACTIONS(415), - [anon_sym_BANG_EQ] = ACTIONS(415), - [anon_sym_LT_EQ] = ACTIONS(415), - [anon_sym_GT_EQ] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_EQ] = ACTIONS(415), - [anon_sym_DASH_EQ] = ACTIONS(415), - [anon_sym_STAR_EQ] = ACTIONS(415), - [anon_sym_SLASH_EQ] = ACTIONS(415), - [anon_sym_PERCENT_EQ] = ACTIONS(415), - [anon_sym_AMP_EQ] = ACTIONS(415), - [anon_sym_PIPE_EQ] = ACTIONS(415), - [anon_sym_CARET_EQ] = ACTIONS(415), - [anon_sym_LT_LT_EQ] = ACTIONS(415), - [anon_sym_GT_GT_EQ] = ACTIONS(415), - [anon_sym_DOT] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(415), - [aux_sym_string_literal_token1] = ACTIONS(415), - [sym_char_literal] = ACTIONS(415), - [anon_sym_true] = ACTIONS(417), - [anon_sym_false] = ACTIONS(417), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(417), - [sym_super] = ACTIONS(417), - [sym_crate] = ACTIONS(417), - [sym_metavariable] = ACTIONS(415), - [sym_raw_string_literal] = ACTIONS(415), - [sym_float_literal] = ACTIONS(415), - [sym_block_comment] = ACTIONS(3), - }, - [225] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1849), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(1848), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_type_binding] = STATE(2205), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [sym_block] = STATE(2205), - [sym__literal] = STATE(2205), - [sym_string_literal] = STATE(2170), - [sym_boolean_literal] = STATE(2170), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(870), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_integer_literal] = ACTIONS(886), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(886), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), - [sym_raw_string_literal] = ACTIONS(886), - [sym_float_literal] = ACTIONS(886), - [sym_block_comment] = ACTIONS(3), - }, - [226] = { - [sym_identifier] = ACTIONS(433), - [anon_sym_LPAREN] = ACTIONS(431), - [anon_sym_RBRACE] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(431), - [anon_sym_u8] = ACTIONS(433), - [anon_sym_i8] = ACTIONS(433), - [anon_sym_u16] = ACTIONS(433), - [anon_sym_i16] = ACTIONS(433), - [anon_sym_u32] = ACTIONS(433), - [anon_sym_i32] = ACTIONS(433), - [anon_sym_u64] = ACTIONS(433), - [anon_sym_i64] = ACTIONS(433), - [anon_sym_u128] = ACTIONS(433), - [anon_sym_i128] = ACTIONS(433), - [anon_sym_isize] = ACTIONS(433), - [anon_sym_usize] = ACTIONS(433), - [anon_sym_f32] = ACTIONS(433), - [anon_sym_f64] = ACTIONS(433), - [anon_sym_bool] = ACTIONS(433), - [anon_sym_str] = ACTIONS(433), - [anon_sym_char] = ACTIONS(433), - [anon_sym_as] = ACTIONS(433), - [anon_sym_const] = ACTIONS(433), - [anon_sym_default] = ACTIONS(433), - [anon_sym_union] = ACTIONS(433), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_EQ] = ACTIONS(433), - [anon_sym_COMMA] = ACTIONS(431), - [anon_sym_ref] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_COLON_COLON] = ACTIONS(431), - [anon_sym__] = ACTIONS(433), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_mutable_specifier] = ACTIONS(433), - [anon_sym_DOT_DOT] = ACTIONS(433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(431), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(431), - [anon_sym_PIPE_PIPE] = ACTIONS(431), - [anon_sym_PIPE] = ACTIONS(433), - [anon_sym_CARET] = ACTIONS(433), - [anon_sym_EQ_EQ] = ACTIONS(431), - [anon_sym_BANG_EQ] = ACTIONS(431), - [anon_sym_LT_EQ] = ACTIONS(431), - [anon_sym_GT_EQ] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(433), - [anon_sym_PLUS_EQ] = ACTIONS(431), - [anon_sym_DASH_EQ] = ACTIONS(431), - [anon_sym_STAR_EQ] = ACTIONS(431), - [anon_sym_SLASH_EQ] = ACTIONS(431), - [anon_sym_PERCENT_EQ] = ACTIONS(431), - [anon_sym_AMP_EQ] = ACTIONS(431), - [anon_sym_PIPE_EQ] = ACTIONS(431), - [anon_sym_CARET_EQ] = ACTIONS(431), - [anon_sym_LT_LT_EQ] = ACTIONS(431), - [anon_sym_GT_GT_EQ] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(431), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(431), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), + [217] = { + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u8] = ACTIONS(403), + [anon_sym_i8] = ACTIONS(403), + [anon_sym_u16] = ACTIONS(403), + [anon_sym_i16] = ACTIONS(403), + [anon_sym_u32] = ACTIONS(403), + [anon_sym_i32] = ACTIONS(403), + [anon_sym_u64] = ACTIONS(403), + [anon_sym_i64] = ACTIONS(403), + [anon_sym_u128] = ACTIONS(403), + [anon_sym_i128] = ACTIONS(403), + [anon_sym_isize] = ACTIONS(403), + [anon_sym_usize] = ACTIONS(403), + [anon_sym_f32] = ACTIONS(403), + [anon_sym_f64] = ACTIONS(403), + [anon_sym_bool] = ACTIONS(403), + [anon_sym_str] = ACTIONS(403), + [anon_sym_char] = ACTIONS(403), + [anon_sym_as] = ACTIONS(403), + [anon_sym_const] = ACTIONS(403), + [anon_sym_default] = ACTIONS(403), + [anon_sym_union] = ACTIONS(403), + [anon_sym_POUND] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(401), + [anon_sym_ref] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(401), + [anon_sym__] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [sym_mutable_specifier] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [sym_integer_literal] = ACTIONS(401), + [aux_sym_string_literal_token1] = ACTIONS(401), + [sym_char_literal] = ACTIONS(401), + [anon_sym_true] = ACTIONS(403), + [anon_sym_false] = ACTIONS(403), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(433), - [sym_super] = ACTIONS(433), - [sym_crate] = ACTIONS(433), - [sym_metavariable] = ACTIONS(431), - [sym_raw_string_literal] = ACTIONS(431), - [sym_float_literal] = ACTIONS(431), + [sym_self] = ACTIONS(403), + [sym_super] = ACTIONS(403), + [sym_crate] = ACTIONS(403), + [sym_metavariable] = ACTIONS(401), + [sym_raw_string_literal] = ACTIONS(401), + [sym_float_literal] = ACTIONS(401), [sym_block_comment] = ACTIONS(3), }, - [227] = { + [218] = { [sym_identifier] = ACTIONS(407), [anon_sym_LPAREN] = ACTIONS(405), [anon_sym_RBRACE] = ACTIONS(405), @@ -38030,247 +37388,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(405), [sym_block_comment] = ACTIONS(3), }, - [228] = { - [sym_identifier] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(419), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(421), - [anon_sym_STAR] = ACTIONS(421), - [anon_sym_QMARK] = ACTIONS(419), - [anon_sym_u8] = ACTIONS(421), - [anon_sym_i8] = ACTIONS(421), - [anon_sym_u16] = ACTIONS(421), - [anon_sym_i16] = ACTIONS(421), - [anon_sym_u32] = ACTIONS(421), - [anon_sym_i32] = ACTIONS(421), - [anon_sym_u64] = ACTIONS(421), - [anon_sym_i64] = ACTIONS(421), - [anon_sym_u128] = ACTIONS(421), - [anon_sym_i128] = ACTIONS(421), - [anon_sym_isize] = ACTIONS(421), - [anon_sym_usize] = ACTIONS(421), - [anon_sym_f32] = ACTIONS(421), - [anon_sym_f64] = ACTIONS(421), - [anon_sym_bool] = ACTIONS(421), - [anon_sym_str] = ACTIONS(421), - [anon_sym_char] = ACTIONS(421), - [anon_sym_as] = ACTIONS(421), - [anon_sym_const] = ACTIONS(421), - [anon_sym_default] = ACTIONS(421), - [anon_sym_union] = ACTIONS(421), - [anon_sym_POUND] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(419), - [anon_sym_ref] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(421), - [anon_sym_GT] = ACTIONS(421), - [anon_sym_COLON_COLON] = ACTIONS(419), - [anon_sym__] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [sym_mutable_specifier] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(421), - [anon_sym_DOT_DOT_EQ] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(421), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(421), - [anon_sym_CARET] = ACTIONS(421), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(421), - [anon_sym_GT_GT] = ACTIONS(421), - [anon_sym_SLASH] = ACTIONS(421), - [anon_sym_PERCENT] = ACTIONS(421), - [anon_sym_PLUS_EQ] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), - [anon_sym_STAR_EQ] = ACTIONS(419), - [anon_sym_SLASH_EQ] = ACTIONS(419), - [anon_sym_PERCENT_EQ] = ACTIONS(419), - [anon_sym_AMP_EQ] = ACTIONS(419), - [anon_sym_PIPE_EQ] = ACTIONS(419), - [anon_sym_CARET_EQ] = ACTIONS(419), - [anon_sym_LT_LT_EQ] = ACTIONS(419), - [anon_sym_GT_GT_EQ] = ACTIONS(419), - [anon_sym_DOT] = ACTIONS(421), - [sym_integer_literal] = ACTIONS(419), - [aux_sym_string_literal_token1] = ACTIONS(419), - [sym_char_literal] = ACTIONS(419), - [anon_sym_true] = ACTIONS(421), - [anon_sym_false] = ACTIONS(421), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(421), - [sym_super] = ACTIONS(421), - [sym_crate] = ACTIONS(421), - [sym_metavariable] = ACTIONS(419), - [sym_raw_string_literal] = ACTIONS(419), - [sym_float_literal] = ACTIONS(419), - [sym_block_comment] = ACTIONS(3), - }, - [229] = { - [sym_identifier] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(562), - [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(562), - [anon_sym_u8] = ACTIONS(564), - [anon_sym_i8] = ACTIONS(564), - [anon_sym_u16] = ACTIONS(564), - [anon_sym_i16] = ACTIONS(564), - [anon_sym_u32] = ACTIONS(564), - [anon_sym_i32] = ACTIONS(564), - [anon_sym_u64] = ACTIONS(564), - [anon_sym_i64] = ACTIONS(564), - [anon_sym_u128] = ACTIONS(564), - [anon_sym_i128] = ACTIONS(564), - [anon_sym_isize] = ACTIONS(564), - [anon_sym_usize] = ACTIONS(564), - [anon_sym_f32] = ACTIONS(564), - [anon_sym_f64] = ACTIONS(564), - [anon_sym_bool] = ACTIONS(564), - [anon_sym_str] = ACTIONS(564), - [anon_sym_char] = ACTIONS(564), - [anon_sym_as] = ACTIONS(564), - [anon_sym_const] = ACTIONS(564), - [anon_sym_default] = ACTIONS(564), - [anon_sym_union] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(562), - [anon_sym_ref] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_COLON_COLON] = ACTIONS(562), - [anon_sym__] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(562), - [sym_mutable_specifier] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_EQ] = ACTIONS(562), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(562), - [anon_sym_PIPE_PIPE] = ACTIONS(562), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(562), - [anon_sym_BANG_EQ] = ACTIONS(562), - [anon_sym_LT_EQ] = ACTIONS(562), - [anon_sym_GT_EQ] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(562), - [anon_sym_DASH_EQ] = ACTIONS(562), - [anon_sym_STAR_EQ] = ACTIONS(562), - [anon_sym_SLASH_EQ] = ACTIONS(562), - [anon_sym_PERCENT_EQ] = ACTIONS(562), - [anon_sym_AMP_EQ] = ACTIONS(562), - [anon_sym_PIPE_EQ] = ACTIONS(562), - [anon_sym_CARET_EQ] = ACTIONS(562), - [anon_sym_LT_LT_EQ] = ACTIONS(562), - [anon_sym_GT_GT_EQ] = ACTIONS(562), - [anon_sym_DOT] = ACTIONS(564), - [sym_integer_literal] = ACTIONS(562), - [aux_sym_string_literal_token1] = ACTIONS(562), - [sym_char_literal] = ACTIONS(562), - [anon_sym_true] = ACTIONS(564), - [anon_sym_false] = ACTIONS(564), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(564), - [sym_super] = ACTIONS(564), - [sym_crate] = ACTIONS(564), - [sym_metavariable] = ACTIONS(562), - [sym_raw_string_literal] = ACTIONS(562), - [sym_float_literal] = ACTIONS(562), - [sym_block_comment] = ACTIONS(3), - }, - [230] = { - [sym_identifier] = ACTIONS(572), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_u8] = ACTIONS(572), - [anon_sym_i8] = ACTIONS(572), - [anon_sym_u16] = ACTIONS(572), - [anon_sym_i16] = ACTIONS(572), - [anon_sym_u32] = ACTIONS(572), - [anon_sym_i32] = ACTIONS(572), - [anon_sym_u64] = ACTIONS(572), - [anon_sym_i64] = ACTIONS(572), - [anon_sym_u128] = ACTIONS(572), - [anon_sym_i128] = ACTIONS(572), - [anon_sym_isize] = ACTIONS(572), - [anon_sym_usize] = ACTIONS(572), - [anon_sym_f32] = ACTIONS(572), - [anon_sym_f64] = ACTIONS(572), - [anon_sym_bool] = ACTIONS(572), - [anon_sym_str] = ACTIONS(572), - [anon_sym_char] = ACTIONS(572), - [anon_sym_as] = ACTIONS(572), - [anon_sym_const] = ACTIONS(572), - [anon_sym_default] = ACTIONS(572), - [anon_sym_union] = ACTIONS(572), - [anon_sym_POUND] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(572), - [anon_sym_COMMA] = ACTIONS(570), - [anon_sym_ref] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_COLON_COLON] = ACTIONS(570), - [anon_sym__] = ACTIONS(572), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(570), - [sym_mutable_specifier] = ACTIONS(572), - [anon_sym_DOT_DOT] = ACTIONS(572), - [anon_sym_DOT_DOT_EQ] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_AMP_AMP] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_CARET] = ACTIONS(572), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_LT_LT] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(572), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_DOT] = ACTIONS(572), - [sym_integer_literal] = ACTIONS(570), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(570), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(572), - [sym_super] = ACTIONS(572), - [sym_crate] = ACTIONS(572), - [sym_metavariable] = ACTIONS(570), - [sym_raw_string_literal] = ACTIONS(570), - [sym_float_literal] = ACTIONS(570), - [sym_block_comment] = ACTIONS(3), - }, - [231] = { + [219] = { [sym_identifier] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(435), [anon_sym_RBRACE] = ACTIONS(435), @@ -38350,720 +37468,1604 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(435), [sym_block_comment] = ACTIONS(3), }, - [232] = { - [sym_identifier] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(441), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_PLUS] = ACTIONS(443), - [anon_sym_STAR] = ACTIONS(443), - [anon_sym_QMARK] = ACTIONS(441), - [anon_sym_u8] = ACTIONS(443), - [anon_sym_i8] = ACTIONS(443), - [anon_sym_u16] = ACTIONS(443), - [anon_sym_i16] = ACTIONS(443), - [anon_sym_u32] = ACTIONS(443), - [anon_sym_i32] = ACTIONS(443), - [anon_sym_u64] = ACTIONS(443), - [anon_sym_i64] = ACTIONS(443), - [anon_sym_u128] = ACTIONS(443), - [anon_sym_i128] = ACTIONS(443), - [anon_sym_isize] = ACTIONS(443), - [anon_sym_usize] = ACTIONS(443), - [anon_sym_f32] = ACTIONS(443), - [anon_sym_f64] = ACTIONS(443), - [anon_sym_bool] = ACTIONS(443), - [anon_sym_str] = ACTIONS(443), - [anon_sym_char] = ACTIONS(443), - [anon_sym_as] = ACTIONS(443), - [anon_sym_const] = ACTIONS(443), - [anon_sym_default] = ACTIONS(443), - [anon_sym_union] = ACTIONS(443), - [anon_sym_POUND] = ACTIONS(441), - [anon_sym_EQ] = ACTIONS(443), - [anon_sym_COMMA] = ACTIONS(441), - [anon_sym_ref] = ACTIONS(443), - [anon_sym_LT] = ACTIONS(443), - [anon_sym_GT] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(441), - [sym_mutable_specifier] = ACTIONS(443), - [anon_sym_DOT_DOT] = ACTIONS(443), - [anon_sym_DOT_DOT_EQ] = ACTIONS(441), - [anon_sym_DASH] = ACTIONS(443), - [anon_sym_AMP_AMP] = ACTIONS(441), - [anon_sym_PIPE_PIPE] = ACTIONS(441), - [anon_sym_PIPE] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(443), - [anon_sym_EQ_EQ] = ACTIONS(441), - [anon_sym_BANG_EQ] = ACTIONS(441), - [anon_sym_LT_EQ] = ACTIONS(441), - [anon_sym_GT_EQ] = ACTIONS(441), - [anon_sym_LT_LT] = ACTIONS(443), - [anon_sym_GT_GT] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(443), - [anon_sym_PERCENT] = ACTIONS(443), - [anon_sym_PLUS_EQ] = ACTIONS(441), - [anon_sym_DASH_EQ] = ACTIONS(441), - [anon_sym_STAR_EQ] = ACTIONS(441), - [anon_sym_SLASH_EQ] = ACTIONS(441), - [anon_sym_PERCENT_EQ] = ACTIONS(441), - [anon_sym_AMP_EQ] = ACTIONS(441), - [anon_sym_PIPE_EQ] = ACTIONS(441), - [anon_sym_CARET_EQ] = ACTIONS(441), - [anon_sym_LT_LT_EQ] = ACTIONS(441), - [anon_sym_GT_GT_EQ] = ACTIONS(441), - [anon_sym_DOT] = ACTIONS(443), - [sym_integer_literal] = ACTIONS(441), - [aux_sym_string_literal_token1] = ACTIONS(441), - [sym_char_literal] = ACTIONS(441), - [anon_sym_true] = ACTIONS(443), - [anon_sym_false] = ACTIONS(443), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(443), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(441), - [sym_raw_string_literal] = ACTIONS(441), - [sym_float_literal] = ACTIONS(441), + [220] = { + [sym_identifier] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(447), + [anon_sym_RBRACE] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(449), + [anon_sym_QMARK] = ACTIONS(447), + [anon_sym_u8] = ACTIONS(449), + [anon_sym_i8] = ACTIONS(449), + [anon_sym_u16] = ACTIONS(449), + [anon_sym_i16] = ACTIONS(449), + [anon_sym_u32] = ACTIONS(449), + [anon_sym_i32] = ACTIONS(449), + [anon_sym_u64] = ACTIONS(449), + [anon_sym_i64] = ACTIONS(449), + [anon_sym_u128] = ACTIONS(449), + [anon_sym_i128] = ACTIONS(449), + [anon_sym_isize] = ACTIONS(449), + [anon_sym_usize] = ACTIONS(449), + [anon_sym_f32] = ACTIONS(449), + [anon_sym_f64] = ACTIONS(449), + [anon_sym_bool] = ACTIONS(449), + [anon_sym_str] = ACTIONS(449), + [anon_sym_char] = ACTIONS(449), + [anon_sym_as] = ACTIONS(449), + [anon_sym_const] = ACTIONS(449), + [anon_sym_default] = ACTIONS(449), + [anon_sym_union] = ACTIONS(449), + [anon_sym_POUND] = ACTIONS(447), + [anon_sym_EQ] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(447), + [anon_sym_ref] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(447), + [anon_sym__] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(447), + [sym_mutable_specifier] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_AMP_AMP] = ACTIONS(447), + [anon_sym_PIPE_PIPE] = ACTIONS(447), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_EQ_EQ] = ACTIONS(447), + [anon_sym_BANG_EQ] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(447), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_PERCENT] = ACTIONS(449), + [anon_sym_PLUS_EQ] = ACTIONS(447), + [anon_sym_DASH_EQ] = ACTIONS(447), + [anon_sym_STAR_EQ] = ACTIONS(447), + [anon_sym_SLASH_EQ] = ACTIONS(447), + [anon_sym_PERCENT_EQ] = ACTIONS(447), + [anon_sym_AMP_EQ] = ACTIONS(447), + [anon_sym_PIPE_EQ] = ACTIONS(447), + [anon_sym_CARET_EQ] = ACTIONS(447), + [anon_sym_LT_LT_EQ] = ACTIONS(447), + [anon_sym_GT_GT_EQ] = ACTIONS(447), + [anon_sym_DOT] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(447), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(449), + [anon_sym_false] = ACTIONS(449), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(449), + [sym_super] = ACTIONS(449), + [sym_crate] = ACTIONS(449), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(447), + [sym_float_literal] = ACTIONS(447), [sym_block_comment] = ACTIONS(3), }, - [233] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1849), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(1848), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_type_binding] = STATE(2205), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [sym_block] = STATE(2205), - [sym__literal] = STATE(2205), - [sym_string_literal] = STATE(2170), - [sym_boolean_literal] = STATE(2170), - [aux_sym_function_modifiers_repeat1] = STATE(1466), + [221] = { [sym_identifier] = ACTIONS(866), [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(870), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(900), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_integer_literal] = ACTIONS(886), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(886), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), - [sym_raw_string_literal] = ACTIONS(886), - [sym_float_literal] = ACTIONS(886), + [anon_sym_RBRACE] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_u8] = ACTIONS(866), + [anon_sym_i8] = ACTIONS(866), + [anon_sym_u16] = ACTIONS(866), + [anon_sym_i16] = ACTIONS(866), + [anon_sym_u32] = ACTIONS(866), + [anon_sym_i32] = ACTIONS(866), + [anon_sym_u64] = ACTIONS(866), + [anon_sym_i64] = ACTIONS(866), + [anon_sym_u128] = ACTIONS(866), + [anon_sym_i128] = ACTIONS(866), + [anon_sym_isize] = ACTIONS(866), + [anon_sym_usize] = ACTIONS(866), + [anon_sym_f32] = ACTIONS(866), + [anon_sym_f64] = ACTIONS(866), + [anon_sym_bool] = ACTIONS(866), + [anon_sym_str] = ACTIONS(866), + [anon_sym_char] = ACTIONS(866), + [anon_sym_as] = ACTIONS(461), + [anon_sym_const] = ACTIONS(866), + [anon_sym_default] = ACTIONS(866), + [anon_sym_union] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(868), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_COMMA] = ACTIONS(459), + [anon_sym_ref] = ACTIONS(866), + [anon_sym_LT] = ACTIONS(866), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_COLON_COLON] = ACTIONS(868), + [anon_sym__] = ACTIONS(866), + [anon_sym_AMP] = ACTIONS(866), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_mutable_specifier] = ACTIONS(866), + [anon_sym_DOT_DOT] = ACTIONS(866), + [anon_sym_DOT_DOT_EQ] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(866), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_PIPE] = ACTIONS(461), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(459), + [anon_sym_GT_EQ] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(461), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_PERCENT] = ACTIONS(461), + [anon_sym_PLUS_EQ] = ACTIONS(459), + [anon_sym_DASH_EQ] = ACTIONS(459), + [anon_sym_STAR_EQ] = ACTIONS(459), + [anon_sym_SLASH_EQ] = ACTIONS(459), + [anon_sym_PERCENT_EQ] = ACTIONS(459), + [anon_sym_AMP_EQ] = ACTIONS(459), + [anon_sym_PIPE_EQ] = ACTIONS(459), + [anon_sym_CARET_EQ] = ACTIONS(459), + [anon_sym_LT_LT_EQ] = ACTIONS(459), + [anon_sym_GT_GT_EQ] = ACTIONS(459), + [anon_sym_DOT] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(868), + [aux_sym_string_literal_token1] = ACTIONS(868), + [sym_char_literal] = ACTIONS(868), + [anon_sym_true] = ACTIONS(866), + [anon_sym_false] = ACTIONS(866), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(866), + [sym_super] = ACTIONS(866), + [sym_crate] = ACTIONS(866), + [sym_metavariable] = ACTIONS(868), + [sym_raw_string_literal] = ACTIONS(868), + [sym_float_literal] = ACTIONS(868), [sym_block_comment] = ACTIONS(3), }, - [234] = { - [sym_identifier] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RBRACE] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(596), - [anon_sym_QMARK] = ACTIONS(594), - [anon_sym_u8] = ACTIONS(596), - [anon_sym_i8] = ACTIONS(596), - [anon_sym_u16] = ACTIONS(596), - [anon_sym_i16] = ACTIONS(596), - [anon_sym_u32] = ACTIONS(596), - [anon_sym_i32] = ACTIONS(596), - [anon_sym_u64] = ACTIONS(596), - [anon_sym_i64] = ACTIONS(596), - [anon_sym_u128] = ACTIONS(596), - [anon_sym_i128] = ACTIONS(596), - [anon_sym_isize] = ACTIONS(596), - [anon_sym_usize] = ACTIONS(596), - [anon_sym_f32] = ACTIONS(596), - [anon_sym_f64] = ACTIONS(596), - [anon_sym_bool] = ACTIONS(596), - [anon_sym_str] = ACTIONS(596), - [anon_sym_char] = ACTIONS(596), - [anon_sym_as] = ACTIONS(596), - [anon_sym_const] = ACTIONS(596), - [anon_sym_default] = ACTIONS(596), - [anon_sym_union] = ACTIONS(596), - [anon_sym_POUND] = ACTIONS(594), - [anon_sym_EQ] = ACTIONS(596), - [anon_sym_COMMA] = ACTIONS(594), - [anon_sym_ref] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(596), - [anon_sym_GT] = ACTIONS(596), - [anon_sym_COLON_COLON] = ACTIONS(594), - [anon_sym__] = ACTIONS(596), - [anon_sym_AMP] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [sym_mutable_specifier] = ACTIONS(596), - [anon_sym_DOT_DOT] = ACTIONS(596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(594), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(594), - [anon_sym_PIPE_PIPE] = ACTIONS(594), - [anon_sym_PIPE] = ACTIONS(596), - [anon_sym_CARET] = ACTIONS(596), - [anon_sym_EQ_EQ] = ACTIONS(594), - [anon_sym_BANG_EQ] = ACTIONS(594), - [anon_sym_LT_EQ] = ACTIONS(594), - [anon_sym_GT_EQ] = ACTIONS(594), - [anon_sym_LT_LT] = ACTIONS(596), - [anon_sym_GT_GT] = ACTIONS(596), - [anon_sym_SLASH] = ACTIONS(596), - [anon_sym_PERCENT] = ACTIONS(596), - [anon_sym_PLUS_EQ] = ACTIONS(594), - [anon_sym_DASH_EQ] = ACTIONS(594), - [anon_sym_STAR_EQ] = ACTIONS(594), - [anon_sym_SLASH_EQ] = ACTIONS(594), - [anon_sym_PERCENT_EQ] = ACTIONS(594), - [anon_sym_AMP_EQ] = ACTIONS(594), - [anon_sym_PIPE_EQ] = ACTIONS(594), - [anon_sym_CARET_EQ] = ACTIONS(594), - [anon_sym_LT_LT_EQ] = ACTIONS(594), - [anon_sym_GT_GT_EQ] = ACTIONS(594), - [anon_sym_DOT] = ACTIONS(596), - [sym_integer_literal] = ACTIONS(594), - [aux_sym_string_literal_token1] = ACTIONS(594), - [sym_char_literal] = ACTIONS(594), - [anon_sym_true] = ACTIONS(596), - [anon_sym_false] = ACTIONS(596), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(596), - [sym_super] = ACTIONS(596), - [sym_crate] = ACTIONS(596), - [sym_metavariable] = ACTIONS(594), - [sym_raw_string_literal] = ACTIONS(594), - [sym_float_literal] = ACTIONS(594), + [222] = { + [sym_identifier] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(592), + [anon_sym_RBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_PLUS] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(594), + [anon_sym_QMARK] = ACTIONS(592), + [anon_sym_u8] = ACTIONS(594), + [anon_sym_i8] = ACTIONS(594), + [anon_sym_u16] = ACTIONS(594), + [anon_sym_i16] = ACTIONS(594), + [anon_sym_u32] = ACTIONS(594), + [anon_sym_i32] = ACTIONS(594), + [anon_sym_u64] = ACTIONS(594), + [anon_sym_i64] = ACTIONS(594), + [anon_sym_u128] = ACTIONS(594), + [anon_sym_i128] = ACTIONS(594), + [anon_sym_isize] = ACTIONS(594), + [anon_sym_usize] = ACTIONS(594), + [anon_sym_f32] = ACTIONS(594), + [anon_sym_f64] = ACTIONS(594), + [anon_sym_bool] = ACTIONS(594), + [anon_sym_str] = ACTIONS(594), + [anon_sym_char] = ACTIONS(594), + [anon_sym_as] = ACTIONS(594), + [anon_sym_const] = ACTIONS(594), + [anon_sym_default] = ACTIONS(594), + [anon_sym_union] = ACTIONS(594), + [anon_sym_POUND] = ACTIONS(592), + [anon_sym_EQ] = ACTIONS(594), + [anon_sym_COMMA] = ACTIONS(592), + [anon_sym_ref] = ACTIONS(594), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_GT] = ACTIONS(594), + [anon_sym_COLON_COLON] = ACTIONS(592), + [anon_sym__] = ACTIONS(594), + [anon_sym_AMP] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(592), + [sym_mutable_specifier] = ACTIONS(594), + [anon_sym_DOT_DOT] = ACTIONS(594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(592), + [anon_sym_PIPE_PIPE] = ACTIONS(592), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_CARET] = ACTIONS(594), + [anon_sym_EQ_EQ] = ACTIONS(592), + [anon_sym_BANG_EQ] = ACTIONS(592), + [anon_sym_LT_EQ] = ACTIONS(592), + [anon_sym_GT_EQ] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(594), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_SLASH] = ACTIONS(594), + [anon_sym_PERCENT] = ACTIONS(594), + [anon_sym_PLUS_EQ] = ACTIONS(592), + [anon_sym_DASH_EQ] = ACTIONS(592), + [anon_sym_STAR_EQ] = ACTIONS(592), + [anon_sym_SLASH_EQ] = ACTIONS(592), + [anon_sym_PERCENT_EQ] = ACTIONS(592), + [anon_sym_AMP_EQ] = ACTIONS(592), + [anon_sym_PIPE_EQ] = ACTIONS(592), + [anon_sym_CARET_EQ] = ACTIONS(592), + [anon_sym_LT_LT_EQ] = ACTIONS(592), + [anon_sym_GT_GT_EQ] = ACTIONS(592), + [anon_sym_DOT] = ACTIONS(594), + [sym_integer_literal] = ACTIONS(592), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(592), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(594), + [sym_super] = ACTIONS(594), + [sym_crate] = ACTIONS(594), + [sym_metavariable] = ACTIONS(592), + [sym_raw_string_literal] = ACTIONS(592), + [sym_float_literal] = ACTIONS(592), [sym_block_comment] = ACTIONS(3), }, - [235] = { - [sym_identifier] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), - [anon_sym_u8] = ACTIONS(403), - [anon_sym_i8] = ACTIONS(403), - [anon_sym_u16] = ACTIONS(403), - [anon_sym_i16] = ACTIONS(403), - [anon_sym_u32] = ACTIONS(403), - [anon_sym_i32] = ACTIONS(403), - [anon_sym_u64] = ACTIONS(403), - [anon_sym_i64] = ACTIONS(403), - [anon_sym_u128] = ACTIONS(403), - [anon_sym_i128] = ACTIONS(403), - [anon_sym_isize] = ACTIONS(403), - [anon_sym_usize] = ACTIONS(403), - [anon_sym_f32] = ACTIONS(403), - [anon_sym_f64] = ACTIONS(403), - [anon_sym_bool] = ACTIONS(403), - [anon_sym_str] = ACTIONS(403), - [anon_sym_char] = ACTIONS(403), - [anon_sym_as] = ACTIONS(403), - [anon_sym_const] = ACTIONS(403), - [anon_sym_default] = ACTIONS(403), - [anon_sym_union] = ACTIONS(403), - [anon_sym_POUND] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(401), - [anon_sym_ref] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym__] = ACTIONS(403), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [sym_mutable_specifier] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = 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_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [sym_integer_literal] = ACTIONS(401), - [aux_sym_string_literal_token1] = ACTIONS(401), - [sym_char_literal] = ACTIONS(401), - [anon_sym_true] = ACTIONS(403), - [anon_sym_false] = ACTIONS(403), + [223] = { + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1967), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2029), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_type_binding] = STATE(2052), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [sym_block] = STATE(2052), + [sym__literal] = STATE(2052), + [sym_string_literal] = STATE(2186), + [sym_boolean_literal] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(890), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(890), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [224] = { + [sym_identifier] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(409), + [anon_sym_RBRACE] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_PLUS] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(409), + [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_as] = ACTIONS(411), + [anon_sym_const] = ACTIONS(411), + [anon_sym_default] = ACTIONS(411), + [anon_sym_union] = ACTIONS(411), + [anon_sym_POUND] = ACTIONS(409), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_COMMA] = ACTIONS(409), + [anon_sym_ref] = ACTIONS(411), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_COLON_COLON] = ACTIONS(409), + [anon_sym__] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [sym_mutable_specifier] = ACTIONS(411), + [anon_sym_DOT_DOT] = ACTIONS(411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(411), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_CARET] = ACTIONS(411), + [anon_sym_EQ_EQ] = ACTIONS(409), + [anon_sym_BANG_EQ] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(411), + [anon_sym_SLASH] = ACTIONS(411), + [anon_sym_PERCENT] = ACTIONS(411), + [anon_sym_PLUS_EQ] = ACTIONS(409), + [anon_sym_DASH_EQ] = ACTIONS(409), + [anon_sym_STAR_EQ] = ACTIONS(409), + [anon_sym_SLASH_EQ] = ACTIONS(409), + [anon_sym_PERCENT_EQ] = ACTIONS(409), + [anon_sym_AMP_EQ] = ACTIONS(409), + [anon_sym_PIPE_EQ] = ACTIONS(409), + [anon_sym_CARET_EQ] = ACTIONS(409), + [anon_sym_LT_LT_EQ] = ACTIONS(409), + [anon_sym_GT_GT_EQ] = ACTIONS(409), + [anon_sym_DOT] = ACTIONS(411), + [sym_integer_literal] = ACTIONS(409), + [aux_sym_string_literal_token1] = ACTIONS(409), + [sym_char_literal] = ACTIONS(409), + [anon_sym_true] = ACTIONS(411), + [anon_sym_false] = ACTIONS(411), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(403), - [sym_super] = ACTIONS(403), - [sym_crate] = ACTIONS(403), - [sym_metavariable] = ACTIONS(401), - [sym_raw_string_literal] = ACTIONS(401), - [sym_float_literal] = ACTIONS(401), + [sym_self] = ACTIONS(411), + [sym_super] = ACTIONS(411), + [sym_crate] = ACTIONS(411), + [sym_metavariable] = ACTIONS(409), + [sym_raw_string_literal] = ACTIONS(409), + [sym_float_literal] = ACTIONS(409), [sym_block_comment] = ACTIONS(3), }, - [236] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1849), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(1848), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_type_binding] = STATE(2205), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [sym_block] = STATE(2205), - [sym__literal] = STATE(2205), - [sym_string_literal] = STATE(2170), - [sym_boolean_literal] = STATE(2170), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(870), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_integer_literal] = ACTIONS(886), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(886), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), - [sym_raw_string_literal] = ACTIONS(886), - [sym_float_literal] = ACTIONS(886), + [225] = { + [sym_identifier] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_RBRACE] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_STAR] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(453), + [anon_sym_i8] = ACTIONS(453), + [anon_sym_u16] = ACTIONS(453), + [anon_sym_i16] = ACTIONS(453), + [anon_sym_u32] = ACTIONS(453), + [anon_sym_i32] = ACTIONS(453), + [anon_sym_u64] = ACTIONS(453), + [anon_sym_i64] = ACTIONS(453), + [anon_sym_u128] = ACTIONS(453), + [anon_sym_i128] = ACTIONS(453), + [anon_sym_isize] = ACTIONS(453), + [anon_sym_usize] = ACTIONS(453), + [anon_sym_f32] = ACTIONS(453), + [anon_sym_f64] = ACTIONS(453), + [anon_sym_bool] = ACTIONS(453), + [anon_sym_str] = ACTIONS(453), + [anon_sym_char] = ACTIONS(453), + [anon_sym_as] = ACTIONS(453), + [anon_sym_const] = ACTIONS(453), + [anon_sym_default] = ACTIONS(453), + [anon_sym_union] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_COMMA] = ACTIONS(451), + [anon_sym_ref] = ACTIONS(453), + [anon_sym_LT] = ACTIONS(453), + [anon_sym_GT] = ACTIONS(453), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym__] = ACTIONS(453), + [anon_sym_AMP] = ACTIONS(453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(451), + [sym_mutable_specifier] = ACTIONS(453), + [anon_sym_DOT_DOT] = ACTIONS(453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(451), + [anon_sym_PIPE_PIPE] = ACTIONS(451), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(451), + [anon_sym_BANG_EQ] = ACTIONS(451), + [anon_sym_LT_EQ] = ACTIONS(451), + [anon_sym_GT_EQ] = ACTIONS(451), + [anon_sym_LT_LT] = ACTIONS(453), + [anon_sym_GT_GT] = ACTIONS(453), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS_EQ] = ACTIONS(451), + [anon_sym_DASH_EQ] = ACTIONS(451), + [anon_sym_STAR_EQ] = ACTIONS(451), + [anon_sym_SLASH_EQ] = ACTIONS(451), + [anon_sym_PERCENT_EQ] = ACTIONS(451), + [anon_sym_AMP_EQ] = ACTIONS(451), + [anon_sym_PIPE_EQ] = ACTIONS(451), + [anon_sym_CARET_EQ] = ACTIONS(451), + [anon_sym_LT_LT_EQ] = ACTIONS(451), + [anon_sym_GT_GT_EQ] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(451), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(453), + [sym_crate] = ACTIONS(453), + [sym_metavariable] = ACTIONS(451), + [sym_raw_string_literal] = ACTIONS(451), + [sym_float_literal] = ACTIONS(451), [sym_block_comment] = ACTIONS(3), }, - [237] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1708), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(1707), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_type_binding] = STATE(1814), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [sym_block] = STATE(1814), - [sym__literal] = STATE(1814), - [sym_string_literal] = STATE(2170), - [sym_boolean_literal] = STATE(2170), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(870), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_integer_literal] = ACTIONS(886), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(886), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), - [sym_raw_string_literal] = ACTIONS(886), - [sym_float_literal] = ACTIONS(886), + [226] = { + [sym_identifier] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(584), + [anon_sym_RBRACE] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(584), + [anon_sym_u8] = ACTIONS(586), + [anon_sym_i8] = ACTIONS(586), + [anon_sym_u16] = ACTIONS(586), + [anon_sym_i16] = ACTIONS(586), + [anon_sym_u32] = ACTIONS(586), + [anon_sym_i32] = ACTIONS(586), + [anon_sym_u64] = ACTIONS(586), + [anon_sym_i64] = ACTIONS(586), + [anon_sym_u128] = ACTIONS(586), + [anon_sym_i128] = ACTIONS(586), + [anon_sym_isize] = ACTIONS(586), + [anon_sym_usize] = ACTIONS(586), + [anon_sym_f32] = ACTIONS(586), + [anon_sym_f64] = ACTIONS(586), + [anon_sym_bool] = ACTIONS(586), + [anon_sym_str] = ACTIONS(586), + [anon_sym_char] = ACTIONS(586), + [anon_sym_as] = ACTIONS(586), + [anon_sym_const] = ACTIONS(586), + [anon_sym_default] = ACTIONS(586), + [anon_sym_union] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(584), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(584), + [anon_sym_ref] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(584), + [anon_sym__] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(584), + [anon_sym_PIPE_PIPE] = ACTIONS(584), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(584), + [anon_sym_BANG_EQ] = ACTIONS(584), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(584), + [anon_sym_DASH_EQ] = ACTIONS(584), + [anon_sym_STAR_EQ] = ACTIONS(584), + [anon_sym_SLASH_EQ] = ACTIONS(584), + [anon_sym_PERCENT_EQ] = ACTIONS(584), + [anon_sym_AMP_EQ] = ACTIONS(584), + [anon_sym_PIPE_EQ] = ACTIONS(584), + [anon_sym_CARET_EQ] = ACTIONS(584), + [anon_sym_LT_LT_EQ] = ACTIONS(584), + [anon_sym_GT_GT_EQ] = ACTIONS(584), + [anon_sym_DOT] = ACTIONS(586), + [sym_integer_literal] = ACTIONS(584), + [aux_sym_string_literal_token1] = ACTIONS(584), + [sym_char_literal] = ACTIONS(584), + [anon_sym_true] = ACTIONS(586), + [anon_sym_false] = ACTIONS(586), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(586), + [sym_super] = ACTIONS(586), + [sym_crate] = ACTIONS(586), + [sym_metavariable] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(584), + [sym_float_literal] = ACTIONS(584), [sym_block_comment] = ACTIONS(3), }, - [238] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1752), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(1753), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_type_binding] = STATE(1964), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [sym_block] = STATE(1964), - [sym__literal] = STATE(1964), - [sym_string_literal] = STATE(2170), - [sym_boolean_literal] = STATE(2170), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(870), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_integer_literal] = ACTIONS(886), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(886), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), - [sym_raw_string_literal] = ACTIONS(886), - [sym_float_literal] = ACTIONS(886), + [227] = { + [sym_identifier] = ACTIONS(481), + [anon_sym_LPAREN] = ACTIONS(479), + [anon_sym_RBRACE] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(479), + [anon_sym_u8] = ACTIONS(481), + [anon_sym_i8] = ACTIONS(481), + [anon_sym_u16] = ACTIONS(481), + [anon_sym_i16] = ACTIONS(481), + [anon_sym_u32] = ACTIONS(481), + [anon_sym_i32] = ACTIONS(481), + [anon_sym_u64] = ACTIONS(481), + [anon_sym_i64] = ACTIONS(481), + [anon_sym_u128] = ACTIONS(481), + [anon_sym_i128] = ACTIONS(481), + [anon_sym_isize] = ACTIONS(481), + [anon_sym_usize] = ACTIONS(481), + [anon_sym_f32] = ACTIONS(481), + [anon_sym_f64] = ACTIONS(481), + [anon_sym_bool] = ACTIONS(481), + [anon_sym_str] = ACTIONS(481), + [anon_sym_char] = ACTIONS(481), + [anon_sym_as] = ACTIONS(481), + [anon_sym_const] = ACTIONS(481), + [anon_sym_default] = ACTIONS(481), + [anon_sym_union] = ACTIONS(481), + [anon_sym_POUND] = ACTIONS(479), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_COMMA] = ACTIONS(479), + [anon_sym_ref] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_COLON_COLON] = ACTIONS(479), + [anon_sym__] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(479), + [sym_mutable_specifier] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_STAR_EQ] = ACTIONS(479), + [anon_sym_SLASH_EQ] = ACTIONS(479), + [anon_sym_PERCENT_EQ] = ACTIONS(479), + [anon_sym_AMP_EQ] = ACTIONS(479), + [anon_sym_PIPE_EQ] = ACTIONS(479), + [anon_sym_CARET_EQ] = ACTIONS(479), + [anon_sym_LT_LT_EQ] = ACTIONS(479), + [anon_sym_GT_GT_EQ] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(479), + [aux_sym_string_literal_token1] = ACTIONS(479), + [sym_char_literal] = ACTIONS(479), + [anon_sym_true] = ACTIONS(481), + [anon_sym_false] = ACTIONS(481), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(481), + [sym_super] = ACTIONS(481), + [sym_crate] = ACTIONS(481), + [sym_metavariable] = ACTIONS(479), + [sym_raw_string_literal] = ACTIONS(479), + [sym_float_literal] = ACTIONS(479), [sym_block_comment] = ACTIONS(3), }, - [239] = { - [sym__token_pattern] = STATE(239), - [sym_token_tree_pattern] = STATE(239), - [sym_token_binding_pattern] = STATE(239), - [sym_token_repetition_pattern] = STATE(239), - [sym__literal] = STATE(239), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(902), - [anon_sym_LPAREN] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(913), - [anon_sym_RBRACK] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(916), - [anon_sym_u8] = ACTIONS(902), - [anon_sym_i8] = ACTIONS(902), - [anon_sym_u16] = ACTIONS(902), - [anon_sym_i16] = ACTIONS(902), - [anon_sym_u32] = ACTIONS(902), - [anon_sym_i32] = ACTIONS(902), - [anon_sym_u64] = ACTIONS(902), - [anon_sym_i64] = ACTIONS(902), - [anon_sym_u128] = ACTIONS(902), - [anon_sym_i128] = ACTIONS(902), - [anon_sym_isize] = ACTIONS(902), - [anon_sym_usize] = ACTIONS(902), - [anon_sym_f32] = ACTIONS(902), - [anon_sym_f64] = ACTIONS(902), - [anon_sym_bool] = ACTIONS(902), - [anon_sym_str] = ACTIONS(902), - [anon_sym_char] = ACTIONS(902), - [aux_sym__non_special_token_token1] = ACTIONS(902), - [anon_sym_SQUOTE] = ACTIONS(902), - [anon_sym_as] = ACTIONS(902), - [anon_sym_async] = ACTIONS(902), - [anon_sym_await] = ACTIONS(902), - [anon_sym_break] = ACTIONS(902), - [anon_sym_const] = ACTIONS(902), - [anon_sym_continue] = ACTIONS(902), - [anon_sym_default] = ACTIONS(902), - [anon_sym_enum] = ACTIONS(902), - [anon_sym_fn] = ACTIONS(902), - [anon_sym_for] = ACTIONS(902), - [anon_sym_if] = ACTIONS(902), - [anon_sym_impl] = ACTIONS(902), - [anon_sym_let] = ACTIONS(902), - [anon_sym_loop] = ACTIONS(902), - [anon_sym_match] = ACTIONS(902), - [anon_sym_mod] = ACTIONS(902), - [anon_sym_pub] = ACTIONS(902), - [anon_sym_return] = ACTIONS(902), - [anon_sym_static] = ACTIONS(902), - [anon_sym_struct] = ACTIONS(902), - [anon_sym_trait] = ACTIONS(902), - [anon_sym_type] = ACTIONS(902), - [anon_sym_union] = ACTIONS(902), - [anon_sym_unsafe] = ACTIONS(902), - [anon_sym_use] = ACTIONS(902), - [anon_sym_where] = ACTIONS(902), - [anon_sym_while] = ACTIONS(902), - [sym_mutable_specifier] = ACTIONS(902), - [sym_integer_literal] = ACTIONS(919), - [aux_sym_string_literal_token1] = ACTIONS(922), - [sym_char_literal] = ACTIONS(919), - [anon_sym_true] = ACTIONS(925), - [anon_sym_false] = ACTIONS(925), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(930), - [sym_raw_string_literal] = ACTIONS(919), - [sym_float_literal] = ACTIONS(919), + [228] = { + [sym_identifier] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_u8] = ACTIONS(896), + [anon_sym_i8] = ACTIONS(896), + [anon_sym_u16] = ACTIONS(896), + [anon_sym_i16] = ACTIONS(896), + [anon_sym_u32] = ACTIONS(896), + [anon_sym_i32] = ACTIONS(896), + [anon_sym_u64] = ACTIONS(896), + [anon_sym_i64] = ACTIONS(896), + [anon_sym_u128] = ACTIONS(896), + [anon_sym_i128] = ACTIONS(896), + [anon_sym_isize] = ACTIONS(896), + [anon_sym_usize] = ACTIONS(896), + [anon_sym_f32] = ACTIONS(896), + [anon_sym_f64] = ACTIONS(896), + [anon_sym_bool] = ACTIONS(896), + [anon_sym_str] = ACTIONS(896), + [anon_sym_char] = ACTIONS(896), + [anon_sym_as] = ACTIONS(461), + [anon_sym_const] = ACTIONS(896), + [anon_sym_default] = ACTIONS(896), + [anon_sym_union] = ACTIONS(896), + [anon_sym_POUND] = ACTIONS(898), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_COMMA] = ACTIONS(459), + [anon_sym_ref] = ACTIONS(896), + [anon_sym_LT] = ACTIONS(896), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_COLON_COLON] = ACTIONS(898), + [anon_sym__] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_mutable_specifier] = ACTIONS(896), + [anon_sym_DOT_DOT] = ACTIONS(896), + [anon_sym_DOT_DOT_EQ] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_PIPE] = ACTIONS(461), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(459), + [anon_sym_GT_EQ] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(461), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_PERCENT] = ACTIONS(461), + [anon_sym_PLUS_EQ] = ACTIONS(459), + [anon_sym_DASH_EQ] = ACTIONS(459), + [anon_sym_STAR_EQ] = ACTIONS(459), + [anon_sym_SLASH_EQ] = ACTIONS(459), + [anon_sym_PERCENT_EQ] = ACTIONS(459), + [anon_sym_AMP_EQ] = ACTIONS(459), + [anon_sym_PIPE_EQ] = ACTIONS(459), + [anon_sym_CARET_EQ] = ACTIONS(459), + [anon_sym_LT_LT_EQ] = ACTIONS(459), + [anon_sym_GT_GT_EQ] = ACTIONS(459), + [anon_sym_DOT] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(898), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(898), + [anon_sym_true] = ACTIONS(896), + [anon_sym_false] = ACTIONS(896), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(896), + [sym_super] = ACTIONS(896), + [sym_crate] = ACTIONS(896), + [sym_metavariable] = ACTIONS(898), + [sym_raw_string_literal] = ACTIONS(898), + [sym_float_literal] = ACTIONS(898), [sym_block_comment] = ACTIONS(3), }, - [240] = { - [sym_empty_statement] = STATE(241), - [sym_macro_definition] = STATE(241), - [sym_attribute_item] = STATE(241), - [sym_inner_attribute_item] = STATE(241), - [sym_mod_item] = STATE(241), - [sym_foreign_mod_item] = STATE(241), - [sym_struct_item] = STATE(241), - [sym_union_item] = STATE(241), - [sym_enum_item] = STATE(241), - [sym_extern_crate_declaration] = STATE(241), - [sym_const_item] = STATE(241), - [sym_static_item] = STATE(241), - [sym_type_item] = STATE(241), - [sym_function_item] = STATE(241), - [sym_function_signature_item] = STATE(241), - [sym_function_modifiers] = STATE(2416), - [sym_impl_item] = STATE(241), - [sym_trait_item] = STATE(241), - [sym_associated_type] = STATE(241), - [sym_let_declaration] = STATE(241), - [sym_use_declaration] = STATE(241), - [sym_extern_modifier] = STATE(1440), - [sym_visibility_modifier] = STATE(1259), - [sym_bracketed_type] = STATE(2246), - [sym_generic_type_with_turbofish] = STATE(2243), - [sym_macro_invocation] = STATE(241), - [sym_scoped_identifier] = STATE(2126), - [aux_sym_declaration_list_repeat1] = STATE(241), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_macro_rules_BANG] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(939), - [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_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(943), - [anon_sym_default] = ACTIONS(945), - [anon_sym_enum] = ACTIONS(947), - [anon_sym_fn] = ACTIONS(949), - [anon_sym_impl] = ACTIONS(951), - [anon_sym_let] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(955), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(957), - [anon_sym_struct] = ACTIONS(959), - [anon_sym_trait] = ACTIONS(961), - [anon_sym_type] = ACTIONS(963), - [anon_sym_union] = ACTIONS(965), - [anon_sym_unsafe] = ACTIONS(967), - [anon_sym_use] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(971), - [anon_sym_extern] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(975), + [229] = { + [sym_identifier] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_u8] = ACTIONS(433), + [anon_sym_i8] = ACTIONS(433), + [anon_sym_u16] = ACTIONS(433), + [anon_sym_i16] = ACTIONS(433), + [anon_sym_u32] = ACTIONS(433), + [anon_sym_i32] = ACTIONS(433), + [anon_sym_u64] = ACTIONS(433), + [anon_sym_i64] = ACTIONS(433), + [anon_sym_u128] = ACTIONS(433), + [anon_sym_i128] = ACTIONS(433), + [anon_sym_isize] = ACTIONS(433), + [anon_sym_usize] = ACTIONS(433), + [anon_sym_f32] = ACTIONS(433), + [anon_sym_f64] = ACTIONS(433), + [anon_sym_bool] = ACTIONS(433), + [anon_sym_str] = ACTIONS(433), + [anon_sym_char] = ACTIONS(433), + [anon_sym_as] = ACTIONS(433), + [anon_sym_const] = ACTIONS(433), + [anon_sym_default] = ACTIONS(433), + [anon_sym_union] = ACTIONS(433), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(433), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_ref] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(433), + [anon_sym_COLON_COLON] = ACTIONS(431), + [anon_sym__] = ACTIONS(433), + [anon_sym_AMP] = ACTIONS(433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_mutable_specifier] = ACTIONS(433), + [anon_sym_DOT_DOT] = ACTIONS(433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(431), + [anon_sym_PIPE_PIPE] = ACTIONS(431), + [anon_sym_PIPE] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ] = ACTIONS(431), + [anon_sym_LT_EQ] = ACTIONS(431), + [anon_sym_GT_EQ] = ACTIONS(431), + [anon_sym_LT_LT] = ACTIONS(433), + [anon_sym_GT_GT] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(433), + [anon_sym_PERCENT] = ACTIONS(433), + [anon_sym_PLUS_EQ] = ACTIONS(431), + [anon_sym_DASH_EQ] = ACTIONS(431), + [anon_sym_STAR_EQ] = ACTIONS(431), + [anon_sym_SLASH_EQ] = ACTIONS(431), + [anon_sym_PERCENT_EQ] = ACTIONS(431), + [anon_sym_AMP_EQ] = ACTIONS(431), + [anon_sym_PIPE_EQ] = ACTIONS(431), + [anon_sym_CARET_EQ] = ACTIONS(431), + [anon_sym_LT_LT_EQ] = ACTIONS(431), + [anon_sym_GT_GT_EQ] = ACTIONS(431), + [anon_sym_DOT] = ACTIONS(433), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(431), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(433), + [anon_sym_false] = ACTIONS(433), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(977), - [sym_super] = ACTIONS(977), - [sym_crate] = ACTIONS(979), - [sym_metavariable] = ACTIONS(981), + [sym_self] = ACTIONS(433), + [sym_super] = ACTIONS(433), + [sym_crate] = ACTIONS(433), + [sym_metavariable] = ACTIONS(431), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), [sym_block_comment] = ACTIONS(3), }, - [241] = { + [230] = { + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1967), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2029), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_type_binding] = STATE(2052), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [sym_block] = STATE(2052), + [sym__literal] = STATE(2052), + [sym_string_literal] = STATE(2186), + [sym_boolean_literal] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(890), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(890), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [231] = { + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(477), + [anon_sym_QMARK] = ACTIONS(475), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_as] = ACTIONS(477), + [anon_sym_const] = ACTIONS(477), + [anon_sym_default] = ACTIONS(477), + [anon_sym_union] = ACTIONS(477), + [anon_sym_POUND] = ACTIONS(475), + [anon_sym_EQ] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(475), + [anon_sym_ref] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(477), + [anon_sym_GT] = ACTIONS(477), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym__] = ACTIONS(477), + [anon_sym_AMP] = ACTIONS(477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(475), + [sym_mutable_specifier] = ACTIONS(477), + [anon_sym_DOT_DOT] = ACTIONS(477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_EQ_EQ] = ACTIONS(475), + [anon_sym_BANG_EQ] = ACTIONS(475), + [anon_sym_LT_EQ] = ACTIONS(475), + [anon_sym_GT_EQ] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(477), + [anon_sym_GT_GT] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_PERCENT] = ACTIONS(477), + [anon_sym_PLUS_EQ] = ACTIONS(475), + [anon_sym_DASH_EQ] = ACTIONS(475), + [anon_sym_STAR_EQ] = ACTIONS(475), + [anon_sym_SLASH_EQ] = ACTIONS(475), + [anon_sym_PERCENT_EQ] = ACTIONS(475), + [anon_sym_AMP_EQ] = ACTIONS(475), + [anon_sym_PIPE_EQ] = ACTIONS(475), + [anon_sym_CARET_EQ] = ACTIONS(475), + [anon_sym_LT_LT_EQ] = ACTIONS(475), + [anon_sym_GT_GT_EQ] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(477), + [sym_integer_literal] = ACTIONS(475), + [aux_sym_string_literal_token1] = ACTIONS(475), + [sym_char_literal] = ACTIONS(475), + [anon_sym_true] = ACTIONS(477), + [anon_sym_false] = ACTIONS(477), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(477), + [sym_crate] = ACTIONS(477), + [sym_metavariable] = ACTIONS(475), + [sym_raw_string_literal] = ACTIONS(475), + [sym_float_literal] = ACTIONS(475), + [sym_block_comment] = ACTIONS(3), + }, + [232] = { + [sym_identifier] = ACTIONS(445), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(445), + [anon_sym_QMARK] = ACTIONS(443), + [anon_sym_u8] = ACTIONS(445), + [anon_sym_i8] = ACTIONS(445), + [anon_sym_u16] = ACTIONS(445), + [anon_sym_i16] = ACTIONS(445), + [anon_sym_u32] = ACTIONS(445), + [anon_sym_i32] = ACTIONS(445), + [anon_sym_u64] = ACTIONS(445), + [anon_sym_i64] = ACTIONS(445), + [anon_sym_u128] = ACTIONS(445), + [anon_sym_i128] = ACTIONS(445), + [anon_sym_isize] = ACTIONS(445), + [anon_sym_usize] = ACTIONS(445), + [anon_sym_f32] = ACTIONS(445), + [anon_sym_f64] = ACTIONS(445), + [anon_sym_bool] = ACTIONS(445), + [anon_sym_str] = ACTIONS(445), + [anon_sym_char] = ACTIONS(445), + [anon_sym_as] = ACTIONS(445), + [anon_sym_const] = ACTIONS(445), + [anon_sym_default] = ACTIONS(445), + [anon_sym_union] = ACTIONS(445), + [anon_sym_POUND] = ACTIONS(443), + [anon_sym_EQ] = ACTIONS(445), + [anon_sym_COMMA] = ACTIONS(443), + [anon_sym_ref] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), + [anon_sym_COLON_COLON] = ACTIONS(443), + [anon_sym__] = ACTIONS(445), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_DOT_DOT_DOT] = ACTIONS(443), + [sym_mutable_specifier] = ACTIONS(445), + [anon_sym_DOT_DOT] = ACTIONS(445), + [anon_sym_DOT_DOT_EQ] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_AMP_AMP] = ACTIONS(443), + [anon_sym_PIPE_PIPE] = ACTIONS(443), + [anon_sym_PIPE] = ACTIONS(445), + [anon_sym_CARET] = ACTIONS(445), + [anon_sym_EQ_EQ] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(443), + [anon_sym_LT_EQ] = ACTIONS(443), + [anon_sym_GT_EQ] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(445), + [anon_sym_GT_GT] = ACTIONS(445), + [anon_sym_SLASH] = ACTIONS(445), + [anon_sym_PERCENT] = ACTIONS(445), + [anon_sym_PLUS_EQ] = ACTIONS(443), + [anon_sym_DASH_EQ] = ACTIONS(443), + [anon_sym_STAR_EQ] = ACTIONS(443), + [anon_sym_SLASH_EQ] = ACTIONS(443), + [anon_sym_PERCENT_EQ] = ACTIONS(443), + [anon_sym_AMP_EQ] = ACTIONS(443), + [anon_sym_PIPE_EQ] = ACTIONS(443), + [anon_sym_CARET_EQ] = ACTIONS(443), + [anon_sym_LT_LT_EQ] = ACTIONS(443), + [anon_sym_GT_GT_EQ] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(443), + [aux_sym_string_literal_token1] = ACTIONS(443), + [sym_char_literal] = ACTIONS(443), + [anon_sym_true] = ACTIONS(445), + [anon_sym_false] = ACTIONS(445), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(445), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(443), + [sym_raw_string_literal] = ACTIONS(443), + [sym_float_literal] = ACTIONS(443), + [sym_block_comment] = ACTIONS(3), + }, + [233] = { + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1967), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2029), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_type_binding] = STATE(2052), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [sym_block] = STATE(2052), + [sym__literal] = STATE(2052), + [sym_string_literal] = STATE(2186), + [sym_boolean_literal] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(890), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(890), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [234] = { + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1967), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2029), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_type_binding] = STATE(2052), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [sym_block] = STATE(2052), + [sym__literal] = STATE(2052), + [sym_string_literal] = STATE(2186), + [sym_boolean_literal] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(904), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(890), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(890), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [235] = { + [sym_identifier] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(417), + [anon_sym_u8] = ACTIONS(419), + [anon_sym_i8] = ACTIONS(419), + [anon_sym_u16] = ACTIONS(419), + [anon_sym_i16] = ACTIONS(419), + [anon_sym_u32] = ACTIONS(419), + [anon_sym_i32] = ACTIONS(419), + [anon_sym_u64] = ACTIONS(419), + [anon_sym_i64] = ACTIONS(419), + [anon_sym_u128] = ACTIONS(419), + [anon_sym_i128] = ACTIONS(419), + [anon_sym_isize] = ACTIONS(419), + [anon_sym_usize] = ACTIONS(419), + [anon_sym_f32] = ACTIONS(419), + [anon_sym_f64] = ACTIONS(419), + [anon_sym_bool] = ACTIONS(419), + [anon_sym_str] = ACTIONS(419), + [anon_sym_char] = ACTIONS(419), + [anon_sym_as] = ACTIONS(419), + [anon_sym_const] = ACTIONS(419), + [anon_sym_default] = ACTIONS(419), + [anon_sym_union] = ACTIONS(419), + [anon_sym_POUND] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(417), + [anon_sym_ref] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_COLON_COLON] = ACTIONS(417), + [anon_sym__] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(417), + [sym_mutable_specifier] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(417), + [anon_sym_BANG_EQ] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(419), + [anon_sym_GT_GT] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(417), + [anon_sym_DASH_EQ] = ACTIONS(417), + [anon_sym_STAR_EQ] = ACTIONS(417), + [anon_sym_SLASH_EQ] = ACTIONS(417), + [anon_sym_PERCENT_EQ] = ACTIONS(417), + [anon_sym_AMP_EQ] = ACTIONS(417), + [anon_sym_PIPE_EQ] = ACTIONS(417), + [anon_sym_CARET_EQ] = ACTIONS(417), + [anon_sym_LT_LT_EQ] = ACTIONS(417), + [anon_sym_GT_GT_EQ] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [sym_integer_literal] = ACTIONS(417), + [aux_sym_string_literal_token1] = ACTIONS(417), + [sym_char_literal] = ACTIONS(417), + [anon_sym_true] = ACTIONS(419), + [anon_sym_false] = ACTIONS(419), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(419), + [sym_super] = ACTIONS(419), + [sym_crate] = ACTIONS(419), + [sym_metavariable] = ACTIONS(417), + [sym_raw_string_literal] = ACTIONS(417), + [sym_float_literal] = ACTIONS(417), + [sym_block_comment] = ACTIONS(3), + }, + [236] = { + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(463), + [anon_sym_RBRACE] = ACTIONS(463), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_QMARK] = ACTIONS(463), + [anon_sym_u8] = ACTIONS(465), + [anon_sym_i8] = ACTIONS(465), + [anon_sym_u16] = ACTIONS(465), + [anon_sym_i16] = ACTIONS(465), + [anon_sym_u32] = ACTIONS(465), + [anon_sym_i32] = ACTIONS(465), + [anon_sym_u64] = ACTIONS(465), + [anon_sym_i64] = ACTIONS(465), + [anon_sym_u128] = ACTIONS(465), + [anon_sym_i128] = ACTIONS(465), + [anon_sym_isize] = ACTIONS(465), + [anon_sym_usize] = ACTIONS(465), + [anon_sym_f32] = ACTIONS(465), + [anon_sym_f64] = ACTIONS(465), + [anon_sym_bool] = ACTIONS(465), + [anon_sym_str] = ACTIONS(465), + [anon_sym_char] = ACTIONS(465), + [anon_sym_as] = ACTIONS(465), + [anon_sym_const] = ACTIONS(465), + [anon_sym_default] = ACTIONS(465), + [anon_sym_union] = ACTIONS(465), + [anon_sym_POUND] = ACTIONS(463), + [anon_sym_EQ] = ACTIONS(465), + [anon_sym_COMMA] = ACTIONS(463), + [anon_sym_ref] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(465), + [anon_sym_GT] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(463), + [anon_sym__] = ACTIONS(465), + [anon_sym_AMP] = ACTIONS(465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(463), + [sym_mutable_specifier] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(465), + [anon_sym_DOT_DOT_EQ] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(465), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE_PIPE] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_BANG_EQ] = ACTIONS(463), + [anon_sym_LT_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(463), + [anon_sym_LT_LT] = ACTIONS(465), + [anon_sym_GT_GT] = ACTIONS(465), + [anon_sym_SLASH] = ACTIONS(465), + [anon_sym_PERCENT] = ACTIONS(465), + [anon_sym_PLUS_EQ] = ACTIONS(463), + [anon_sym_DASH_EQ] = ACTIONS(463), + [anon_sym_STAR_EQ] = ACTIONS(463), + [anon_sym_SLASH_EQ] = ACTIONS(463), + [anon_sym_PERCENT_EQ] = ACTIONS(463), + [anon_sym_AMP_EQ] = ACTIONS(463), + [anon_sym_PIPE_EQ] = ACTIONS(463), + [anon_sym_CARET_EQ] = ACTIONS(463), + [anon_sym_LT_LT_EQ] = ACTIONS(463), + [anon_sym_GT_GT_EQ] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(465), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(465), + [sym_super] = ACTIONS(465), + [sym_crate] = ACTIONS(465), + [sym_metavariable] = ACTIONS(463), + [sym_raw_string_literal] = ACTIONS(463), + [sym_float_literal] = ACTIONS(463), + [sym_block_comment] = ACTIONS(3), + }, + [237] = { + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1967), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2029), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_type_binding] = STATE(2052), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [sym_block] = STATE(2052), + [sym__literal] = STATE(2052), + [sym_string_literal] = STATE(2186), + [sym_boolean_literal] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(890), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(890), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [238] = { + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1778), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(1782), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_type_binding] = STATE(2001), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [sym_block] = STATE(2001), + [sym__literal] = STATE(2001), + [sym_string_literal] = STATE(2186), + [sym_boolean_literal] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(890), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(890), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [239] = { + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1761), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(1760), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_type_binding] = STATE(1925), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [sym_block] = STATE(1925), + [sym__literal] = STATE(1925), + [sym_string_literal] = STATE(2186), + [sym_boolean_literal] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(890), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(890), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [240] = { [sym_empty_statement] = STATE(244), [sym_macro_definition] = STATE(244), [sym_attribute_item] = STATE(244), @@ -39079,610 +39081,994 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(244), [sym_function_item] = STATE(244), [sym_function_signature_item] = STATE(244), - [sym_function_modifiers] = STATE(2416), + [sym_function_modifiers] = STATE(2461), [sym_impl_item] = STATE(244), [sym_trait_item] = STATE(244), [sym_associated_type] = STATE(244), [sym_let_declaration] = STATE(244), [sym_use_declaration] = STATE(244), - [sym_extern_modifier] = STATE(1440), - [sym_visibility_modifier] = STATE(1259), - [sym_bracketed_type] = STATE(2246), - [sym_generic_type_with_turbofish] = STATE(2243), + [sym_extern_modifier] = STATE(1431), + [sym_visibility_modifier] = STATE(1270), + [sym_bracketed_type] = STATE(2287), + [sym_generic_type_with_turbofish] = STATE(2431), [sym_macro_invocation] = STATE(244), - [sym_scoped_identifier] = STATE(2126), + [sym_scoped_identifier] = STATE(2223), [aux_sym_declaration_list_repeat1] = STATE(244), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_macro_rules_BANG] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(983), - [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_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(943), - [anon_sym_default] = ACTIONS(945), - [anon_sym_enum] = ACTIONS(947), - [anon_sym_fn] = ACTIONS(949), - [anon_sym_impl] = ACTIONS(951), - [anon_sym_let] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(955), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_macro_rules_BANG] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(912), + [anon_sym_u8] = ACTIONS(914), + [anon_sym_i8] = ACTIONS(914), + [anon_sym_u16] = ACTIONS(914), + [anon_sym_i16] = ACTIONS(914), + [anon_sym_u32] = ACTIONS(914), + [anon_sym_i32] = ACTIONS(914), + [anon_sym_u64] = ACTIONS(914), + [anon_sym_i64] = ACTIONS(914), + [anon_sym_u128] = ACTIONS(914), + [anon_sym_i128] = ACTIONS(914), + [anon_sym_isize] = ACTIONS(914), + [anon_sym_usize] = ACTIONS(914), + [anon_sym_f32] = ACTIONS(914), + [anon_sym_f64] = ACTIONS(914), + [anon_sym_bool] = ACTIONS(914), + [anon_sym_str] = ACTIONS(914), + [anon_sym_char] = ACTIONS(914), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(916), + [anon_sym_default] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(922), + [anon_sym_impl] = ACTIONS(924), + [anon_sym_let] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(928), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(957), - [anon_sym_struct] = ACTIONS(959), - [anon_sym_trait] = ACTIONS(961), - [anon_sym_type] = ACTIONS(963), - [anon_sym_union] = ACTIONS(965), - [anon_sym_unsafe] = ACTIONS(967), - [anon_sym_use] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(971), - [anon_sym_extern] = ACTIONS(973), + [anon_sym_static] = ACTIONS(930), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_trait] = ACTIONS(934), + [anon_sym_type] = ACTIONS(936), + [anon_sym_union] = ACTIONS(938), + [anon_sym_unsafe] = ACTIONS(940), + [anon_sym_use] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(946), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(975), + [anon_sym_COLON_COLON] = ACTIONS(948), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(977), - [sym_super] = ACTIONS(977), - [sym_crate] = ACTIONS(979), - [sym_metavariable] = ACTIONS(981), + [sym_self] = ACTIONS(950), + [sym_super] = ACTIONS(950), + [sym_crate] = ACTIONS(952), + [sym_metavariable] = ACTIONS(954), [sym_block_comment] = ACTIONS(3), }, - [242] = { - [sym_empty_statement] = STATE(243), - [sym_macro_definition] = STATE(243), - [sym_attribute_item] = STATE(243), - [sym_inner_attribute_item] = STATE(243), - [sym_mod_item] = STATE(243), - [sym_foreign_mod_item] = STATE(243), - [sym_struct_item] = STATE(243), - [sym_union_item] = STATE(243), - [sym_enum_item] = STATE(243), - [sym_extern_crate_declaration] = STATE(243), - [sym_const_item] = STATE(243), - [sym_static_item] = STATE(243), - [sym_type_item] = STATE(243), - [sym_function_item] = STATE(243), - [sym_function_signature_item] = STATE(243), - [sym_function_modifiers] = STATE(2416), - [sym_impl_item] = STATE(243), - [sym_trait_item] = STATE(243), - [sym_associated_type] = STATE(243), - [sym_let_declaration] = STATE(243), - [sym_use_declaration] = STATE(243), - [sym_extern_modifier] = STATE(1440), - [sym_visibility_modifier] = STATE(1259), - [sym_bracketed_type] = STATE(2246), - [sym_generic_type_with_turbofish] = STATE(2243), - [sym_macro_invocation] = STATE(243), - [sym_scoped_identifier] = STATE(2126), - [aux_sym_declaration_list_repeat1] = STATE(243), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_macro_rules_BANG] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(985), - [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_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(943), - [anon_sym_default] = ACTIONS(945), - [anon_sym_enum] = ACTIONS(947), - [anon_sym_fn] = ACTIONS(949), - [anon_sym_impl] = ACTIONS(951), - [anon_sym_let] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(955), + [241] = { + [sym_empty_statement] = STATE(245), + [sym_macro_definition] = STATE(245), + [sym_attribute_item] = STATE(245), + [sym_inner_attribute_item] = STATE(245), + [sym_mod_item] = STATE(245), + [sym_foreign_mod_item] = STATE(245), + [sym_struct_item] = STATE(245), + [sym_union_item] = STATE(245), + [sym_enum_item] = STATE(245), + [sym_extern_crate_declaration] = STATE(245), + [sym_const_item] = STATE(245), + [sym_static_item] = STATE(245), + [sym_type_item] = STATE(245), + [sym_function_item] = STATE(245), + [sym_function_signature_item] = STATE(245), + [sym_function_modifiers] = STATE(2461), + [sym_impl_item] = STATE(245), + [sym_trait_item] = STATE(245), + [sym_associated_type] = STATE(245), + [sym_let_declaration] = STATE(245), + [sym_use_declaration] = STATE(245), + [sym_extern_modifier] = STATE(1431), + [sym_visibility_modifier] = STATE(1270), + [sym_bracketed_type] = STATE(2287), + [sym_generic_type_with_turbofish] = STATE(2431), + [sym_macro_invocation] = STATE(245), + [sym_scoped_identifier] = STATE(2223), + [aux_sym_declaration_list_repeat1] = STATE(245), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_macro_rules_BANG] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_u8] = ACTIONS(914), + [anon_sym_i8] = ACTIONS(914), + [anon_sym_u16] = ACTIONS(914), + [anon_sym_i16] = ACTIONS(914), + [anon_sym_u32] = ACTIONS(914), + [anon_sym_i32] = ACTIONS(914), + [anon_sym_u64] = ACTIONS(914), + [anon_sym_i64] = ACTIONS(914), + [anon_sym_u128] = ACTIONS(914), + [anon_sym_i128] = ACTIONS(914), + [anon_sym_isize] = ACTIONS(914), + [anon_sym_usize] = ACTIONS(914), + [anon_sym_f32] = ACTIONS(914), + [anon_sym_f64] = ACTIONS(914), + [anon_sym_bool] = ACTIONS(914), + [anon_sym_str] = ACTIONS(914), + [anon_sym_char] = ACTIONS(914), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(916), + [anon_sym_default] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(922), + [anon_sym_impl] = ACTIONS(924), + [anon_sym_let] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(928), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(957), - [anon_sym_struct] = ACTIONS(959), - [anon_sym_trait] = ACTIONS(961), - [anon_sym_type] = ACTIONS(963), - [anon_sym_union] = ACTIONS(965), - [anon_sym_unsafe] = ACTIONS(967), - [anon_sym_use] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(971), - [anon_sym_extern] = ACTIONS(973), + [anon_sym_static] = ACTIONS(930), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_trait] = ACTIONS(934), + [anon_sym_type] = ACTIONS(936), + [anon_sym_union] = ACTIONS(938), + [anon_sym_unsafe] = ACTIONS(940), + [anon_sym_use] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(946), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(975), + [anon_sym_COLON_COLON] = ACTIONS(948), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(977), - [sym_super] = ACTIONS(977), - [sym_crate] = ACTIONS(979), - [sym_metavariable] = ACTIONS(981), + [sym_self] = ACTIONS(950), + [sym_super] = ACTIONS(950), + [sym_crate] = ACTIONS(952), + [sym_metavariable] = ACTIONS(954), [sym_block_comment] = ACTIONS(3), }, - [243] = { - [sym_empty_statement] = STATE(244), - [sym_macro_definition] = STATE(244), - [sym_attribute_item] = STATE(244), - [sym_inner_attribute_item] = STATE(244), - [sym_mod_item] = STATE(244), - [sym_foreign_mod_item] = STATE(244), - [sym_struct_item] = STATE(244), - [sym_union_item] = STATE(244), - [sym_enum_item] = STATE(244), - [sym_extern_crate_declaration] = STATE(244), - [sym_const_item] = STATE(244), - [sym_static_item] = STATE(244), - [sym_type_item] = STATE(244), - [sym_function_item] = STATE(244), - [sym_function_signature_item] = STATE(244), - [sym_function_modifiers] = STATE(2416), - [sym_impl_item] = STATE(244), - [sym_trait_item] = STATE(244), - [sym_associated_type] = STATE(244), - [sym_let_declaration] = STATE(244), - [sym_use_declaration] = STATE(244), - [sym_extern_modifier] = STATE(1440), - [sym_visibility_modifier] = STATE(1259), - [sym_bracketed_type] = STATE(2246), - [sym_generic_type_with_turbofish] = STATE(2243), - [sym_macro_invocation] = STATE(244), - [sym_scoped_identifier] = STATE(2126), - [aux_sym_declaration_list_repeat1] = STATE(244), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_macro_rules_BANG] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(987), - [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_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(943), - [anon_sym_default] = ACTIONS(945), - [anon_sym_enum] = ACTIONS(947), - [anon_sym_fn] = ACTIONS(949), - [anon_sym_impl] = ACTIONS(951), - [anon_sym_let] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(955), + [242] = { + [sym_empty_statement] = STATE(241), + [sym_macro_definition] = STATE(241), + [sym_attribute_item] = STATE(241), + [sym_inner_attribute_item] = STATE(241), + [sym_mod_item] = STATE(241), + [sym_foreign_mod_item] = STATE(241), + [sym_struct_item] = STATE(241), + [sym_union_item] = STATE(241), + [sym_enum_item] = STATE(241), + [sym_extern_crate_declaration] = STATE(241), + [sym_const_item] = STATE(241), + [sym_static_item] = STATE(241), + [sym_type_item] = STATE(241), + [sym_function_item] = STATE(241), + [sym_function_signature_item] = STATE(241), + [sym_function_modifiers] = STATE(2461), + [sym_impl_item] = STATE(241), + [sym_trait_item] = STATE(241), + [sym_associated_type] = STATE(241), + [sym_let_declaration] = STATE(241), + [sym_use_declaration] = STATE(241), + [sym_extern_modifier] = STATE(1431), + [sym_visibility_modifier] = STATE(1270), + [sym_bracketed_type] = STATE(2287), + [sym_generic_type_with_turbofish] = STATE(2431), + [sym_macro_invocation] = STATE(241), + [sym_scoped_identifier] = STATE(2223), + [aux_sym_declaration_list_repeat1] = STATE(241), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_macro_rules_BANG] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_u8] = ACTIONS(914), + [anon_sym_i8] = ACTIONS(914), + [anon_sym_u16] = ACTIONS(914), + [anon_sym_i16] = ACTIONS(914), + [anon_sym_u32] = ACTIONS(914), + [anon_sym_i32] = ACTIONS(914), + [anon_sym_u64] = ACTIONS(914), + [anon_sym_i64] = ACTIONS(914), + [anon_sym_u128] = ACTIONS(914), + [anon_sym_i128] = ACTIONS(914), + [anon_sym_isize] = ACTIONS(914), + [anon_sym_usize] = ACTIONS(914), + [anon_sym_f32] = ACTIONS(914), + [anon_sym_f64] = ACTIONS(914), + [anon_sym_bool] = ACTIONS(914), + [anon_sym_str] = ACTIONS(914), + [anon_sym_char] = ACTIONS(914), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(916), + [anon_sym_default] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(922), + [anon_sym_impl] = ACTIONS(924), + [anon_sym_let] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(928), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(957), - [anon_sym_struct] = ACTIONS(959), - [anon_sym_trait] = ACTIONS(961), - [anon_sym_type] = ACTIONS(963), - [anon_sym_union] = ACTIONS(965), - [anon_sym_unsafe] = ACTIONS(967), - [anon_sym_use] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(971), - [anon_sym_extern] = ACTIONS(973), + [anon_sym_static] = ACTIONS(930), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_trait] = ACTIONS(934), + [anon_sym_type] = ACTIONS(936), + [anon_sym_union] = ACTIONS(938), + [anon_sym_unsafe] = ACTIONS(940), + [anon_sym_use] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(946), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(975), + [anon_sym_COLON_COLON] = ACTIONS(948), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(977), - [sym_super] = ACTIONS(977), - [sym_crate] = ACTIONS(979), - [sym_metavariable] = ACTIONS(981), + [sym_self] = ACTIONS(950), + [sym_super] = ACTIONS(950), + [sym_crate] = ACTIONS(952), + [sym_metavariable] = ACTIONS(954), + [sym_block_comment] = ACTIONS(3), + }, + [243] = { + [sym__token_pattern] = STATE(243), + [sym_token_tree_pattern] = STATE(243), + [sym_token_binding_pattern] = STATE(243), + [sym_token_repetition_pattern] = STATE(243), + [sym__literal] = STATE(243), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_pattern_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_RBRACK] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_u8] = ACTIONS(960), + [anon_sym_i8] = ACTIONS(960), + [anon_sym_u16] = ACTIONS(960), + [anon_sym_i16] = ACTIONS(960), + [anon_sym_u32] = ACTIONS(960), + [anon_sym_i32] = ACTIONS(960), + [anon_sym_u64] = ACTIONS(960), + [anon_sym_i64] = ACTIONS(960), + [anon_sym_u128] = ACTIONS(960), + [anon_sym_i128] = ACTIONS(960), + [anon_sym_isize] = ACTIONS(960), + [anon_sym_usize] = ACTIONS(960), + [anon_sym_f32] = ACTIONS(960), + [anon_sym_f64] = ACTIONS(960), + [anon_sym_bool] = ACTIONS(960), + [anon_sym_str] = ACTIONS(960), + [anon_sym_char] = ACTIONS(960), + [aux_sym__non_special_token_token1] = ACTIONS(960), + [anon_sym_SQUOTE] = ACTIONS(960), + [anon_sym_as] = ACTIONS(960), + [anon_sym_async] = ACTIONS(960), + [anon_sym_await] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_fn] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_impl] = ACTIONS(960), + [anon_sym_let] = ACTIONS(960), + [anon_sym_loop] = ACTIONS(960), + [anon_sym_match] = ACTIONS(960), + [anon_sym_mod] = ACTIONS(960), + [anon_sym_pub] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_static] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_trait] = ACTIONS(960), + [anon_sym_type] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_unsafe] = ACTIONS(960), + [anon_sym_use] = ACTIONS(960), + [anon_sym_where] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [sym_mutable_specifier] = ACTIONS(960), + [sym_integer_literal] = ACTIONS(977), + [aux_sym_string_literal_token1] = ACTIONS(980), + [sym_char_literal] = ACTIONS(977), + [anon_sym_true] = ACTIONS(983), + [anon_sym_false] = ACTIONS(983), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(960), + [sym_super] = ACTIONS(960), + [sym_crate] = ACTIONS(960), + [sym_metavariable] = ACTIONS(988), + [sym_raw_string_literal] = ACTIONS(977), + [sym_float_literal] = ACTIONS(977), [sym_block_comment] = ACTIONS(3), }, [244] = { - [sym_empty_statement] = STATE(244), - [sym_macro_definition] = STATE(244), - [sym_attribute_item] = STATE(244), - [sym_inner_attribute_item] = STATE(244), - [sym_mod_item] = STATE(244), - [sym_foreign_mod_item] = STATE(244), - [sym_struct_item] = STATE(244), - [sym_union_item] = STATE(244), - [sym_enum_item] = STATE(244), - [sym_extern_crate_declaration] = STATE(244), - [sym_const_item] = STATE(244), - [sym_static_item] = STATE(244), - [sym_type_item] = STATE(244), - [sym_function_item] = STATE(244), - [sym_function_signature_item] = STATE(244), - [sym_function_modifiers] = STATE(2416), - [sym_impl_item] = STATE(244), - [sym_trait_item] = STATE(244), - [sym_associated_type] = STATE(244), - [sym_let_declaration] = STATE(244), - [sym_use_declaration] = STATE(244), - [sym_extern_modifier] = STATE(1440), - [sym_visibility_modifier] = STATE(1259), - [sym_bracketed_type] = STATE(2246), - [sym_generic_type_with_turbofish] = STATE(2243), - [sym_macro_invocation] = STATE(244), - [sym_scoped_identifier] = STATE(2126), - [aux_sym_declaration_list_repeat1] = STATE(244), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_macro_rules_BANG] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_u8] = ACTIONS(1000), - [anon_sym_i8] = ACTIONS(1000), - [anon_sym_u16] = ACTIONS(1000), - [anon_sym_i16] = ACTIONS(1000), - [anon_sym_u32] = ACTIONS(1000), - [anon_sym_i32] = ACTIONS(1000), - [anon_sym_u64] = ACTIONS(1000), - [anon_sym_i64] = ACTIONS(1000), - [anon_sym_u128] = ACTIONS(1000), - [anon_sym_i128] = ACTIONS(1000), - [anon_sym_isize] = ACTIONS(1000), - [anon_sym_usize] = ACTIONS(1000), - [anon_sym_f32] = ACTIONS(1000), - [anon_sym_f64] = ACTIONS(1000), - [anon_sym_bool] = ACTIONS(1000), - [anon_sym_str] = ACTIONS(1000), - [anon_sym_char] = ACTIONS(1000), - [anon_sym_async] = ACTIONS(1003), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_default] = ACTIONS(1009), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_fn] = ACTIONS(1015), - [anon_sym_impl] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_mod] = ACTIONS(1024), - [anon_sym_pub] = ACTIONS(1027), - [anon_sym_static] = ACTIONS(1030), - [anon_sym_struct] = ACTIONS(1033), - [anon_sym_trait] = ACTIONS(1036), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_union] = ACTIONS(1042), - [anon_sym_unsafe] = ACTIONS(1045), - [anon_sym_use] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1051), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1063), - [sym_super] = ACTIONS(1063), - [sym_crate] = ACTIONS(1066), - [sym_metavariable] = ACTIONS(1069), + [sym_empty_statement] = STATE(245), + [sym_macro_definition] = STATE(245), + [sym_attribute_item] = STATE(245), + [sym_inner_attribute_item] = STATE(245), + [sym_mod_item] = STATE(245), + [sym_foreign_mod_item] = STATE(245), + [sym_struct_item] = STATE(245), + [sym_union_item] = STATE(245), + [sym_enum_item] = STATE(245), + [sym_extern_crate_declaration] = STATE(245), + [sym_const_item] = STATE(245), + [sym_static_item] = STATE(245), + [sym_type_item] = STATE(245), + [sym_function_item] = STATE(245), + [sym_function_signature_item] = STATE(245), + [sym_function_modifiers] = STATE(2461), + [sym_impl_item] = STATE(245), + [sym_trait_item] = STATE(245), + [sym_associated_type] = STATE(245), + [sym_let_declaration] = STATE(245), + [sym_use_declaration] = STATE(245), + [sym_extern_modifier] = STATE(1431), + [sym_visibility_modifier] = STATE(1270), + [sym_bracketed_type] = STATE(2287), + [sym_generic_type_with_turbofish] = STATE(2431), + [sym_macro_invocation] = STATE(245), + [sym_scoped_identifier] = STATE(2223), + [aux_sym_declaration_list_repeat1] = STATE(245), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_macro_rules_BANG] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_u8] = ACTIONS(914), + [anon_sym_i8] = ACTIONS(914), + [anon_sym_u16] = ACTIONS(914), + [anon_sym_i16] = ACTIONS(914), + [anon_sym_u32] = ACTIONS(914), + [anon_sym_i32] = ACTIONS(914), + [anon_sym_u64] = ACTIONS(914), + [anon_sym_i64] = ACTIONS(914), + [anon_sym_u128] = ACTIONS(914), + [anon_sym_i128] = ACTIONS(914), + [anon_sym_isize] = ACTIONS(914), + [anon_sym_usize] = ACTIONS(914), + [anon_sym_f32] = ACTIONS(914), + [anon_sym_f64] = ACTIONS(914), + [anon_sym_bool] = ACTIONS(914), + [anon_sym_str] = ACTIONS(914), + [anon_sym_char] = ACTIONS(914), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(916), + [anon_sym_default] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(922), + [anon_sym_impl] = ACTIONS(924), + [anon_sym_let] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(928), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(930), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_trait] = ACTIONS(934), + [anon_sym_type] = ACTIONS(936), + [anon_sym_union] = ACTIONS(938), + [anon_sym_unsafe] = ACTIONS(940), + [anon_sym_use] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(946), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(948), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(950), + [sym_super] = ACTIONS(950), + [sym_crate] = ACTIONS(952), + [sym_metavariable] = ACTIONS(954), [sym_block_comment] = ACTIONS(3), }, [245] = { - [sym_attribute_item] = STATE(494), - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_macro_invocation] = STATE(2288), - [sym_scoped_identifier] = STATE(1493), - [sym_scoped_type_identifier] = STATE(1824), - [sym_match_arm] = STATE(355), - [sym_last_match_arm] = STATE(2302), - [sym_match_pattern] = STATE(2285), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1839), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_enum_variant_list_repeat1] = STATE(494), - [aux_sym_match_block_repeat1] = STATE(355), - [sym_identifier] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(1076), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [sym_empty_statement] = STATE(245), + [sym_macro_definition] = STATE(245), + [sym_attribute_item] = STATE(245), + [sym_inner_attribute_item] = STATE(245), + [sym_mod_item] = STATE(245), + [sym_foreign_mod_item] = STATE(245), + [sym_struct_item] = STATE(245), + [sym_union_item] = STATE(245), + [sym_enum_item] = STATE(245), + [sym_extern_crate_declaration] = STATE(245), + [sym_const_item] = STATE(245), + [sym_static_item] = STATE(245), + [sym_type_item] = STATE(245), + [sym_function_item] = STATE(245), + [sym_function_signature_item] = STATE(245), + [sym_function_modifiers] = STATE(2461), + [sym_impl_item] = STATE(245), + [sym_trait_item] = STATE(245), + [sym_associated_type] = STATE(245), + [sym_let_declaration] = STATE(245), + [sym_use_declaration] = STATE(245), + [sym_extern_modifier] = STATE(1431), + [sym_visibility_modifier] = STATE(1270), + [sym_bracketed_type] = STATE(2287), + [sym_generic_type_with_turbofish] = STATE(2431), + [sym_macro_invocation] = STATE(245), + [sym_scoped_identifier] = STATE(2223), + [aux_sym_declaration_list_repeat1] = STATE(245), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_macro_rules_BANG] = ACTIONS(999), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym_async] = ACTIONS(1007), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_fn] = ACTIONS(1019), + [anon_sym_impl] = ACTIONS(1022), + [anon_sym_let] = ACTIONS(1025), + [anon_sym_mod] = ACTIONS(1028), + [anon_sym_pub] = ACTIONS(1031), + [anon_sym_static] = ACTIONS(1034), + [anon_sym_struct] = ACTIONS(1037), + [anon_sym_trait] = ACTIONS(1040), + [anon_sym_type] = ACTIONS(1043), + [anon_sym_union] = ACTIONS(1046), + [anon_sym_unsafe] = ACTIONS(1049), + [anon_sym_use] = ACTIONS(1052), + [anon_sym_POUND] = ACTIONS(1055), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_COLON_COLON] = ACTIONS(1064), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1067), + [sym_super] = ACTIONS(1067), + [sym_crate] = ACTIONS(1070), + [sym_metavariable] = ACTIONS(1073), [sym_block_comment] = ACTIONS(3), }, [246] = { - [sym_attribute_item] = STATE(494), - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_macro_invocation] = STATE(2288), - [sym_scoped_identifier] = STATE(1493), - [sym_scoped_type_identifier] = STATE(1824), - [sym_match_arm] = STATE(329), - [sym_last_match_arm] = STATE(2287), - [sym_match_pattern] = STATE(2285), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1839), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_enum_variant_list_repeat1] = STATE(494), - [aux_sym_match_block_repeat1] = STATE(329), - [sym_identifier] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(1094), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), + [sym_attribute_item] = STATE(500), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_macro_invocation] = STATE(2317), + [sym_scoped_identifier] = STATE(1472), + [sym_scoped_type_identifier] = STATE(1899), + [sym_match_arm] = STATE(290), + [sym_last_match_arm] = STATE(2323), + [sym_match_pattern] = STATE(2324), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1855), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_enum_variant_list_repeat1] = STATE(500), + [aux_sym_match_block_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(694), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [247] = { - [sym_attribute_item] = STATE(494), - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_macro_invocation] = STATE(2288), - [sym_scoped_identifier] = STATE(1493), - [sym_scoped_type_identifier] = STATE(1824), - [sym_match_arm] = STATE(453), - [sym_last_match_arm] = STATE(2418), - [sym_match_pattern] = STATE(2285), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1839), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_enum_variant_list_repeat1] = STATE(494), - [aux_sym_match_block_repeat1] = STATE(453), - [sym_identifier] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), + [sym_attribute_item] = STATE(500), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_macro_invocation] = STATE(2317), + [sym_scoped_identifier] = STATE(1472), + [sym_scoped_type_identifier] = STATE(1899), + [sym_match_arm] = STATE(353), + [sym_last_match_arm] = STATE(2463), + [sym_match_pattern] = STATE(2324), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1855), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_enum_variant_list_repeat1] = STATE(500), + [aux_sym_match_block_repeat1] = STATE(353), + [sym_identifier] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(694), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [248] = { - [sym__token_pattern] = STATE(334), - [sym_token_tree_pattern] = STATE(334), - [sym_token_binding_pattern] = STATE(334), - [sym_token_repetition_pattern] = STATE(334), - [sym__literal] = STATE(334), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_pattern_repeat1] = STATE(334), - [sym_identifier] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1104), + [sym_attribute_item] = STATE(500), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_macro_invocation] = STATE(2317), + [sym_scoped_identifier] = STATE(1472), + [sym_scoped_type_identifier] = STATE(1899), + [sym_match_arm] = STATE(293), + [sym_last_match_arm] = STATE(2330), + [sym_match_pattern] = STATE(2324), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1855), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_enum_variant_list_repeat1] = STATE(500), + [aux_sym_match_block_repeat1] = STATE(293), + [sym_identifier] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_ref] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), + [sym_block_comment] = ACTIONS(3), + }, + [249] = { + [ts_builtin_sym_end] = ACTIONS(1102), + [sym_identifier] = ACTIONS(1104), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_macro_rules_BANG] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_u8] = ACTIONS(1104), + [anon_sym_i8] = ACTIONS(1104), + [anon_sym_u16] = ACTIONS(1104), + [anon_sym_i16] = ACTIONS(1104), + [anon_sym_u32] = ACTIONS(1104), + [anon_sym_i32] = ACTIONS(1104), + [anon_sym_u64] = ACTIONS(1104), + [anon_sym_i64] = ACTIONS(1104), + [anon_sym_u128] = ACTIONS(1104), + [anon_sym_i128] = ACTIONS(1104), + [anon_sym_isize] = ACTIONS(1104), + [anon_sym_usize] = ACTIONS(1104), + [anon_sym_f32] = ACTIONS(1104), + [anon_sym_f64] = ACTIONS(1104), + [anon_sym_bool] = ACTIONS(1104), + [anon_sym_str] = ACTIONS(1104), + [anon_sym_char] = ACTIONS(1104), + [anon_sym_SQUOTE] = ACTIONS(1104), + [anon_sym_async] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_fn] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_impl] = ACTIONS(1104), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_loop] = ACTIONS(1104), + [anon_sym_match] = ACTIONS(1104), + [anon_sym_mod] = ACTIONS(1104), + [anon_sym_pub] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_trait] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_unsafe] = ACTIONS(1104), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_POUND] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_COLON_COLON] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_DOT_DOT] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_PIPE] = ACTIONS(1102), + [anon_sym_move] = ACTIONS(1104), + [sym_integer_literal] = ACTIONS(1102), + [aux_sym_string_literal_token1] = ACTIONS(1102), + [sym_char_literal] = ACTIONS(1102), + [anon_sym_true] = ACTIONS(1104), + [anon_sym_false] = ACTIONS(1104), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1104), + [sym_super] = ACTIONS(1104), + [sym_crate] = ACTIONS(1104), + [sym_metavariable] = ACTIONS(1102), + [sym_raw_string_literal] = ACTIONS(1102), + [sym_float_literal] = ACTIONS(1102), + [sym_block_comment] = ACTIONS(3), + }, + [250] = { + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1108), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_macro_rules_BANG] = ACTIONS(1106), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [anon_sym_u8] = ACTIONS(1098), - [anon_sym_i8] = ACTIONS(1098), - [anon_sym_u16] = ACTIONS(1098), - [anon_sym_i16] = ACTIONS(1098), - [anon_sym_u32] = ACTIONS(1098), - [anon_sym_i32] = ACTIONS(1098), - [anon_sym_u64] = ACTIONS(1098), - [anon_sym_i64] = ACTIONS(1098), - [anon_sym_u128] = ACTIONS(1098), - [anon_sym_i128] = ACTIONS(1098), - [anon_sym_isize] = ACTIONS(1098), - [anon_sym_usize] = ACTIONS(1098), - [anon_sym_f32] = ACTIONS(1098), - [anon_sym_f64] = ACTIONS(1098), - [anon_sym_bool] = ACTIONS(1098), - [anon_sym_str] = ACTIONS(1098), - [anon_sym_char] = ACTIONS(1098), - [aux_sym__non_special_token_token1] = ACTIONS(1098), - [anon_sym_SQUOTE] = ACTIONS(1098), - [anon_sym_as] = ACTIONS(1098), - [anon_sym_async] = ACTIONS(1098), - [anon_sym_await] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1098), - [anon_sym_enum] = ACTIONS(1098), - [anon_sym_fn] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_impl] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_pub] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_struct] = ACTIONS(1098), - [anon_sym_trait] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_union] = ACTIONS(1098), - [anon_sym_unsafe] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_where] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [sym_mutable_specifier] = ACTIONS(1098), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_u8] = ACTIONS(1108), + [anon_sym_i8] = ACTIONS(1108), + [anon_sym_u16] = ACTIONS(1108), + [anon_sym_i16] = ACTIONS(1108), + [anon_sym_u32] = ACTIONS(1108), + [anon_sym_i32] = ACTIONS(1108), + [anon_sym_u64] = ACTIONS(1108), + [anon_sym_i64] = ACTIONS(1108), + [anon_sym_u128] = ACTIONS(1108), + [anon_sym_i128] = ACTIONS(1108), + [anon_sym_isize] = ACTIONS(1108), + [anon_sym_usize] = ACTIONS(1108), + [anon_sym_f32] = ACTIONS(1108), + [anon_sym_f64] = ACTIONS(1108), + [anon_sym_bool] = ACTIONS(1108), + [anon_sym_str] = ACTIONS(1108), + [anon_sym_char] = ACTIONS(1108), + [anon_sym_SQUOTE] = ACTIONS(1108), + [anon_sym_async] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_fn] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_impl] = ACTIONS(1108), + [anon_sym_let] = ACTIONS(1108), + [anon_sym_loop] = ACTIONS(1108), + [anon_sym_match] = ACTIONS(1108), + [anon_sym_mod] = ACTIONS(1108), + [anon_sym_pub] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_trait] = ACTIONS(1108), + [anon_sym_type] = ACTIONS(1108), + [anon_sym_union] = ACTIONS(1108), + [anon_sym_unsafe] = ACTIONS(1108), + [anon_sym_use] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_POUND] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym_LT] = ACTIONS(1106), + [anon_sym_COLON_COLON] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_DOT_DOT] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_move] = ACTIONS(1108), + [sym_integer_literal] = ACTIONS(1106), + [aux_sym_string_literal_token1] = ACTIONS(1106), + [sym_char_literal] = ACTIONS(1106), + [anon_sym_true] = ACTIONS(1108), + [anon_sym_false] = ACTIONS(1108), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1108), + [sym_super] = ACTIONS(1108), + [sym_crate] = ACTIONS(1108), + [sym_metavariable] = ACTIONS(1106), + [sym_raw_string_literal] = ACTIONS(1106), + [sym_float_literal] = ACTIONS(1106), + [sym_block_comment] = ACTIONS(3), + }, + [251] = { + [ts_builtin_sym_end] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_macro_rules_BANG] = ACTIONS(1110), + [anon_sym_LPAREN] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_u8] = ACTIONS(1112), + [anon_sym_i8] = ACTIONS(1112), + [anon_sym_u16] = ACTIONS(1112), + [anon_sym_i16] = ACTIONS(1112), + [anon_sym_u32] = ACTIONS(1112), + [anon_sym_i32] = ACTIONS(1112), + [anon_sym_u64] = ACTIONS(1112), + [anon_sym_i64] = ACTIONS(1112), + [anon_sym_u128] = ACTIONS(1112), + [anon_sym_i128] = ACTIONS(1112), + [anon_sym_isize] = ACTIONS(1112), + [anon_sym_usize] = ACTIONS(1112), + [anon_sym_f32] = ACTIONS(1112), + [anon_sym_f64] = ACTIONS(1112), + [anon_sym_bool] = ACTIONS(1112), + [anon_sym_str] = ACTIONS(1112), + [anon_sym_char] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_async] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_fn] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_impl] = ACTIONS(1112), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_loop] = ACTIONS(1112), + [anon_sym_match] = ACTIONS(1112), + [anon_sym_mod] = ACTIONS(1112), + [anon_sym_pub] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_trait] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_unsafe] = ACTIONS(1112), + [anon_sym_use] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_POUND] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym_LT] = ACTIONS(1110), + [anon_sym_COLON_COLON] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_DOT_DOT] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_PIPE] = ACTIONS(1110), + [anon_sym_move] = ACTIONS(1112), [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1110), [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(1098), - [sym_super] = ACTIONS(1098), - [sym_crate] = ACTIONS(1098), - [sym_metavariable] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1112), + [anon_sym_false] = ACTIONS(1112), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1112), + [sym_super] = ACTIONS(1112), + [sym_crate] = ACTIONS(1112), + [sym_metavariable] = ACTIONS(1110), [sym_raw_string_literal] = ACTIONS(1110), [sym_float_literal] = ACTIONS(1110), [sym_block_comment] = ACTIONS(3), }, - [249] = { + [252] = { + [ts_builtin_sym_end] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1116), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_macro_rules_BANG] = ACTIONS(1114), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_RBRACE] = ACTIONS(1114), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_u8] = ACTIONS(1116), + [anon_sym_i8] = ACTIONS(1116), + [anon_sym_u16] = ACTIONS(1116), + [anon_sym_i16] = ACTIONS(1116), + [anon_sym_u32] = ACTIONS(1116), + [anon_sym_i32] = ACTIONS(1116), + [anon_sym_u64] = ACTIONS(1116), + [anon_sym_i64] = ACTIONS(1116), + [anon_sym_u128] = ACTIONS(1116), + [anon_sym_i128] = ACTIONS(1116), + [anon_sym_isize] = ACTIONS(1116), + [anon_sym_usize] = ACTIONS(1116), + [anon_sym_f32] = ACTIONS(1116), + [anon_sym_f64] = ACTIONS(1116), + [anon_sym_bool] = ACTIONS(1116), + [anon_sym_str] = ACTIONS(1116), + [anon_sym_char] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_async] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_fn] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_impl] = ACTIONS(1116), + [anon_sym_let] = ACTIONS(1116), + [anon_sym_loop] = ACTIONS(1116), + [anon_sym_match] = ACTIONS(1116), + [anon_sym_mod] = ACTIONS(1116), + [anon_sym_pub] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_trait] = ACTIONS(1116), + [anon_sym_type] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_unsafe] = ACTIONS(1116), + [anon_sym_use] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_POUND] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym_LT] = ACTIONS(1114), + [anon_sym_COLON_COLON] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_DOT_DOT] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_PIPE] = ACTIONS(1114), + [anon_sym_move] = ACTIONS(1116), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1116), + [sym_super] = ACTIONS(1116), + [sym_crate] = ACTIONS(1116), + [sym_metavariable] = ACTIONS(1114), + [sym_raw_string_literal] = ACTIONS(1114), + [sym_float_literal] = ACTIONS(1114), + [sym_block_comment] = ACTIONS(3), + }, + [253] = { [ts_builtin_sym_end] = ACTIONS(1118), [sym_identifier] = ACTIONS(1120), [anon_sym_SEMI] = ACTIONS(1118), @@ -39758,7 +40144,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1118), [sym_block_comment] = ACTIONS(3), }, - [250] = { + [254] = { [ts_builtin_sym_end] = ACTIONS(1122), [sym_identifier] = ACTIONS(1124), [anon_sym_SEMI] = ACTIONS(1122), @@ -39834,7 +40220,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1122), [sym_block_comment] = ACTIONS(3), }, - [251] = { + [255] = { [ts_builtin_sym_end] = ACTIONS(1126), [sym_identifier] = ACTIONS(1128), [anon_sym_SEMI] = ACTIONS(1126), @@ -39910,7 +40296,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1126), [sym_block_comment] = ACTIONS(3), }, - [252] = { + [256] = { [ts_builtin_sym_end] = ACTIONS(1130), [sym_identifier] = ACTIONS(1132), [anon_sym_SEMI] = ACTIONS(1130), @@ -39986,7 +40372,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1130), [sym_block_comment] = ACTIONS(3), }, - [253] = { + [257] = { [ts_builtin_sym_end] = ACTIONS(1134), [sym_identifier] = ACTIONS(1136), [anon_sym_SEMI] = ACTIONS(1134), @@ -40062,7 +40448,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1134), [sym_block_comment] = ACTIONS(3), }, - [254] = { + [258] = { [ts_builtin_sym_end] = ACTIONS(1138), [sym_identifier] = ACTIONS(1140), [anon_sym_SEMI] = ACTIONS(1138), @@ -40138,7 +40524,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1138), [sym_block_comment] = ACTIONS(3), }, - [255] = { + [259] = { [ts_builtin_sym_end] = ACTIONS(1142), [sym_identifier] = ACTIONS(1144), [anon_sym_SEMI] = ACTIONS(1142), @@ -40214,7 +40600,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1142), [sym_block_comment] = ACTIONS(3), }, - [256] = { + [260] = { [ts_builtin_sym_end] = ACTIONS(1146), [sym_identifier] = ACTIONS(1148), [anon_sym_SEMI] = ACTIONS(1146), @@ -40290,7 +40676,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1146), [sym_block_comment] = ACTIONS(3), }, - [257] = { + [261] = { [ts_builtin_sym_end] = ACTIONS(1150), [sym_identifier] = ACTIONS(1152), [anon_sym_SEMI] = ACTIONS(1150), @@ -40366,7 +40752,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1150), [sym_block_comment] = ACTIONS(3), }, - [258] = { + [262] = { [ts_builtin_sym_end] = ACTIONS(1154), [sym_identifier] = ACTIONS(1156), [anon_sym_SEMI] = ACTIONS(1154), @@ -40442,7 +40828,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1154), [sym_block_comment] = ACTIONS(3), }, - [259] = { + [263] = { [ts_builtin_sym_end] = ACTIONS(1158), [sym_identifier] = ACTIONS(1160), [anon_sym_SEMI] = ACTIONS(1158), @@ -40518,7 +40904,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1158), [sym_block_comment] = ACTIONS(3), }, - [260] = { + [264] = { [ts_builtin_sym_end] = ACTIONS(1162), [sym_identifier] = ACTIONS(1164), [anon_sym_SEMI] = ACTIONS(1162), @@ -40594,7 +40980,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, - [261] = { + [265] = { [ts_builtin_sym_end] = ACTIONS(1166), [sym_identifier] = ACTIONS(1168), [anon_sym_SEMI] = ACTIONS(1166), @@ -40670,7 +41056,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1166), [sym_block_comment] = ACTIONS(3), }, - [262] = { + [266] = { [ts_builtin_sym_end] = ACTIONS(1170), [sym_identifier] = ACTIONS(1172), [anon_sym_SEMI] = ACTIONS(1170), @@ -40746,7 +41132,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1170), [sym_block_comment] = ACTIONS(3), }, - [263] = { + [267] = { [ts_builtin_sym_end] = ACTIONS(1174), [sym_identifier] = ACTIONS(1176), [anon_sym_SEMI] = ACTIONS(1174), @@ -40822,7 +41208,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1174), [sym_block_comment] = ACTIONS(3), }, - [264] = { + [268] = { [ts_builtin_sym_end] = ACTIONS(1178), [sym_identifier] = ACTIONS(1180), [anon_sym_SEMI] = ACTIONS(1178), @@ -40898,7 +41284,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1178), [sym_block_comment] = ACTIONS(3), }, - [265] = { + [269] = { [ts_builtin_sym_end] = ACTIONS(1182), [sym_identifier] = ACTIONS(1184), [anon_sym_SEMI] = ACTIONS(1182), @@ -40974,7 +41360,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1182), [sym_block_comment] = ACTIONS(3), }, - [266] = { + [270] = { [ts_builtin_sym_end] = ACTIONS(1186), [sym_identifier] = ACTIONS(1188), [anon_sym_SEMI] = ACTIONS(1186), @@ -41050,386 +41436,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1186), [sym_block_comment] = ACTIONS(3), }, - [267] = { - [ts_builtin_sym_end] = ACTIONS(1190), - [sym_identifier] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym_macro_rules_BANG] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1192), - [anon_sym_i8] = ACTIONS(1192), - [anon_sym_u16] = ACTIONS(1192), - [anon_sym_i16] = ACTIONS(1192), - [anon_sym_u32] = ACTIONS(1192), - [anon_sym_i32] = ACTIONS(1192), - [anon_sym_u64] = ACTIONS(1192), - [anon_sym_i64] = ACTIONS(1192), - [anon_sym_u128] = ACTIONS(1192), - [anon_sym_i128] = ACTIONS(1192), - [anon_sym_isize] = ACTIONS(1192), - [anon_sym_usize] = ACTIONS(1192), - [anon_sym_f32] = ACTIONS(1192), - [anon_sym_f64] = ACTIONS(1192), - [anon_sym_bool] = ACTIONS(1192), - [anon_sym_str] = ACTIONS(1192), - [anon_sym_char] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_break] = ACTIONS(1192), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_continue] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(1192), - [anon_sym_enum] = ACTIONS(1192), - [anon_sym_fn] = ACTIONS(1192), - [anon_sym_for] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1192), - [anon_sym_impl] = ACTIONS(1192), - [anon_sym_let] = ACTIONS(1192), - [anon_sym_loop] = ACTIONS(1192), - [anon_sym_match] = ACTIONS(1192), - [anon_sym_mod] = ACTIONS(1192), - [anon_sym_pub] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1192), - [anon_sym_static] = ACTIONS(1192), - [anon_sym_struct] = ACTIONS(1192), - [anon_sym_trait] = ACTIONS(1192), - [anon_sym_type] = ACTIONS(1192), - [anon_sym_union] = ACTIONS(1192), - [anon_sym_unsafe] = ACTIONS(1192), - [anon_sym_use] = ACTIONS(1192), - [anon_sym_while] = ACTIONS(1192), - [anon_sym_POUND] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_COLON_COLON] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_move] = ACTIONS(1192), - [sym_integer_literal] = ACTIONS(1190), - [aux_sym_string_literal_token1] = ACTIONS(1190), - [sym_char_literal] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1192), - [anon_sym_false] = ACTIONS(1192), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1192), - [sym_super] = ACTIONS(1192), - [sym_crate] = ACTIONS(1192), - [sym_metavariable] = ACTIONS(1190), - [sym_raw_string_literal] = ACTIONS(1190), - [sym_float_literal] = ACTIONS(1190), - [sym_block_comment] = ACTIONS(3), - }, - [268] = { - [ts_builtin_sym_end] = ACTIONS(1194), - [sym_identifier] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_macro_rules_BANG] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_u8] = ACTIONS(1196), - [anon_sym_i8] = ACTIONS(1196), - [anon_sym_u16] = ACTIONS(1196), - [anon_sym_i16] = ACTIONS(1196), - [anon_sym_u32] = ACTIONS(1196), - [anon_sym_i32] = ACTIONS(1196), - [anon_sym_u64] = ACTIONS(1196), - [anon_sym_i64] = ACTIONS(1196), - [anon_sym_u128] = ACTIONS(1196), - [anon_sym_i128] = ACTIONS(1196), - [anon_sym_isize] = ACTIONS(1196), - [anon_sym_usize] = ACTIONS(1196), - [anon_sym_f32] = ACTIONS(1196), - [anon_sym_f64] = ACTIONS(1196), - [anon_sym_bool] = ACTIONS(1196), - [anon_sym_str] = ACTIONS(1196), - [anon_sym_char] = ACTIONS(1196), - [anon_sym_SQUOTE] = ACTIONS(1196), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_fn] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_impl] = ACTIONS(1196), - [anon_sym_let] = ACTIONS(1196), - [anon_sym_loop] = ACTIONS(1196), - [anon_sym_match] = ACTIONS(1196), - [anon_sym_mod] = ACTIONS(1196), - [anon_sym_pub] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_trait] = ACTIONS(1196), - [anon_sym_type] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_unsafe] = ACTIONS(1196), - [anon_sym_use] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_POUND] = ACTIONS(1194), - [anon_sym_BANG] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_COLON_COLON] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_move] = ACTIONS(1196), - [sym_integer_literal] = ACTIONS(1194), - [aux_sym_string_literal_token1] = ACTIONS(1194), - [sym_char_literal] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1196), - [sym_super] = ACTIONS(1196), - [sym_crate] = ACTIONS(1196), - [sym_metavariable] = ACTIONS(1194), - [sym_raw_string_literal] = ACTIONS(1194), - [sym_float_literal] = ACTIONS(1194), - [sym_block_comment] = ACTIONS(3), - }, - [269] = { - [ts_builtin_sym_end] = ACTIONS(1198), - [sym_identifier] = ACTIONS(1200), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_macro_rules_BANG] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_RBRACE] = ACTIONS(1198), + [271] = { + [sym__token_pattern] = STATE(243), + [sym_token_tree_pattern] = STATE(243), + [sym_token_binding_pattern] = STATE(243), + [sym_token_repetition_pattern] = STATE(243), + [sym__literal] = STATE(243), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_pattern_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1196), [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_u8] = ACTIONS(1200), - [anon_sym_i8] = ACTIONS(1200), - [anon_sym_u16] = ACTIONS(1200), - [anon_sym_i16] = ACTIONS(1200), - [anon_sym_u32] = ACTIONS(1200), - [anon_sym_i32] = ACTIONS(1200), - [anon_sym_u64] = ACTIONS(1200), - [anon_sym_i64] = ACTIONS(1200), - [anon_sym_u128] = ACTIONS(1200), - [anon_sym_i128] = ACTIONS(1200), - [anon_sym_isize] = ACTIONS(1200), - [anon_sym_usize] = ACTIONS(1200), - [anon_sym_f32] = ACTIONS(1200), - [anon_sym_f64] = ACTIONS(1200), - [anon_sym_bool] = ACTIONS(1200), - [anon_sym_str] = ACTIONS(1200), - [anon_sym_char] = ACTIONS(1200), - [anon_sym_SQUOTE] = ACTIONS(1200), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_fn] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_impl] = ACTIONS(1200), - [anon_sym_let] = ACTIONS(1200), - [anon_sym_loop] = ACTIONS(1200), - [anon_sym_match] = ACTIONS(1200), - [anon_sym_mod] = ACTIONS(1200), - [anon_sym_pub] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_trait] = ACTIONS(1200), - [anon_sym_type] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_unsafe] = ACTIONS(1200), - [anon_sym_use] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_POUND] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_COLON_COLON] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_DOT_DOT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_move] = ACTIONS(1200), - [sym_integer_literal] = ACTIONS(1198), - [aux_sym_string_literal_token1] = ACTIONS(1198), - [sym_char_literal] = ACTIONS(1198), - [anon_sym_true] = ACTIONS(1200), - [anon_sym_false] = ACTIONS(1200), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1198), - [sym_raw_string_literal] = ACTIONS(1198), - [sym_float_literal] = ACTIONS(1198), - [sym_block_comment] = ACTIONS(3), - }, - [270] = { - [ts_builtin_sym_end] = ACTIONS(1202), - [sym_identifier] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_macro_rules_BANG] = ACTIONS(1202), - [anon_sym_LPAREN] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_RBRACE] = ACTIONS(1202), - [anon_sym_LBRACK] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_u8] = ACTIONS(1204), - [anon_sym_i8] = ACTIONS(1204), - [anon_sym_u16] = ACTIONS(1204), - [anon_sym_i16] = ACTIONS(1204), - [anon_sym_u32] = ACTIONS(1204), - [anon_sym_i32] = ACTIONS(1204), - [anon_sym_u64] = ACTIONS(1204), - [anon_sym_i64] = ACTIONS(1204), - [anon_sym_u128] = ACTIONS(1204), - [anon_sym_i128] = ACTIONS(1204), - [anon_sym_isize] = ACTIONS(1204), - [anon_sym_usize] = ACTIONS(1204), - [anon_sym_f32] = ACTIONS(1204), - [anon_sym_f64] = ACTIONS(1204), - [anon_sym_bool] = ACTIONS(1204), - [anon_sym_str] = ACTIONS(1204), - [anon_sym_char] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_async] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_fn] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_impl] = ACTIONS(1204), - [anon_sym_let] = ACTIONS(1204), - [anon_sym_loop] = ACTIONS(1204), - [anon_sym_match] = ACTIONS(1204), - [anon_sym_mod] = ACTIONS(1204), - [anon_sym_pub] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_trait] = ACTIONS(1204), - [anon_sym_type] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_unsafe] = ACTIONS(1204), - [anon_sym_use] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_POUND] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym_LT] = ACTIONS(1202), - [anon_sym_COLON_COLON] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_DOT_DOT] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_PIPE] = ACTIONS(1202), - [anon_sym_move] = ACTIONS(1204), + [anon_sym_DOLLAR] = ACTIONS(1200), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [aux_sym__non_special_token_token1] = ACTIONS(1190), + [anon_sym_SQUOTE] = ACTIONS(1190), + [anon_sym_as] = ACTIONS(1190), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_await] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_fn] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_impl] = ACTIONS(1190), + [anon_sym_let] = ACTIONS(1190), + [anon_sym_loop] = ACTIONS(1190), + [anon_sym_match] = ACTIONS(1190), + [anon_sym_mod] = ACTIONS(1190), + [anon_sym_pub] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_trait] = ACTIONS(1190), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_unsafe] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1190), + [anon_sym_where] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [sym_mutable_specifier] = ACTIONS(1190), [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1204), - [anon_sym_false] = ACTIONS(1204), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1204), - [sym_super] = ACTIONS(1204), - [sym_crate] = ACTIONS(1204), - [sym_metavariable] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(1190), + [sym_super] = ACTIONS(1190), + [sym_crate] = ACTIONS(1190), + [sym_metavariable] = ACTIONS(1208), [sym_raw_string_literal] = ACTIONS(1202), [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [271] = { - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_macro_rules_BANG] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_u8] = ACTIONS(1208), - [anon_sym_i8] = ACTIONS(1208), - [anon_sym_u16] = ACTIONS(1208), - [anon_sym_i16] = ACTIONS(1208), - [anon_sym_u32] = ACTIONS(1208), - [anon_sym_i32] = ACTIONS(1208), - [anon_sym_u64] = ACTIONS(1208), - [anon_sym_i64] = ACTIONS(1208), - [anon_sym_u128] = ACTIONS(1208), - [anon_sym_i128] = ACTIONS(1208), - [anon_sym_isize] = ACTIONS(1208), - [anon_sym_usize] = ACTIONS(1208), - [anon_sym_f32] = ACTIONS(1208), - [anon_sym_f64] = ACTIONS(1208), - [anon_sym_bool] = ACTIONS(1208), - [anon_sym_str] = ACTIONS(1208), - [anon_sym_char] = ACTIONS(1208), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_async] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_fn] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_impl] = ACTIONS(1208), - [anon_sym_let] = ACTIONS(1208), - [anon_sym_loop] = ACTIONS(1208), - [anon_sym_match] = ACTIONS(1208), - [anon_sym_mod] = ACTIONS(1208), - [anon_sym_pub] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_trait] = ACTIONS(1208), - [anon_sym_type] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_unsafe] = ACTIONS(1208), - [anon_sym_use] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_POUND] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1206), - [anon_sym_COLON_COLON] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_DOT_DOT] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(1206), - [anon_sym_move] = ACTIONS(1208), - [sym_integer_literal] = ACTIONS(1206), - [aux_sym_string_literal_token1] = ACTIONS(1206), - [sym_char_literal] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1208), - [sym_super] = ACTIONS(1208), - [sym_crate] = ACTIONS(1208), - [sym_metavariable] = ACTIONS(1206), - [sym_raw_string_literal] = ACTIONS(1206), - [sym_float_literal] = ACTIONS(1206), - [sym_block_comment] = ACTIONS(3), - }, [272] = { [ts_builtin_sym_end] = ACTIONS(1210), [sym_identifier] = ACTIONS(1212), @@ -41507,6 +41589,158 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [273] = { + [sym__token_pattern] = STATE(243), + [sym_token_tree_pattern] = STATE(243), + [sym_token_binding_pattern] = STATE(243), + [sym_token_repetition_pattern] = STATE(243), + [sym__literal] = STATE(243), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_pattern_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1200), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [aux_sym__non_special_token_token1] = ACTIONS(1190), + [anon_sym_SQUOTE] = ACTIONS(1190), + [anon_sym_as] = ACTIONS(1190), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_await] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_fn] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_impl] = ACTIONS(1190), + [anon_sym_let] = ACTIONS(1190), + [anon_sym_loop] = ACTIONS(1190), + [anon_sym_match] = ACTIONS(1190), + [anon_sym_mod] = ACTIONS(1190), + [anon_sym_pub] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_trait] = ACTIONS(1190), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_unsafe] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1190), + [anon_sym_where] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [sym_mutable_specifier] = ACTIONS(1190), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(1190), + [sym_super] = ACTIONS(1190), + [sym_crate] = ACTIONS(1190), + [sym_metavariable] = ACTIONS(1208), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), + [sym_block_comment] = ACTIONS(3), + }, + [274] = { + [ts_builtin_sym_end] = ACTIONS(393), + [sym_identifier] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(393), + [anon_sym_macro_rules_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_async] = ACTIONS(395), + [anon_sym_break] = ACTIONS(395), + [anon_sym_const] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(395), + [anon_sym_default] = ACTIONS(395), + [anon_sym_enum] = ACTIONS(395), + [anon_sym_fn] = ACTIONS(395), + [anon_sym_for] = ACTIONS(395), + [anon_sym_if] = ACTIONS(395), + [anon_sym_impl] = ACTIONS(395), + [anon_sym_let] = ACTIONS(395), + [anon_sym_loop] = ACTIONS(395), + [anon_sym_match] = ACTIONS(395), + [anon_sym_mod] = ACTIONS(395), + [anon_sym_pub] = ACTIONS(395), + [anon_sym_return] = ACTIONS(395), + [anon_sym_static] = ACTIONS(395), + [anon_sym_struct] = ACTIONS(395), + [anon_sym_trait] = ACTIONS(395), + [anon_sym_type] = ACTIONS(395), + [anon_sym_union] = ACTIONS(395), + [anon_sym_unsafe] = ACTIONS(395), + [anon_sym_use] = ACTIONS(395), + [anon_sym_while] = ACTIONS(395), + [anon_sym_POUND] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_extern] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(393), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_move] = ACTIONS(395), + [sym_integer_literal] = ACTIONS(393), + [aux_sym_string_literal_token1] = ACTIONS(393), + [sym_char_literal] = ACTIONS(393), + [anon_sym_true] = ACTIONS(395), + [anon_sym_false] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(395), + [sym_super] = ACTIONS(395), + [sym_crate] = ACTIONS(395), + [sym_metavariable] = ACTIONS(393), + [sym_raw_string_literal] = ACTIONS(393), + [sym_float_literal] = ACTIONS(393), + [sym_block_comment] = ACTIONS(3), + }, + [275] = { [ts_builtin_sym_end] = ACTIONS(1214), [sym_identifier] = ACTIONS(1216), [anon_sym_SEMI] = ACTIONS(1214), @@ -41582,7 +41816,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1214), [sym_block_comment] = ACTIONS(3), }, - [274] = { + [276] = { [ts_builtin_sym_end] = ACTIONS(1218), [sym_identifier] = ACTIONS(1220), [anon_sym_SEMI] = ACTIONS(1218), @@ -41658,7 +41892,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1218), [sym_block_comment] = ACTIONS(3), }, - [275] = { + [277] = { [ts_builtin_sym_end] = ACTIONS(1222), [sym_identifier] = ACTIONS(1224), [anon_sym_SEMI] = ACTIONS(1222), @@ -41734,7 +41968,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1222), [sym_block_comment] = ACTIONS(3), }, - [276] = { + [278] = { + [ts_builtin_sym_end] = ACTIONS(397), + [sym_identifier] = ACTIONS(399), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_macro_rules_BANG] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_isize] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_f32] = ACTIONS(399), + [anon_sym_f64] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_str] = ACTIONS(399), + [anon_sym_char] = ACTIONS(399), + [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_async] = ACTIONS(399), + [anon_sym_break] = ACTIONS(399), + [anon_sym_const] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_default] = ACTIONS(399), + [anon_sym_enum] = ACTIONS(399), + [anon_sym_fn] = ACTIONS(399), + [anon_sym_for] = ACTIONS(399), + [anon_sym_if] = ACTIONS(399), + [anon_sym_impl] = ACTIONS(399), + [anon_sym_let] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(399), + [anon_sym_match] = ACTIONS(399), + [anon_sym_mod] = ACTIONS(399), + [anon_sym_pub] = ACTIONS(399), + [anon_sym_return] = ACTIONS(399), + [anon_sym_static] = ACTIONS(399), + [anon_sym_struct] = ACTIONS(399), + [anon_sym_trait] = ACTIONS(399), + [anon_sym_type] = ACTIONS(399), + [anon_sym_union] = ACTIONS(399), + [anon_sym_unsafe] = ACTIONS(399), + [anon_sym_use] = ACTIONS(399), + [anon_sym_while] = ACTIONS(399), + [anon_sym_POUND] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_extern] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_move] = ACTIONS(399), + [sym_integer_literal] = ACTIONS(397), + [aux_sym_string_literal_token1] = ACTIONS(397), + [sym_char_literal] = ACTIONS(397), + [anon_sym_true] = ACTIONS(399), + [anon_sym_false] = ACTIONS(399), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(399), + [sym_super] = ACTIONS(399), + [sym_crate] = ACTIONS(399), + [sym_metavariable] = ACTIONS(397), + [sym_raw_string_literal] = ACTIONS(397), + [sym_float_literal] = ACTIONS(397), + [sym_block_comment] = ACTIONS(3), + }, + [279] = { [ts_builtin_sym_end] = ACTIONS(1226), [sym_identifier] = ACTIONS(1228), [anon_sym_SEMI] = ACTIONS(1226), @@ -41810,7 +42120,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1226), [sym_block_comment] = ACTIONS(3), }, - [277] = { + [280] = { + [sym__token_pattern] = STATE(243), + [sym_token_tree_pattern] = STATE(243), + [sym_token_binding_pattern] = STATE(243), + [sym_token_repetition_pattern] = STATE(243), + [sym__literal] = STATE(243), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_pattern_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_RBRACK] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1200), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [aux_sym__non_special_token_token1] = ACTIONS(1190), + [anon_sym_SQUOTE] = ACTIONS(1190), + [anon_sym_as] = ACTIONS(1190), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_await] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_fn] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_impl] = ACTIONS(1190), + [anon_sym_let] = ACTIONS(1190), + [anon_sym_loop] = ACTIONS(1190), + [anon_sym_match] = ACTIONS(1190), + [anon_sym_mod] = ACTIONS(1190), + [anon_sym_pub] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_trait] = ACTIONS(1190), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_unsafe] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1190), + [anon_sym_where] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [sym_mutable_specifier] = ACTIONS(1190), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(1190), + [sym_super] = ACTIONS(1190), + [sym_crate] = ACTIONS(1190), + [sym_metavariable] = ACTIONS(1208), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), + [sym_block_comment] = ACTIONS(3), + }, + [281] = { [ts_builtin_sym_end] = ACTIONS(1230), [sym_identifier] = ACTIONS(1232), [anon_sym_SEMI] = ACTIONS(1230), @@ -41886,7 +42272,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1230), [sym_block_comment] = ACTIONS(3), }, - [278] = { + [282] = { + [ts_builtin_sym_end] = ACTIONS(389), + [sym_identifier] = ACTIONS(391), + [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_macro_rules_BANG] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_u8] = ACTIONS(391), + [anon_sym_i8] = ACTIONS(391), + [anon_sym_u16] = ACTIONS(391), + [anon_sym_i16] = ACTIONS(391), + [anon_sym_u32] = ACTIONS(391), + [anon_sym_i32] = ACTIONS(391), + [anon_sym_u64] = ACTIONS(391), + [anon_sym_i64] = ACTIONS(391), + [anon_sym_u128] = ACTIONS(391), + [anon_sym_i128] = ACTIONS(391), + [anon_sym_isize] = ACTIONS(391), + [anon_sym_usize] = ACTIONS(391), + [anon_sym_f32] = ACTIONS(391), + [anon_sym_f64] = ACTIONS(391), + [anon_sym_bool] = ACTIONS(391), + [anon_sym_str] = ACTIONS(391), + [anon_sym_char] = ACTIONS(391), + [anon_sym_SQUOTE] = ACTIONS(391), + [anon_sym_async] = ACTIONS(391), + [anon_sym_break] = ACTIONS(391), + [anon_sym_const] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_default] = ACTIONS(391), + [anon_sym_enum] = ACTIONS(391), + [anon_sym_fn] = ACTIONS(391), + [anon_sym_for] = ACTIONS(391), + [anon_sym_if] = ACTIONS(391), + [anon_sym_impl] = ACTIONS(391), + [anon_sym_let] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(391), + [anon_sym_match] = ACTIONS(391), + [anon_sym_mod] = ACTIONS(391), + [anon_sym_pub] = ACTIONS(391), + [anon_sym_return] = ACTIONS(391), + [anon_sym_static] = ACTIONS(391), + [anon_sym_struct] = ACTIONS(391), + [anon_sym_trait] = ACTIONS(391), + [anon_sym_type] = ACTIONS(391), + [anon_sym_union] = ACTIONS(391), + [anon_sym_unsafe] = ACTIONS(391), + [anon_sym_use] = ACTIONS(391), + [anon_sym_while] = ACTIONS(391), + [anon_sym_POUND] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_extern] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_move] = ACTIONS(391), + [sym_integer_literal] = ACTIONS(389), + [aux_sym_string_literal_token1] = ACTIONS(389), + [sym_char_literal] = ACTIONS(389), + [anon_sym_true] = ACTIONS(391), + [anon_sym_false] = ACTIONS(391), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(391), + [sym_super] = ACTIONS(391), + [sym_crate] = ACTIONS(391), + [sym_metavariable] = ACTIONS(389), + [sym_raw_string_literal] = ACTIONS(389), + [sym_float_literal] = ACTIONS(389), + [sym_block_comment] = ACTIONS(3), + }, + [283] = { [ts_builtin_sym_end] = ACTIONS(1234), [sym_identifier] = ACTIONS(1236), [anon_sym_SEMI] = ACTIONS(1234), @@ -41962,7 +42424,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1234), [sym_block_comment] = ACTIONS(3), }, - [279] = { + [284] = { [ts_builtin_sym_end] = ACTIONS(1238), [sym_identifier] = ACTIONS(1240), [anon_sym_SEMI] = ACTIONS(1238), @@ -42038,7 +42500,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1238), [sym_block_comment] = ACTIONS(3), }, - [280] = { + [285] = { [ts_builtin_sym_end] = ACTIONS(1242), [sym_identifier] = ACTIONS(1244), [anon_sym_SEMI] = ACTIONS(1242), @@ -42114,7 +42576,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1242), [sym_block_comment] = ACTIONS(3), }, - [281] = { + [286] = { [ts_builtin_sym_end] = ACTIONS(1246), [sym_identifier] = ACTIONS(1248), [anon_sym_SEMI] = ACTIONS(1246), @@ -42190,10808 +42652,10737 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1246), [sym_block_comment] = ACTIONS(3), }, - [282] = { - [ts_builtin_sym_end] = ACTIONS(1250), - [sym_identifier] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_macro_rules_BANG] = ACTIONS(1250), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_u8] = ACTIONS(1252), - [anon_sym_i8] = ACTIONS(1252), - [anon_sym_u16] = ACTIONS(1252), - [anon_sym_i16] = ACTIONS(1252), - [anon_sym_u32] = ACTIONS(1252), - [anon_sym_i32] = ACTIONS(1252), - [anon_sym_u64] = ACTIONS(1252), - [anon_sym_i64] = ACTIONS(1252), - [anon_sym_u128] = ACTIONS(1252), - [anon_sym_i128] = ACTIONS(1252), - [anon_sym_isize] = ACTIONS(1252), - [anon_sym_usize] = ACTIONS(1252), - [anon_sym_f32] = ACTIONS(1252), - [anon_sym_f64] = ACTIONS(1252), - [anon_sym_bool] = ACTIONS(1252), - [anon_sym_str] = ACTIONS(1252), - [anon_sym_char] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1252), - [anon_sym_async] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_fn] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_impl] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_pub] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_trait] = ACTIONS(1252), - [anon_sym_type] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_unsafe] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_DOT_DOT] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_PIPE] = ACTIONS(1250), - [anon_sym_move] = ACTIONS(1252), - [sym_integer_literal] = ACTIONS(1250), - [aux_sym_string_literal_token1] = ACTIONS(1250), - [sym_char_literal] = ACTIONS(1250), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1252), - [sym_super] = ACTIONS(1252), - [sym_crate] = ACTIONS(1252), - [sym_metavariable] = ACTIONS(1250), - [sym_raw_string_literal] = ACTIONS(1250), - [sym_float_literal] = ACTIONS(1250), - [sym_block_comment] = ACTIONS(3), - }, - [283] = { - [ts_builtin_sym_end] = ACTIONS(1254), - [sym_identifier] = ACTIONS(1256), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_macro_rules_BANG] = ACTIONS(1254), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_u8] = ACTIONS(1256), - [anon_sym_i8] = ACTIONS(1256), - [anon_sym_u16] = ACTIONS(1256), - [anon_sym_i16] = ACTIONS(1256), - [anon_sym_u32] = ACTIONS(1256), - [anon_sym_i32] = ACTIONS(1256), - [anon_sym_u64] = ACTIONS(1256), - [anon_sym_i64] = ACTIONS(1256), - [anon_sym_u128] = ACTIONS(1256), - [anon_sym_i128] = ACTIONS(1256), - [anon_sym_isize] = ACTIONS(1256), - [anon_sym_usize] = ACTIONS(1256), - [anon_sym_f32] = ACTIONS(1256), - [anon_sym_f64] = ACTIONS(1256), - [anon_sym_bool] = ACTIONS(1256), - [anon_sym_str] = ACTIONS(1256), - [anon_sym_char] = ACTIONS(1256), - [anon_sym_SQUOTE] = ACTIONS(1256), - [anon_sym_async] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_fn] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_impl] = ACTIONS(1256), - [anon_sym_let] = ACTIONS(1256), - [anon_sym_loop] = ACTIONS(1256), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_mod] = ACTIONS(1256), - [anon_sym_pub] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_trait] = ACTIONS(1256), - [anon_sym_type] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_unsafe] = ACTIONS(1256), - [anon_sym_use] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_POUND] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1254), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_move] = ACTIONS(1256), - [sym_integer_literal] = ACTIONS(1254), - [aux_sym_string_literal_token1] = ACTIONS(1254), - [sym_char_literal] = ACTIONS(1254), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1256), - [sym_super] = ACTIONS(1256), - [sym_crate] = ACTIONS(1256), - [sym_metavariable] = ACTIONS(1254), - [sym_raw_string_literal] = ACTIONS(1254), - [sym_float_literal] = ACTIONS(1254), - [sym_block_comment] = ACTIONS(3), - }, - [284] = { - [ts_builtin_sym_end] = ACTIONS(1258), - [sym_identifier] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_macro_rules_BANG] = ACTIONS(1258), - [anon_sym_LPAREN] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_RBRACE] = ACTIONS(1258), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1260), - [anon_sym_async] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [anon_sym_fn] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_impl] = ACTIONS(1260), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_loop] = ACTIONS(1260), - [anon_sym_match] = ACTIONS(1260), - [anon_sym_mod] = ACTIONS(1260), - [anon_sym_pub] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_trait] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_unsafe] = ACTIONS(1260), - [anon_sym_use] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_POUND] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_COLON_COLON] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_DOT_DOT] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_move] = ACTIONS(1260), - [sym_integer_literal] = ACTIONS(1258), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1258), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1260), - [sym_super] = ACTIONS(1260), - [sym_crate] = ACTIONS(1260), - [sym_metavariable] = ACTIONS(1258), - [sym_raw_string_literal] = ACTIONS(1258), - [sym_float_literal] = ACTIONS(1258), - [sym_block_comment] = ACTIONS(3), - }, - [285] = { - [ts_builtin_sym_end] = ACTIONS(1262), - [sym_identifier] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_macro_rules_BANG] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1264), - [anon_sym_i8] = ACTIONS(1264), - [anon_sym_u16] = ACTIONS(1264), - [anon_sym_i16] = ACTIONS(1264), - [anon_sym_u32] = ACTIONS(1264), - [anon_sym_i32] = ACTIONS(1264), - [anon_sym_u64] = ACTIONS(1264), - [anon_sym_i64] = ACTIONS(1264), - [anon_sym_u128] = ACTIONS(1264), - [anon_sym_i128] = ACTIONS(1264), - [anon_sym_isize] = ACTIONS(1264), - [anon_sym_usize] = ACTIONS(1264), - [anon_sym_f32] = ACTIONS(1264), - [anon_sym_f64] = ACTIONS(1264), - [anon_sym_bool] = ACTIONS(1264), - [anon_sym_str] = ACTIONS(1264), - [anon_sym_char] = ACTIONS(1264), - [anon_sym_SQUOTE] = ACTIONS(1264), - [anon_sym_async] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_fn] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_impl] = ACTIONS(1264), - [anon_sym_let] = ACTIONS(1264), - [anon_sym_loop] = ACTIONS(1264), - [anon_sym_match] = ACTIONS(1264), - [anon_sym_mod] = ACTIONS(1264), - [anon_sym_pub] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_trait] = ACTIONS(1264), - [anon_sym_type] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_unsafe] = ACTIONS(1264), - [anon_sym_use] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_POUND] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1262), - [anon_sym_COLON_COLON] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_DOT_DOT] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_PIPE] = ACTIONS(1262), - [anon_sym_move] = ACTIONS(1264), - [sym_integer_literal] = ACTIONS(1262), - [aux_sym_string_literal_token1] = ACTIONS(1262), - [sym_char_literal] = ACTIONS(1262), - [anon_sym_true] = ACTIONS(1264), - [anon_sym_false] = ACTIONS(1264), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1264), - [sym_super] = ACTIONS(1264), - [sym_crate] = ACTIONS(1264), - [sym_metavariable] = ACTIONS(1262), - [sym_raw_string_literal] = ACTIONS(1262), - [sym_float_literal] = ACTIONS(1262), - [sym_block_comment] = ACTIONS(3), - }, - [286] = { - [ts_builtin_sym_end] = ACTIONS(1266), - [sym_identifier] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym_macro_rules_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(1266), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_RBRACE] = ACTIONS(1266), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_u8] = ACTIONS(1268), - [anon_sym_i8] = ACTIONS(1268), - [anon_sym_u16] = ACTIONS(1268), - [anon_sym_i16] = ACTIONS(1268), - [anon_sym_u32] = ACTIONS(1268), - [anon_sym_i32] = ACTIONS(1268), - [anon_sym_u64] = ACTIONS(1268), - [anon_sym_i64] = ACTIONS(1268), - [anon_sym_u128] = ACTIONS(1268), - [anon_sym_i128] = ACTIONS(1268), - [anon_sym_isize] = ACTIONS(1268), - [anon_sym_usize] = ACTIONS(1268), - [anon_sym_f32] = ACTIONS(1268), - [anon_sym_f64] = ACTIONS(1268), - [anon_sym_bool] = ACTIONS(1268), - [anon_sym_str] = ACTIONS(1268), - [anon_sym_char] = ACTIONS(1268), - [anon_sym_SQUOTE] = ACTIONS(1268), - [anon_sym_async] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_fn] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_impl] = ACTIONS(1268), - [anon_sym_let] = ACTIONS(1268), - [anon_sym_loop] = ACTIONS(1268), - [anon_sym_match] = ACTIONS(1268), - [anon_sym_mod] = ACTIONS(1268), - [anon_sym_pub] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_trait] = ACTIONS(1268), - [anon_sym_type] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_unsafe] = ACTIONS(1268), - [anon_sym_use] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_POUND] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_DOT_DOT] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_move] = ACTIONS(1268), - [sym_integer_literal] = ACTIONS(1266), - [aux_sym_string_literal_token1] = ACTIONS(1266), - [sym_char_literal] = ACTIONS(1266), - [anon_sym_true] = ACTIONS(1268), - [anon_sym_false] = ACTIONS(1268), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1268), - [sym_super] = ACTIONS(1268), - [sym_crate] = ACTIONS(1268), - [sym_metavariable] = ACTIONS(1266), - [sym_raw_string_literal] = ACTIONS(1266), - [sym_float_literal] = ACTIONS(1266), - [sym_block_comment] = ACTIONS(3), - }, [287] = { - [sym__token_pattern] = STATE(239), - [sym_token_tree_pattern] = STATE(239), - [sym_token_binding_pattern] = STATE(239), - [sym_token_repetition_pattern] = STATE(239), - [sym__literal] = STATE(239), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1270), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_RPAREN] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [anon_sym_u8] = ACTIONS(1270), - [anon_sym_i8] = ACTIONS(1270), - [anon_sym_u16] = ACTIONS(1270), - [anon_sym_i16] = ACTIONS(1270), - [anon_sym_u32] = ACTIONS(1270), - [anon_sym_i32] = ACTIONS(1270), - [anon_sym_u64] = ACTIONS(1270), - [anon_sym_i64] = ACTIONS(1270), - [anon_sym_u128] = ACTIONS(1270), - [anon_sym_i128] = ACTIONS(1270), - [anon_sym_isize] = ACTIONS(1270), - [anon_sym_usize] = ACTIONS(1270), - [anon_sym_f32] = ACTIONS(1270), - [anon_sym_f64] = ACTIONS(1270), - [anon_sym_bool] = ACTIONS(1270), - [anon_sym_str] = ACTIONS(1270), - [anon_sym_char] = ACTIONS(1270), - [aux_sym__non_special_token_token1] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_as] = ACTIONS(1270), - [anon_sym_async] = ACTIONS(1270), - [anon_sym_await] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_fn] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_impl] = ACTIONS(1270), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_loop] = ACTIONS(1270), - [anon_sym_match] = ACTIONS(1270), - [anon_sym_mod] = ACTIONS(1270), - [anon_sym_pub] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_trait] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_unsafe] = ACTIONS(1270), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_where] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [sym_mutable_specifier] = ACTIONS(1270), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1116), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_token_tree] = STATE(287), + [sym_token_repetition] = STATE(287), + [sym__literal] = STATE(287), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(287), + [sym_identifier] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1253), + [anon_sym_RPAREN] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1256), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1264), + [anon_sym_u8] = ACTIONS(1250), + [anon_sym_i8] = ACTIONS(1250), + [anon_sym_u16] = ACTIONS(1250), + [anon_sym_i16] = ACTIONS(1250), + [anon_sym_u32] = ACTIONS(1250), + [anon_sym_i32] = ACTIONS(1250), + [anon_sym_u64] = ACTIONS(1250), + [anon_sym_i64] = ACTIONS(1250), + [anon_sym_u128] = ACTIONS(1250), + [anon_sym_i128] = ACTIONS(1250), + [anon_sym_isize] = ACTIONS(1250), + [anon_sym_usize] = ACTIONS(1250), + [anon_sym_f32] = ACTIONS(1250), + [anon_sym_f64] = ACTIONS(1250), + [anon_sym_bool] = ACTIONS(1250), + [anon_sym_str] = ACTIONS(1250), + [anon_sym_char] = ACTIONS(1250), + [aux_sym__non_special_token_token1] = ACTIONS(1250), + [anon_sym_SQUOTE] = ACTIONS(1250), + [anon_sym_as] = ACTIONS(1250), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_await] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_fn] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_impl] = ACTIONS(1250), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_loop] = ACTIONS(1250), + [anon_sym_match] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1250), + [anon_sym_pub] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_trait] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_unsafe] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1250), + [anon_sym_where] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [sym_mutable_specifier] = ACTIONS(1250), + [sym_integer_literal] = ACTIONS(1267), + [aux_sym_string_literal_token1] = ACTIONS(1270), + [sym_char_literal] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1273), + [anon_sym_false] = ACTIONS(1273), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1250), + [sym_crate] = ACTIONS(1250), + [sym_metavariable] = ACTIONS(1276), + [sym_raw_string_literal] = ACTIONS(1267), + [sym_float_literal] = ACTIONS(1267), [sym_block_comment] = ACTIONS(3), }, [288] = { - [ts_builtin_sym_end] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_macro_rules_BANG] = ACTIONS(1274), - [anon_sym_LPAREN] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_u8] = ACTIONS(1276), - [anon_sym_i8] = ACTIONS(1276), - [anon_sym_u16] = ACTIONS(1276), - [anon_sym_i16] = ACTIONS(1276), - [anon_sym_u32] = ACTIONS(1276), - [anon_sym_i32] = ACTIONS(1276), - [anon_sym_u64] = ACTIONS(1276), - [anon_sym_i64] = ACTIONS(1276), - [anon_sym_u128] = ACTIONS(1276), - [anon_sym_i128] = ACTIONS(1276), - [anon_sym_isize] = ACTIONS(1276), - [anon_sym_usize] = ACTIONS(1276), - [anon_sym_f32] = ACTIONS(1276), - [anon_sym_f64] = ACTIONS(1276), - [anon_sym_bool] = ACTIONS(1276), - [anon_sym_str] = ACTIONS(1276), - [anon_sym_char] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_async] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_fn] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_impl] = ACTIONS(1276), - [anon_sym_let] = ACTIONS(1276), - [anon_sym_loop] = ACTIONS(1276), - [anon_sym_match] = ACTIONS(1276), - [anon_sym_mod] = ACTIONS(1276), - [anon_sym_pub] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_trait] = ACTIONS(1276), - [anon_sym_type] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_unsafe] = ACTIONS(1276), - [anon_sym_use] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_POUND] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_DOT_DOT] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1274), - [anon_sym_move] = ACTIONS(1276), - [sym_integer_literal] = ACTIONS(1274), - [aux_sym_string_literal_token1] = ACTIONS(1274), - [sym_char_literal] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1276), - [anon_sym_false] = ACTIONS(1276), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1276), - [sym_super] = ACTIONS(1276), - [sym_crate] = ACTIONS(1276), - [sym_metavariable] = ACTIONS(1274), - [sym_raw_string_literal] = ACTIONS(1274), - [sym_float_literal] = ACTIONS(1274), + [ts_builtin_sym_end] = ACTIONS(1279), + [sym_identifier] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_macro_rules_BANG] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_RBRACE] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_u8] = ACTIONS(1281), + [anon_sym_i8] = ACTIONS(1281), + [anon_sym_u16] = ACTIONS(1281), + [anon_sym_i16] = ACTIONS(1281), + [anon_sym_u32] = ACTIONS(1281), + [anon_sym_i32] = ACTIONS(1281), + [anon_sym_u64] = ACTIONS(1281), + [anon_sym_i64] = ACTIONS(1281), + [anon_sym_u128] = ACTIONS(1281), + [anon_sym_i128] = ACTIONS(1281), + [anon_sym_isize] = ACTIONS(1281), + [anon_sym_usize] = ACTIONS(1281), + [anon_sym_f32] = ACTIONS(1281), + [anon_sym_f64] = ACTIONS(1281), + [anon_sym_bool] = ACTIONS(1281), + [anon_sym_str] = ACTIONS(1281), + [anon_sym_char] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_break] = ACTIONS(1281), + [anon_sym_const] = ACTIONS(1281), + [anon_sym_continue] = ACTIONS(1281), + [anon_sym_default] = ACTIONS(1281), + [anon_sym_enum] = ACTIONS(1281), + [anon_sym_fn] = ACTIONS(1281), + [anon_sym_for] = ACTIONS(1281), + [anon_sym_if] = ACTIONS(1281), + [anon_sym_impl] = ACTIONS(1281), + [anon_sym_let] = ACTIONS(1281), + [anon_sym_loop] = ACTIONS(1281), + [anon_sym_match] = ACTIONS(1281), + [anon_sym_mod] = ACTIONS(1281), + [anon_sym_pub] = ACTIONS(1281), + [anon_sym_return] = ACTIONS(1281), + [anon_sym_static] = ACTIONS(1281), + [anon_sym_struct] = ACTIONS(1281), + [anon_sym_trait] = ACTIONS(1281), + [anon_sym_type] = ACTIONS(1281), + [anon_sym_union] = ACTIONS(1281), + [anon_sym_unsafe] = ACTIONS(1281), + [anon_sym_use] = ACTIONS(1281), + [anon_sym_while] = ACTIONS(1281), + [anon_sym_POUND] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1279), + [anon_sym_COLON_COLON] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_move] = ACTIONS(1281), + [sym_integer_literal] = ACTIONS(1279), + [aux_sym_string_literal_token1] = ACTIONS(1279), + [sym_char_literal] = ACTIONS(1279), + [anon_sym_true] = ACTIONS(1281), + [anon_sym_false] = ACTIONS(1281), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1281), + [sym_super] = ACTIONS(1281), + [sym_crate] = ACTIONS(1281), + [sym_metavariable] = ACTIONS(1279), + [sym_raw_string_literal] = ACTIONS(1279), + [sym_float_literal] = ACTIONS(1279), [sym_block_comment] = ACTIONS(3), }, [289] = { - [ts_builtin_sym_end] = ACTIONS(1278), - [sym_identifier] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_macro_rules_BANG] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_u8] = ACTIONS(1280), - [anon_sym_i8] = ACTIONS(1280), - [anon_sym_u16] = ACTIONS(1280), - [anon_sym_i16] = ACTIONS(1280), - [anon_sym_u32] = ACTIONS(1280), - [anon_sym_i32] = ACTIONS(1280), - [anon_sym_u64] = ACTIONS(1280), - [anon_sym_i64] = ACTIONS(1280), - [anon_sym_u128] = ACTIONS(1280), - [anon_sym_i128] = ACTIONS(1280), - [anon_sym_isize] = ACTIONS(1280), - [anon_sym_usize] = ACTIONS(1280), - [anon_sym_f32] = ACTIONS(1280), - [anon_sym_f64] = ACTIONS(1280), - [anon_sym_bool] = ACTIONS(1280), - [anon_sym_str] = ACTIONS(1280), - [anon_sym_char] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_fn] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_impl] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_pub] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_trait] = ACTIONS(1280), - [anon_sym_type] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_unsafe] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_DOT_DOT] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_move] = ACTIONS(1280), - [sym_integer_literal] = ACTIONS(1278), - [aux_sym_string_literal_token1] = ACTIONS(1278), - [sym_char_literal] = ACTIONS(1278), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1280), - [sym_super] = ACTIONS(1280), - [sym_crate] = ACTIONS(1280), - [sym_metavariable] = ACTIONS(1278), - [sym_raw_string_literal] = ACTIONS(1278), - [sym_float_literal] = ACTIONS(1278), + [ts_builtin_sym_end] = ACTIONS(1283), + [sym_identifier] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_macro_rules_BANG] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1283), + [anon_sym_RBRACE] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_u8] = ACTIONS(1285), + [anon_sym_i8] = ACTIONS(1285), + [anon_sym_u16] = ACTIONS(1285), + [anon_sym_i16] = ACTIONS(1285), + [anon_sym_u32] = ACTIONS(1285), + [anon_sym_i32] = ACTIONS(1285), + [anon_sym_u64] = ACTIONS(1285), + [anon_sym_i64] = ACTIONS(1285), + [anon_sym_u128] = ACTIONS(1285), + [anon_sym_i128] = ACTIONS(1285), + [anon_sym_isize] = ACTIONS(1285), + [anon_sym_usize] = ACTIONS(1285), + [anon_sym_f32] = ACTIONS(1285), + [anon_sym_f64] = ACTIONS(1285), + [anon_sym_bool] = ACTIONS(1285), + [anon_sym_str] = ACTIONS(1285), + [anon_sym_char] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1285), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_break] = ACTIONS(1285), + [anon_sym_const] = ACTIONS(1285), + [anon_sym_continue] = ACTIONS(1285), + [anon_sym_default] = ACTIONS(1285), + [anon_sym_enum] = ACTIONS(1285), + [anon_sym_fn] = ACTIONS(1285), + [anon_sym_for] = ACTIONS(1285), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_impl] = ACTIONS(1285), + [anon_sym_let] = ACTIONS(1285), + [anon_sym_loop] = ACTIONS(1285), + [anon_sym_match] = ACTIONS(1285), + [anon_sym_mod] = ACTIONS(1285), + [anon_sym_pub] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1285), + [anon_sym_static] = ACTIONS(1285), + [anon_sym_struct] = ACTIONS(1285), + [anon_sym_trait] = ACTIONS(1285), + [anon_sym_type] = ACTIONS(1285), + [anon_sym_union] = ACTIONS(1285), + [anon_sym_unsafe] = ACTIONS(1285), + [anon_sym_use] = ACTIONS(1285), + [anon_sym_while] = ACTIONS(1285), + [anon_sym_POUND] = ACTIONS(1283), + [anon_sym_BANG] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_COLON_COLON] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_move] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1283), + [aux_sym_string_literal_token1] = ACTIONS(1283), + [sym_char_literal] = ACTIONS(1283), + [anon_sym_true] = ACTIONS(1285), + [anon_sym_false] = ACTIONS(1285), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1285), + [sym_super] = ACTIONS(1285), + [sym_crate] = ACTIONS(1285), + [sym_metavariable] = ACTIONS(1283), + [sym_raw_string_literal] = ACTIONS(1283), + [sym_float_literal] = ACTIONS(1283), [sym_block_comment] = ACTIONS(3), }, [290] = { - [ts_builtin_sym_end] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_macro_rules_BANG] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_u8] = ACTIONS(1284), - [anon_sym_i8] = ACTIONS(1284), - [anon_sym_u16] = ACTIONS(1284), - [anon_sym_i16] = ACTIONS(1284), - [anon_sym_u32] = ACTIONS(1284), - [anon_sym_i32] = ACTIONS(1284), - [anon_sym_u64] = ACTIONS(1284), - [anon_sym_i64] = ACTIONS(1284), - [anon_sym_u128] = ACTIONS(1284), - [anon_sym_i128] = ACTIONS(1284), - [anon_sym_isize] = ACTIONS(1284), - [anon_sym_usize] = ACTIONS(1284), - [anon_sym_f32] = ACTIONS(1284), - [anon_sym_f64] = ACTIONS(1284), - [anon_sym_bool] = ACTIONS(1284), - [anon_sym_str] = ACTIONS(1284), - [anon_sym_char] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_fn] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_impl] = ACTIONS(1284), - [anon_sym_let] = ACTIONS(1284), - [anon_sym_loop] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1284), - [anon_sym_mod] = ACTIONS(1284), - [anon_sym_pub] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_trait] = ACTIONS(1284), - [anon_sym_type] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_use] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_POUND] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1282), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_DOT_DOT] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1282), - [anon_sym_move] = ACTIONS(1284), - [sym_integer_literal] = ACTIONS(1282), - [aux_sym_string_literal_token1] = ACTIONS(1282), - [sym_char_literal] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1284), - [anon_sym_false] = ACTIONS(1284), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1284), - [sym_super] = ACTIONS(1284), - [sym_crate] = ACTIONS(1284), - [sym_metavariable] = ACTIONS(1282), - [sym_raw_string_literal] = ACTIONS(1282), - [sym_float_literal] = ACTIONS(1282), + [sym_attribute_item] = STATE(500), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_macro_invocation] = STATE(2317), + [sym_scoped_identifier] = STATE(1472), + [sym_scoped_type_identifier] = STATE(1899), + [sym_match_arm] = STATE(466), + [sym_last_match_arm] = STATE(2258), + [sym_match_pattern] = STATE(2324), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1855), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_enum_variant_list_repeat1] = STATE(500), + [aux_sym_match_block_repeat1] = STATE(466), + [sym_identifier] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_ref] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [291] = { - [ts_builtin_sym_end] = ACTIONS(1286), - [sym_identifier] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_macro_rules_BANG] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_u8] = ACTIONS(1288), - [anon_sym_i8] = ACTIONS(1288), - [anon_sym_u16] = ACTIONS(1288), - [anon_sym_i16] = ACTIONS(1288), - [anon_sym_u32] = ACTIONS(1288), - [anon_sym_i32] = ACTIONS(1288), - [anon_sym_u64] = ACTIONS(1288), - [anon_sym_i64] = ACTIONS(1288), - [anon_sym_u128] = ACTIONS(1288), - [anon_sym_i128] = ACTIONS(1288), - [anon_sym_isize] = ACTIONS(1288), - [anon_sym_usize] = ACTIONS(1288), - [anon_sym_f32] = ACTIONS(1288), - [anon_sym_f64] = ACTIONS(1288), - [anon_sym_bool] = ACTIONS(1288), - [anon_sym_str] = ACTIONS(1288), - [anon_sym_char] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_impl] = ACTIONS(1288), - [anon_sym_let] = ACTIONS(1288), - [anon_sym_loop] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1288), - [anon_sym_mod] = ACTIONS(1288), - [anon_sym_pub] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_trait] = ACTIONS(1288), - [anon_sym_type] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_use] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1286), - [anon_sym_COLON_COLON] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_move] = ACTIONS(1288), - [sym_integer_literal] = ACTIONS(1286), - [aux_sym_string_literal_token1] = ACTIONS(1286), - [sym_char_literal] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1288), - [anon_sym_false] = ACTIONS(1288), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1288), - [sym_super] = ACTIONS(1288), - [sym_crate] = ACTIONS(1288), - [sym_metavariable] = ACTIONS(1286), - [sym_raw_string_literal] = ACTIONS(1286), - [sym_float_literal] = ACTIONS(1286), + [ts_builtin_sym_end] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1287), + [anon_sym_macro_rules_BANG] = ACTIONS(1287), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1287), + [anon_sym_RBRACE] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_u8] = ACTIONS(1289), + [anon_sym_i8] = ACTIONS(1289), + [anon_sym_u16] = ACTIONS(1289), + [anon_sym_i16] = ACTIONS(1289), + [anon_sym_u32] = ACTIONS(1289), + [anon_sym_i32] = ACTIONS(1289), + [anon_sym_u64] = ACTIONS(1289), + [anon_sym_i64] = ACTIONS(1289), + [anon_sym_u128] = ACTIONS(1289), + [anon_sym_i128] = ACTIONS(1289), + [anon_sym_isize] = ACTIONS(1289), + [anon_sym_usize] = ACTIONS(1289), + [anon_sym_f32] = ACTIONS(1289), + [anon_sym_f64] = ACTIONS(1289), + [anon_sym_bool] = ACTIONS(1289), + [anon_sym_str] = ACTIONS(1289), + [anon_sym_char] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_async] = ACTIONS(1289), + [anon_sym_break] = ACTIONS(1289), + [anon_sym_const] = ACTIONS(1289), + [anon_sym_continue] = ACTIONS(1289), + [anon_sym_default] = ACTIONS(1289), + [anon_sym_enum] = ACTIONS(1289), + [anon_sym_fn] = ACTIONS(1289), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_if] = ACTIONS(1289), + [anon_sym_impl] = ACTIONS(1289), + [anon_sym_let] = ACTIONS(1289), + [anon_sym_loop] = ACTIONS(1289), + [anon_sym_match] = ACTIONS(1289), + [anon_sym_mod] = ACTIONS(1289), + [anon_sym_pub] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(1289), + [anon_sym_static] = ACTIONS(1289), + [anon_sym_struct] = ACTIONS(1289), + [anon_sym_trait] = ACTIONS(1289), + [anon_sym_type] = ACTIONS(1289), + [anon_sym_union] = ACTIONS(1289), + [anon_sym_unsafe] = ACTIONS(1289), + [anon_sym_use] = ACTIONS(1289), + [anon_sym_while] = ACTIONS(1289), + [anon_sym_POUND] = ACTIONS(1287), + [anon_sym_BANG] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_DOT_DOT] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_move] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1287), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1289), + [anon_sym_false] = ACTIONS(1289), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1289), + [sym_super] = ACTIONS(1289), + [sym_crate] = ACTIONS(1289), + [sym_metavariable] = ACTIONS(1287), + [sym_raw_string_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1287), [sym_block_comment] = ACTIONS(3), }, [292] = { - [ts_builtin_sym_end] = ACTIONS(1290), - [sym_identifier] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_macro_rules_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_u8] = ACTIONS(1292), - [anon_sym_i8] = ACTIONS(1292), - [anon_sym_u16] = ACTIONS(1292), - [anon_sym_i16] = ACTIONS(1292), - [anon_sym_u32] = ACTIONS(1292), - [anon_sym_i32] = ACTIONS(1292), - [anon_sym_u64] = ACTIONS(1292), - [anon_sym_i64] = ACTIONS(1292), - [anon_sym_u128] = ACTIONS(1292), - [anon_sym_i128] = ACTIONS(1292), - [anon_sym_isize] = ACTIONS(1292), - [anon_sym_usize] = ACTIONS(1292), - [anon_sym_f32] = ACTIONS(1292), - [anon_sym_f64] = ACTIONS(1292), - [anon_sym_bool] = ACTIONS(1292), - [anon_sym_str] = ACTIONS(1292), - [anon_sym_char] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_async] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_fn] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1292), - [anon_sym_let] = ACTIONS(1292), - [anon_sym_loop] = ACTIONS(1292), - [anon_sym_match] = ACTIONS(1292), - [anon_sym_mod] = ACTIONS(1292), - [anon_sym_pub] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_trait] = ACTIONS(1292), - [anon_sym_type] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_unsafe] = ACTIONS(1292), - [anon_sym_use] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_POUND] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_COLON_COLON] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_DOT_DOT] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_move] = ACTIONS(1292), - [sym_integer_literal] = ACTIONS(1290), - [aux_sym_string_literal_token1] = ACTIONS(1290), - [sym_char_literal] = ACTIONS(1290), - [anon_sym_true] = ACTIONS(1292), - [anon_sym_false] = ACTIONS(1292), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1292), - [sym_super] = ACTIONS(1292), - [sym_crate] = ACTIONS(1292), - [sym_metavariable] = ACTIONS(1290), - [sym_raw_string_literal] = ACTIONS(1290), - [sym_float_literal] = ACTIONS(1290), + [ts_builtin_sym_end] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym_macro_rules_BANG] = ACTIONS(1291), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1291), + [anon_sym_RBRACE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = 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_SQUOTE] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_break] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_continue] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(1293), + [anon_sym_enum] = ACTIONS(1293), + [anon_sym_fn] = ACTIONS(1293), + [anon_sym_for] = ACTIONS(1293), + [anon_sym_if] = ACTIONS(1293), + [anon_sym_impl] = ACTIONS(1293), + [anon_sym_let] = ACTIONS(1293), + [anon_sym_loop] = ACTIONS(1293), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_mod] = ACTIONS(1293), + [anon_sym_pub] = ACTIONS(1293), + [anon_sym_return] = ACTIONS(1293), + [anon_sym_static] = ACTIONS(1293), + [anon_sym_struct] = ACTIONS(1293), + [anon_sym_trait] = ACTIONS(1293), + [anon_sym_type] = ACTIONS(1293), + [anon_sym_union] = ACTIONS(1293), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_use] = ACTIONS(1293), + [anon_sym_while] = ACTIONS(1293), + [anon_sym_POUND] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_COLON_COLON] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_move] = ACTIONS(1293), + [sym_integer_literal] = ACTIONS(1291), + [aux_sym_string_literal_token1] = ACTIONS(1291), + [sym_char_literal] = ACTIONS(1291), + [anon_sym_true] = ACTIONS(1293), + [anon_sym_false] = ACTIONS(1293), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1293), + [sym_super] = ACTIONS(1293), + [sym_crate] = ACTIONS(1293), + [sym_metavariable] = ACTIONS(1291), + [sym_raw_string_literal] = ACTIONS(1291), + [sym_float_literal] = ACTIONS(1291), [sym_block_comment] = ACTIONS(3), }, [293] = { - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_macro_rules_BANG] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_u8] = ACTIONS(1296), - [anon_sym_i8] = ACTIONS(1296), - [anon_sym_u16] = ACTIONS(1296), - [anon_sym_i16] = ACTIONS(1296), - [anon_sym_u32] = ACTIONS(1296), - [anon_sym_i32] = ACTIONS(1296), - [anon_sym_u64] = ACTIONS(1296), - [anon_sym_i64] = ACTIONS(1296), - [anon_sym_u128] = ACTIONS(1296), - [anon_sym_i128] = ACTIONS(1296), - [anon_sym_isize] = ACTIONS(1296), - [anon_sym_usize] = ACTIONS(1296), - [anon_sym_f32] = ACTIONS(1296), - [anon_sym_f64] = ACTIONS(1296), - [anon_sym_bool] = ACTIONS(1296), - [anon_sym_str] = ACTIONS(1296), - [anon_sym_char] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_async] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_fn] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1296), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_loop] = ACTIONS(1296), - [anon_sym_match] = ACTIONS(1296), - [anon_sym_mod] = ACTIONS(1296), - [anon_sym_pub] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_trait] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1296), - [anon_sym_use] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_POUND] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_COLON_COLON] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_move] = ACTIONS(1296), - [sym_integer_literal] = ACTIONS(1294), - [aux_sym_string_literal_token1] = ACTIONS(1294), - [sym_char_literal] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1296), - [sym_super] = ACTIONS(1296), - [sym_crate] = ACTIONS(1296), - [sym_metavariable] = ACTIONS(1294), - [sym_raw_string_literal] = ACTIONS(1294), - [sym_float_literal] = ACTIONS(1294), + [sym_attribute_item] = STATE(500), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_macro_invocation] = STATE(2317), + [sym_scoped_identifier] = STATE(1472), + [sym_scoped_type_identifier] = STATE(1899), + [sym_match_arm] = STATE(466), + [sym_last_match_arm] = STATE(2328), + [sym_match_pattern] = STATE(2324), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1855), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_enum_variant_list_repeat1] = STATE(500), + [aux_sym_match_block_repeat1] = STATE(466), + [sym_identifier] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_ref] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [294] = { - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_identifier] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_macro_rules_BANG] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_u8] = ACTIONS(1300), - [anon_sym_i8] = ACTIONS(1300), - [anon_sym_u16] = ACTIONS(1300), - [anon_sym_i16] = ACTIONS(1300), - [anon_sym_u32] = ACTIONS(1300), - [anon_sym_i32] = ACTIONS(1300), - [anon_sym_u64] = ACTIONS(1300), - [anon_sym_i64] = ACTIONS(1300), - [anon_sym_u128] = ACTIONS(1300), - [anon_sym_i128] = ACTIONS(1300), - [anon_sym_isize] = ACTIONS(1300), - [anon_sym_usize] = ACTIONS(1300), - [anon_sym_f32] = ACTIONS(1300), - [anon_sym_f64] = ACTIONS(1300), - [anon_sym_bool] = ACTIONS(1300), - [anon_sym_str] = ACTIONS(1300), - [anon_sym_char] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_async] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_fn] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_impl] = ACTIONS(1300), - [anon_sym_let] = ACTIONS(1300), - [anon_sym_loop] = ACTIONS(1300), - [anon_sym_match] = ACTIONS(1300), - [anon_sym_mod] = ACTIONS(1300), - [anon_sym_pub] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_trait] = ACTIONS(1300), - [anon_sym_type] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_unsafe] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_POUND] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_COLON_COLON] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_move] = ACTIONS(1300), - [sym_integer_literal] = ACTIONS(1298), - [aux_sym_string_literal_token1] = ACTIONS(1298), - [sym_char_literal] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1300), - [sym_super] = ACTIONS(1300), - [sym_crate] = ACTIONS(1300), - [sym_metavariable] = ACTIONS(1298), - [sym_raw_string_literal] = ACTIONS(1298), - [sym_float_literal] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1295), + [sym_identifier] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym_macro_rules_BANG] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_RBRACE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_break] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_continue] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_enum] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1297), + [anon_sym_for] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1297), + [anon_sym_impl] = ACTIONS(1297), + [anon_sym_let] = ACTIONS(1297), + [anon_sym_loop] = ACTIONS(1297), + [anon_sym_match] = ACTIONS(1297), + [anon_sym_mod] = ACTIONS(1297), + [anon_sym_pub] = ACTIONS(1297), + [anon_sym_return] = ACTIONS(1297), + [anon_sym_static] = ACTIONS(1297), + [anon_sym_struct] = ACTIONS(1297), + [anon_sym_trait] = ACTIONS(1297), + [anon_sym_type] = ACTIONS(1297), + [anon_sym_union] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_use] = ACTIONS(1297), + [anon_sym_while] = ACTIONS(1297), + [anon_sym_POUND] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(1295), + [anon_sym_COLON_COLON] = ACTIONS(1295), + [anon_sym_AMP] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_PIPE] = ACTIONS(1295), + [anon_sym_move] = ACTIONS(1297), + [sym_integer_literal] = ACTIONS(1295), + [aux_sym_string_literal_token1] = ACTIONS(1295), + [sym_char_literal] = ACTIONS(1295), + [anon_sym_true] = ACTIONS(1297), + [anon_sym_false] = ACTIONS(1297), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1297), + [sym_super] = ACTIONS(1297), + [sym_crate] = ACTIONS(1297), + [sym_metavariable] = ACTIONS(1295), + [sym_raw_string_literal] = ACTIONS(1295), + [sym_float_literal] = ACTIONS(1295), [sym_block_comment] = ACTIONS(3), }, [295] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_identifier] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_macro_rules_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_u8] = ACTIONS(1304), - [anon_sym_i8] = ACTIONS(1304), - [anon_sym_u16] = ACTIONS(1304), - [anon_sym_i16] = ACTIONS(1304), - [anon_sym_u32] = ACTIONS(1304), - [anon_sym_i32] = ACTIONS(1304), - [anon_sym_u64] = ACTIONS(1304), - [anon_sym_i64] = ACTIONS(1304), - [anon_sym_u128] = ACTIONS(1304), - [anon_sym_i128] = ACTIONS(1304), - [anon_sym_isize] = ACTIONS(1304), - [anon_sym_usize] = ACTIONS(1304), - [anon_sym_f32] = ACTIONS(1304), - [anon_sym_f64] = ACTIONS(1304), - [anon_sym_bool] = ACTIONS(1304), - [anon_sym_str] = ACTIONS(1304), - [anon_sym_char] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_async] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_fn] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_impl] = ACTIONS(1304), - [anon_sym_let] = ACTIONS(1304), - [anon_sym_loop] = ACTIONS(1304), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_mod] = ACTIONS(1304), - [anon_sym_pub] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_trait] = ACTIONS(1304), - [anon_sym_type] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_unsafe] = ACTIONS(1304), - [anon_sym_use] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_POUND] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_COLON_COLON] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_move] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1302), - [aux_sym_string_literal_token1] = ACTIONS(1302), - [sym_char_literal] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1304), - [anon_sym_false] = ACTIONS(1304), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_crate] = ACTIONS(1304), - [sym_metavariable] = ACTIONS(1302), - [sym_raw_string_literal] = ACTIONS(1302), - [sym_float_literal] = ACTIONS(1302), + [ts_builtin_sym_end] = ACTIONS(1299), + [sym_identifier] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_macro_rules_BANG] = ACTIONS(1299), + [anon_sym_LPAREN] = ACTIONS(1299), + [anon_sym_LBRACE] = ACTIONS(1299), + [anon_sym_RBRACE] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_u8] = ACTIONS(1301), + [anon_sym_i8] = ACTIONS(1301), + [anon_sym_u16] = ACTIONS(1301), + [anon_sym_i16] = ACTIONS(1301), + [anon_sym_u32] = ACTIONS(1301), + [anon_sym_i32] = ACTIONS(1301), + [anon_sym_u64] = ACTIONS(1301), + [anon_sym_i64] = ACTIONS(1301), + [anon_sym_u128] = ACTIONS(1301), + [anon_sym_i128] = ACTIONS(1301), + [anon_sym_isize] = ACTIONS(1301), + [anon_sym_usize] = ACTIONS(1301), + [anon_sym_f32] = ACTIONS(1301), + [anon_sym_f64] = ACTIONS(1301), + [anon_sym_bool] = ACTIONS(1301), + [anon_sym_str] = ACTIONS(1301), + [anon_sym_char] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1301), + [anon_sym_async] = ACTIONS(1301), + [anon_sym_break] = ACTIONS(1301), + [anon_sym_const] = ACTIONS(1301), + [anon_sym_continue] = ACTIONS(1301), + [anon_sym_default] = ACTIONS(1301), + [anon_sym_enum] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_impl] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_loop] = ACTIONS(1301), + [anon_sym_match] = ACTIONS(1301), + [anon_sym_mod] = ACTIONS(1301), + [anon_sym_pub] = ACTIONS(1301), + [anon_sym_return] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(1301), + [anon_sym_trait] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_union] = ACTIONS(1301), + [anon_sym_unsafe] = ACTIONS(1301), + [anon_sym_use] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1301), + [anon_sym_POUND] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_extern] = ACTIONS(1301), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_COLON_COLON] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1299), + [anon_sym_move] = ACTIONS(1301), + [sym_integer_literal] = ACTIONS(1299), + [aux_sym_string_literal_token1] = ACTIONS(1299), + [sym_char_literal] = ACTIONS(1299), + [anon_sym_true] = ACTIONS(1301), + [anon_sym_false] = ACTIONS(1301), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1301), + [sym_super] = ACTIONS(1301), + [sym_crate] = ACTIONS(1301), + [sym_metavariable] = ACTIONS(1299), + [sym_raw_string_literal] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1299), [sym_block_comment] = ACTIONS(3), }, [296] = { - [ts_builtin_sym_end] = ACTIONS(1306), - [sym_identifier] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_macro_rules_BANG] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_u8] = ACTIONS(1308), - [anon_sym_i8] = ACTIONS(1308), - [anon_sym_u16] = ACTIONS(1308), - [anon_sym_i16] = ACTIONS(1308), - [anon_sym_u32] = ACTIONS(1308), - [anon_sym_i32] = ACTIONS(1308), - [anon_sym_u64] = ACTIONS(1308), - [anon_sym_i64] = ACTIONS(1308), - [anon_sym_u128] = ACTIONS(1308), - [anon_sym_i128] = ACTIONS(1308), - [anon_sym_isize] = ACTIONS(1308), - [anon_sym_usize] = ACTIONS(1308), - [anon_sym_f32] = ACTIONS(1308), - [anon_sym_f64] = ACTIONS(1308), - [anon_sym_bool] = ACTIONS(1308), - [anon_sym_str] = ACTIONS(1308), - [anon_sym_char] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_impl] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_mod] = ACTIONS(1308), - [anon_sym_pub] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_trait] = ACTIONS(1308), - [anon_sym_type] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_unsafe] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_COLON_COLON] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_DOT_DOT] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_move] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1306), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1308), - [sym_super] = ACTIONS(1308), - [sym_crate] = ACTIONS(1308), - [sym_metavariable] = ACTIONS(1306), - [sym_raw_string_literal] = ACTIONS(1306), - [sym_float_literal] = ACTIONS(1306), + [ts_builtin_sym_end] = ACTIONS(1303), + [sym_identifier] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1303), + [anon_sym_macro_rules_BANG] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_SQUOTE] = ACTIONS(1305), + [anon_sym_async] = ACTIONS(1305), + [anon_sym_break] = ACTIONS(1305), + [anon_sym_const] = ACTIONS(1305), + [anon_sym_continue] = ACTIONS(1305), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_enum] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1305), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_if] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_let] = ACTIONS(1305), + [anon_sym_loop] = ACTIONS(1305), + [anon_sym_match] = ACTIONS(1305), + [anon_sym_mod] = ACTIONS(1305), + [anon_sym_pub] = ACTIONS(1305), + [anon_sym_return] = ACTIONS(1305), + [anon_sym_static] = ACTIONS(1305), + [anon_sym_struct] = ACTIONS(1305), + [anon_sym_trait] = ACTIONS(1305), + [anon_sym_type] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1305), + [anon_sym_unsafe] = ACTIONS(1305), + [anon_sym_use] = ACTIONS(1305), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_POUND] = ACTIONS(1303), + [anon_sym_BANG] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(1303), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1305), + [sym_integer_literal] = ACTIONS(1303), + [aux_sym_string_literal_token1] = ACTIONS(1303), + [sym_char_literal] = ACTIONS(1303), + [anon_sym_true] = ACTIONS(1305), + [anon_sym_false] = ACTIONS(1305), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1305), + [sym_super] = ACTIONS(1305), + [sym_crate] = ACTIONS(1305), + [sym_metavariable] = ACTIONS(1303), + [sym_raw_string_literal] = ACTIONS(1303), + [sym_float_literal] = ACTIONS(1303), [sym_block_comment] = ACTIONS(3), }, [297] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_macro_rules_BANG] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_u8] = ACTIONS(1312), - [anon_sym_i8] = ACTIONS(1312), - [anon_sym_u16] = ACTIONS(1312), - [anon_sym_i16] = ACTIONS(1312), - [anon_sym_u32] = ACTIONS(1312), - [anon_sym_i32] = ACTIONS(1312), - [anon_sym_u64] = ACTIONS(1312), - [anon_sym_i64] = ACTIONS(1312), - [anon_sym_u128] = ACTIONS(1312), - [anon_sym_i128] = ACTIONS(1312), - [anon_sym_isize] = ACTIONS(1312), - [anon_sym_usize] = ACTIONS(1312), - [anon_sym_f32] = ACTIONS(1312), - [anon_sym_f64] = ACTIONS(1312), - [anon_sym_bool] = ACTIONS(1312), - [anon_sym_str] = ACTIONS(1312), - [anon_sym_char] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_fn] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_impl] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_pub] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_trait] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_unsafe] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_POUND] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_COLON_COLON] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_DOT_DOT] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_move] = ACTIONS(1312), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1310), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_crate] = ACTIONS(1312), - [sym_metavariable] = ACTIONS(1310), - [sym_raw_string_literal] = ACTIONS(1310), - [sym_float_literal] = ACTIONS(1310), + [ts_builtin_sym_end] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_macro_rules_BANG] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_u8] = ACTIONS(1309), + [anon_sym_i8] = ACTIONS(1309), + [anon_sym_u16] = ACTIONS(1309), + [anon_sym_i16] = ACTIONS(1309), + [anon_sym_u32] = ACTIONS(1309), + [anon_sym_i32] = ACTIONS(1309), + [anon_sym_u64] = ACTIONS(1309), + [anon_sym_i64] = ACTIONS(1309), + [anon_sym_u128] = ACTIONS(1309), + [anon_sym_i128] = ACTIONS(1309), + [anon_sym_isize] = ACTIONS(1309), + [anon_sym_usize] = ACTIONS(1309), + [anon_sym_f32] = ACTIONS(1309), + [anon_sym_f64] = ACTIONS(1309), + [anon_sym_bool] = ACTIONS(1309), + [anon_sym_str] = ACTIONS(1309), + [anon_sym_char] = ACTIONS(1309), + [anon_sym_SQUOTE] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1309), + [anon_sym_break] = ACTIONS(1309), + [anon_sym_const] = ACTIONS(1309), + [anon_sym_continue] = ACTIONS(1309), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_enum] = ACTIONS(1309), + [anon_sym_fn] = ACTIONS(1309), + [anon_sym_for] = ACTIONS(1309), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_let] = ACTIONS(1309), + [anon_sym_loop] = ACTIONS(1309), + [anon_sym_match] = ACTIONS(1309), + [anon_sym_mod] = ACTIONS(1309), + [anon_sym_pub] = ACTIONS(1309), + [anon_sym_return] = ACTIONS(1309), + [anon_sym_static] = ACTIONS(1309), + [anon_sym_struct] = ACTIONS(1309), + [anon_sym_trait] = ACTIONS(1309), + [anon_sym_type] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1309), + [anon_sym_unsafe] = ACTIONS(1309), + [anon_sym_use] = ACTIONS(1309), + [anon_sym_while] = ACTIONS(1309), + [anon_sym_POUND] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1309), + [anon_sym_LT] = ACTIONS(1307), + [anon_sym_COLON_COLON] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_move] = ACTIONS(1309), + [sym_integer_literal] = ACTIONS(1307), + [aux_sym_string_literal_token1] = ACTIONS(1307), + [sym_char_literal] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1309), + [sym_crate] = ACTIONS(1309), + [sym_metavariable] = ACTIONS(1307), + [sym_raw_string_literal] = ACTIONS(1307), + [sym_float_literal] = ACTIONS(1307), [sym_block_comment] = ACTIONS(3), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(1314), - [sym_identifier] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_macro_rules_BANG] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_LBRACK] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_u8] = ACTIONS(1316), - [anon_sym_i8] = ACTIONS(1316), - [anon_sym_u16] = ACTIONS(1316), - [anon_sym_i16] = ACTIONS(1316), - [anon_sym_u32] = ACTIONS(1316), - [anon_sym_i32] = ACTIONS(1316), - [anon_sym_u64] = ACTIONS(1316), - [anon_sym_i64] = ACTIONS(1316), - [anon_sym_u128] = ACTIONS(1316), - [anon_sym_i128] = ACTIONS(1316), - [anon_sym_isize] = ACTIONS(1316), - [anon_sym_usize] = ACTIONS(1316), - [anon_sym_f32] = ACTIONS(1316), - [anon_sym_f64] = ACTIONS(1316), - [anon_sym_bool] = ACTIONS(1316), - [anon_sym_str] = ACTIONS(1316), - [anon_sym_char] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_async] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_fn] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_impl] = ACTIONS(1316), - [anon_sym_let] = ACTIONS(1316), - [anon_sym_loop] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1316), - [anon_sym_mod] = ACTIONS(1316), - [anon_sym_pub] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_trait] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_unsafe] = ACTIONS(1316), - [anon_sym_use] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_COLON_COLON] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_DOT_DOT] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1316), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1314), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1316), - [sym_super] = ACTIONS(1316), - [sym_crate] = ACTIONS(1316), - [sym_metavariable] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [ts_builtin_sym_end] = ACTIONS(1311), + [sym_identifier] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_macro_rules_BANG] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_u8] = ACTIONS(1313), + [anon_sym_i8] = ACTIONS(1313), + [anon_sym_u16] = ACTIONS(1313), + [anon_sym_i16] = ACTIONS(1313), + [anon_sym_u32] = ACTIONS(1313), + [anon_sym_i32] = ACTIONS(1313), + [anon_sym_u64] = ACTIONS(1313), + [anon_sym_i64] = ACTIONS(1313), + [anon_sym_u128] = ACTIONS(1313), + [anon_sym_i128] = ACTIONS(1313), + [anon_sym_isize] = ACTIONS(1313), + [anon_sym_usize] = ACTIONS(1313), + [anon_sym_f32] = ACTIONS(1313), + [anon_sym_f64] = ACTIONS(1313), + [anon_sym_bool] = ACTIONS(1313), + [anon_sym_str] = ACTIONS(1313), + [anon_sym_char] = ACTIONS(1313), + [anon_sym_SQUOTE] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1313), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_const] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_default] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1313), + [anon_sym_fn] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_impl] = ACTIONS(1313), + [anon_sym_let] = ACTIONS(1313), + [anon_sym_loop] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_mod] = ACTIONS(1313), + [anon_sym_pub] = ACTIONS(1313), + [anon_sym_return] = ACTIONS(1313), + [anon_sym_static] = ACTIONS(1313), + [anon_sym_struct] = ACTIONS(1313), + [anon_sym_trait] = ACTIONS(1313), + [anon_sym_type] = ACTIONS(1313), + [anon_sym_union] = ACTIONS(1313), + [anon_sym_unsafe] = ACTIONS(1313), + [anon_sym_use] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(1311), + [anon_sym_BANG] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1311), + [anon_sym_COLON_COLON] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_DOT_DOT] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1311), + [anon_sym_move] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1311), + [aux_sym_string_literal_token1] = ACTIONS(1311), + [sym_char_literal] = ACTIONS(1311), + [anon_sym_true] = ACTIONS(1313), + [anon_sym_false] = ACTIONS(1313), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1313), + [sym_super] = ACTIONS(1313), + [sym_crate] = ACTIONS(1313), + [sym_metavariable] = ACTIONS(1311), + [sym_raw_string_literal] = ACTIONS(1311), + [sym_float_literal] = ACTIONS(1311), [sym_block_comment] = ACTIONS(3), }, [299] = { - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_macro_rules_BANG] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_fn] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_impl] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_loop] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_mod] = ACTIONS(1320), - [anon_sym_pub] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_trait] = ACTIONS(1320), - [anon_sym_type] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_unsafe] = ACTIONS(1320), - [anon_sym_use] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_COLON_COLON] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1318), - [anon_sym_move] = ACTIONS(1320), - [sym_integer_literal] = ACTIONS(1318), - [aux_sym_string_literal_token1] = ACTIONS(1318), - [sym_char_literal] = ACTIONS(1318), - [anon_sym_true] = ACTIONS(1320), - [anon_sym_false] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1320), - [sym_super] = ACTIONS(1320), - [sym_crate] = ACTIONS(1320), - [sym_metavariable] = ACTIONS(1318), - [sym_raw_string_literal] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1318), + [ts_builtin_sym_end] = ACTIONS(1315), + [sym_identifier] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_macro_rules_BANG] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym_RBRACE] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_u8] = ACTIONS(1317), + [anon_sym_i8] = ACTIONS(1317), + [anon_sym_u16] = ACTIONS(1317), + [anon_sym_i16] = ACTIONS(1317), + [anon_sym_u32] = ACTIONS(1317), + [anon_sym_i32] = ACTIONS(1317), + [anon_sym_u64] = ACTIONS(1317), + [anon_sym_i64] = ACTIONS(1317), + [anon_sym_u128] = ACTIONS(1317), + [anon_sym_i128] = ACTIONS(1317), + [anon_sym_isize] = ACTIONS(1317), + [anon_sym_usize] = ACTIONS(1317), + [anon_sym_f32] = ACTIONS(1317), + [anon_sym_f64] = ACTIONS(1317), + [anon_sym_bool] = ACTIONS(1317), + [anon_sym_str] = ACTIONS(1317), + [anon_sym_char] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1317), + [anon_sym_break] = ACTIONS(1317), + [anon_sym_const] = ACTIONS(1317), + [anon_sym_continue] = ACTIONS(1317), + [anon_sym_default] = ACTIONS(1317), + [anon_sym_enum] = ACTIONS(1317), + [anon_sym_fn] = ACTIONS(1317), + [anon_sym_for] = ACTIONS(1317), + [anon_sym_if] = ACTIONS(1317), + [anon_sym_impl] = ACTIONS(1317), + [anon_sym_let] = ACTIONS(1317), + [anon_sym_loop] = ACTIONS(1317), + [anon_sym_match] = ACTIONS(1317), + [anon_sym_mod] = ACTIONS(1317), + [anon_sym_pub] = ACTIONS(1317), + [anon_sym_return] = ACTIONS(1317), + [anon_sym_static] = ACTIONS(1317), + [anon_sym_struct] = ACTIONS(1317), + [anon_sym_trait] = ACTIONS(1317), + [anon_sym_type] = ACTIONS(1317), + [anon_sym_union] = ACTIONS(1317), + [anon_sym_unsafe] = ACTIONS(1317), + [anon_sym_use] = ACTIONS(1317), + [anon_sym_while] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1315), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1317), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_DOT_DOT] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_move] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1315), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1317), + [anon_sym_false] = ACTIONS(1317), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1317), + [sym_super] = ACTIONS(1317), + [sym_crate] = ACTIONS(1317), + [sym_metavariable] = ACTIONS(1315), + [sym_raw_string_literal] = ACTIONS(1315), + [sym_float_literal] = ACTIONS(1315), [sym_block_comment] = ACTIONS(3), }, [300] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_macro_rules_BANG] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_u8] = ACTIONS(1324), - [anon_sym_i8] = ACTIONS(1324), - [anon_sym_u16] = ACTIONS(1324), - [anon_sym_i16] = ACTIONS(1324), - [anon_sym_u32] = ACTIONS(1324), - [anon_sym_i32] = ACTIONS(1324), - [anon_sym_u64] = ACTIONS(1324), - [anon_sym_i64] = ACTIONS(1324), - [anon_sym_u128] = ACTIONS(1324), - [anon_sym_i128] = ACTIONS(1324), - [anon_sym_isize] = ACTIONS(1324), - [anon_sym_usize] = ACTIONS(1324), - [anon_sym_f32] = ACTIONS(1324), - [anon_sym_f64] = ACTIONS(1324), - [anon_sym_bool] = ACTIONS(1324), - [anon_sym_str] = ACTIONS(1324), - [anon_sym_char] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_async] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_fn] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_impl] = ACTIONS(1324), - [anon_sym_let] = ACTIONS(1324), - [anon_sym_loop] = ACTIONS(1324), - [anon_sym_match] = ACTIONS(1324), - [anon_sym_mod] = ACTIONS(1324), - [anon_sym_pub] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_trait] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_unsafe] = ACTIONS(1324), - [anon_sym_use] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_COLON_COLON] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_move] = ACTIONS(1324), - [sym_integer_literal] = ACTIONS(1322), - [aux_sym_string_literal_token1] = ACTIONS(1322), - [sym_char_literal] = ACTIONS(1322), - [anon_sym_true] = ACTIONS(1324), - [anon_sym_false] = ACTIONS(1324), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1324), - [sym_super] = ACTIONS(1324), - [sym_crate] = ACTIONS(1324), - [sym_metavariable] = ACTIONS(1322), - [sym_raw_string_literal] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1322), + [ts_builtin_sym_end] = ACTIONS(1319), + [sym_identifier] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_macro_rules_BANG] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u128] = ACTIONS(1321), + [anon_sym_i128] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_str] = ACTIONS(1321), + [anon_sym_char] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1321), + [anon_sym_break] = ACTIONS(1321), + [anon_sym_const] = ACTIONS(1321), + [anon_sym_continue] = ACTIONS(1321), + [anon_sym_default] = ACTIONS(1321), + [anon_sym_enum] = ACTIONS(1321), + [anon_sym_fn] = ACTIONS(1321), + [anon_sym_for] = ACTIONS(1321), + [anon_sym_if] = ACTIONS(1321), + [anon_sym_impl] = ACTIONS(1321), + [anon_sym_let] = ACTIONS(1321), + [anon_sym_loop] = ACTIONS(1321), + [anon_sym_match] = ACTIONS(1321), + [anon_sym_mod] = ACTIONS(1321), + [anon_sym_pub] = ACTIONS(1321), + [anon_sym_return] = ACTIONS(1321), + [anon_sym_static] = ACTIONS(1321), + [anon_sym_struct] = ACTIONS(1321), + [anon_sym_trait] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_unsafe] = ACTIONS(1321), + [anon_sym_use] = ACTIONS(1321), + [anon_sym_while] = ACTIONS(1321), + [anon_sym_POUND] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1321), + [anon_sym_LT] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_DOT_DOT] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_PIPE] = ACTIONS(1319), + [anon_sym_move] = ACTIONS(1321), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1319), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1321), + [anon_sym_false] = ACTIONS(1321), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1321), + [sym_crate] = ACTIONS(1321), + [sym_metavariable] = ACTIONS(1319), + [sym_raw_string_literal] = ACTIONS(1319), + [sym_float_literal] = ACTIONS(1319), [sym_block_comment] = ACTIONS(3), }, [301] = { - [ts_builtin_sym_end] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_macro_rules_BANG] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_u8] = ACTIONS(1328), - [anon_sym_i8] = ACTIONS(1328), - [anon_sym_u16] = ACTIONS(1328), - [anon_sym_i16] = ACTIONS(1328), - [anon_sym_u32] = ACTIONS(1328), - [anon_sym_i32] = ACTIONS(1328), - [anon_sym_u64] = ACTIONS(1328), - [anon_sym_i64] = ACTIONS(1328), - [anon_sym_u128] = ACTIONS(1328), - [anon_sym_i128] = ACTIONS(1328), - [anon_sym_isize] = ACTIONS(1328), - [anon_sym_usize] = ACTIONS(1328), - [anon_sym_f32] = ACTIONS(1328), - [anon_sym_f64] = ACTIONS(1328), - [anon_sym_bool] = ACTIONS(1328), - [anon_sym_str] = ACTIONS(1328), - [anon_sym_char] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_async] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_fn] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_impl] = ACTIONS(1328), - [anon_sym_let] = ACTIONS(1328), - [anon_sym_loop] = ACTIONS(1328), - [anon_sym_match] = ACTIONS(1328), - [anon_sym_mod] = ACTIONS(1328), - [anon_sym_pub] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_trait] = ACTIONS(1328), - [anon_sym_type] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_unsafe] = ACTIONS(1328), - [anon_sym_use] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_POUND] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_COLON_COLON] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_DOT_DOT] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_move] = ACTIONS(1328), - [sym_integer_literal] = ACTIONS(1326), - [aux_sym_string_literal_token1] = ACTIONS(1326), - [sym_char_literal] = ACTIONS(1326), - [anon_sym_true] = ACTIONS(1328), - [anon_sym_false] = ACTIONS(1328), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1328), - [sym_super] = ACTIONS(1328), - [sym_crate] = ACTIONS(1328), - [sym_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1326), - [sym_float_literal] = ACTIONS(1326), + [ts_builtin_sym_end] = ACTIONS(1323), + [sym_identifier] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym_macro_rules_BANG] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_RBRACE] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_u8] = ACTIONS(1325), + [anon_sym_i8] = ACTIONS(1325), + [anon_sym_u16] = ACTIONS(1325), + [anon_sym_i16] = ACTIONS(1325), + [anon_sym_u32] = ACTIONS(1325), + [anon_sym_i32] = ACTIONS(1325), + [anon_sym_u64] = ACTIONS(1325), + [anon_sym_i64] = ACTIONS(1325), + [anon_sym_u128] = ACTIONS(1325), + [anon_sym_i128] = ACTIONS(1325), + [anon_sym_isize] = ACTIONS(1325), + [anon_sym_usize] = ACTIONS(1325), + [anon_sym_f32] = ACTIONS(1325), + [anon_sym_f64] = ACTIONS(1325), + [anon_sym_bool] = ACTIONS(1325), + [anon_sym_str] = ACTIONS(1325), + [anon_sym_char] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1325), + [anon_sym_async] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_impl] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), + [anon_sym_loop] = ACTIONS(1325), + [anon_sym_match] = ACTIONS(1325), + [anon_sym_mod] = ACTIONS(1325), + [anon_sym_pub] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1325), + [anon_sym_trait] = ACTIONS(1325), + [anon_sym_type] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1325), + [anon_sym_unsafe] = ACTIONS(1325), + [anon_sym_use] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_POUND] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1323), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym_LT] = ACTIONS(1323), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_DOT_DOT] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1323), + [anon_sym_move] = ACTIONS(1325), + [sym_integer_literal] = ACTIONS(1323), + [aux_sym_string_literal_token1] = ACTIONS(1323), + [sym_char_literal] = ACTIONS(1323), + [anon_sym_true] = ACTIONS(1325), + [anon_sym_false] = ACTIONS(1325), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1325), + [sym_super] = ACTIONS(1325), + [sym_crate] = ACTIONS(1325), + [sym_metavariable] = ACTIONS(1323), + [sym_raw_string_literal] = ACTIONS(1323), + [sym_float_literal] = ACTIONS(1323), [sym_block_comment] = ACTIONS(3), }, [302] = { - [ts_builtin_sym_end] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_macro_rules_BANG] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_u8] = ACTIONS(1332), - [anon_sym_i8] = ACTIONS(1332), - [anon_sym_u16] = ACTIONS(1332), - [anon_sym_i16] = ACTIONS(1332), - [anon_sym_u32] = ACTIONS(1332), - [anon_sym_i32] = ACTIONS(1332), - [anon_sym_u64] = ACTIONS(1332), - [anon_sym_i64] = ACTIONS(1332), - [anon_sym_u128] = ACTIONS(1332), - [anon_sym_i128] = ACTIONS(1332), - [anon_sym_isize] = ACTIONS(1332), - [anon_sym_usize] = ACTIONS(1332), - [anon_sym_f32] = ACTIONS(1332), - [anon_sym_f64] = ACTIONS(1332), - [anon_sym_bool] = ACTIONS(1332), - [anon_sym_str] = ACTIONS(1332), - [anon_sym_char] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_async] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_fn] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_impl] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_pub] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_trait] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_unsafe] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_POUND] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_LT] = ACTIONS(1330), - [anon_sym_COLON_COLON] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_DOT_DOT] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PIPE] = ACTIONS(1330), - [anon_sym_move] = ACTIONS(1332), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1330), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1332), - [sym_super] = ACTIONS(1332), - [sym_crate] = ACTIONS(1332), - [sym_metavariable] = ACTIONS(1330), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [ts_builtin_sym_end] = ACTIONS(1327), + [sym_identifier] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_macro_rules_BANG] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1327), + [anon_sym_RBRACE] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1329), + [anon_sym_enum] = ACTIONS(1329), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1329), + [anon_sym_let] = ACTIONS(1329), + [anon_sym_loop] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_mod] = ACTIONS(1329), + [anon_sym_pub] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_static] = ACTIONS(1329), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_trait] = ACTIONS(1329), + [anon_sym_type] = ACTIONS(1329), + [anon_sym_union] = ACTIONS(1329), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_use] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_POUND] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1329), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_COLON_COLON] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PIPE] = ACTIONS(1327), + [anon_sym_move] = ACTIONS(1329), + [sym_integer_literal] = ACTIONS(1327), + [aux_sym_string_literal_token1] = ACTIONS(1327), + [sym_char_literal] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1329), + [sym_super] = ACTIONS(1329), + [sym_crate] = ACTIONS(1329), + [sym_metavariable] = ACTIONS(1327), + [sym_raw_string_literal] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1327), [sym_block_comment] = ACTIONS(3), }, [303] = { - [ts_builtin_sym_end] = ACTIONS(1334), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_macro_rules_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_u8] = ACTIONS(1336), - [anon_sym_i8] = ACTIONS(1336), - [anon_sym_u16] = ACTIONS(1336), - [anon_sym_i16] = ACTIONS(1336), - [anon_sym_u32] = ACTIONS(1336), - [anon_sym_i32] = ACTIONS(1336), - [anon_sym_u64] = ACTIONS(1336), - [anon_sym_i64] = ACTIONS(1336), - [anon_sym_u128] = ACTIONS(1336), - [anon_sym_i128] = ACTIONS(1336), - [anon_sym_isize] = ACTIONS(1336), - [anon_sym_usize] = ACTIONS(1336), - [anon_sym_f32] = ACTIONS(1336), - [anon_sym_f64] = ACTIONS(1336), - [anon_sym_bool] = ACTIONS(1336), - [anon_sym_str] = ACTIONS(1336), - [anon_sym_char] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_impl] = ACTIONS(1336), - [anon_sym_let] = ACTIONS(1336), - [anon_sym_loop] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_mod] = ACTIONS(1336), - [anon_sym_pub] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_trait] = ACTIONS(1336), - [anon_sym_type] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_unsafe] = ACTIONS(1336), - [anon_sym_use] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_POUND] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym_LT] = ACTIONS(1334), - [anon_sym_COLON_COLON] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_DOT_DOT] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PIPE] = ACTIONS(1334), - [anon_sym_move] = ACTIONS(1336), - [sym_integer_literal] = ACTIONS(1334), - [aux_sym_string_literal_token1] = ACTIONS(1334), - [sym_char_literal] = ACTIONS(1334), - [anon_sym_true] = ACTIONS(1336), - [anon_sym_false] = ACTIONS(1336), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1336), - [sym_super] = ACTIONS(1336), - [sym_crate] = ACTIONS(1336), - [sym_metavariable] = ACTIONS(1334), - [sym_raw_string_literal] = ACTIONS(1334), - [sym_float_literal] = ACTIONS(1334), + [ts_builtin_sym_end] = ACTIONS(1331), + [sym_identifier] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_macro_rules_BANG] = ACTIONS(1331), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_RBRACE] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_u8] = ACTIONS(1333), + [anon_sym_i8] = ACTIONS(1333), + [anon_sym_u16] = ACTIONS(1333), + [anon_sym_i16] = ACTIONS(1333), + [anon_sym_u32] = ACTIONS(1333), + [anon_sym_i32] = ACTIONS(1333), + [anon_sym_u64] = ACTIONS(1333), + [anon_sym_i64] = ACTIONS(1333), + [anon_sym_u128] = ACTIONS(1333), + [anon_sym_i128] = ACTIONS(1333), + [anon_sym_isize] = ACTIONS(1333), + [anon_sym_usize] = ACTIONS(1333), + [anon_sym_f32] = ACTIONS(1333), + [anon_sym_f64] = ACTIONS(1333), + [anon_sym_bool] = ACTIONS(1333), + [anon_sym_str] = ACTIONS(1333), + [anon_sym_char] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_async] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_enum] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1333), + [anon_sym_let] = ACTIONS(1333), + [anon_sym_loop] = ACTIONS(1333), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_mod] = ACTIONS(1333), + [anon_sym_pub] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_static] = ACTIONS(1333), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_trait] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1333), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1333), + [anon_sym_use] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_POUND] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1333), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_COLON_COLON] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1331), + [anon_sym_move] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1331), + [aux_sym_string_literal_token1] = ACTIONS(1331), + [sym_char_literal] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1333), + [sym_super] = ACTIONS(1333), + [sym_crate] = ACTIONS(1333), + [sym_metavariable] = ACTIONS(1331), + [sym_raw_string_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1331), [sym_block_comment] = ACTIONS(3), }, [304] = { - [ts_builtin_sym_end] = ACTIONS(1338), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_macro_rules_BANG] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_POUND] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1338), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_DOT_DOT] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_move] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1338), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1340), - [anon_sym_false] = ACTIONS(1340), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1338), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), + [ts_builtin_sym_end] = ACTIONS(1335), + [sym_identifier] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_macro_rules_BANG] = ACTIONS(1335), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_u8] = ACTIONS(1337), + [anon_sym_i8] = ACTIONS(1337), + [anon_sym_u16] = ACTIONS(1337), + [anon_sym_i16] = ACTIONS(1337), + [anon_sym_u32] = ACTIONS(1337), + [anon_sym_i32] = ACTIONS(1337), + [anon_sym_u64] = ACTIONS(1337), + [anon_sym_i64] = ACTIONS(1337), + [anon_sym_u128] = ACTIONS(1337), + [anon_sym_i128] = ACTIONS(1337), + [anon_sym_isize] = ACTIONS(1337), + [anon_sym_usize] = ACTIONS(1337), + [anon_sym_f32] = ACTIONS(1337), + [anon_sym_f64] = ACTIONS(1337), + [anon_sym_bool] = ACTIONS(1337), + [anon_sym_str] = ACTIONS(1337), + [anon_sym_char] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_async] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_default] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1337), + [anon_sym_fn] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_impl] = ACTIONS(1337), + [anon_sym_let] = ACTIONS(1337), + [anon_sym_loop] = ACTIONS(1337), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_mod] = ACTIONS(1337), + [anon_sym_pub] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_static] = ACTIONS(1337), + [anon_sym_struct] = ACTIONS(1337), + [anon_sym_trait] = ACTIONS(1337), + [anon_sym_type] = ACTIONS(1337), + [anon_sym_union] = ACTIONS(1337), + [anon_sym_unsafe] = ACTIONS(1337), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_COLON_COLON] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_move] = ACTIONS(1337), + [sym_integer_literal] = ACTIONS(1335), + [aux_sym_string_literal_token1] = ACTIONS(1335), + [sym_char_literal] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(1337), + [anon_sym_false] = ACTIONS(1337), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1337), + [sym_super] = ACTIONS(1337), + [sym_crate] = ACTIONS(1337), + [sym_metavariable] = ACTIONS(1335), + [sym_raw_string_literal] = ACTIONS(1335), + [sym_float_literal] = ACTIONS(1335), [sym_block_comment] = ACTIONS(3), }, [305] = { - [sym__token_pattern] = STATE(239), - [sym_token_tree_pattern] = STATE(239), - [sym_token_binding_pattern] = STATE(239), - [sym_token_repetition_pattern] = STATE(239), - [sym__literal] = STATE(239), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1270), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_RBRACE] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [anon_sym_u8] = ACTIONS(1270), - [anon_sym_i8] = ACTIONS(1270), - [anon_sym_u16] = ACTIONS(1270), - [anon_sym_i16] = ACTIONS(1270), - [anon_sym_u32] = ACTIONS(1270), - [anon_sym_i32] = ACTIONS(1270), - [anon_sym_u64] = ACTIONS(1270), - [anon_sym_i64] = ACTIONS(1270), - [anon_sym_u128] = ACTIONS(1270), - [anon_sym_i128] = ACTIONS(1270), - [anon_sym_isize] = ACTIONS(1270), - [anon_sym_usize] = ACTIONS(1270), - [anon_sym_f32] = ACTIONS(1270), - [anon_sym_f64] = ACTIONS(1270), - [anon_sym_bool] = ACTIONS(1270), - [anon_sym_str] = ACTIONS(1270), - [anon_sym_char] = ACTIONS(1270), - [aux_sym__non_special_token_token1] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_as] = ACTIONS(1270), - [anon_sym_async] = ACTIONS(1270), - [anon_sym_await] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_fn] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_impl] = ACTIONS(1270), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_loop] = ACTIONS(1270), - [anon_sym_match] = ACTIONS(1270), - [anon_sym_mod] = ACTIONS(1270), - [anon_sym_pub] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_trait] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_unsafe] = ACTIONS(1270), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_where] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [sym_mutable_specifier] = ACTIONS(1270), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1116), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [ts_builtin_sym_end] = ACTIONS(1339), + [sym_identifier] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_macro_rules_BANG] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_RBRACE] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_u8] = ACTIONS(1341), + [anon_sym_i8] = ACTIONS(1341), + [anon_sym_u16] = ACTIONS(1341), + [anon_sym_i16] = ACTIONS(1341), + [anon_sym_u32] = ACTIONS(1341), + [anon_sym_i32] = ACTIONS(1341), + [anon_sym_u64] = ACTIONS(1341), + [anon_sym_i64] = ACTIONS(1341), + [anon_sym_u128] = ACTIONS(1341), + [anon_sym_i128] = ACTIONS(1341), + [anon_sym_isize] = ACTIONS(1341), + [anon_sym_usize] = ACTIONS(1341), + [anon_sym_f32] = ACTIONS(1341), + [anon_sym_f64] = ACTIONS(1341), + [anon_sym_bool] = ACTIONS(1341), + [anon_sym_str] = ACTIONS(1341), + [anon_sym_char] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(1341), + [anon_sym_async] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_default] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_fn] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_let] = ACTIONS(1341), + [anon_sym_loop] = ACTIONS(1341), + [anon_sym_match] = ACTIONS(1341), + [anon_sym_mod] = ACTIONS(1341), + [anon_sym_pub] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_static] = ACTIONS(1341), + [anon_sym_struct] = ACTIONS(1341), + [anon_sym_trait] = ACTIONS(1341), + [anon_sym_type] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1341), + [anon_sym_use] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_POUND] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1339), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym_LT] = ACTIONS(1339), + [anon_sym_COLON_COLON] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1339), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_PIPE] = ACTIONS(1339), + [anon_sym_move] = ACTIONS(1341), + [sym_integer_literal] = ACTIONS(1339), + [aux_sym_string_literal_token1] = ACTIONS(1339), + [sym_char_literal] = ACTIONS(1339), + [anon_sym_true] = ACTIONS(1341), + [anon_sym_false] = ACTIONS(1341), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1341), + [sym_super] = ACTIONS(1341), + [sym_crate] = ACTIONS(1341), + [sym_metavariable] = ACTIONS(1339), + [sym_raw_string_literal] = ACTIONS(1339), + [sym_float_literal] = ACTIONS(1339), [sym_block_comment] = ACTIONS(3), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_macro_rules_BANG] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_u8] = ACTIONS(1344), - [anon_sym_i8] = ACTIONS(1344), - [anon_sym_u16] = ACTIONS(1344), - [anon_sym_i16] = ACTIONS(1344), - [anon_sym_u32] = ACTIONS(1344), - [anon_sym_i32] = ACTIONS(1344), - [anon_sym_u64] = ACTIONS(1344), - [anon_sym_i64] = ACTIONS(1344), - [anon_sym_u128] = ACTIONS(1344), - [anon_sym_i128] = ACTIONS(1344), - [anon_sym_isize] = ACTIONS(1344), - [anon_sym_usize] = ACTIONS(1344), - [anon_sym_f32] = ACTIONS(1344), - [anon_sym_f64] = ACTIONS(1344), - [anon_sym_bool] = ACTIONS(1344), - [anon_sym_str] = ACTIONS(1344), - [anon_sym_char] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_async] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_impl] = ACTIONS(1344), - [anon_sym_let] = ACTIONS(1344), - [anon_sym_loop] = ACTIONS(1344), - [anon_sym_match] = ACTIONS(1344), - [anon_sym_mod] = ACTIONS(1344), - [anon_sym_pub] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_trait] = ACTIONS(1344), - [anon_sym_type] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_unsafe] = ACTIONS(1344), - [anon_sym_use] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_POUND] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_COLON_COLON] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_move] = ACTIONS(1344), - [sym_integer_literal] = ACTIONS(1342), - [aux_sym_string_literal_token1] = ACTIONS(1342), - [sym_char_literal] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1344), - [anon_sym_false] = ACTIONS(1344), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1344), - [sym_crate] = ACTIONS(1344), - [sym_metavariable] = ACTIONS(1342), - [sym_raw_string_literal] = ACTIONS(1342), - [sym_float_literal] = ACTIONS(1342), + [ts_builtin_sym_end] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_macro_rules_BANG] = ACTIONS(1343), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_RBRACE] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_u8] = ACTIONS(1345), + [anon_sym_i8] = ACTIONS(1345), + [anon_sym_u16] = ACTIONS(1345), + [anon_sym_i16] = ACTIONS(1345), + [anon_sym_u32] = ACTIONS(1345), + [anon_sym_i32] = ACTIONS(1345), + [anon_sym_u64] = ACTIONS(1345), + [anon_sym_i64] = ACTIONS(1345), + [anon_sym_u128] = ACTIONS(1345), + [anon_sym_i128] = ACTIONS(1345), + [anon_sym_isize] = ACTIONS(1345), + [anon_sym_usize] = ACTIONS(1345), + [anon_sym_f32] = ACTIONS(1345), + [anon_sym_f64] = ACTIONS(1345), + [anon_sym_bool] = ACTIONS(1345), + [anon_sym_str] = ACTIONS(1345), + [anon_sym_char] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_async] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_impl] = ACTIONS(1345), + [anon_sym_let] = ACTIONS(1345), + [anon_sym_loop] = ACTIONS(1345), + [anon_sym_match] = ACTIONS(1345), + [anon_sym_mod] = ACTIONS(1345), + [anon_sym_pub] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_static] = ACTIONS(1345), + [anon_sym_struct] = ACTIONS(1345), + [anon_sym_trait] = ACTIONS(1345), + [anon_sym_type] = ACTIONS(1345), + [anon_sym_union] = ACTIONS(1345), + [anon_sym_unsafe] = ACTIONS(1345), + [anon_sym_use] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_LT] = ACTIONS(1343), + [anon_sym_COLON_COLON] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_DOT_DOT] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_PIPE] = ACTIONS(1343), + [anon_sym_move] = ACTIONS(1345), + [sym_integer_literal] = ACTIONS(1343), + [aux_sym_string_literal_token1] = ACTIONS(1343), + [sym_char_literal] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1345), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(1343), + [sym_float_literal] = ACTIONS(1343), [sym_block_comment] = ACTIONS(3), }, [307] = { - [sym__token_pattern] = STATE(239), - [sym_token_tree_pattern] = STATE(239), - [sym_token_binding_pattern] = STATE(239), - [sym_token_repetition_pattern] = STATE(239), - [sym__literal] = STATE(239), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1270), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_RBRACK] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1108), - [anon_sym_u8] = ACTIONS(1270), - [anon_sym_i8] = ACTIONS(1270), - [anon_sym_u16] = ACTIONS(1270), - [anon_sym_i16] = ACTIONS(1270), - [anon_sym_u32] = ACTIONS(1270), - [anon_sym_i32] = ACTIONS(1270), - [anon_sym_u64] = ACTIONS(1270), - [anon_sym_i64] = ACTIONS(1270), - [anon_sym_u128] = ACTIONS(1270), - [anon_sym_i128] = ACTIONS(1270), - [anon_sym_isize] = ACTIONS(1270), - [anon_sym_usize] = ACTIONS(1270), - [anon_sym_f32] = ACTIONS(1270), - [anon_sym_f64] = ACTIONS(1270), - [anon_sym_bool] = ACTIONS(1270), - [anon_sym_str] = ACTIONS(1270), - [anon_sym_char] = ACTIONS(1270), - [aux_sym__non_special_token_token1] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_as] = ACTIONS(1270), - [anon_sym_async] = ACTIONS(1270), - [anon_sym_await] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_fn] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_impl] = ACTIONS(1270), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_loop] = ACTIONS(1270), - [anon_sym_match] = ACTIONS(1270), - [anon_sym_mod] = ACTIONS(1270), - [anon_sym_pub] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_trait] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_unsafe] = ACTIONS(1270), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_where] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [sym_mutable_specifier] = ACTIONS(1270), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1116), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [ts_builtin_sym_end] = ACTIONS(1347), + [sym_identifier] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_macro_rules_BANG] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1347), + [anon_sym_RBRACE] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_u8] = ACTIONS(1349), + [anon_sym_i8] = ACTIONS(1349), + [anon_sym_u16] = ACTIONS(1349), + [anon_sym_i16] = ACTIONS(1349), + [anon_sym_u32] = ACTIONS(1349), + [anon_sym_i32] = ACTIONS(1349), + [anon_sym_u64] = ACTIONS(1349), + [anon_sym_i64] = ACTIONS(1349), + [anon_sym_u128] = ACTIONS(1349), + [anon_sym_i128] = ACTIONS(1349), + [anon_sym_isize] = ACTIONS(1349), + [anon_sym_usize] = ACTIONS(1349), + [anon_sym_f32] = ACTIONS(1349), + [anon_sym_f64] = ACTIONS(1349), + [anon_sym_bool] = ACTIONS(1349), + [anon_sym_str] = ACTIONS(1349), + [anon_sym_char] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_default] = ACTIONS(1349), + [anon_sym_enum] = ACTIONS(1349), + [anon_sym_fn] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_impl] = ACTIONS(1349), + [anon_sym_let] = ACTIONS(1349), + [anon_sym_loop] = ACTIONS(1349), + [anon_sym_match] = ACTIONS(1349), + [anon_sym_mod] = ACTIONS(1349), + [anon_sym_pub] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_static] = ACTIONS(1349), + [anon_sym_struct] = ACTIONS(1349), + [anon_sym_trait] = ACTIONS(1349), + [anon_sym_type] = ACTIONS(1349), + [anon_sym_union] = ACTIONS(1349), + [anon_sym_unsafe] = ACTIONS(1349), + [anon_sym_use] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1349), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_DOT_DOT] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_move] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1347), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1349), + [sym_super] = ACTIONS(1349), + [sym_crate] = ACTIONS(1349), + [sym_metavariable] = ACTIONS(1347), + [sym_raw_string_literal] = ACTIONS(1347), + [sym_float_literal] = ACTIONS(1347), [sym_block_comment] = ACTIONS(3), }, [308] = { - [ts_builtin_sym_end] = ACTIONS(1346), - [sym_identifier] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_macro_rules_BANG] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_u8] = ACTIONS(1348), - [anon_sym_i8] = ACTIONS(1348), - [anon_sym_u16] = ACTIONS(1348), - [anon_sym_i16] = ACTIONS(1348), - [anon_sym_u32] = ACTIONS(1348), - [anon_sym_i32] = ACTIONS(1348), - [anon_sym_u64] = ACTIONS(1348), - [anon_sym_i64] = ACTIONS(1348), - [anon_sym_u128] = ACTIONS(1348), - [anon_sym_i128] = ACTIONS(1348), - [anon_sym_isize] = ACTIONS(1348), - [anon_sym_usize] = ACTIONS(1348), - [anon_sym_f32] = ACTIONS(1348), - [anon_sym_f64] = ACTIONS(1348), - [anon_sym_bool] = ACTIONS(1348), - [anon_sym_str] = ACTIONS(1348), - [anon_sym_char] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_impl] = ACTIONS(1348), - [anon_sym_let] = ACTIONS(1348), - [anon_sym_loop] = ACTIONS(1348), - [anon_sym_match] = ACTIONS(1348), - [anon_sym_mod] = ACTIONS(1348), - [anon_sym_pub] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_trait] = ACTIONS(1348), - [anon_sym_type] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_unsafe] = ACTIONS(1348), - [anon_sym_use] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_POUND] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym_LT] = ACTIONS(1346), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_move] = ACTIONS(1348), - [sym_integer_literal] = ACTIONS(1346), - [aux_sym_string_literal_token1] = ACTIONS(1346), - [sym_char_literal] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1348), - [anon_sym_false] = ACTIONS(1348), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1348), - [sym_super] = ACTIONS(1348), - [sym_crate] = ACTIONS(1348), - [sym_metavariable] = ACTIONS(1346), - [sym_raw_string_literal] = ACTIONS(1346), - [sym_float_literal] = ACTIONS(1346), + [ts_builtin_sym_end] = ACTIONS(1351), + [sym_identifier] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_macro_rules_BANG] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_RBRACE] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_u8] = ACTIONS(1353), + [anon_sym_i8] = ACTIONS(1353), + [anon_sym_u16] = ACTIONS(1353), + [anon_sym_i16] = ACTIONS(1353), + [anon_sym_u32] = ACTIONS(1353), + [anon_sym_i32] = ACTIONS(1353), + [anon_sym_u64] = ACTIONS(1353), + [anon_sym_i64] = ACTIONS(1353), + [anon_sym_u128] = ACTIONS(1353), + [anon_sym_i128] = ACTIONS(1353), + [anon_sym_isize] = ACTIONS(1353), + [anon_sym_usize] = ACTIONS(1353), + [anon_sym_f32] = ACTIONS(1353), + [anon_sym_f64] = ACTIONS(1353), + [anon_sym_bool] = ACTIONS(1353), + [anon_sym_str] = ACTIONS(1353), + [anon_sym_char] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_async] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1353), + [anon_sym_continue] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_enum] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_impl] = ACTIONS(1353), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_loop] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_mod] = ACTIONS(1353), + [anon_sym_pub] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_struct] = ACTIONS(1353), + [anon_sym_trait] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_union] = ACTIONS(1353), + [anon_sym_unsafe] = ACTIONS(1353), + [anon_sym_use] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_POUND] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_move] = ACTIONS(1353), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1351), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1353), + [anon_sym_false] = ACTIONS(1353), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1353), + [sym_crate] = ACTIONS(1353), + [sym_metavariable] = ACTIONS(1351), + [sym_raw_string_literal] = ACTIONS(1351), + [sym_float_literal] = ACTIONS(1351), [sym_block_comment] = ACTIONS(3), }, [309] = { - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_macro_rules_BANG] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_u8] = ACTIONS(1352), - [anon_sym_i8] = ACTIONS(1352), - [anon_sym_u16] = ACTIONS(1352), - [anon_sym_i16] = ACTIONS(1352), - [anon_sym_u32] = ACTIONS(1352), - [anon_sym_i32] = ACTIONS(1352), - [anon_sym_u64] = ACTIONS(1352), - [anon_sym_i64] = ACTIONS(1352), - [anon_sym_u128] = ACTIONS(1352), - [anon_sym_i128] = ACTIONS(1352), - [anon_sym_isize] = ACTIONS(1352), - [anon_sym_usize] = ACTIONS(1352), - [anon_sym_f32] = ACTIONS(1352), - [anon_sym_f64] = ACTIONS(1352), - [anon_sym_bool] = ACTIONS(1352), - [anon_sym_str] = ACTIONS(1352), - [anon_sym_char] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_async] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_fn] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_impl] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_loop] = ACTIONS(1352), - [anon_sym_match] = ACTIONS(1352), - [anon_sym_mod] = ACTIONS(1352), - [anon_sym_pub] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_trait] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_unsafe] = ACTIONS(1352), - [anon_sym_use] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_COLON_COLON] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_move] = ACTIONS(1352), - [sym_integer_literal] = ACTIONS(1350), - [aux_sym_string_literal_token1] = ACTIONS(1350), - [sym_char_literal] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1352), - [anon_sym_false] = ACTIONS(1352), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1352), - [sym_crate] = ACTIONS(1352), - [sym_metavariable] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1350), - [sym_float_literal] = ACTIONS(1350), + [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_LBRACE] = ACTIONS(1355), + [anon_sym_RBRACE] = ACTIONS(1355), + [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_COLON_COLON] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1357), + [sym_crate] = ACTIONS(1357), + [sym_metavariable] = ACTIONS(1355), + [sym_raw_string_literal] = ACTIONS(1355), + [sym_float_literal] = ACTIONS(1355), [sym_block_comment] = ACTIONS(3), }, [310] = { - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_macro_rules_BANG] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_fn] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_impl] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_loop] = ACTIONS(1356), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_mod] = ACTIONS(1356), - [anon_sym_pub] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_trait] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_unsafe] = ACTIONS(1356), - [anon_sym_use] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1354), - [anon_sym_COLON_COLON] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_DOT_DOT] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_move] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1354), - [aux_sym_string_literal_token1] = ACTIONS(1354), - [sym_char_literal] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1354), - [sym_raw_string_literal] = ACTIONS(1354), - [sym_float_literal] = ACTIONS(1354), + [ts_builtin_sym_end] = ACTIONS(1359), + [sym_identifier] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_macro_rules_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_RBRACE] = ACTIONS(1359), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_u8] = ACTIONS(1361), + [anon_sym_i8] = ACTIONS(1361), + [anon_sym_u16] = ACTIONS(1361), + [anon_sym_i16] = ACTIONS(1361), + [anon_sym_u32] = ACTIONS(1361), + [anon_sym_i32] = ACTIONS(1361), + [anon_sym_u64] = ACTIONS(1361), + [anon_sym_i64] = ACTIONS(1361), + [anon_sym_u128] = ACTIONS(1361), + [anon_sym_i128] = ACTIONS(1361), + [anon_sym_isize] = ACTIONS(1361), + [anon_sym_usize] = ACTIONS(1361), + [anon_sym_f32] = ACTIONS(1361), + [anon_sym_f64] = ACTIONS(1361), + [anon_sym_bool] = ACTIONS(1361), + [anon_sym_str] = ACTIONS(1361), + [anon_sym_char] = ACTIONS(1361), + [anon_sym_SQUOTE] = ACTIONS(1361), + [anon_sym_async] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1361), + [anon_sym_fn] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_impl] = ACTIONS(1361), + [anon_sym_let] = ACTIONS(1361), + [anon_sym_loop] = ACTIONS(1361), + [anon_sym_match] = ACTIONS(1361), + [anon_sym_mod] = ACTIONS(1361), + [anon_sym_pub] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_static] = ACTIONS(1361), + [anon_sym_struct] = ACTIONS(1361), + [anon_sym_trait] = ACTIONS(1361), + [anon_sym_type] = ACTIONS(1361), + [anon_sym_union] = ACTIONS(1361), + [anon_sym_unsafe] = ACTIONS(1361), + [anon_sym_use] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_POUND] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_DOT_DOT] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1361), + [sym_integer_literal] = ACTIONS(1359), + [aux_sym_string_literal_token1] = ACTIONS(1359), + [sym_char_literal] = ACTIONS(1359), + [anon_sym_true] = ACTIONS(1361), + [anon_sym_false] = ACTIONS(1361), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1361), + [sym_super] = ACTIONS(1361), + [sym_crate] = ACTIONS(1361), + [sym_metavariable] = ACTIONS(1359), + [sym_raw_string_literal] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1359), [sym_block_comment] = ACTIONS(3), }, [311] = { - [ts_builtin_sym_end] = ACTIONS(1358), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_macro_rules_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1360), - [anon_sym_i8] = ACTIONS(1360), - [anon_sym_u16] = ACTIONS(1360), - [anon_sym_i16] = ACTIONS(1360), - [anon_sym_u32] = ACTIONS(1360), - [anon_sym_i32] = ACTIONS(1360), - [anon_sym_u64] = ACTIONS(1360), - [anon_sym_i64] = ACTIONS(1360), - [anon_sym_u128] = ACTIONS(1360), - [anon_sym_i128] = ACTIONS(1360), - [anon_sym_isize] = ACTIONS(1360), - [anon_sym_usize] = ACTIONS(1360), - [anon_sym_f32] = ACTIONS(1360), - [anon_sym_f64] = ACTIONS(1360), - [anon_sym_bool] = ACTIONS(1360), - [anon_sym_str] = ACTIONS(1360), - [anon_sym_char] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_async] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_impl] = ACTIONS(1360), - [anon_sym_let] = ACTIONS(1360), - [anon_sym_loop] = ACTIONS(1360), - [anon_sym_match] = ACTIONS(1360), - [anon_sym_mod] = ACTIONS(1360), - [anon_sym_pub] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_trait] = ACTIONS(1360), - [anon_sym_type] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_unsafe] = ACTIONS(1360), - [anon_sym_use] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_DOT_DOT] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_move] = ACTIONS(1360), - [sym_integer_literal] = ACTIONS(1358), - [aux_sym_string_literal_token1] = ACTIONS(1358), - [sym_char_literal] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1360), - [anon_sym_false] = ACTIONS(1360), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1360), - [sym_super] = ACTIONS(1360), - [sym_crate] = ACTIONS(1360), - [sym_metavariable] = ACTIONS(1358), - [sym_raw_string_literal] = ACTIONS(1358), - [sym_float_literal] = ACTIONS(1358), + [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_LBRACE] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1363), + [anon_sym_COLON_COLON] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_PIPE] = ACTIONS(1363), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1365), + [sym_super] = ACTIONS(1365), + [sym_crate] = ACTIONS(1365), + [sym_metavariable] = ACTIONS(1363), + [sym_raw_string_literal] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1363), [sym_block_comment] = ACTIONS(3), }, [312] = { - [ts_builtin_sym_end] = ACTIONS(1362), - [sym_identifier] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_macro_rules_BANG] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_u8] = ACTIONS(1364), - [anon_sym_i8] = ACTIONS(1364), - [anon_sym_u16] = ACTIONS(1364), - [anon_sym_i16] = ACTIONS(1364), - [anon_sym_u32] = ACTIONS(1364), - [anon_sym_i32] = ACTIONS(1364), - [anon_sym_u64] = ACTIONS(1364), - [anon_sym_i64] = ACTIONS(1364), - [anon_sym_u128] = ACTIONS(1364), - [anon_sym_i128] = ACTIONS(1364), - [anon_sym_isize] = ACTIONS(1364), - [anon_sym_usize] = ACTIONS(1364), - [anon_sym_f32] = ACTIONS(1364), - [anon_sym_f64] = ACTIONS(1364), - [anon_sym_bool] = ACTIONS(1364), - [anon_sym_str] = ACTIONS(1364), - [anon_sym_char] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_async] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_fn] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_impl] = ACTIONS(1364), - [anon_sym_let] = ACTIONS(1364), - [anon_sym_loop] = ACTIONS(1364), - [anon_sym_match] = ACTIONS(1364), - [anon_sym_mod] = ACTIONS(1364), - [anon_sym_pub] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_trait] = ACTIONS(1364), - [anon_sym_type] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_unsafe] = ACTIONS(1364), - [anon_sym_use] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_COLON_COLON] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_move] = ACTIONS(1364), - [sym_integer_literal] = ACTIONS(1362), - [aux_sym_string_literal_token1] = ACTIONS(1362), - [sym_char_literal] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1364), - [anon_sym_false] = ACTIONS(1364), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1364), - [sym_super] = ACTIONS(1364), - [sym_crate] = ACTIONS(1364), - [sym_metavariable] = ACTIONS(1362), - [sym_raw_string_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1362), + [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_LBRACE] = ACTIONS(1367), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_extern] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1367), + [anon_sym_COLON_COLON] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1369), + [sym_super] = ACTIONS(1369), + [sym_crate] = ACTIONS(1369), + [sym_metavariable] = ACTIONS(1367), + [sym_raw_string_literal] = ACTIONS(1367), + [sym_float_literal] = ACTIONS(1367), [sym_block_comment] = ACTIONS(3), }, [313] = { - [ts_builtin_sym_end] = ACTIONS(1366), - [sym_identifier] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_macro_rules_BANG] = ACTIONS(1366), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_u8] = ACTIONS(1368), - [anon_sym_i8] = ACTIONS(1368), - [anon_sym_u16] = ACTIONS(1368), - [anon_sym_i16] = ACTIONS(1368), - [anon_sym_u32] = ACTIONS(1368), - [anon_sym_i32] = ACTIONS(1368), - [anon_sym_u64] = ACTIONS(1368), - [anon_sym_i64] = ACTIONS(1368), - [anon_sym_u128] = ACTIONS(1368), - [anon_sym_i128] = ACTIONS(1368), - [anon_sym_isize] = ACTIONS(1368), - [anon_sym_usize] = ACTIONS(1368), - [anon_sym_f32] = ACTIONS(1368), - [anon_sym_f64] = ACTIONS(1368), - [anon_sym_bool] = ACTIONS(1368), - [anon_sym_str] = ACTIONS(1368), - [anon_sym_char] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_async] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_impl] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_pub] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_trait] = ACTIONS(1368), - [anon_sym_type] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_unsafe] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_LT] = ACTIONS(1366), - [anon_sym_COLON_COLON] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_DOT_DOT] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PIPE] = ACTIONS(1366), - [anon_sym_move] = ACTIONS(1368), - [sym_integer_literal] = ACTIONS(1366), - [aux_sym_string_literal_token1] = ACTIONS(1366), - [sym_char_literal] = ACTIONS(1366), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1368), - [sym_super] = ACTIONS(1368), - [sym_crate] = ACTIONS(1368), - [sym_metavariable] = ACTIONS(1366), - [sym_raw_string_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1366), + [ts_builtin_sym_end] = ACTIONS(1371), + [sym_identifier] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_macro_rules_BANG] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_RBRACE] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1373), + [anon_sym_i8] = ACTIONS(1373), + [anon_sym_u16] = ACTIONS(1373), + [anon_sym_i16] = ACTIONS(1373), + [anon_sym_u32] = ACTIONS(1373), + [anon_sym_i32] = ACTIONS(1373), + [anon_sym_u64] = ACTIONS(1373), + [anon_sym_i64] = ACTIONS(1373), + [anon_sym_u128] = ACTIONS(1373), + [anon_sym_i128] = ACTIONS(1373), + [anon_sym_isize] = ACTIONS(1373), + [anon_sym_usize] = ACTIONS(1373), + [anon_sym_f32] = ACTIONS(1373), + [anon_sym_f64] = ACTIONS(1373), + [anon_sym_bool] = ACTIONS(1373), + [anon_sym_str] = ACTIONS(1373), + [anon_sym_char] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1373), + [anon_sym_async] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_default] = ACTIONS(1373), + [anon_sym_enum] = ACTIONS(1373), + [anon_sym_fn] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_impl] = ACTIONS(1373), + [anon_sym_let] = ACTIONS(1373), + [anon_sym_loop] = ACTIONS(1373), + [anon_sym_match] = ACTIONS(1373), + [anon_sym_mod] = ACTIONS(1373), + [anon_sym_pub] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_struct] = ACTIONS(1373), + [anon_sym_trait] = ACTIONS(1373), + [anon_sym_type] = ACTIONS(1373), + [anon_sym_union] = ACTIONS(1373), + [anon_sym_unsafe] = ACTIONS(1373), + [anon_sym_use] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_POUND] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_extern] = ACTIONS(1373), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_COLON_COLON] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_PIPE] = ACTIONS(1371), + [anon_sym_move] = ACTIONS(1373), + [sym_integer_literal] = ACTIONS(1371), + [aux_sym_string_literal_token1] = ACTIONS(1371), + [sym_char_literal] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(1373), + [anon_sym_false] = ACTIONS(1373), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1373), + [sym_super] = ACTIONS(1373), + [sym_crate] = ACTIONS(1373), + [sym_metavariable] = ACTIONS(1371), + [sym_raw_string_literal] = ACTIONS(1371), + [sym_float_literal] = ACTIONS(1371), [sym_block_comment] = ACTIONS(3), }, [314] = { - [ts_builtin_sym_end] = ACTIONS(1370), - [sym_identifier] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_macro_rules_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_u8] = ACTIONS(1372), - [anon_sym_i8] = ACTIONS(1372), - [anon_sym_u16] = ACTIONS(1372), - [anon_sym_i16] = ACTIONS(1372), - [anon_sym_u32] = ACTIONS(1372), - [anon_sym_i32] = ACTIONS(1372), - [anon_sym_u64] = ACTIONS(1372), - [anon_sym_i64] = ACTIONS(1372), - [anon_sym_u128] = ACTIONS(1372), - [anon_sym_i128] = ACTIONS(1372), - [anon_sym_isize] = ACTIONS(1372), - [anon_sym_usize] = ACTIONS(1372), - [anon_sym_f32] = ACTIONS(1372), - [anon_sym_f64] = ACTIONS(1372), - [anon_sym_bool] = ACTIONS(1372), - [anon_sym_str] = ACTIONS(1372), - [anon_sym_char] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_impl] = ACTIONS(1372), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_loop] = ACTIONS(1372), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_mod] = ACTIONS(1372), - [anon_sym_pub] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_trait] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1372), - [anon_sym_use] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_move] = ACTIONS(1372), - [sym_integer_literal] = ACTIONS(1370), - [aux_sym_string_literal_token1] = ACTIONS(1370), - [sym_char_literal] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_crate] = ACTIONS(1372), - [sym_metavariable] = ACTIONS(1370), - [sym_raw_string_literal] = ACTIONS(1370), - [sym_float_literal] = ACTIONS(1370), + [ts_builtin_sym_end] = ACTIONS(1375), + [sym_identifier] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_macro_rules_BANG] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_u8] = ACTIONS(1377), + [anon_sym_i8] = ACTIONS(1377), + [anon_sym_u16] = ACTIONS(1377), + [anon_sym_i16] = ACTIONS(1377), + [anon_sym_u32] = ACTIONS(1377), + [anon_sym_i32] = ACTIONS(1377), + [anon_sym_u64] = ACTIONS(1377), + [anon_sym_i64] = ACTIONS(1377), + [anon_sym_u128] = ACTIONS(1377), + [anon_sym_i128] = ACTIONS(1377), + [anon_sym_isize] = ACTIONS(1377), + [anon_sym_usize] = ACTIONS(1377), + [anon_sym_f32] = ACTIONS(1377), + [anon_sym_f64] = ACTIONS(1377), + [anon_sym_bool] = ACTIONS(1377), + [anon_sym_str] = ACTIONS(1377), + [anon_sym_char] = ACTIONS(1377), + [anon_sym_SQUOTE] = ACTIONS(1377), + [anon_sym_async] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_default] = ACTIONS(1377), + [anon_sym_enum] = ACTIONS(1377), + [anon_sym_fn] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_impl] = ACTIONS(1377), + [anon_sym_let] = ACTIONS(1377), + [anon_sym_loop] = ACTIONS(1377), + [anon_sym_match] = ACTIONS(1377), + [anon_sym_mod] = ACTIONS(1377), + [anon_sym_pub] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1377), + [anon_sym_struct] = ACTIONS(1377), + [anon_sym_trait] = ACTIONS(1377), + [anon_sym_type] = ACTIONS(1377), + [anon_sym_union] = ACTIONS(1377), + [anon_sym_unsafe] = ACTIONS(1377), + [anon_sym_use] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_POUND] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_DOT_DOT] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_move] = ACTIONS(1377), + [sym_integer_literal] = ACTIONS(1375), + [aux_sym_string_literal_token1] = ACTIONS(1375), + [sym_char_literal] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1377), + [anon_sym_false] = ACTIONS(1377), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1377), + [sym_super] = ACTIONS(1377), + [sym_crate] = ACTIONS(1377), + [sym_metavariable] = ACTIONS(1375), + [sym_raw_string_literal] = ACTIONS(1375), + [sym_float_literal] = ACTIONS(1375), [sym_block_comment] = ACTIONS(3), }, [315] = { - [ts_builtin_sym_end] = ACTIONS(1374), - [sym_identifier] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym_macro_rules_BANG] = ACTIONS(1374), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_u8] = ACTIONS(1376), - [anon_sym_i8] = ACTIONS(1376), - [anon_sym_u16] = ACTIONS(1376), - [anon_sym_i16] = ACTIONS(1376), - [anon_sym_u32] = ACTIONS(1376), - [anon_sym_i32] = ACTIONS(1376), - [anon_sym_u64] = ACTIONS(1376), - [anon_sym_i64] = ACTIONS(1376), - [anon_sym_u128] = ACTIONS(1376), - [anon_sym_i128] = ACTIONS(1376), - [anon_sym_isize] = ACTIONS(1376), - [anon_sym_usize] = ACTIONS(1376), - [anon_sym_f32] = ACTIONS(1376), - [anon_sym_f64] = ACTIONS(1376), - [anon_sym_bool] = ACTIONS(1376), - [anon_sym_str] = ACTIONS(1376), - [anon_sym_char] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_async] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_fn] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_impl] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1376), - [anon_sym_pub] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_trait] = ACTIONS(1376), - [anon_sym_type] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_LT] = ACTIONS(1374), - [anon_sym_COLON_COLON] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_DOT_DOT] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PIPE] = ACTIONS(1374), - [anon_sym_move] = ACTIONS(1376), - [sym_integer_literal] = ACTIONS(1374), - [aux_sym_string_literal_token1] = ACTIONS(1374), - [sym_char_literal] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1376), - [sym_super] = ACTIONS(1376), - [sym_crate] = ACTIONS(1376), - [sym_metavariable] = ACTIONS(1374), - [sym_raw_string_literal] = ACTIONS(1374), - [sym_float_literal] = ACTIONS(1374), + [ts_builtin_sym_end] = ACTIONS(1379), + [sym_identifier] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_macro_rules_BANG] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_RBRACE] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1381), + [anon_sym_i8] = ACTIONS(1381), + [anon_sym_u16] = ACTIONS(1381), + [anon_sym_i16] = ACTIONS(1381), + [anon_sym_u32] = ACTIONS(1381), + [anon_sym_i32] = ACTIONS(1381), + [anon_sym_u64] = ACTIONS(1381), + [anon_sym_i64] = ACTIONS(1381), + [anon_sym_u128] = ACTIONS(1381), + [anon_sym_i128] = ACTIONS(1381), + [anon_sym_isize] = ACTIONS(1381), + [anon_sym_usize] = ACTIONS(1381), + [anon_sym_f32] = ACTIONS(1381), + [anon_sym_f64] = ACTIONS(1381), + [anon_sym_bool] = ACTIONS(1381), + [anon_sym_str] = ACTIONS(1381), + [anon_sym_char] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1381), + [anon_sym_async] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1381), + [anon_sym_enum] = ACTIONS(1381), + [anon_sym_fn] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_impl] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1381), + [anon_sym_mod] = ACTIONS(1381), + [anon_sym_pub] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_struct] = ACTIONS(1381), + [anon_sym_trait] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1381), + [anon_sym_unsafe] = ACTIONS(1381), + [anon_sym_use] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_COLON_COLON] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1379), + [anon_sym_move] = ACTIONS(1381), + [sym_integer_literal] = ACTIONS(1379), + [aux_sym_string_literal_token1] = ACTIONS(1379), + [sym_char_literal] = ACTIONS(1379), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1381), + [sym_super] = ACTIONS(1381), + [sym_crate] = ACTIONS(1381), + [sym_metavariable] = ACTIONS(1379), + [sym_raw_string_literal] = ACTIONS(1379), + [sym_float_literal] = ACTIONS(1379), [sym_block_comment] = ACTIONS(3), }, [316] = { - [ts_builtin_sym_end] = ACTIONS(1378), - [sym_identifier] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_macro_rules_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_u8] = ACTIONS(1380), - [anon_sym_i8] = ACTIONS(1380), - [anon_sym_u16] = ACTIONS(1380), - [anon_sym_i16] = ACTIONS(1380), - [anon_sym_u32] = ACTIONS(1380), - [anon_sym_i32] = ACTIONS(1380), - [anon_sym_u64] = ACTIONS(1380), - [anon_sym_i64] = ACTIONS(1380), - [anon_sym_u128] = ACTIONS(1380), - [anon_sym_i128] = ACTIONS(1380), - [anon_sym_isize] = ACTIONS(1380), - [anon_sym_usize] = ACTIONS(1380), - [anon_sym_f32] = ACTIONS(1380), - [anon_sym_f64] = ACTIONS(1380), - [anon_sym_bool] = ACTIONS(1380), - [anon_sym_str] = ACTIONS(1380), - [anon_sym_char] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_fn] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_impl] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_loop] = ACTIONS(1380), - [anon_sym_match] = ACTIONS(1380), - [anon_sym_mod] = ACTIONS(1380), - [anon_sym_pub] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_trait] = ACTIONS(1380), - [anon_sym_type] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_unsafe] = ACTIONS(1380), - [anon_sym_use] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_POUND] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1378), - [anon_sym_COLON_COLON] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_move] = ACTIONS(1380), - [sym_integer_literal] = ACTIONS(1378), - [aux_sym_string_literal_token1] = ACTIONS(1378), - [sym_char_literal] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1380), - [anon_sym_false] = ACTIONS(1380), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1380), - [sym_super] = ACTIONS(1380), - [sym_crate] = ACTIONS(1380), - [sym_metavariable] = ACTIONS(1378), - [sym_raw_string_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1378), + [ts_builtin_sym_end] = ACTIONS(1383), + [sym_identifier] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_macro_rules_BANG] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_u8] = ACTIONS(1385), + [anon_sym_i8] = ACTIONS(1385), + [anon_sym_u16] = ACTIONS(1385), + [anon_sym_i16] = ACTIONS(1385), + [anon_sym_u32] = ACTIONS(1385), + [anon_sym_i32] = ACTIONS(1385), + [anon_sym_u64] = ACTIONS(1385), + [anon_sym_i64] = ACTIONS(1385), + [anon_sym_u128] = ACTIONS(1385), + [anon_sym_i128] = ACTIONS(1385), + [anon_sym_isize] = ACTIONS(1385), + [anon_sym_usize] = ACTIONS(1385), + [anon_sym_f32] = ACTIONS(1385), + [anon_sym_f64] = ACTIONS(1385), + [anon_sym_bool] = ACTIONS(1385), + [anon_sym_str] = ACTIONS(1385), + [anon_sym_char] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1385), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1385), + [anon_sym_enum] = ACTIONS(1385), + [anon_sym_fn] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_impl] = ACTIONS(1385), + [anon_sym_let] = ACTIONS(1385), + [anon_sym_loop] = ACTIONS(1385), + [anon_sym_match] = ACTIONS(1385), + [anon_sym_mod] = ACTIONS(1385), + [anon_sym_pub] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_struct] = ACTIONS(1385), + [anon_sym_trait] = ACTIONS(1385), + [anon_sym_type] = ACTIONS(1385), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_unsafe] = ACTIONS(1385), + [anon_sym_use] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_POUND] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_extern] = ACTIONS(1385), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_move] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1383), + [aux_sym_string_literal_token1] = ACTIONS(1383), + [sym_char_literal] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1385), + [anon_sym_false] = ACTIONS(1385), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1385), + [sym_super] = ACTIONS(1385), + [sym_crate] = ACTIONS(1385), + [sym_metavariable] = ACTIONS(1383), + [sym_raw_string_literal] = ACTIONS(1383), + [sym_float_literal] = ACTIONS(1383), [sym_block_comment] = ACTIONS(3), }, [317] = { - [ts_builtin_sym_end] = ACTIONS(1382), - [sym_identifier] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_macro_rules_BANG] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_u8] = ACTIONS(1384), - [anon_sym_i8] = ACTIONS(1384), - [anon_sym_u16] = ACTIONS(1384), - [anon_sym_i16] = ACTIONS(1384), - [anon_sym_u32] = ACTIONS(1384), - [anon_sym_i32] = ACTIONS(1384), - [anon_sym_u64] = ACTIONS(1384), - [anon_sym_i64] = ACTIONS(1384), - [anon_sym_u128] = ACTIONS(1384), - [anon_sym_i128] = ACTIONS(1384), - [anon_sym_isize] = ACTIONS(1384), - [anon_sym_usize] = ACTIONS(1384), - [anon_sym_f32] = ACTIONS(1384), - [anon_sym_f64] = ACTIONS(1384), - [anon_sym_bool] = ACTIONS(1384), - [anon_sym_str] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_async] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_impl] = ACTIONS(1384), - [anon_sym_let] = ACTIONS(1384), - [anon_sym_loop] = ACTIONS(1384), - [anon_sym_match] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_pub] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_struct] = ACTIONS(1384), - [anon_sym_trait] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_unsafe] = ACTIONS(1384), - [anon_sym_use] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1382), - [anon_sym_COLON_COLON] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_DOT_DOT] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PIPE] = ACTIONS(1382), - [anon_sym_move] = ACTIONS(1384), - [sym_integer_literal] = ACTIONS(1382), - [aux_sym_string_literal_token1] = ACTIONS(1382), - [sym_char_literal] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1384), - [sym_super] = ACTIONS(1384), - [sym_crate] = ACTIONS(1384), - [sym_metavariable] = ACTIONS(1382), - [sym_raw_string_literal] = ACTIONS(1382), - [sym_float_literal] = ACTIONS(1382), + [ts_builtin_sym_end] = ACTIONS(1387), + [sym_identifier] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_macro_rules_BANG] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_u8] = ACTIONS(1389), + [anon_sym_i8] = ACTIONS(1389), + [anon_sym_u16] = ACTIONS(1389), + [anon_sym_i16] = ACTIONS(1389), + [anon_sym_u32] = ACTIONS(1389), + [anon_sym_i32] = ACTIONS(1389), + [anon_sym_u64] = ACTIONS(1389), + [anon_sym_i64] = ACTIONS(1389), + [anon_sym_u128] = ACTIONS(1389), + [anon_sym_i128] = ACTIONS(1389), + [anon_sym_isize] = ACTIONS(1389), + [anon_sym_usize] = ACTIONS(1389), + [anon_sym_f32] = ACTIONS(1389), + [anon_sym_f64] = ACTIONS(1389), + [anon_sym_bool] = ACTIONS(1389), + [anon_sym_str] = ACTIONS(1389), + [anon_sym_char] = ACTIONS(1389), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_enum] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_impl] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_loop] = ACTIONS(1389), + [anon_sym_match] = ACTIONS(1389), + [anon_sym_mod] = ACTIONS(1389), + [anon_sym_pub] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_struct] = ACTIONS(1389), + [anon_sym_trait] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_union] = ACTIONS(1389), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_use] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_POUND] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_move] = ACTIONS(1389), + [sym_integer_literal] = ACTIONS(1387), + [aux_sym_string_literal_token1] = ACTIONS(1387), + [sym_char_literal] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1389), + [anon_sym_false] = ACTIONS(1389), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1389), + [sym_super] = ACTIONS(1389), + [sym_crate] = ACTIONS(1389), + [sym_metavariable] = ACTIONS(1387), + [sym_raw_string_literal] = ACTIONS(1387), + [sym_float_literal] = ACTIONS(1387), [sym_block_comment] = ACTIONS(3), }, [318] = { - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_identifier] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_macro_rules_BANG] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_u8] = ACTIONS(1388), - [anon_sym_i8] = ACTIONS(1388), - [anon_sym_u16] = ACTIONS(1388), - [anon_sym_i16] = ACTIONS(1388), - [anon_sym_u32] = ACTIONS(1388), - [anon_sym_i32] = ACTIONS(1388), - [anon_sym_u64] = ACTIONS(1388), - [anon_sym_i64] = ACTIONS(1388), - [anon_sym_u128] = ACTIONS(1388), - [anon_sym_i128] = ACTIONS(1388), - [anon_sym_isize] = ACTIONS(1388), - [anon_sym_usize] = ACTIONS(1388), - [anon_sym_f32] = ACTIONS(1388), - [anon_sym_f64] = ACTIONS(1388), - [anon_sym_bool] = ACTIONS(1388), - [anon_sym_str] = ACTIONS(1388), - [anon_sym_char] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_async] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_fn] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_impl] = ACTIONS(1388), - [anon_sym_let] = ACTIONS(1388), - [anon_sym_loop] = ACTIONS(1388), - [anon_sym_match] = ACTIONS(1388), - [anon_sym_mod] = ACTIONS(1388), - [anon_sym_pub] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1388), - [anon_sym_trait] = ACTIONS(1388), - [anon_sym_type] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_unsafe] = ACTIONS(1388), - [anon_sym_use] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_move] = ACTIONS(1388), - [sym_integer_literal] = ACTIONS(1386), - [aux_sym_string_literal_token1] = ACTIONS(1386), - [sym_char_literal] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1388), - [anon_sym_false] = ACTIONS(1388), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1388), - [sym_super] = ACTIONS(1388), - [sym_crate] = ACTIONS(1388), - [sym_metavariable] = ACTIONS(1386), - [sym_raw_string_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1386), + [sym__token_pattern] = STATE(330), + [sym_token_tree_pattern] = STATE(330), + [sym_token_binding_pattern] = STATE(330), + [sym_token_repetition_pattern] = STATE(330), + [sym__literal] = STATE(330), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_pattern_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1200), + [anon_sym_u8] = ACTIONS(1391), + [anon_sym_i8] = ACTIONS(1391), + [anon_sym_u16] = ACTIONS(1391), + [anon_sym_i16] = ACTIONS(1391), + [anon_sym_u32] = ACTIONS(1391), + [anon_sym_i32] = ACTIONS(1391), + [anon_sym_u64] = ACTIONS(1391), + [anon_sym_i64] = ACTIONS(1391), + [anon_sym_u128] = ACTIONS(1391), + [anon_sym_i128] = ACTIONS(1391), + [anon_sym_isize] = ACTIONS(1391), + [anon_sym_usize] = ACTIONS(1391), + [anon_sym_f32] = ACTIONS(1391), + [anon_sym_f64] = ACTIONS(1391), + [anon_sym_bool] = ACTIONS(1391), + [anon_sym_str] = ACTIONS(1391), + [anon_sym_char] = ACTIONS(1391), + [aux_sym__non_special_token_token1] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_await] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1391), + [anon_sym_enum] = ACTIONS(1391), + [anon_sym_fn] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_impl] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_mod] = ACTIONS(1391), + [anon_sym_pub] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1391), + [anon_sym_trait] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_union] = ACTIONS(1391), + [anon_sym_unsafe] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [sym_mutable_specifier] = ACTIONS(1391), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(1391), + [sym_super] = ACTIONS(1391), + [sym_crate] = ACTIONS(1391), + [sym_metavariable] = ACTIONS(1208), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, [319] = { - [ts_builtin_sym_end] = ACTIONS(1390), - [sym_identifier] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_macro_rules_BANG] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_u8] = ACTIONS(1392), - [anon_sym_i8] = ACTIONS(1392), - [anon_sym_u16] = ACTIONS(1392), - [anon_sym_i16] = ACTIONS(1392), - [anon_sym_u32] = ACTIONS(1392), - [anon_sym_i32] = ACTIONS(1392), - [anon_sym_u64] = ACTIONS(1392), - [anon_sym_i64] = ACTIONS(1392), - [anon_sym_u128] = ACTIONS(1392), - [anon_sym_i128] = ACTIONS(1392), - [anon_sym_isize] = ACTIONS(1392), - [anon_sym_usize] = ACTIONS(1392), - [anon_sym_f32] = ACTIONS(1392), - [anon_sym_f64] = ACTIONS(1392), - [anon_sym_bool] = ACTIONS(1392), - [anon_sym_str] = ACTIONS(1392), - [anon_sym_char] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_async] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_fn] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_impl] = ACTIONS(1392), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_loop] = ACTIONS(1392), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_mod] = ACTIONS(1392), - [anon_sym_pub] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_trait] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_unsafe] = ACTIONS(1392), - [anon_sym_use] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_COLON_COLON] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_DOT_DOT] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_move] = ACTIONS(1392), - [sym_integer_literal] = ACTIONS(1390), - [aux_sym_string_literal_token1] = ACTIONS(1390), - [sym_char_literal] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1392), - [anon_sym_false] = ACTIONS(1392), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1392), - [sym_super] = ACTIONS(1392), - [sym_crate] = ACTIONS(1392), - [sym_metavariable] = ACTIONS(1390), - [sym_raw_string_literal] = ACTIONS(1390), - [sym_float_literal] = ACTIONS(1390), + [sym__token_pattern] = STATE(331), + [sym_token_tree_pattern] = STATE(331), + [sym_token_binding_pattern] = STATE(331), + [sym_token_repetition_pattern] = STATE(331), + [sym__literal] = STATE(331), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_pattern_repeat1] = STATE(331), + [sym_identifier] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1200), + [anon_sym_u8] = ACTIONS(1395), + [anon_sym_i8] = ACTIONS(1395), + [anon_sym_u16] = ACTIONS(1395), + [anon_sym_i16] = ACTIONS(1395), + [anon_sym_u32] = ACTIONS(1395), + [anon_sym_i32] = ACTIONS(1395), + [anon_sym_u64] = ACTIONS(1395), + [anon_sym_i64] = ACTIONS(1395), + [anon_sym_u128] = ACTIONS(1395), + [anon_sym_i128] = ACTIONS(1395), + [anon_sym_isize] = ACTIONS(1395), + [anon_sym_usize] = ACTIONS(1395), + [anon_sym_f32] = ACTIONS(1395), + [anon_sym_f64] = ACTIONS(1395), + [anon_sym_bool] = ACTIONS(1395), + [anon_sym_str] = ACTIONS(1395), + [anon_sym_char] = ACTIONS(1395), + [aux_sym__non_special_token_token1] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_as] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1395), + [anon_sym_await] = ACTIONS(1395), + [anon_sym_break] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_impl] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_loop] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1395), + [anon_sym_mod] = ACTIONS(1395), + [anon_sym_pub] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_struct] = ACTIONS(1395), + [anon_sym_trait] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_union] = ACTIONS(1395), + [anon_sym_unsafe] = ACTIONS(1395), + [anon_sym_use] = ACTIONS(1395), + [anon_sym_where] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [sym_mutable_specifier] = ACTIONS(1395), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(1395), + [sym_super] = ACTIONS(1395), + [sym_crate] = ACTIONS(1395), + [sym_metavariable] = ACTIONS(1208), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, [320] = { - [ts_builtin_sym_end] = ACTIONS(1394), - [sym_identifier] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_macro_rules_BANG] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_u8] = ACTIONS(1396), - [anon_sym_i8] = ACTIONS(1396), - [anon_sym_u16] = ACTIONS(1396), - [anon_sym_i16] = ACTIONS(1396), - [anon_sym_u32] = ACTIONS(1396), - [anon_sym_i32] = ACTIONS(1396), - [anon_sym_u64] = ACTIONS(1396), - [anon_sym_i64] = ACTIONS(1396), - [anon_sym_u128] = ACTIONS(1396), - [anon_sym_i128] = ACTIONS(1396), - [anon_sym_isize] = ACTIONS(1396), - [anon_sym_usize] = ACTIONS(1396), - [anon_sym_f32] = ACTIONS(1396), - [anon_sym_f64] = ACTIONS(1396), - [anon_sym_bool] = ACTIONS(1396), - [anon_sym_str] = ACTIONS(1396), - [anon_sym_char] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_async] = ACTIONS(1396), - [anon_sym_break] = ACTIONS(1396), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_continue] = ACTIONS(1396), - [anon_sym_default] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1396), - [anon_sym_fn] = ACTIONS(1396), - [anon_sym_for] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_impl] = ACTIONS(1396), - [anon_sym_let] = ACTIONS(1396), - [anon_sym_loop] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1396), - [anon_sym_mod] = ACTIONS(1396), - [anon_sym_pub] = ACTIONS(1396), - [anon_sym_return] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1396), - [anon_sym_struct] = ACTIONS(1396), - [anon_sym_trait] = ACTIONS(1396), - [anon_sym_type] = ACTIONS(1396), - [anon_sym_union] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1396), - [anon_sym_use] = ACTIONS(1396), - [anon_sym_while] = ACTIONS(1396), - [anon_sym_POUND] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_COLON_COLON] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_move] = ACTIONS(1396), - [sym_integer_literal] = ACTIONS(1394), - [aux_sym_string_literal_token1] = ACTIONS(1394), - [sym_char_literal] = ACTIONS(1394), - [anon_sym_true] = ACTIONS(1396), - [anon_sym_false] = ACTIONS(1396), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1396), - [sym_super] = ACTIONS(1396), - [sym_crate] = ACTIONS(1396), - [sym_metavariable] = ACTIONS(1394), - [sym_raw_string_literal] = ACTIONS(1394), - [sym_float_literal] = ACTIONS(1394), + [sym__token_pattern] = STATE(333), + [sym_token_tree_pattern] = STATE(333), + [sym_token_binding_pattern] = STATE(333), + [sym_token_repetition_pattern] = STATE(333), + [sym__literal] = STATE(333), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_pattern_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_RBRACK] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1200), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(1397), + [anon_sym_SQUOTE] = ACTIONS(1397), + [anon_sym_as] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1397), + [anon_sym_enum] = ACTIONS(1397), + [anon_sym_fn] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1397), + [anon_sym_let] = ACTIONS(1397), + [anon_sym_loop] = ACTIONS(1397), + [anon_sym_match] = ACTIONS(1397), + [anon_sym_mod] = ACTIONS(1397), + [anon_sym_pub] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_struct] = ACTIONS(1397), + [anon_sym_trait] = ACTIONS(1397), + [anon_sym_type] = ACTIONS(1397), + [anon_sym_union] = ACTIONS(1397), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_use] = ACTIONS(1397), + [anon_sym_where] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(1397), + [sym_super] = ACTIONS(1397), + [sym_crate] = ACTIONS(1397), + [sym_metavariable] = ACTIONS(1208), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, [321] = { - [ts_builtin_sym_end] = ACTIONS(1398), - [sym_identifier] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_macro_rules_BANG] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_u8] = ACTIONS(1400), - [anon_sym_i8] = ACTIONS(1400), - [anon_sym_u16] = ACTIONS(1400), - [anon_sym_i16] = ACTIONS(1400), - [anon_sym_u32] = ACTIONS(1400), - [anon_sym_i32] = ACTIONS(1400), - [anon_sym_u64] = ACTIONS(1400), - [anon_sym_i64] = ACTIONS(1400), - [anon_sym_u128] = ACTIONS(1400), - [anon_sym_i128] = ACTIONS(1400), - [anon_sym_isize] = ACTIONS(1400), - [anon_sym_usize] = ACTIONS(1400), - [anon_sym_f32] = ACTIONS(1400), - [anon_sym_f64] = ACTIONS(1400), - [anon_sym_bool] = ACTIONS(1400), - [anon_sym_str] = ACTIONS(1400), - [anon_sym_char] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [anon_sym_fn] = ACTIONS(1400), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1400), - [anon_sym_impl] = ACTIONS(1400), - [anon_sym_let] = ACTIONS(1400), - [anon_sym_loop] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1400), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_pub] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_struct] = ACTIONS(1400), - [anon_sym_trait] = ACTIONS(1400), - [anon_sym_type] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_unsafe] = ACTIONS(1400), - [anon_sym_use] = ACTIONS(1400), - [anon_sym_while] = ACTIONS(1400), - [anon_sym_POUND] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1398), - [anon_sym_COLON_COLON] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_move] = ACTIONS(1400), - [sym_integer_literal] = ACTIONS(1398), - [aux_sym_string_literal_token1] = ACTIONS(1398), - [sym_char_literal] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1400), - [sym_super] = ACTIONS(1400), - [sym_crate] = ACTIONS(1400), - [sym_metavariable] = ACTIONS(1398), - [sym_raw_string_literal] = ACTIONS(1398), - [sym_float_literal] = ACTIONS(1398), + [ts_builtin_sym_end] = ACTIONS(1399), + [sym_identifier] = ACTIONS(1401), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_macro_rules_BANG] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1399), + [anon_sym_STAR] = 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_SQUOTE] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_enum] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_impl] = ACTIONS(1401), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_loop] = ACTIONS(1401), + [anon_sym_match] = ACTIONS(1401), + [anon_sym_mod] = ACTIONS(1401), + [anon_sym_pub] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_struct] = ACTIONS(1401), + [anon_sym_trait] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1401), + [anon_sym_use] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_POUND] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_extern] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_COLON_COLON] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1399), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1401), + [sym_super] = ACTIONS(1401), + [sym_crate] = ACTIONS(1401), + [sym_metavariable] = ACTIONS(1399), + [sym_raw_string_literal] = ACTIONS(1399), + [sym_float_literal] = ACTIONS(1399), [sym_block_comment] = ACTIONS(3), }, [322] = { - [ts_builtin_sym_end] = ACTIONS(1402), - [sym_identifier] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1402), - [anon_sym_macro_rules_BANG] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_u8] = ACTIONS(1404), - [anon_sym_i8] = ACTIONS(1404), - [anon_sym_u16] = ACTIONS(1404), - [anon_sym_i16] = ACTIONS(1404), - [anon_sym_u32] = ACTIONS(1404), - [anon_sym_i32] = ACTIONS(1404), - [anon_sym_u64] = ACTIONS(1404), - [anon_sym_i64] = ACTIONS(1404), - [anon_sym_u128] = ACTIONS(1404), - [anon_sym_i128] = ACTIONS(1404), - [anon_sym_isize] = ACTIONS(1404), - [anon_sym_usize] = ACTIONS(1404), - [anon_sym_f32] = ACTIONS(1404), - [anon_sym_f64] = ACTIONS(1404), - [anon_sym_bool] = ACTIONS(1404), - [anon_sym_str] = ACTIONS(1404), - [anon_sym_char] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_async] = ACTIONS(1404), - [anon_sym_break] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [anon_sym_continue] = ACTIONS(1404), - [anon_sym_default] = ACTIONS(1404), - [anon_sym_enum] = ACTIONS(1404), - [anon_sym_fn] = ACTIONS(1404), - [anon_sym_for] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1404), - [anon_sym_impl] = ACTIONS(1404), - [anon_sym_let] = ACTIONS(1404), - [anon_sym_loop] = ACTIONS(1404), - [anon_sym_match] = ACTIONS(1404), - [anon_sym_mod] = ACTIONS(1404), - [anon_sym_pub] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1404), - [anon_sym_static] = ACTIONS(1404), - [anon_sym_struct] = ACTIONS(1404), - [anon_sym_trait] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(1404), - [anon_sym_union] = ACTIONS(1404), - [anon_sym_unsafe] = ACTIONS(1404), - [anon_sym_use] = ACTIONS(1404), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_POUND] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_COLON_COLON] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_DOT_DOT] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_move] = ACTIONS(1404), - [sym_integer_literal] = ACTIONS(1402), - [aux_sym_string_literal_token1] = ACTIONS(1402), - [sym_char_literal] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1404), - [anon_sym_false] = ACTIONS(1404), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1404), - [sym_super] = ACTIONS(1404), - [sym_crate] = ACTIONS(1404), - [sym_metavariable] = ACTIONS(1402), - [sym_raw_string_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1402), + [ts_builtin_sym_end] = ACTIONS(1403), + [sym_identifier] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_macro_rules_BANG] = ACTIONS(1403), + [anon_sym_LPAREN] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1403), + [anon_sym_STAR] = 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_SQUOTE] = ACTIONS(1405), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_break] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_continue] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1405), + [anon_sym_enum] = ACTIONS(1405), + [anon_sym_fn] = ACTIONS(1405), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1405), + [anon_sym_let] = ACTIONS(1405), + [anon_sym_loop] = ACTIONS(1405), + [anon_sym_match] = ACTIONS(1405), + [anon_sym_mod] = ACTIONS(1405), + [anon_sym_pub] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1405), + [anon_sym_static] = ACTIONS(1405), + [anon_sym_struct] = ACTIONS(1405), + [anon_sym_trait] = ACTIONS(1405), + [anon_sym_type] = ACTIONS(1405), + [anon_sym_union] = ACTIONS(1405), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_use] = ACTIONS(1405), + [anon_sym_while] = ACTIONS(1405), + [anon_sym_POUND] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_extern] = ACTIONS(1405), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_COLON_COLON] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_move] = 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_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1405), + [sym_super] = ACTIONS(1405), + [sym_crate] = ACTIONS(1405), + [sym_metavariable] = ACTIONS(1403), + [sym_raw_string_literal] = ACTIONS(1403), + [sym_float_literal] = ACTIONS(1403), [sym_block_comment] = ACTIONS(3), }, [323] = { - [ts_builtin_sym_end] = ACTIONS(1406), - [sym_identifier] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1406), - [anon_sym_macro_rules_BANG] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_u8] = ACTIONS(1408), - [anon_sym_i8] = ACTIONS(1408), - [anon_sym_u16] = ACTIONS(1408), - [anon_sym_i16] = ACTIONS(1408), - [anon_sym_u32] = ACTIONS(1408), - [anon_sym_i32] = ACTIONS(1408), - [anon_sym_u64] = ACTIONS(1408), - [anon_sym_i64] = ACTIONS(1408), - [anon_sym_u128] = ACTIONS(1408), - [anon_sym_i128] = ACTIONS(1408), - [anon_sym_isize] = ACTIONS(1408), - [anon_sym_usize] = ACTIONS(1408), - [anon_sym_f32] = ACTIONS(1408), - [anon_sym_f64] = ACTIONS(1408), - [anon_sym_bool] = ACTIONS(1408), - [anon_sym_str] = ACTIONS(1408), - [anon_sym_char] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_break] = ACTIONS(1408), - [anon_sym_const] = ACTIONS(1408), - [anon_sym_continue] = ACTIONS(1408), - [anon_sym_default] = ACTIONS(1408), - [anon_sym_enum] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1408), - [anon_sym_for] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1408), - [anon_sym_impl] = ACTIONS(1408), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_loop] = ACTIONS(1408), - [anon_sym_match] = ACTIONS(1408), - [anon_sym_mod] = ACTIONS(1408), - [anon_sym_pub] = ACTIONS(1408), - [anon_sym_return] = ACTIONS(1408), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_struct] = ACTIONS(1408), - [anon_sym_trait] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_union] = ACTIONS(1408), - [anon_sym_unsafe] = ACTIONS(1408), - [anon_sym_use] = ACTIONS(1408), - [anon_sym_while] = ACTIONS(1408), - [anon_sym_POUND] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1408), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_COLON_COLON] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PIPE] = ACTIONS(1406), - [anon_sym_move] = ACTIONS(1408), - [sym_integer_literal] = ACTIONS(1406), - [aux_sym_string_literal_token1] = ACTIONS(1406), - [sym_char_literal] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1408), - [anon_sym_false] = ACTIONS(1408), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1408), - [sym_super] = ACTIONS(1408), - [sym_crate] = ACTIONS(1408), - [sym_metavariable] = ACTIONS(1406), - [sym_raw_string_literal] = ACTIONS(1406), - [sym_float_literal] = ACTIONS(1406), + [ts_builtin_sym_end] = ACTIONS(1407), + [sym_identifier] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_macro_rules_BANG] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_u8] = ACTIONS(1409), + [anon_sym_i8] = ACTIONS(1409), + [anon_sym_u16] = ACTIONS(1409), + [anon_sym_i16] = ACTIONS(1409), + [anon_sym_u32] = ACTIONS(1409), + [anon_sym_i32] = ACTIONS(1409), + [anon_sym_u64] = ACTIONS(1409), + [anon_sym_i64] = ACTIONS(1409), + [anon_sym_u128] = ACTIONS(1409), + [anon_sym_i128] = ACTIONS(1409), + [anon_sym_isize] = ACTIONS(1409), + [anon_sym_usize] = ACTIONS(1409), + [anon_sym_f32] = ACTIONS(1409), + [anon_sym_f64] = ACTIONS(1409), + [anon_sym_bool] = ACTIONS(1409), + [anon_sym_str] = ACTIONS(1409), + [anon_sym_char] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [anon_sym_default] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1409), + [anon_sym_fn] = ACTIONS(1409), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_impl] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1409), + [anon_sym_loop] = ACTIONS(1409), + [anon_sym_match] = ACTIONS(1409), + [anon_sym_mod] = ACTIONS(1409), + [anon_sym_pub] = ACTIONS(1409), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_struct] = ACTIONS(1409), + [anon_sym_trait] = ACTIONS(1409), + [anon_sym_type] = ACTIONS(1409), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_unsafe] = ACTIONS(1409), + [anon_sym_use] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_POUND] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1409), + [anon_sym_LT] = ACTIONS(1407), + [anon_sym_COLON_COLON] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1407), + [anon_sym_DOT_DOT] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_PIPE] = ACTIONS(1407), + [anon_sym_move] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1407), + [aux_sym_string_literal_token1] = ACTIONS(1407), + [sym_char_literal] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1409), + [anon_sym_false] = ACTIONS(1409), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1409), + [sym_super] = ACTIONS(1409), + [sym_crate] = ACTIONS(1409), + [sym_metavariable] = ACTIONS(1407), + [sym_raw_string_literal] = ACTIONS(1407), + [sym_float_literal] = ACTIONS(1407), [sym_block_comment] = ACTIONS(3), }, [324] = { - [ts_builtin_sym_end] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_macro_rules_BANG] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_u8] = ACTIONS(1412), - [anon_sym_i8] = ACTIONS(1412), - [anon_sym_u16] = ACTIONS(1412), - [anon_sym_i16] = ACTIONS(1412), - [anon_sym_u32] = ACTIONS(1412), - [anon_sym_i32] = ACTIONS(1412), - [anon_sym_u64] = ACTIONS(1412), - [anon_sym_i64] = ACTIONS(1412), - [anon_sym_u128] = ACTIONS(1412), - [anon_sym_i128] = ACTIONS(1412), - [anon_sym_isize] = ACTIONS(1412), - [anon_sym_usize] = ACTIONS(1412), - [anon_sym_f32] = ACTIONS(1412), - [anon_sym_f64] = ACTIONS(1412), - [anon_sym_bool] = ACTIONS(1412), - [anon_sym_str] = ACTIONS(1412), - [anon_sym_char] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_async] = ACTIONS(1412), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1412), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1412), - [anon_sym_impl] = ACTIONS(1412), - [anon_sym_let] = ACTIONS(1412), - [anon_sym_loop] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1412), - [anon_sym_mod] = ACTIONS(1412), - [anon_sym_pub] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1412), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_trait] = ACTIONS(1412), - [anon_sym_type] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_unsafe] = ACTIONS(1412), - [anon_sym_use] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1412), - [anon_sym_POUND] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_DOT_DOT] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_move] = ACTIONS(1412), - [sym_integer_literal] = ACTIONS(1410), - [aux_sym_string_literal_token1] = ACTIONS(1410), - [sym_char_literal] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1412), - [anon_sym_false] = ACTIONS(1412), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1412), - [sym_super] = ACTIONS(1412), - [sym_crate] = ACTIONS(1412), - [sym_metavariable] = ACTIONS(1410), - [sym_raw_string_literal] = ACTIONS(1410), - [sym_float_literal] = ACTIONS(1410), + [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_LBRACE] = ACTIONS(1411), + [anon_sym_RBRACE] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1411), + [anon_sym_STAR] = 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_SQUOTE] = 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_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_POUND] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_extern] = ACTIONS(1413), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_COLON_COLON] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_DOT_DOT] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1413), + [sym_super] = ACTIONS(1413), + [sym_crate] = ACTIONS(1413), + [sym_metavariable] = ACTIONS(1411), + [sym_raw_string_literal] = ACTIONS(1411), + [sym_float_literal] = ACTIONS(1411), [sym_block_comment] = ACTIONS(3), }, [325] = { - [ts_builtin_sym_end] = ACTIONS(1414), - [sym_identifier] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_macro_rules_BANG] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_u8] = ACTIONS(1416), - [anon_sym_i8] = ACTIONS(1416), - [anon_sym_u16] = ACTIONS(1416), - [anon_sym_i16] = ACTIONS(1416), - [anon_sym_u32] = ACTIONS(1416), - [anon_sym_i32] = ACTIONS(1416), - [anon_sym_u64] = ACTIONS(1416), - [anon_sym_i64] = ACTIONS(1416), - [anon_sym_u128] = ACTIONS(1416), - [anon_sym_i128] = ACTIONS(1416), - [anon_sym_isize] = ACTIONS(1416), - [anon_sym_usize] = ACTIONS(1416), - [anon_sym_f32] = ACTIONS(1416), - [anon_sym_f64] = ACTIONS(1416), - [anon_sym_bool] = ACTIONS(1416), - [anon_sym_str] = ACTIONS(1416), - [anon_sym_char] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_async] = ACTIONS(1416), - [anon_sym_break] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1416), - [anon_sym_continue] = ACTIONS(1416), - [anon_sym_default] = ACTIONS(1416), - [anon_sym_enum] = ACTIONS(1416), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_for] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1416), - [anon_sym_impl] = ACTIONS(1416), - [anon_sym_let] = ACTIONS(1416), - [anon_sym_loop] = ACTIONS(1416), - [anon_sym_match] = ACTIONS(1416), - [anon_sym_mod] = ACTIONS(1416), - [anon_sym_pub] = ACTIONS(1416), - [anon_sym_return] = ACTIONS(1416), - [anon_sym_static] = ACTIONS(1416), - [anon_sym_struct] = ACTIONS(1416), - [anon_sym_trait] = ACTIONS(1416), - [anon_sym_type] = ACTIONS(1416), - [anon_sym_union] = ACTIONS(1416), - [anon_sym_unsafe] = ACTIONS(1416), - [anon_sym_use] = ACTIONS(1416), - [anon_sym_while] = ACTIONS(1416), - [anon_sym_POUND] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1414), - [anon_sym_COLON_COLON] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_move] = ACTIONS(1416), - [sym_integer_literal] = ACTIONS(1414), - [aux_sym_string_literal_token1] = ACTIONS(1414), - [sym_char_literal] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1416), - [anon_sym_false] = ACTIONS(1416), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1416), - [sym_super] = ACTIONS(1416), - [sym_crate] = ACTIONS(1416), - [sym_metavariable] = ACTIONS(1414), - [sym_raw_string_literal] = ACTIONS(1414), - [sym_float_literal] = ACTIONS(1414), + [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_LBRACE] = ACTIONS(1415), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_STAR] = 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_SQUOTE] = 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_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_POUND] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_extern] = ACTIONS(1417), + [anon_sym_LT] = ACTIONS(1415), + [anon_sym_COLON_COLON] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1417), + [sym_crate] = ACTIONS(1417), + [sym_metavariable] = ACTIONS(1415), + [sym_raw_string_literal] = ACTIONS(1415), + [sym_float_literal] = ACTIONS(1415), [sym_block_comment] = ACTIONS(3), }, [326] = { - [ts_builtin_sym_end] = ACTIONS(1418), - [sym_identifier] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_macro_rules_BANG] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1420), - [anon_sym_i8] = ACTIONS(1420), - [anon_sym_u16] = ACTIONS(1420), - [anon_sym_i16] = ACTIONS(1420), - [anon_sym_u32] = ACTIONS(1420), - [anon_sym_i32] = ACTIONS(1420), - [anon_sym_u64] = ACTIONS(1420), - [anon_sym_i64] = ACTIONS(1420), - [anon_sym_u128] = ACTIONS(1420), - [anon_sym_i128] = ACTIONS(1420), - [anon_sym_isize] = ACTIONS(1420), - [anon_sym_usize] = ACTIONS(1420), - [anon_sym_f32] = ACTIONS(1420), - [anon_sym_f64] = ACTIONS(1420), - [anon_sym_bool] = ACTIONS(1420), - [anon_sym_str] = ACTIONS(1420), - [anon_sym_char] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_async] = ACTIONS(1420), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1420), - [anon_sym_fn] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_impl] = ACTIONS(1420), - [anon_sym_let] = ACTIONS(1420), - [anon_sym_loop] = ACTIONS(1420), - [anon_sym_match] = ACTIONS(1420), - [anon_sym_mod] = ACTIONS(1420), - [anon_sym_pub] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_static] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1420), - [anon_sym_trait] = ACTIONS(1420), - [anon_sym_type] = ACTIONS(1420), - [anon_sym_union] = ACTIONS(1420), - [anon_sym_unsafe] = ACTIONS(1420), - [anon_sym_use] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [anon_sym_POUND] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_move] = ACTIONS(1420), - [sym_integer_literal] = ACTIONS(1418), - [aux_sym_string_literal_token1] = ACTIONS(1418), - [sym_char_literal] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1420), - [anon_sym_false] = ACTIONS(1420), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1418), - [sym_raw_string_literal] = ACTIONS(1418), - [sym_float_literal] = ACTIONS(1418), + [ts_builtin_sym_end] = ACTIONS(1419), + [sym_identifier] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_macro_rules_BANG] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_u8] = ACTIONS(1421), + [anon_sym_i8] = ACTIONS(1421), + [anon_sym_u16] = ACTIONS(1421), + [anon_sym_i16] = ACTIONS(1421), + [anon_sym_u32] = ACTIONS(1421), + [anon_sym_i32] = ACTIONS(1421), + [anon_sym_u64] = ACTIONS(1421), + [anon_sym_i64] = ACTIONS(1421), + [anon_sym_u128] = ACTIONS(1421), + [anon_sym_i128] = ACTIONS(1421), + [anon_sym_isize] = ACTIONS(1421), + [anon_sym_usize] = ACTIONS(1421), + [anon_sym_f32] = ACTIONS(1421), + [anon_sym_f64] = ACTIONS(1421), + [anon_sym_bool] = ACTIONS(1421), + [anon_sym_str] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [anon_sym_fn] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_impl] = ACTIONS(1421), + [anon_sym_let] = ACTIONS(1421), + [anon_sym_loop] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_mod] = ACTIONS(1421), + [anon_sym_pub] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_struct] = ACTIONS(1421), + [anon_sym_trait] = ACTIONS(1421), + [anon_sym_type] = ACTIONS(1421), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_unsafe] = ACTIONS(1421), + [anon_sym_use] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_COLON_COLON] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_move] = ACTIONS(1421), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1419), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1421), + [sym_super] = ACTIONS(1421), + [sym_crate] = ACTIONS(1421), + [sym_metavariable] = ACTIONS(1419), + [sym_raw_string_literal] = ACTIONS(1419), + [sym_float_literal] = ACTIONS(1419), [sym_block_comment] = ACTIONS(3), }, [327] = { - [ts_builtin_sym_end] = ACTIONS(1422), - [sym_identifier] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym_macro_rules_BANG] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_u8] = ACTIONS(1424), - [anon_sym_i8] = ACTIONS(1424), - [anon_sym_u16] = ACTIONS(1424), - [anon_sym_i16] = ACTIONS(1424), - [anon_sym_u32] = ACTIONS(1424), - [anon_sym_i32] = ACTIONS(1424), - [anon_sym_u64] = ACTIONS(1424), - [anon_sym_i64] = ACTIONS(1424), - [anon_sym_u128] = ACTIONS(1424), - [anon_sym_i128] = ACTIONS(1424), - [anon_sym_isize] = ACTIONS(1424), - [anon_sym_usize] = ACTIONS(1424), - [anon_sym_f32] = ACTIONS(1424), - [anon_sym_f64] = ACTIONS(1424), - [anon_sym_bool] = ACTIONS(1424), - [anon_sym_str] = ACTIONS(1424), - [anon_sym_char] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_fn] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_impl] = ACTIONS(1424), - [anon_sym_let] = ACTIONS(1424), - [anon_sym_loop] = ACTIONS(1424), - [anon_sym_match] = ACTIONS(1424), - [anon_sym_mod] = ACTIONS(1424), - [anon_sym_pub] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_trait] = ACTIONS(1424), - [anon_sym_type] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_unsafe] = ACTIONS(1424), - [anon_sym_use] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_COLON_COLON] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_move] = ACTIONS(1424), - [sym_integer_literal] = ACTIONS(1422), - [aux_sym_string_literal_token1] = ACTIONS(1422), - [sym_char_literal] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1424), - [anon_sym_false] = ACTIONS(1424), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1424), - [sym_super] = ACTIONS(1424), - [sym_crate] = ACTIONS(1424), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(1422), - [sym_float_literal] = ACTIONS(1422), + [ts_builtin_sym_end] = ACTIONS(1423), + [sym_identifier] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_macro_rules_BANG] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_u8] = ACTIONS(1425), + [anon_sym_i8] = ACTIONS(1425), + [anon_sym_u16] = ACTIONS(1425), + [anon_sym_i16] = ACTIONS(1425), + [anon_sym_u32] = ACTIONS(1425), + [anon_sym_i32] = ACTIONS(1425), + [anon_sym_u64] = ACTIONS(1425), + [anon_sym_i64] = ACTIONS(1425), + [anon_sym_u128] = ACTIONS(1425), + [anon_sym_i128] = ACTIONS(1425), + [anon_sym_isize] = ACTIONS(1425), + [anon_sym_usize] = ACTIONS(1425), + [anon_sym_f32] = ACTIONS(1425), + [anon_sym_f64] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_str] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_SQUOTE] = ACTIONS(1425), + [anon_sym_async] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_default] = ACTIONS(1425), + [anon_sym_enum] = ACTIONS(1425), + [anon_sym_fn] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_impl] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_loop] = ACTIONS(1425), + [anon_sym_match] = ACTIONS(1425), + [anon_sym_mod] = ACTIONS(1425), + [anon_sym_pub] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_struct] = ACTIONS(1425), + [anon_sym_trait] = ACTIONS(1425), + [anon_sym_type] = ACTIONS(1425), + [anon_sym_union] = ACTIONS(1425), + [anon_sym_unsafe] = ACTIONS(1425), + [anon_sym_use] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_POUND] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym_LT] = ACTIONS(1423), + [anon_sym_COLON_COLON] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PIPE] = ACTIONS(1423), + [anon_sym_move] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1423), + [aux_sym_string_literal_token1] = ACTIONS(1423), + [sym_char_literal] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1425), + [sym_super] = ACTIONS(1425), + [sym_crate] = ACTIONS(1425), + [sym_metavariable] = ACTIONS(1423), + [sym_raw_string_literal] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1423), [sym_block_comment] = ACTIONS(3), }, [328] = { - [ts_builtin_sym_end] = ACTIONS(1426), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_macro_rules_BANG] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_u8] = ACTIONS(1428), - [anon_sym_i8] = ACTIONS(1428), - [anon_sym_u16] = ACTIONS(1428), - [anon_sym_i16] = ACTIONS(1428), - [anon_sym_u32] = ACTIONS(1428), - [anon_sym_i32] = ACTIONS(1428), - [anon_sym_u64] = ACTIONS(1428), - [anon_sym_i64] = ACTIONS(1428), - [anon_sym_u128] = ACTIONS(1428), - [anon_sym_i128] = ACTIONS(1428), - [anon_sym_isize] = ACTIONS(1428), - [anon_sym_usize] = ACTIONS(1428), - [anon_sym_f32] = ACTIONS(1428), - [anon_sym_f64] = ACTIONS(1428), - [anon_sym_bool] = ACTIONS(1428), - [anon_sym_str] = ACTIONS(1428), - [anon_sym_char] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_async] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_fn] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_impl] = ACTIONS(1428), - [anon_sym_let] = ACTIONS(1428), - [anon_sym_loop] = ACTIONS(1428), - [anon_sym_match] = ACTIONS(1428), - [anon_sym_mod] = ACTIONS(1428), - [anon_sym_pub] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_trait] = ACTIONS(1428), - [anon_sym_type] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_unsafe] = ACTIONS(1428), - [anon_sym_use] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_POUND] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_COLON_COLON] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_DOT_DOT] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_move] = ACTIONS(1428), - [sym_integer_literal] = ACTIONS(1426), - [aux_sym_string_literal_token1] = ACTIONS(1426), - [sym_char_literal] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1428), - [anon_sym_false] = ACTIONS(1428), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1428), - [sym_super] = ACTIONS(1428), - [sym_crate] = ACTIONS(1428), - [sym_metavariable] = ACTIONS(1426), - [sym_raw_string_literal] = ACTIONS(1426), - [sym_float_literal] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1427), + [sym_identifier] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_macro_rules_BANG] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_u8] = ACTIONS(1429), + [anon_sym_i8] = ACTIONS(1429), + [anon_sym_u16] = ACTIONS(1429), + [anon_sym_i16] = ACTIONS(1429), + [anon_sym_u32] = ACTIONS(1429), + [anon_sym_i32] = ACTIONS(1429), + [anon_sym_u64] = ACTIONS(1429), + [anon_sym_i64] = ACTIONS(1429), + [anon_sym_u128] = ACTIONS(1429), + [anon_sym_i128] = ACTIONS(1429), + [anon_sym_isize] = ACTIONS(1429), + [anon_sym_usize] = ACTIONS(1429), + [anon_sym_f32] = ACTIONS(1429), + [anon_sym_f64] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_str] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_SQUOTE] = ACTIONS(1429), + [anon_sym_async] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [anon_sym_fn] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_impl] = ACTIONS(1429), + [anon_sym_let] = ACTIONS(1429), + [anon_sym_loop] = ACTIONS(1429), + [anon_sym_match] = ACTIONS(1429), + [anon_sym_mod] = ACTIONS(1429), + [anon_sym_pub] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_struct] = ACTIONS(1429), + [anon_sym_trait] = ACTIONS(1429), + [anon_sym_type] = ACTIONS(1429), + [anon_sym_union] = ACTIONS(1429), + [anon_sym_unsafe] = ACTIONS(1429), + [anon_sym_use] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1427), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_move] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1427), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1429), + [sym_super] = ACTIONS(1429), + [sym_crate] = ACTIONS(1429), + [sym_metavariable] = ACTIONS(1427), + [sym_raw_string_literal] = ACTIONS(1427), + [sym_float_literal] = ACTIONS(1427), [sym_block_comment] = ACTIONS(3), }, [329] = { - [sym_attribute_item] = STATE(494), - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_macro_invocation] = STATE(2288), - [sym_scoped_identifier] = STATE(1493), - [sym_scoped_type_identifier] = STATE(1824), - [sym_match_arm] = STATE(461), - [sym_last_match_arm] = STATE(2397), - [sym_match_pattern] = STATE(2285), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1839), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_enum_variant_list_repeat1] = STATE(494), - [aux_sym_match_block_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [ts_builtin_sym_end] = ACTIONS(1431), + [sym_identifier] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_macro_rules_BANG] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_default] = ACTIONS(1433), + [anon_sym_enum] = ACTIONS(1433), + [anon_sym_fn] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_impl] = ACTIONS(1433), + [anon_sym_let] = ACTIONS(1433), + [anon_sym_loop] = ACTIONS(1433), + [anon_sym_match] = ACTIONS(1433), + [anon_sym_mod] = ACTIONS(1433), + [anon_sym_pub] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1433), + [anon_sym_trait] = ACTIONS(1433), + [anon_sym_type] = ACTIONS(1433), + [anon_sym_union] = ACTIONS(1433), + [anon_sym_unsafe] = ACTIONS(1433), + [anon_sym_use] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_extern] = ACTIONS(1433), + [anon_sym_LT] = ACTIONS(1431), + [anon_sym_COLON_COLON] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_move] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1431), + [aux_sym_string_literal_token1] = ACTIONS(1431), + [sym_char_literal] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1433), + [sym_super] = ACTIONS(1433), + [sym_crate] = ACTIONS(1433), + [sym_metavariable] = ACTIONS(1431), + [sym_raw_string_literal] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1431), [sym_block_comment] = ACTIONS(3), }, [330] = { - [ts_builtin_sym_end] = ACTIONS(1430), - [sym_identifier] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_macro_rules_BANG] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_u8] = ACTIONS(1432), - [anon_sym_i8] = ACTIONS(1432), - [anon_sym_u16] = ACTIONS(1432), - [anon_sym_i16] = ACTIONS(1432), - [anon_sym_u32] = ACTIONS(1432), - [anon_sym_i32] = ACTIONS(1432), - [anon_sym_u64] = ACTIONS(1432), - [anon_sym_i64] = ACTIONS(1432), - [anon_sym_u128] = ACTIONS(1432), - [anon_sym_i128] = ACTIONS(1432), - [anon_sym_isize] = ACTIONS(1432), - [anon_sym_usize] = ACTIONS(1432), - [anon_sym_f32] = ACTIONS(1432), - [anon_sym_f64] = ACTIONS(1432), - [anon_sym_bool] = ACTIONS(1432), - [anon_sym_str] = ACTIONS(1432), - [anon_sym_char] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_async] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_impl] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(1432), - [anon_sym_loop] = ACTIONS(1432), - [anon_sym_match] = ACTIONS(1432), - [anon_sym_mod] = ACTIONS(1432), - [anon_sym_pub] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_trait] = ACTIONS(1432), - [anon_sym_type] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_unsafe] = ACTIONS(1432), - [anon_sym_use] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_COLON_COLON] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_DOT_DOT] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1430), - [aux_sym_string_literal_token1] = ACTIONS(1430), - [sym_char_literal] = ACTIONS(1430), - [anon_sym_true] = ACTIONS(1432), - [anon_sym_false] = ACTIONS(1432), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1432), - [sym_super] = ACTIONS(1432), - [sym_crate] = ACTIONS(1432), - [sym_metavariable] = ACTIONS(1430), - [sym_raw_string_literal] = ACTIONS(1430), - [sym_float_literal] = ACTIONS(1430), + [sym__token_pattern] = STATE(243), + [sym_token_tree_pattern] = STATE(243), + [sym_token_binding_pattern] = STATE(243), + [sym_token_repetition_pattern] = STATE(243), + [sym__literal] = STATE(243), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_pattern_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1200), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [aux_sym__non_special_token_token1] = ACTIONS(1190), + [anon_sym_SQUOTE] = ACTIONS(1190), + [anon_sym_as] = ACTIONS(1190), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_await] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_fn] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_impl] = ACTIONS(1190), + [anon_sym_let] = ACTIONS(1190), + [anon_sym_loop] = ACTIONS(1190), + [anon_sym_match] = ACTIONS(1190), + [anon_sym_mod] = ACTIONS(1190), + [anon_sym_pub] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_trait] = ACTIONS(1190), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_unsafe] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1190), + [anon_sym_where] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [sym_mutable_specifier] = ACTIONS(1190), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(1190), + [sym_super] = ACTIONS(1190), + [sym_crate] = ACTIONS(1190), + [sym_metavariable] = ACTIONS(1208), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, [331] = { - [ts_builtin_sym_end] = ACTIONS(1434), - [sym_identifier] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_macro_rules_BANG] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_u8] = ACTIONS(1436), - [anon_sym_i8] = ACTIONS(1436), - [anon_sym_u16] = ACTIONS(1436), - [anon_sym_i16] = ACTIONS(1436), - [anon_sym_u32] = ACTIONS(1436), - [anon_sym_i32] = ACTIONS(1436), - [anon_sym_u64] = ACTIONS(1436), - [anon_sym_i64] = ACTIONS(1436), - [anon_sym_u128] = ACTIONS(1436), - [anon_sym_i128] = ACTIONS(1436), - [anon_sym_isize] = ACTIONS(1436), - [anon_sym_usize] = ACTIONS(1436), - [anon_sym_f32] = ACTIONS(1436), - [anon_sym_f64] = ACTIONS(1436), - [anon_sym_bool] = ACTIONS(1436), - [anon_sym_str] = ACTIONS(1436), - [anon_sym_char] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_async] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_impl] = ACTIONS(1436), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_loop] = ACTIONS(1436), - [anon_sym_match] = ACTIONS(1436), - [anon_sym_mod] = ACTIONS(1436), - [anon_sym_pub] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_trait] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_unsafe] = ACTIONS(1436), - [anon_sym_use] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_POUND] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(1434), - [anon_sym_COLON_COLON] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_DOT_DOT] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_move] = ACTIONS(1436), - [sym_integer_literal] = ACTIONS(1434), - [aux_sym_string_literal_token1] = ACTIONS(1434), - [sym_char_literal] = ACTIONS(1434), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1436), - [sym_super] = ACTIONS(1436), - [sym_crate] = ACTIONS(1436), - [sym_metavariable] = ACTIONS(1434), - [sym_raw_string_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1434), + [sym__token_pattern] = STATE(243), + [sym_token_tree_pattern] = STATE(243), + [sym_token_binding_pattern] = STATE(243), + [sym_token_repetition_pattern] = STATE(243), + [sym__literal] = STATE(243), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_pattern_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1200), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [aux_sym__non_special_token_token1] = ACTIONS(1190), + [anon_sym_SQUOTE] = ACTIONS(1190), + [anon_sym_as] = ACTIONS(1190), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_await] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_fn] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_impl] = ACTIONS(1190), + [anon_sym_let] = ACTIONS(1190), + [anon_sym_loop] = ACTIONS(1190), + [anon_sym_match] = ACTIONS(1190), + [anon_sym_mod] = ACTIONS(1190), + [anon_sym_pub] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_trait] = ACTIONS(1190), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_unsafe] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1190), + [anon_sym_where] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [sym_mutable_specifier] = ACTIONS(1190), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(1190), + [sym_super] = ACTIONS(1190), + [sym_crate] = ACTIONS(1190), + [sym_metavariable] = ACTIONS(1208), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, [332] = { - [sym__token_pattern] = STATE(239), - [sym_token_tree_pattern] = STATE(239), - [sym_token_binding_pattern] = STATE(239), - [sym_token_repetition_pattern] = STATE(239), - [sym__literal] = STATE(239), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1270), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_RBRACK] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1108), - [anon_sym_u8] = ACTIONS(1270), - [anon_sym_i8] = ACTIONS(1270), - [anon_sym_u16] = ACTIONS(1270), - [anon_sym_i16] = ACTIONS(1270), - [anon_sym_u32] = ACTIONS(1270), - [anon_sym_i32] = ACTIONS(1270), - [anon_sym_u64] = ACTIONS(1270), - [anon_sym_i64] = ACTIONS(1270), - [anon_sym_u128] = ACTIONS(1270), - [anon_sym_i128] = ACTIONS(1270), - [anon_sym_isize] = ACTIONS(1270), - [anon_sym_usize] = ACTIONS(1270), - [anon_sym_f32] = ACTIONS(1270), - [anon_sym_f64] = ACTIONS(1270), - [anon_sym_bool] = ACTIONS(1270), - [anon_sym_str] = ACTIONS(1270), - [anon_sym_char] = ACTIONS(1270), - [aux_sym__non_special_token_token1] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_as] = ACTIONS(1270), - [anon_sym_async] = ACTIONS(1270), - [anon_sym_await] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_fn] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_impl] = ACTIONS(1270), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_loop] = ACTIONS(1270), - [anon_sym_match] = ACTIONS(1270), - [anon_sym_mod] = ACTIONS(1270), - [anon_sym_pub] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_trait] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_unsafe] = ACTIONS(1270), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_where] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [sym_mutable_specifier] = ACTIONS(1270), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1116), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [ts_builtin_sym_end] = ACTIONS(1437), + [sym_identifier] = ACTIONS(1439), + [anon_sym_SEMI] = ACTIONS(1437), + [anon_sym_macro_rules_BANG] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_u8] = ACTIONS(1439), + [anon_sym_i8] = ACTIONS(1439), + [anon_sym_u16] = ACTIONS(1439), + [anon_sym_i16] = ACTIONS(1439), + [anon_sym_u32] = ACTIONS(1439), + [anon_sym_i32] = ACTIONS(1439), + [anon_sym_u64] = ACTIONS(1439), + [anon_sym_i64] = ACTIONS(1439), + [anon_sym_u128] = ACTIONS(1439), + [anon_sym_i128] = ACTIONS(1439), + [anon_sym_isize] = ACTIONS(1439), + [anon_sym_usize] = ACTIONS(1439), + [anon_sym_f32] = ACTIONS(1439), + [anon_sym_f64] = ACTIONS(1439), + [anon_sym_bool] = ACTIONS(1439), + [anon_sym_str] = ACTIONS(1439), + [anon_sym_char] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_break] = ACTIONS(1439), + [anon_sym_const] = ACTIONS(1439), + [anon_sym_continue] = ACTIONS(1439), + [anon_sym_default] = ACTIONS(1439), + [anon_sym_enum] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_impl] = ACTIONS(1439), + [anon_sym_let] = ACTIONS(1439), + [anon_sym_loop] = ACTIONS(1439), + [anon_sym_match] = ACTIONS(1439), + [anon_sym_mod] = ACTIONS(1439), + [anon_sym_pub] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_static] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1439), + [anon_sym_trait] = ACTIONS(1439), + [anon_sym_type] = ACTIONS(1439), + [anon_sym_union] = ACTIONS(1439), + [anon_sym_unsafe] = ACTIONS(1439), + [anon_sym_use] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1439), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_COLON_COLON] = ACTIONS(1437), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_DOT_DOT] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_move] = ACTIONS(1439), + [sym_integer_literal] = ACTIONS(1437), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1439), + [sym_super] = ACTIONS(1439), + [sym_crate] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1437), + [sym_raw_string_literal] = ACTIONS(1437), + [sym_float_literal] = ACTIONS(1437), [sym_block_comment] = ACTIONS(3), }, [333] = { - [sym__token_pattern] = STATE(239), - [sym_token_tree_pattern] = STATE(239), - [sym_token_binding_pattern] = STATE(239), - [sym_token_repetition_pattern] = STATE(239), - [sym__literal] = STATE(239), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1270), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [anon_sym_u8] = ACTIONS(1270), - [anon_sym_i8] = ACTIONS(1270), - [anon_sym_u16] = ACTIONS(1270), - [anon_sym_i16] = ACTIONS(1270), - [anon_sym_u32] = ACTIONS(1270), - [anon_sym_i32] = ACTIONS(1270), - [anon_sym_u64] = ACTIONS(1270), - [anon_sym_i64] = ACTIONS(1270), - [anon_sym_u128] = ACTIONS(1270), - [anon_sym_i128] = ACTIONS(1270), - [anon_sym_isize] = ACTIONS(1270), - [anon_sym_usize] = ACTIONS(1270), - [anon_sym_f32] = ACTIONS(1270), - [anon_sym_f64] = ACTIONS(1270), - [anon_sym_bool] = ACTIONS(1270), - [anon_sym_str] = ACTIONS(1270), - [anon_sym_char] = ACTIONS(1270), - [aux_sym__non_special_token_token1] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_as] = ACTIONS(1270), - [anon_sym_async] = ACTIONS(1270), - [anon_sym_await] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_fn] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_impl] = ACTIONS(1270), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_loop] = ACTIONS(1270), - [anon_sym_match] = ACTIONS(1270), - [anon_sym_mod] = ACTIONS(1270), - [anon_sym_pub] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_trait] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_unsafe] = ACTIONS(1270), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_where] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [sym_mutable_specifier] = ACTIONS(1270), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1116), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym__token_pattern] = STATE(243), + [sym_token_tree_pattern] = STATE(243), + [sym_token_binding_pattern] = STATE(243), + [sym_token_repetition_pattern] = STATE(243), + [sym__literal] = STATE(243), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_pattern_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_RBRACK] = ACTIONS(1435), + [anon_sym_DOLLAR] = ACTIONS(1200), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [aux_sym__non_special_token_token1] = ACTIONS(1190), + [anon_sym_SQUOTE] = ACTIONS(1190), + [anon_sym_as] = ACTIONS(1190), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_await] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_fn] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_impl] = ACTIONS(1190), + [anon_sym_let] = ACTIONS(1190), + [anon_sym_loop] = ACTIONS(1190), + [anon_sym_match] = ACTIONS(1190), + [anon_sym_mod] = ACTIONS(1190), + [anon_sym_pub] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_trait] = ACTIONS(1190), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_unsafe] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1190), + [anon_sym_where] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [sym_mutable_specifier] = ACTIONS(1190), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(1190), + [sym_super] = ACTIONS(1190), + [sym_crate] = ACTIONS(1190), + [sym_metavariable] = ACTIONS(1208), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, [334] = { - [sym__token_pattern] = STATE(239), - [sym_token_tree_pattern] = STATE(239), - [sym_token_binding_pattern] = STATE(239), - [sym_token_repetition_pattern] = STATE(239), - [sym__literal] = STATE(239), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1270), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_RPAREN] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [anon_sym_u8] = ACTIONS(1270), - [anon_sym_i8] = ACTIONS(1270), - [anon_sym_u16] = ACTIONS(1270), - [anon_sym_i16] = ACTIONS(1270), - [anon_sym_u32] = ACTIONS(1270), - [anon_sym_i32] = ACTIONS(1270), - [anon_sym_u64] = ACTIONS(1270), - [anon_sym_i64] = ACTIONS(1270), - [anon_sym_u128] = ACTIONS(1270), - [anon_sym_i128] = ACTIONS(1270), - [anon_sym_isize] = ACTIONS(1270), - [anon_sym_usize] = ACTIONS(1270), - [anon_sym_f32] = ACTIONS(1270), - [anon_sym_f64] = ACTIONS(1270), - [anon_sym_bool] = ACTIONS(1270), - [anon_sym_str] = ACTIONS(1270), - [anon_sym_char] = ACTIONS(1270), - [aux_sym__non_special_token_token1] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_as] = ACTIONS(1270), - [anon_sym_async] = ACTIONS(1270), - [anon_sym_await] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_fn] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_impl] = ACTIONS(1270), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_loop] = ACTIONS(1270), - [anon_sym_match] = ACTIONS(1270), - [anon_sym_mod] = ACTIONS(1270), - [anon_sym_pub] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_trait] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_unsafe] = ACTIONS(1270), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_where] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [sym_mutable_specifier] = ACTIONS(1270), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1116), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [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_LBRACE] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_STAR] = 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_SQUOTE] = 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_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_POUND] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1443), + [anon_sym_LT] = ACTIONS(1441), + [anon_sym_COLON_COLON] = ACTIONS(1441), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_DOT_DOT] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1443), + [sym_super] = ACTIONS(1443), + [sym_crate] = ACTIONS(1443), + [sym_metavariable] = ACTIONS(1441), + [sym_raw_string_literal] = ACTIONS(1441), + [sym_float_literal] = ACTIONS(1441), [sym_block_comment] = ACTIONS(3), }, [335] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_macro_rules_BANG] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_u8] = ACTIONS(1442), - [anon_sym_i8] = ACTIONS(1442), - [anon_sym_u16] = ACTIONS(1442), - [anon_sym_i16] = ACTIONS(1442), - [anon_sym_u32] = ACTIONS(1442), - [anon_sym_i32] = ACTIONS(1442), - [anon_sym_u64] = ACTIONS(1442), - [anon_sym_i64] = ACTIONS(1442), - [anon_sym_u128] = ACTIONS(1442), - [anon_sym_i128] = ACTIONS(1442), - [anon_sym_isize] = ACTIONS(1442), - [anon_sym_usize] = ACTIONS(1442), - [anon_sym_f32] = ACTIONS(1442), - [anon_sym_f64] = ACTIONS(1442), - [anon_sym_bool] = ACTIONS(1442), - [anon_sym_str] = ACTIONS(1442), - [anon_sym_char] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_async] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_impl] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1442), - [anon_sym_loop] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1442), - [anon_sym_mod] = ACTIONS(1442), - [anon_sym_pub] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_trait] = ACTIONS(1442), - [anon_sym_type] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_unsafe] = ACTIONS(1442), - [anon_sym_use] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym_LT] = ACTIONS(1440), - [anon_sym_COLON_COLON] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_DOT_DOT] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_move] = ACTIONS(1442), - [sym_integer_literal] = ACTIONS(1440), - [aux_sym_string_literal_token1] = ACTIONS(1440), - [sym_char_literal] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1442), - [anon_sym_false] = ACTIONS(1442), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1442), - [sym_super] = ACTIONS(1442), - [sym_crate] = ACTIONS(1442), - [sym_metavariable] = ACTIONS(1440), - [sym_raw_string_literal] = ACTIONS(1440), - [sym_float_literal] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(1445), + [sym_identifier] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_macro_rules_BANG] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_continue] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1447), + [anon_sym_enum] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1447), + [anon_sym_for] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_impl] = ACTIONS(1447), + [anon_sym_let] = ACTIONS(1447), + [anon_sym_loop] = ACTIONS(1447), + [anon_sym_match] = ACTIONS(1447), + [anon_sym_mod] = ACTIONS(1447), + [anon_sym_pub] = ACTIONS(1447), + [anon_sym_return] = ACTIONS(1447), + [anon_sym_static] = ACTIONS(1447), + [anon_sym_struct] = ACTIONS(1447), + [anon_sym_trait] = ACTIONS(1447), + [anon_sym_type] = ACTIONS(1447), + [anon_sym_union] = ACTIONS(1447), + [anon_sym_unsafe] = ACTIONS(1447), + [anon_sym_use] = ACTIONS(1447), + [anon_sym_while] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1445), + [anon_sym_extern] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1445), + [anon_sym_COLON_COLON] = ACTIONS(1445), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_DOT_DOT] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_move] = ACTIONS(1447), + [sym_integer_literal] = ACTIONS(1445), + [aux_sym_string_literal_token1] = ACTIONS(1445), + [sym_char_literal] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1447), + [anon_sym_false] = ACTIONS(1447), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1445), + [sym_raw_string_literal] = ACTIONS(1445), + [sym_float_literal] = ACTIONS(1445), [sym_block_comment] = ACTIONS(3), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(1444), - [sym_identifier] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_macro_rules_BANG] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_u8] = ACTIONS(1446), - [anon_sym_i8] = ACTIONS(1446), - [anon_sym_u16] = ACTIONS(1446), - [anon_sym_i16] = ACTIONS(1446), - [anon_sym_u32] = ACTIONS(1446), - [anon_sym_i32] = ACTIONS(1446), - [anon_sym_u64] = ACTIONS(1446), - [anon_sym_i64] = ACTIONS(1446), - [anon_sym_u128] = ACTIONS(1446), - [anon_sym_i128] = ACTIONS(1446), - [anon_sym_isize] = ACTIONS(1446), - [anon_sym_usize] = ACTIONS(1446), - [anon_sym_f32] = ACTIONS(1446), - [anon_sym_f64] = ACTIONS(1446), - [anon_sym_bool] = ACTIONS(1446), - [anon_sym_str] = ACTIONS(1446), - [anon_sym_char] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_async] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_fn] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_impl] = ACTIONS(1446), - [anon_sym_let] = ACTIONS(1446), - [anon_sym_loop] = ACTIONS(1446), - [anon_sym_match] = ACTIONS(1446), - [anon_sym_mod] = ACTIONS(1446), - [anon_sym_pub] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_trait] = ACTIONS(1446), - [anon_sym_type] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_unsafe] = ACTIONS(1446), - [anon_sym_use] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_COLON_COLON] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_DOT_DOT] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_move] = ACTIONS(1446), - [sym_integer_literal] = ACTIONS(1444), - [aux_sym_string_literal_token1] = ACTIONS(1444), - [sym_char_literal] = ACTIONS(1444), - [anon_sym_true] = ACTIONS(1446), - [anon_sym_false] = ACTIONS(1446), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1446), - [sym_super] = ACTIONS(1446), - [sym_crate] = ACTIONS(1446), - [sym_metavariable] = ACTIONS(1444), - [sym_raw_string_literal] = ACTIONS(1444), - [sym_float_literal] = ACTIONS(1444), + [ts_builtin_sym_end] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1451), + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_macro_rules_BANG] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_STAR] = 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_SQUOTE] = 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_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_POUND] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_extern] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_COLON_COLON] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_crate] = ACTIONS(1451), + [sym_metavariable] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1449), + [sym_float_literal] = ACTIONS(1449), [sym_block_comment] = ACTIONS(3), }, [337] = { - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_identifier] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_macro_rules_BANG] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_u8] = ACTIONS(1450), - [anon_sym_i8] = ACTIONS(1450), - [anon_sym_u16] = ACTIONS(1450), - [anon_sym_i16] = ACTIONS(1450), - [anon_sym_u32] = ACTIONS(1450), - [anon_sym_i32] = ACTIONS(1450), - [anon_sym_u64] = ACTIONS(1450), - [anon_sym_i64] = ACTIONS(1450), - [anon_sym_u128] = ACTIONS(1450), - [anon_sym_i128] = ACTIONS(1450), - [anon_sym_isize] = ACTIONS(1450), - [anon_sym_usize] = ACTIONS(1450), - [anon_sym_f32] = ACTIONS(1450), - [anon_sym_f64] = ACTIONS(1450), - [anon_sym_bool] = ACTIONS(1450), - [anon_sym_str] = ACTIONS(1450), - [anon_sym_char] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_async] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_default] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_fn] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_impl] = ACTIONS(1450), - [anon_sym_let] = ACTIONS(1450), - [anon_sym_loop] = ACTIONS(1450), - [anon_sym_match] = ACTIONS(1450), - [anon_sym_mod] = ACTIONS(1450), - [anon_sym_pub] = ACTIONS(1450), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_trait] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_union] = ACTIONS(1450), - [anon_sym_unsafe] = ACTIONS(1450), - [anon_sym_use] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_COLON_COLON] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_DOT_DOT] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_move] = ACTIONS(1450), - [sym_integer_literal] = ACTIONS(1448), - [aux_sym_string_literal_token1] = ACTIONS(1448), - [sym_char_literal] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1450), - [anon_sym_false] = ACTIONS(1450), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1450), - [sym_super] = ACTIONS(1450), - [sym_crate] = ACTIONS(1450), - [sym_metavariable] = ACTIONS(1448), - [sym_raw_string_literal] = ACTIONS(1448), - [sym_float_literal] = ACTIONS(1448), + [ts_builtin_sym_end] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1453), + [anon_sym_macro_rules_BANG] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_STAR] = 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_SQUOTE] = 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_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_POUND] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_extern] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1453), + [anon_sym_COLON_COLON] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1453), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1455), + [sym_super] = ACTIONS(1455), + [sym_crate] = ACTIONS(1455), + [sym_metavariable] = ACTIONS(1453), + [sym_raw_string_literal] = ACTIONS(1453), + [sym_float_literal] = ACTIONS(1453), [sym_block_comment] = ACTIONS(3), }, [338] = { - [ts_builtin_sym_end] = ACTIONS(1452), - [sym_identifier] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_macro_rules_BANG] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_u8] = ACTIONS(1454), - [anon_sym_i8] = ACTIONS(1454), - [anon_sym_u16] = ACTIONS(1454), - [anon_sym_i16] = ACTIONS(1454), - [anon_sym_u32] = ACTIONS(1454), - [anon_sym_i32] = ACTIONS(1454), - [anon_sym_u64] = ACTIONS(1454), - [anon_sym_i64] = ACTIONS(1454), - [anon_sym_u128] = ACTIONS(1454), - [anon_sym_i128] = ACTIONS(1454), - [anon_sym_isize] = ACTIONS(1454), - [anon_sym_usize] = ACTIONS(1454), - [anon_sym_f32] = ACTIONS(1454), - [anon_sym_f64] = ACTIONS(1454), - [anon_sym_bool] = ACTIONS(1454), - [anon_sym_str] = ACTIONS(1454), - [anon_sym_char] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_async] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_fn] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_impl] = ACTIONS(1454), - [anon_sym_let] = ACTIONS(1454), - [anon_sym_loop] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_mod] = ACTIONS(1454), - [anon_sym_pub] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_trait] = ACTIONS(1454), - [anon_sym_type] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_unsafe] = ACTIONS(1454), - [anon_sym_use] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_POUND] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_COLON_COLON] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_DOT_DOT] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_move] = ACTIONS(1454), - [sym_integer_literal] = ACTIONS(1452), - [aux_sym_string_literal_token1] = ACTIONS(1452), - [sym_char_literal] = ACTIONS(1452), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1454), - [sym_super] = ACTIONS(1454), - [sym_crate] = ACTIONS(1454), - [sym_metavariable] = ACTIONS(1452), - [sym_raw_string_literal] = ACTIONS(1452), - [sym_float_literal] = ACTIONS(1452), + [ts_builtin_sym_end] = ACTIONS(1457), + [sym_identifier] = ACTIONS(1459), + [anon_sym_SEMI] = ACTIONS(1457), + [anon_sym_macro_rules_BANG] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1457), + [anon_sym_STAR] = 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_SQUOTE] = 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_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_POUND] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1457), + [anon_sym_extern] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_DOT_DOT] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(1457), + [anon_sym_move] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1459), + [sym_super] = ACTIONS(1459), + [sym_crate] = ACTIONS(1459), + [sym_metavariable] = ACTIONS(1457), + [sym_raw_string_literal] = ACTIONS(1457), + [sym_float_literal] = ACTIONS(1457), [sym_block_comment] = ACTIONS(3), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(1456), - [sym_identifier] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_macro_rules_BANG] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_u8] = ACTIONS(1458), - [anon_sym_i8] = ACTIONS(1458), - [anon_sym_u16] = ACTIONS(1458), - [anon_sym_i16] = ACTIONS(1458), - [anon_sym_u32] = ACTIONS(1458), - [anon_sym_i32] = ACTIONS(1458), - [anon_sym_u64] = ACTIONS(1458), - [anon_sym_i64] = ACTIONS(1458), - [anon_sym_u128] = ACTIONS(1458), - [anon_sym_i128] = ACTIONS(1458), - [anon_sym_isize] = ACTIONS(1458), - [anon_sym_usize] = ACTIONS(1458), - [anon_sym_f32] = ACTIONS(1458), - [anon_sym_f64] = ACTIONS(1458), - [anon_sym_bool] = ACTIONS(1458), - [anon_sym_str] = ACTIONS(1458), - [anon_sym_char] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_async] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [anon_sym_fn] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_impl] = ACTIONS(1458), - [anon_sym_let] = ACTIONS(1458), - [anon_sym_loop] = ACTIONS(1458), - [anon_sym_match] = ACTIONS(1458), - [anon_sym_mod] = ACTIONS(1458), - [anon_sym_pub] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_trait] = ACTIONS(1458), - [anon_sym_type] = ACTIONS(1458), - [anon_sym_union] = ACTIONS(1458), - [anon_sym_unsafe] = ACTIONS(1458), - [anon_sym_use] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_COLON_COLON] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_move] = ACTIONS(1458), - [sym_integer_literal] = ACTIONS(1456), - [aux_sym_string_literal_token1] = ACTIONS(1456), - [sym_char_literal] = ACTIONS(1456), - [anon_sym_true] = ACTIONS(1458), - [anon_sym_false] = ACTIONS(1458), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1458), - [sym_super] = ACTIONS(1458), - [sym_crate] = ACTIONS(1458), - [sym_metavariable] = ACTIONS(1456), - [sym_raw_string_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1456), + [ts_builtin_sym_end] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1463), + [anon_sym_SEMI] = ACTIONS(1461), + [anon_sym_macro_rules_BANG] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_RBRACE] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_u8] = ACTIONS(1463), + [anon_sym_i8] = ACTIONS(1463), + [anon_sym_u16] = ACTIONS(1463), + [anon_sym_i16] = ACTIONS(1463), + [anon_sym_u32] = ACTIONS(1463), + [anon_sym_i32] = ACTIONS(1463), + [anon_sym_u64] = ACTIONS(1463), + [anon_sym_i64] = ACTIONS(1463), + [anon_sym_u128] = ACTIONS(1463), + [anon_sym_i128] = ACTIONS(1463), + [anon_sym_isize] = ACTIONS(1463), + [anon_sym_usize] = ACTIONS(1463), + [anon_sym_f32] = ACTIONS(1463), + [anon_sym_f64] = ACTIONS(1463), + [anon_sym_bool] = ACTIONS(1463), + [anon_sym_str] = ACTIONS(1463), + [anon_sym_char] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_async] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [anon_sym_default] = ACTIONS(1463), + [anon_sym_enum] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_impl] = ACTIONS(1463), + [anon_sym_let] = ACTIONS(1463), + [anon_sym_loop] = ACTIONS(1463), + [anon_sym_match] = ACTIONS(1463), + [anon_sym_mod] = ACTIONS(1463), + [anon_sym_pub] = ACTIONS(1463), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_static] = ACTIONS(1463), + [anon_sym_struct] = ACTIONS(1463), + [anon_sym_trait] = ACTIONS(1463), + [anon_sym_type] = ACTIONS(1463), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1463), + [anon_sym_use] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [anon_sym_POUND] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1461), + [anon_sym_extern] = ACTIONS(1463), + [anon_sym_LT] = ACTIONS(1461), + [anon_sym_COLON_COLON] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1461), + [anon_sym_move] = ACTIONS(1463), + [sym_integer_literal] = ACTIONS(1461), + [aux_sym_string_literal_token1] = ACTIONS(1461), + [sym_char_literal] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1463), + [anon_sym_false] = ACTIONS(1463), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1463), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1461), + [sym_raw_string_literal] = ACTIONS(1461), + [sym_float_literal] = ACTIONS(1461), [sym_block_comment] = ACTIONS(3), }, [340] = { - [ts_builtin_sym_end] = ACTIONS(1460), - [sym_identifier] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_macro_rules_BANG] = ACTIONS(1460), - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_u8] = ACTIONS(1462), - [anon_sym_i8] = ACTIONS(1462), - [anon_sym_u16] = ACTIONS(1462), - [anon_sym_i16] = ACTIONS(1462), - [anon_sym_u32] = ACTIONS(1462), - [anon_sym_i32] = ACTIONS(1462), - [anon_sym_u64] = ACTIONS(1462), - [anon_sym_i64] = ACTIONS(1462), - [anon_sym_u128] = ACTIONS(1462), - [anon_sym_i128] = ACTIONS(1462), - [anon_sym_isize] = ACTIONS(1462), - [anon_sym_usize] = ACTIONS(1462), - [anon_sym_f32] = ACTIONS(1462), - [anon_sym_f64] = ACTIONS(1462), - [anon_sym_bool] = ACTIONS(1462), - [anon_sym_str] = ACTIONS(1462), - [anon_sym_char] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_const] = ACTIONS(1462), - [anon_sym_continue] = ACTIONS(1462), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_enum] = ACTIONS(1462), - [anon_sym_fn] = ACTIONS(1462), - [anon_sym_for] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_impl] = ACTIONS(1462), - [anon_sym_let] = ACTIONS(1462), - [anon_sym_loop] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_mod] = ACTIONS(1462), - [anon_sym_pub] = ACTIONS(1462), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_static] = ACTIONS(1462), - [anon_sym_struct] = ACTIONS(1462), - [anon_sym_trait] = ACTIONS(1462), - [anon_sym_type] = ACTIONS(1462), - [anon_sym_union] = ACTIONS(1462), - [anon_sym_unsafe] = ACTIONS(1462), - [anon_sym_use] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1462), - [anon_sym_POUND] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_COLON_COLON] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_DOT_DOT] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_move] = ACTIONS(1462), - [sym_integer_literal] = ACTIONS(1460), - [aux_sym_string_literal_token1] = ACTIONS(1460), - [sym_char_literal] = ACTIONS(1460), - [anon_sym_true] = ACTIONS(1462), - [anon_sym_false] = ACTIONS(1462), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1462), - [sym_super] = ACTIONS(1462), - [sym_crate] = ACTIONS(1462), - [sym_metavariable] = ACTIONS(1460), - [sym_raw_string_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1460), + [ts_builtin_sym_end] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1465), + [anon_sym_macro_rules_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_u8] = ACTIONS(1467), + [anon_sym_i8] = ACTIONS(1467), + [anon_sym_u16] = ACTIONS(1467), + [anon_sym_i16] = ACTIONS(1467), + [anon_sym_u32] = ACTIONS(1467), + [anon_sym_i32] = ACTIONS(1467), + [anon_sym_u64] = ACTIONS(1467), + [anon_sym_i64] = ACTIONS(1467), + [anon_sym_u128] = ACTIONS(1467), + [anon_sym_i128] = ACTIONS(1467), + [anon_sym_isize] = ACTIONS(1467), + [anon_sym_usize] = ACTIONS(1467), + [anon_sym_f32] = ACTIONS(1467), + [anon_sym_f64] = ACTIONS(1467), + [anon_sym_bool] = ACTIONS(1467), + [anon_sym_str] = ACTIONS(1467), + [anon_sym_char] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_async] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_default] = ACTIONS(1467), + [anon_sym_enum] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_impl] = ACTIONS(1467), + [anon_sym_let] = ACTIONS(1467), + [anon_sym_loop] = ACTIONS(1467), + [anon_sym_match] = ACTIONS(1467), + [anon_sym_mod] = ACTIONS(1467), + [anon_sym_pub] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_static] = ACTIONS(1467), + [anon_sym_struct] = ACTIONS(1467), + [anon_sym_trait] = ACTIONS(1467), + [anon_sym_type] = ACTIONS(1467), + [anon_sym_union] = ACTIONS(1467), + [anon_sym_unsafe] = ACTIONS(1467), + [anon_sym_use] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_POUND] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_extern] = ACTIONS(1467), + [anon_sym_LT] = ACTIONS(1465), + [anon_sym_COLON_COLON] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1465), + [anon_sym_move] = ACTIONS(1467), + [sym_integer_literal] = ACTIONS(1465), + [aux_sym_string_literal_token1] = ACTIONS(1465), + [sym_char_literal] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1467), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1465), + [sym_raw_string_literal] = ACTIONS(1465), + [sym_float_literal] = ACTIONS(1465), [sym_block_comment] = ACTIONS(3), }, [341] = { - [ts_builtin_sym_end] = ACTIONS(1464), - [sym_identifier] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_macro_rules_BANG] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_u8] = ACTIONS(1466), - [anon_sym_i8] = ACTIONS(1466), - [anon_sym_u16] = ACTIONS(1466), - [anon_sym_i16] = ACTIONS(1466), - [anon_sym_u32] = ACTIONS(1466), - [anon_sym_i32] = ACTIONS(1466), - [anon_sym_u64] = ACTIONS(1466), - [anon_sym_i64] = ACTIONS(1466), - [anon_sym_u128] = ACTIONS(1466), - [anon_sym_i128] = ACTIONS(1466), - [anon_sym_isize] = ACTIONS(1466), - [anon_sym_usize] = ACTIONS(1466), - [anon_sym_f32] = ACTIONS(1466), - [anon_sym_f64] = ACTIONS(1466), - [anon_sym_bool] = ACTIONS(1466), - [anon_sym_str] = ACTIONS(1466), - [anon_sym_char] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1466), - [anon_sym_enum] = ACTIONS(1466), - [anon_sym_fn] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_impl] = ACTIONS(1466), - [anon_sym_let] = ACTIONS(1466), - [anon_sym_loop] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_mod] = ACTIONS(1466), - [anon_sym_pub] = ACTIONS(1466), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_struct] = ACTIONS(1466), - [anon_sym_trait] = ACTIONS(1466), - [anon_sym_type] = ACTIONS(1466), - [anon_sym_union] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1466), - [anon_sym_use] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_COLON_COLON] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_DOT_DOT] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_move] = ACTIONS(1466), - [sym_integer_literal] = ACTIONS(1464), - [aux_sym_string_literal_token1] = ACTIONS(1464), - [sym_char_literal] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1466), - [anon_sym_false] = ACTIONS(1466), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1466), - [sym_super] = ACTIONS(1466), - [sym_crate] = ACTIONS(1466), - [sym_metavariable] = ACTIONS(1464), - [sym_raw_string_literal] = ACTIONS(1464), - [sym_float_literal] = ACTIONS(1464), + [ts_builtin_sym_end] = ACTIONS(1469), + [sym_identifier] = ACTIONS(1471), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_macro_rules_BANG] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_u8] = ACTIONS(1471), + [anon_sym_i8] = ACTIONS(1471), + [anon_sym_u16] = ACTIONS(1471), + [anon_sym_i16] = ACTIONS(1471), + [anon_sym_u32] = ACTIONS(1471), + [anon_sym_i32] = ACTIONS(1471), + [anon_sym_u64] = ACTIONS(1471), + [anon_sym_i64] = ACTIONS(1471), + [anon_sym_u128] = ACTIONS(1471), + [anon_sym_i128] = ACTIONS(1471), + [anon_sym_isize] = ACTIONS(1471), + [anon_sym_usize] = ACTIONS(1471), + [anon_sym_f32] = ACTIONS(1471), + [anon_sym_f64] = ACTIONS(1471), + [anon_sym_bool] = ACTIONS(1471), + [anon_sym_str] = ACTIONS(1471), + [anon_sym_char] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_default] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_impl] = ACTIONS(1471), + [anon_sym_let] = ACTIONS(1471), + [anon_sym_loop] = ACTIONS(1471), + [anon_sym_match] = ACTIONS(1471), + [anon_sym_mod] = ACTIONS(1471), + [anon_sym_pub] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_struct] = ACTIONS(1471), + [anon_sym_trait] = ACTIONS(1471), + [anon_sym_type] = ACTIONS(1471), + [anon_sym_union] = ACTIONS(1471), + [anon_sym_unsafe] = ACTIONS(1471), + [anon_sym_use] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_POUND] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_extern] = ACTIONS(1471), + [anon_sym_LT] = ACTIONS(1469), + [anon_sym_COLON_COLON] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_DOT_DOT] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(1469), + [anon_sym_move] = ACTIONS(1471), + [sym_integer_literal] = ACTIONS(1469), + [aux_sym_string_literal_token1] = ACTIONS(1469), + [sym_char_literal] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1471), + [anon_sym_false] = ACTIONS(1471), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1471), + [sym_super] = ACTIONS(1471), + [sym_crate] = ACTIONS(1471), + [sym_metavariable] = ACTIONS(1469), + [sym_raw_string_literal] = ACTIONS(1469), + [sym_float_literal] = ACTIONS(1469), [sym_block_comment] = ACTIONS(3), }, [342] = { - [ts_builtin_sym_end] = ACTIONS(1468), - [sym_identifier] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_macro_rules_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_u8] = ACTIONS(1470), - [anon_sym_i8] = ACTIONS(1470), - [anon_sym_u16] = ACTIONS(1470), - [anon_sym_i16] = ACTIONS(1470), - [anon_sym_u32] = ACTIONS(1470), - [anon_sym_i32] = ACTIONS(1470), - [anon_sym_u64] = ACTIONS(1470), - [anon_sym_i64] = ACTIONS(1470), - [anon_sym_u128] = ACTIONS(1470), - [anon_sym_i128] = ACTIONS(1470), - [anon_sym_isize] = ACTIONS(1470), - [anon_sym_usize] = ACTIONS(1470), - [anon_sym_f32] = ACTIONS(1470), - [anon_sym_f64] = ACTIONS(1470), - [anon_sym_bool] = ACTIONS(1470), - [anon_sym_str] = ACTIONS(1470), - [anon_sym_char] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_default] = ACTIONS(1470), - [anon_sym_enum] = ACTIONS(1470), - [anon_sym_fn] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_impl] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_mod] = ACTIONS(1470), - [anon_sym_pub] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_static] = ACTIONS(1470), - [anon_sym_struct] = ACTIONS(1470), - [anon_sym_trait] = ACTIONS(1470), - [anon_sym_type] = ACTIONS(1470), - [anon_sym_union] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1468), - [anon_sym_COLON_COLON] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_DOT_DOT] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1470), - [sym_integer_literal] = ACTIONS(1468), - [aux_sym_string_literal_token1] = ACTIONS(1468), - [sym_char_literal] = ACTIONS(1468), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1470), - [sym_super] = ACTIONS(1470), - [sym_crate] = ACTIONS(1470), - [sym_metavariable] = ACTIONS(1468), - [sym_raw_string_literal] = ACTIONS(1468), - [sym_float_literal] = ACTIONS(1468), + [ts_builtin_sym_end] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1473), + [anon_sym_macro_rules_BANG] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_u8] = ACTIONS(1475), + [anon_sym_i8] = ACTIONS(1475), + [anon_sym_u16] = ACTIONS(1475), + [anon_sym_i16] = ACTIONS(1475), + [anon_sym_u32] = ACTIONS(1475), + [anon_sym_i32] = ACTIONS(1475), + [anon_sym_u64] = ACTIONS(1475), + [anon_sym_i64] = ACTIONS(1475), + [anon_sym_u128] = ACTIONS(1475), + [anon_sym_i128] = ACTIONS(1475), + [anon_sym_isize] = ACTIONS(1475), + [anon_sym_usize] = ACTIONS(1475), + [anon_sym_f32] = ACTIONS(1475), + [anon_sym_f64] = ACTIONS(1475), + [anon_sym_bool] = ACTIONS(1475), + [anon_sym_str] = ACTIONS(1475), + [anon_sym_char] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_async] = ACTIONS(1475), + [anon_sym_break] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1475), + [anon_sym_continue] = ACTIONS(1475), + [anon_sym_default] = ACTIONS(1475), + [anon_sym_enum] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1475), + [anon_sym_for] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1475), + [anon_sym_impl] = ACTIONS(1475), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_loop] = ACTIONS(1475), + [anon_sym_match] = ACTIONS(1475), + [anon_sym_mod] = ACTIONS(1475), + [anon_sym_pub] = ACTIONS(1475), + [anon_sym_return] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_struct] = ACTIONS(1475), + [anon_sym_trait] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_union] = ACTIONS(1475), + [anon_sym_unsafe] = ACTIONS(1475), + [anon_sym_use] = ACTIONS(1475), + [anon_sym_while] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1475), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_COLON_COLON] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_move] = ACTIONS(1475), + [sym_integer_literal] = ACTIONS(1473), + [aux_sym_string_literal_token1] = ACTIONS(1473), + [sym_char_literal] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1475), + [sym_super] = ACTIONS(1475), + [sym_crate] = ACTIONS(1475), + [sym_metavariable] = ACTIONS(1473), + [sym_raw_string_literal] = ACTIONS(1473), + [sym_float_literal] = ACTIONS(1473), [sym_block_comment] = ACTIONS(3), }, [343] = { - [ts_builtin_sym_end] = ACTIONS(1472), - [sym_identifier] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_macro_rules_BANG] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_u8] = ACTIONS(1474), - [anon_sym_i8] = ACTIONS(1474), - [anon_sym_u16] = ACTIONS(1474), - [anon_sym_i16] = ACTIONS(1474), - [anon_sym_u32] = ACTIONS(1474), - [anon_sym_i32] = ACTIONS(1474), - [anon_sym_u64] = ACTIONS(1474), - [anon_sym_i64] = ACTIONS(1474), - [anon_sym_u128] = ACTIONS(1474), - [anon_sym_i128] = ACTIONS(1474), - [anon_sym_isize] = ACTIONS(1474), - [anon_sym_usize] = ACTIONS(1474), - [anon_sym_f32] = ACTIONS(1474), - [anon_sym_f64] = ACTIONS(1474), - [anon_sym_bool] = ACTIONS(1474), - [anon_sym_str] = ACTIONS(1474), - [anon_sym_char] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_async] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_enum] = ACTIONS(1474), - [anon_sym_fn] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_impl] = ACTIONS(1474), - [anon_sym_let] = ACTIONS(1474), - [anon_sym_loop] = ACTIONS(1474), - [anon_sym_match] = ACTIONS(1474), - [anon_sym_mod] = ACTIONS(1474), - [anon_sym_pub] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_static] = ACTIONS(1474), - [anon_sym_struct] = ACTIONS(1474), - [anon_sym_trait] = ACTIONS(1474), - [anon_sym_type] = ACTIONS(1474), - [anon_sym_union] = ACTIONS(1474), - [anon_sym_unsafe] = ACTIONS(1474), - [anon_sym_use] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(1472), - [anon_sym_COLON_COLON] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_move] = ACTIONS(1474), - [sym_integer_literal] = ACTIONS(1472), - [aux_sym_string_literal_token1] = ACTIONS(1472), - [sym_char_literal] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1474), - [anon_sym_false] = ACTIONS(1474), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1474), - [sym_super] = ACTIONS(1474), - [sym_crate] = ACTIONS(1474), - [sym_metavariable] = ACTIONS(1472), - [sym_raw_string_literal] = ACTIONS(1472), - [sym_float_literal] = ACTIONS(1472), + [ts_builtin_sym_end] = ACTIONS(1477), + [sym_identifier] = ACTIONS(1479), + [anon_sym_SEMI] = ACTIONS(1477), + [anon_sym_macro_rules_BANG] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_RBRACE] = ACTIONS(1477), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_u8] = ACTIONS(1479), + [anon_sym_i8] = ACTIONS(1479), + [anon_sym_u16] = ACTIONS(1479), + [anon_sym_i16] = ACTIONS(1479), + [anon_sym_u32] = ACTIONS(1479), + [anon_sym_i32] = ACTIONS(1479), + [anon_sym_u64] = ACTIONS(1479), + [anon_sym_i64] = ACTIONS(1479), + [anon_sym_u128] = ACTIONS(1479), + [anon_sym_i128] = ACTIONS(1479), + [anon_sym_isize] = ACTIONS(1479), + [anon_sym_usize] = ACTIONS(1479), + [anon_sym_f32] = ACTIONS(1479), + [anon_sym_f64] = ACTIONS(1479), + [anon_sym_bool] = ACTIONS(1479), + [anon_sym_str] = ACTIONS(1479), + [anon_sym_char] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_async] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_enum] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_impl] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_loop] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1479), + [anon_sym_mod] = ACTIONS(1479), + [anon_sym_pub] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_struct] = ACTIONS(1479), + [anon_sym_trait] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_union] = ACTIONS(1479), + [anon_sym_unsafe] = ACTIONS(1479), + [anon_sym_use] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1477), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym_LT] = ACTIONS(1477), + [anon_sym_COLON_COLON] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(1477), + [anon_sym_move] = ACTIONS(1479), + [sym_integer_literal] = ACTIONS(1477), + [aux_sym_string_literal_token1] = ACTIONS(1477), + [sym_char_literal] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1479), + [anon_sym_false] = ACTIONS(1479), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1479), + [sym_super] = ACTIONS(1479), + [sym_crate] = ACTIONS(1479), + [sym_metavariable] = ACTIONS(1477), + [sym_raw_string_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1477), [sym_block_comment] = ACTIONS(3), }, [344] = { - [ts_builtin_sym_end] = ACTIONS(1476), - [sym_identifier] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_macro_rules_BANG] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_u8] = ACTIONS(1478), - [anon_sym_i8] = ACTIONS(1478), - [anon_sym_u16] = ACTIONS(1478), - [anon_sym_i16] = ACTIONS(1478), - [anon_sym_u32] = ACTIONS(1478), - [anon_sym_i32] = ACTIONS(1478), - [anon_sym_u64] = ACTIONS(1478), - [anon_sym_i64] = ACTIONS(1478), - [anon_sym_u128] = ACTIONS(1478), - [anon_sym_i128] = ACTIONS(1478), - [anon_sym_isize] = ACTIONS(1478), - [anon_sym_usize] = ACTIONS(1478), - [anon_sym_f32] = ACTIONS(1478), - [anon_sym_f64] = ACTIONS(1478), - [anon_sym_bool] = ACTIONS(1478), - [anon_sym_str] = ACTIONS(1478), - [anon_sym_char] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_async] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_default] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - [anon_sym_fn] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_impl] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1478), - [anon_sym_loop] = ACTIONS(1478), - [anon_sym_match] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_pub] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [anon_sym_trait] = ACTIONS(1478), - [anon_sym_type] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_use] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_COLON_COLON] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_move] = ACTIONS(1478), - [sym_integer_literal] = ACTIONS(1476), - [aux_sym_string_literal_token1] = ACTIONS(1476), - [sym_char_literal] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1478), - [anon_sym_false] = ACTIONS(1478), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1478), - [sym_super] = ACTIONS(1478), - [sym_crate] = ACTIONS(1478), - [sym_metavariable] = ACTIONS(1476), - [sym_raw_string_literal] = ACTIONS(1476), - [sym_float_literal] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_macro_rules_BANG] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_u8] = ACTIONS(1483), + [anon_sym_i8] = ACTIONS(1483), + [anon_sym_u16] = ACTIONS(1483), + [anon_sym_i16] = ACTIONS(1483), + [anon_sym_u32] = ACTIONS(1483), + [anon_sym_i32] = ACTIONS(1483), + [anon_sym_u64] = ACTIONS(1483), + [anon_sym_i64] = ACTIONS(1483), + [anon_sym_u128] = ACTIONS(1483), + [anon_sym_i128] = ACTIONS(1483), + [anon_sym_isize] = ACTIONS(1483), + [anon_sym_usize] = ACTIONS(1483), + [anon_sym_f32] = ACTIONS(1483), + [anon_sym_f64] = ACTIONS(1483), + [anon_sym_bool] = ACTIONS(1483), + [anon_sym_str] = ACTIONS(1483), + [anon_sym_char] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_async] = ACTIONS(1483), + [anon_sym_break] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1483), + [anon_sym_continue] = ACTIONS(1483), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_enum] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1483), + [anon_sym_for] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1483), + [anon_sym_impl] = ACTIONS(1483), + [anon_sym_let] = ACTIONS(1483), + [anon_sym_loop] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1483), + [anon_sym_mod] = ACTIONS(1483), + [anon_sym_pub] = ACTIONS(1483), + [anon_sym_return] = ACTIONS(1483), + [anon_sym_static] = ACTIONS(1483), + [anon_sym_struct] = ACTIONS(1483), + [anon_sym_trait] = ACTIONS(1483), + [anon_sym_type] = ACTIONS(1483), + [anon_sym_union] = ACTIONS(1483), + [anon_sym_unsafe] = ACTIONS(1483), + [anon_sym_use] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1483), + [anon_sym_POUND] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_extern] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(1481), + [anon_sym_COLON_COLON] = ACTIONS(1481), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_move] = ACTIONS(1483), + [sym_integer_literal] = ACTIONS(1481), + [aux_sym_string_literal_token1] = ACTIONS(1481), + [sym_char_literal] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1483), + [sym_super] = ACTIONS(1483), + [sym_crate] = ACTIONS(1483), + [sym_metavariable] = ACTIONS(1481), + [sym_raw_string_literal] = ACTIONS(1481), + [sym_float_literal] = ACTIONS(1481), [sym_block_comment] = ACTIONS(3), }, [345] = { - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_macro_rules_BANG] = ACTIONS(1480), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_u8] = ACTIONS(1482), - [anon_sym_i8] = ACTIONS(1482), - [anon_sym_u16] = ACTIONS(1482), - [anon_sym_i16] = ACTIONS(1482), - [anon_sym_u32] = ACTIONS(1482), - [anon_sym_i32] = ACTIONS(1482), - [anon_sym_u64] = ACTIONS(1482), - [anon_sym_i64] = ACTIONS(1482), - [anon_sym_u128] = ACTIONS(1482), - [anon_sym_i128] = ACTIONS(1482), - [anon_sym_isize] = ACTIONS(1482), - [anon_sym_usize] = ACTIONS(1482), - [anon_sym_f32] = ACTIONS(1482), - [anon_sym_f64] = ACTIONS(1482), - [anon_sym_bool] = ACTIONS(1482), - [anon_sym_str] = ACTIONS(1482), - [anon_sym_char] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_async] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [anon_sym_fn] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_impl] = ACTIONS(1482), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_loop] = ACTIONS(1482), - [anon_sym_match] = ACTIONS(1482), - [anon_sym_mod] = ACTIONS(1482), - [anon_sym_pub] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_struct] = ACTIONS(1482), - [anon_sym_trait] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_union] = ACTIONS(1482), - [anon_sym_unsafe] = ACTIONS(1482), - [anon_sym_use] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_POUND] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1482), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_COLON_COLON] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_move] = ACTIONS(1482), - [sym_integer_literal] = ACTIONS(1480), - [aux_sym_string_literal_token1] = ACTIONS(1480), - [sym_char_literal] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1482), - [sym_super] = ACTIONS(1482), - [sym_crate] = ACTIONS(1482), - [sym_metavariable] = ACTIONS(1480), - [sym_raw_string_literal] = ACTIONS(1480), - [sym_float_literal] = ACTIONS(1480), + [ts_builtin_sym_end] = ACTIONS(1485), + [sym_identifier] = ACTIONS(1487), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_macro_rules_BANG] = ACTIONS(1485), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1485), + [anon_sym_u8] = ACTIONS(1487), + [anon_sym_i8] = ACTIONS(1487), + [anon_sym_u16] = ACTIONS(1487), + [anon_sym_i16] = ACTIONS(1487), + [anon_sym_u32] = ACTIONS(1487), + [anon_sym_i32] = ACTIONS(1487), + [anon_sym_u64] = ACTIONS(1487), + [anon_sym_i64] = ACTIONS(1487), + [anon_sym_u128] = ACTIONS(1487), + [anon_sym_i128] = ACTIONS(1487), + [anon_sym_isize] = ACTIONS(1487), + [anon_sym_usize] = ACTIONS(1487), + [anon_sym_f32] = ACTIONS(1487), + [anon_sym_f64] = ACTIONS(1487), + [anon_sym_bool] = ACTIONS(1487), + [anon_sym_str] = ACTIONS(1487), + [anon_sym_char] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_async] = ACTIONS(1487), + [anon_sym_break] = ACTIONS(1487), + [anon_sym_const] = ACTIONS(1487), + [anon_sym_continue] = ACTIONS(1487), + [anon_sym_default] = ACTIONS(1487), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1487), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1487), + [anon_sym_impl] = ACTIONS(1487), + [anon_sym_let] = ACTIONS(1487), + [anon_sym_loop] = ACTIONS(1487), + [anon_sym_match] = ACTIONS(1487), + [anon_sym_mod] = ACTIONS(1487), + [anon_sym_pub] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1487), + [anon_sym_static] = ACTIONS(1487), + [anon_sym_struct] = ACTIONS(1487), + [anon_sym_trait] = ACTIONS(1487), + [anon_sym_type] = ACTIONS(1487), + [anon_sym_union] = ACTIONS(1487), + [anon_sym_unsafe] = ACTIONS(1487), + [anon_sym_use] = ACTIONS(1487), + [anon_sym_while] = ACTIONS(1487), + [anon_sym_POUND] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_extern] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1485), + [anon_sym_COLON_COLON] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_move] = ACTIONS(1487), + [sym_integer_literal] = ACTIONS(1485), + [aux_sym_string_literal_token1] = ACTIONS(1485), + [sym_char_literal] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1487), + [anon_sym_false] = ACTIONS(1487), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1487), + [sym_super] = ACTIONS(1487), + [sym_crate] = ACTIONS(1487), + [sym_metavariable] = ACTIONS(1485), + [sym_raw_string_literal] = ACTIONS(1485), + [sym_float_literal] = ACTIONS(1485), [sym_block_comment] = ACTIONS(3), }, [346] = { - [ts_builtin_sym_end] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_macro_rules_BANG] = ACTIONS(1484), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_u8] = ACTIONS(1486), - [anon_sym_i8] = ACTIONS(1486), - [anon_sym_u16] = ACTIONS(1486), - [anon_sym_i16] = ACTIONS(1486), - [anon_sym_u32] = ACTIONS(1486), - [anon_sym_i32] = ACTIONS(1486), - [anon_sym_u64] = ACTIONS(1486), - [anon_sym_i64] = ACTIONS(1486), - [anon_sym_u128] = ACTIONS(1486), - [anon_sym_i128] = ACTIONS(1486), - [anon_sym_isize] = ACTIONS(1486), - [anon_sym_usize] = ACTIONS(1486), - [anon_sym_f32] = ACTIONS(1486), - [anon_sym_f64] = ACTIONS(1486), - [anon_sym_bool] = ACTIONS(1486), - [anon_sym_str] = ACTIONS(1486), - [anon_sym_char] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_async] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [anon_sym_fn] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_impl] = ACTIONS(1486), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_loop] = ACTIONS(1486), - [anon_sym_match] = ACTIONS(1486), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_pub] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_trait] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1486), - [anon_sym_unsafe] = ACTIONS(1486), - [anon_sym_use] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_POUND] = ACTIONS(1484), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_move] = ACTIONS(1486), - [sym_integer_literal] = ACTIONS(1484), - [aux_sym_string_literal_token1] = ACTIONS(1484), - [sym_char_literal] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1486), - [sym_super] = ACTIONS(1486), - [sym_crate] = ACTIONS(1486), - [sym_metavariable] = ACTIONS(1484), - [sym_raw_string_literal] = ACTIONS(1484), - [sym_float_literal] = ACTIONS(1484), + [ts_builtin_sym_end] = ACTIONS(1489), + [sym_identifier] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_macro_rules_BANG] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_u8] = ACTIONS(1491), + [anon_sym_i8] = ACTIONS(1491), + [anon_sym_u16] = ACTIONS(1491), + [anon_sym_i16] = ACTIONS(1491), + [anon_sym_u32] = ACTIONS(1491), + [anon_sym_i32] = ACTIONS(1491), + [anon_sym_u64] = ACTIONS(1491), + [anon_sym_i64] = ACTIONS(1491), + [anon_sym_u128] = ACTIONS(1491), + [anon_sym_i128] = ACTIONS(1491), + [anon_sym_isize] = ACTIONS(1491), + [anon_sym_usize] = ACTIONS(1491), + [anon_sym_f32] = ACTIONS(1491), + [anon_sym_f64] = ACTIONS(1491), + [anon_sym_bool] = ACTIONS(1491), + [anon_sym_str] = ACTIONS(1491), + [anon_sym_char] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_async] = ACTIONS(1491), + [anon_sym_break] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1491), + [anon_sym_continue] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1491), + [anon_sym_enum] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1491), + [anon_sym_for] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1491), + [anon_sym_impl] = ACTIONS(1491), + [anon_sym_let] = ACTIONS(1491), + [anon_sym_loop] = ACTIONS(1491), + [anon_sym_match] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1491), + [anon_sym_pub] = ACTIONS(1491), + [anon_sym_return] = ACTIONS(1491), + [anon_sym_static] = ACTIONS(1491), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_trait] = ACTIONS(1491), + [anon_sym_type] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1491), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_use] = ACTIONS(1491), + [anon_sym_while] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1489), + [anon_sym_extern] = ACTIONS(1491), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_COLON_COLON] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_move] = ACTIONS(1491), + [sym_integer_literal] = ACTIONS(1489), + [aux_sym_string_literal_token1] = ACTIONS(1489), + [sym_char_literal] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1491), + [anon_sym_false] = ACTIONS(1491), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1491), + [sym_super] = ACTIONS(1491), + [sym_crate] = ACTIONS(1491), + [sym_metavariable] = ACTIONS(1489), + [sym_raw_string_literal] = ACTIONS(1489), + [sym_float_literal] = ACTIONS(1489), [sym_block_comment] = ACTIONS(3), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(1488), - [sym_identifier] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_macro_rules_BANG] = ACTIONS(1488), - [anon_sym_LPAREN] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u128] = ACTIONS(1490), - [anon_sym_i128] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_str] = ACTIONS(1490), - [anon_sym_char] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_async] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_default] = ACTIONS(1490), - [anon_sym_enum] = ACTIONS(1490), - [anon_sym_fn] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_impl] = ACTIONS(1490), - [anon_sym_let] = ACTIONS(1490), - [anon_sym_loop] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1490), - [anon_sym_mod] = ACTIONS(1490), - [anon_sym_pub] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_static] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_trait] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_unsafe] = ACTIONS(1490), - [anon_sym_use] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_POUND] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(1488), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1488), - [aux_sym_string_literal_token1] = ACTIONS(1488), - [sym_char_literal] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1490), - [sym_super] = ACTIONS(1490), - [sym_crate] = ACTIONS(1490), - [sym_metavariable] = ACTIONS(1488), - [sym_raw_string_literal] = ACTIONS(1488), - [sym_float_literal] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(1493), + [sym_identifier] = ACTIONS(1495), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_macro_rules_BANG] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_u8] = ACTIONS(1495), + [anon_sym_i8] = ACTIONS(1495), + [anon_sym_u16] = ACTIONS(1495), + [anon_sym_i16] = ACTIONS(1495), + [anon_sym_u32] = ACTIONS(1495), + [anon_sym_i32] = ACTIONS(1495), + [anon_sym_u64] = ACTIONS(1495), + [anon_sym_i64] = ACTIONS(1495), + [anon_sym_u128] = ACTIONS(1495), + [anon_sym_i128] = ACTIONS(1495), + [anon_sym_isize] = ACTIONS(1495), + [anon_sym_usize] = ACTIONS(1495), + [anon_sym_f32] = ACTIONS(1495), + [anon_sym_f64] = ACTIONS(1495), + [anon_sym_bool] = ACTIONS(1495), + [anon_sym_str] = ACTIONS(1495), + [anon_sym_char] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_break] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [anon_sym_continue] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(1495), + [anon_sym_enum] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1495), + [anon_sym_for] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1495), + [anon_sym_impl] = ACTIONS(1495), + [anon_sym_let] = ACTIONS(1495), + [anon_sym_loop] = ACTIONS(1495), + [anon_sym_match] = ACTIONS(1495), + [anon_sym_mod] = ACTIONS(1495), + [anon_sym_pub] = ACTIONS(1495), + [anon_sym_return] = ACTIONS(1495), + [anon_sym_static] = ACTIONS(1495), + [anon_sym_struct] = ACTIONS(1495), + [anon_sym_trait] = ACTIONS(1495), + [anon_sym_type] = ACTIONS(1495), + [anon_sym_union] = ACTIONS(1495), + [anon_sym_unsafe] = ACTIONS(1495), + [anon_sym_use] = ACTIONS(1495), + [anon_sym_while] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_extern] = ACTIONS(1495), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_COLON_COLON] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_move] = ACTIONS(1495), + [sym_integer_literal] = ACTIONS(1493), + [aux_sym_string_literal_token1] = ACTIONS(1493), + [sym_char_literal] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1495), + [anon_sym_false] = ACTIONS(1495), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1495), + [sym_super] = ACTIONS(1495), + [sym_crate] = ACTIONS(1495), + [sym_metavariable] = ACTIONS(1493), + [sym_raw_string_literal] = ACTIONS(1493), + [sym_float_literal] = ACTIONS(1493), [sym_block_comment] = ACTIONS(3), }, [348] = { - [ts_builtin_sym_end] = ACTIONS(1492), - [sym_identifier] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_macro_rules_BANG] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_u8] = ACTIONS(1494), - [anon_sym_i8] = ACTIONS(1494), - [anon_sym_u16] = ACTIONS(1494), - [anon_sym_i16] = ACTIONS(1494), - [anon_sym_u32] = ACTIONS(1494), - [anon_sym_i32] = ACTIONS(1494), - [anon_sym_u64] = ACTIONS(1494), - [anon_sym_i64] = ACTIONS(1494), - [anon_sym_u128] = ACTIONS(1494), - [anon_sym_i128] = ACTIONS(1494), - [anon_sym_isize] = ACTIONS(1494), - [anon_sym_usize] = ACTIONS(1494), - [anon_sym_f32] = ACTIONS(1494), - [anon_sym_f64] = ACTIONS(1494), - [anon_sym_bool] = ACTIONS(1494), - [anon_sym_str] = ACTIONS(1494), - [anon_sym_char] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_async] = ACTIONS(1494), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1494), - [anon_sym_default] = ACTIONS(1494), - [anon_sym_enum] = ACTIONS(1494), - [anon_sym_fn] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_impl] = ACTIONS(1494), - [anon_sym_let] = ACTIONS(1494), - [anon_sym_loop] = ACTIONS(1494), - [anon_sym_match] = ACTIONS(1494), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_pub] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_static] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_trait] = ACTIONS(1494), - [anon_sym_type] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_unsafe] = ACTIONS(1494), - [anon_sym_use] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_COLON_COLON] = ACTIONS(1492), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_DOT_DOT] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_move] = ACTIONS(1494), - [sym_integer_literal] = ACTIONS(1492), - [aux_sym_string_literal_token1] = ACTIONS(1492), - [sym_char_literal] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1494), - [sym_super] = ACTIONS(1494), - [sym_crate] = ACTIONS(1494), - [sym_metavariable] = ACTIONS(1492), - [sym_raw_string_literal] = ACTIONS(1492), - [sym_float_literal] = ACTIONS(1492), + [ts_builtin_sym_end] = ACTIONS(1497), + [sym_identifier] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1497), + [anon_sym_macro_rules_BANG] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_u8] = ACTIONS(1499), + [anon_sym_i8] = ACTIONS(1499), + [anon_sym_u16] = ACTIONS(1499), + [anon_sym_i16] = ACTIONS(1499), + [anon_sym_u32] = ACTIONS(1499), + [anon_sym_i32] = ACTIONS(1499), + [anon_sym_u64] = ACTIONS(1499), + [anon_sym_i64] = ACTIONS(1499), + [anon_sym_u128] = ACTIONS(1499), + [anon_sym_i128] = ACTIONS(1499), + [anon_sym_isize] = ACTIONS(1499), + [anon_sym_usize] = ACTIONS(1499), + [anon_sym_f32] = ACTIONS(1499), + [anon_sym_f64] = ACTIONS(1499), + [anon_sym_bool] = ACTIONS(1499), + [anon_sym_str] = ACTIONS(1499), + [anon_sym_char] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1499), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_enum] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1499), + [anon_sym_for] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_impl] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1499), + [anon_sym_loop] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1499), + [anon_sym_pub] = ACTIONS(1499), + [anon_sym_return] = ACTIONS(1499), + [anon_sym_static] = ACTIONS(1499), + [anon_sym_struct] = ACTIONS(1499), + [anon_sym_trait] = ACTIONS(1499), + [anon_sym_type] = ACTIONS(1499), + [anon_sym_union] = ACTIONS(1499), + [anon_sym_unsafe] = ACTIONS(1499), + [anon_sym_use] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(1499), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_COLON_COLON] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_move] = ACTIONS(1499), + [sym_integer_literal] = ACTIONS(1497), + [aux_sym_string_literal_token1] = ACTIONS(1497), + [sym_char_literal] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1499), + [sym_super] = ACTIONS(1499), + [sym_crate] = ACTIONS(1499), + [sym_metavariable] = ACTIONS(1497), + [sym_raw_string_literal] = ACTIONS(1497), + [sym_float_literal] = ACTIONS(1497), [sym_block_comment] = ACTIONS(3), }, [349] = { - [ts_builtin_sym_end] = ACTIONS(1496), - [sym_identifier] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_macro_rules_BANG] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1496), - [anon_sym_u8] = ACTIONS(1498), - [anon_sym_i8] = ACTIONS(1498), - [anon_sym_u16] = ACTIONS(1498), - [anon_sym_i16] = ACTIONS(1498), - [anon_sym_u32] = ACTIONS(1498), - [anon_sym_i32] = ACTIONS(1498), - [anon_sym_u64] = ACTIONS(1498), - [anon_sym_i64] = ACTIONS(1498), - [anon_sym_u128] = ACTIONS(1498), - [anon_sym_i128] = ACTIONS(1498), - [anon_sym_isize] = ACTIONS(1498), - [anon_sym_usize] = ACTIONS(1498), - [anon_sym_f32] = ACTIONS(1498), - [anon_sym_f64] = ACTIONS(1498), - [anon_sym_bool] = ACTIONS(1498), - [anon_sym_str] = ACTIONS(1498), - [anon_sym_char] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_async] = ACTIONS(1498), - [anon_sym_break] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [anon_sym_continue] = ACTIONS(1498), - [anon_sym_default] = ACTIONS(1498), - [anon_sym_enum] = ACTIONS(1498), - [anon_sym_fn] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1498), - [anon_sym_impl] = ACTIONS(1498), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_loop] = ACTIONS(1498), - [anon_sym_match] = ACTIONS(1498), - [anon_sym_mod] = ACTIONS(1498), - [anon_sym_pub] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1498), - [anon_sym_trait] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1498), - [anon_sym_unsafe] = ACTIONS(1498), - [anon_sym_use] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1496), - [anon_sym_move] = ACTIONS(1498), - [sym_integer_literal] = ACTIONS(1496), - [aux_sym_string_literal_token1] = ACTIONS(1496), - [sym_char_literal] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1498), - [anon_sym_false] = ACTIONS(1498), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1498), - [sym_super] = ACTIONS(1498), - [sym_crate] = ACTIONS(1498), - [sym_metavariable] = ACTIONS(1496), - [sym_raw_string_literal] = ACTIONS(1496), - [sym_float_literal] = ACTIONS(1496), + [sym__token_pattern] = STATE(461), + [sym_token_tree_pattern] = STATE(461), + [sym_token_binding_pattern] = STATE(461), + [sym_token_repetition_pattern] = STATE(461), + [sym__literal] = STATE(461), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_pattern_repeat1] = STATE(461), + [sym_identifier] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1503), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1200), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(1501), + [anon_sym_SQUOTE] = ACTIONS(1501), + [anon_sym_as] = ACTIONS(1501), + [anon_sym_async] = ACTIONS(1501), + [anon_sym_await] = 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_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_where] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [sym_mutable_specifier] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(1501), + [sym_super] = ACTIONS(1501), + [sym_crate] = ACTIONS(1501), + [sym_metavariable] = ACTIONS(1208), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, [350] = { - [ts_builtin_sym_end] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym_macro_rules_BANG] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1500), - [anon_sym_u8] = ACTIONS(1502), - [anon_sym_i8] = ACTIONS(1502), - [anon_sym_u16] = ACTIONS(1502), - [anon_sym_i16] = ACTIONS(1502), - [anon_sym_u32] = ACTIONS(1502), - [anon_sym_i32] = ACTIONS(1502), - [anon_sym_u64] = ACTIONS(1502), - [anon_sym_i64] = ACTIONS(1502), - [anon_sym_u128] = ACTIONS(1502), - [anon_sym_i128] = ACTIONS(1502), - [anon_sym_isize] = ACTIONS(1502), - [anon_sym_usize] = ACTIONS(1502), - [anon_sym_f32] = ACTIONS(1502), - [anon_sym_f64] = ACTIONS(1502), - [anon_sym_bool] = ACTIONS(1502), - [anon_sym_str] = ACTIONS(1502), - [anon_sym_char] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_break] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1502), - [anon_sym_continue] = ACTIONS(1502), - [anon_sym_default] = ACTIONS(1502), - [anon_sym_enum] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1502), - [anon_sym_impl] = ACTIONS(1502), - [anon_sym_let] = ACTIONS(1502), - [anon_sym_loop] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_mod] = ACTIONS(1502), - [anon_sym_pub] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1502), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_struct] = ACTIONS(1502), - [anon_sym_trait] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_union] = ACTIONS(1502), - [anon_sym_unsafe] = ACTIONS(1502), - [anon_sym_use] = ACTIONS(1502), - [anon_sym_while] = ACTIONS(1502), - [anon_sym_POUND] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_COLON_COLON] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_move] = ACTIONS(1502), - [sym_integer_literal] = ACTIONS(1500), - [aux_sym_string_literal_token1] = ACTIONS(1500), - [sym_char_literal] = ACTIONS(1500), - [anon_sym_true] = ACTIONS(1502), - [anon_sym_false] = ACTIONS(1502), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1502), - [sym_super] = ACTIONS(1502), - [sym_crate] = ACTIONS(1502), - [sym_metavariable] = ACTIONS(1500), - [sym_raw_string_literal] = ACTIONS(1500), - [sym_float_literal] = ACTIONS(1500), + [ts_builtin_sym_end] = ACTIONS(1505), + [sym_identifier] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_macro_rules_BANG] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_u8] = ACTIONS(1507), + [anon_sym_i8] = ACTIONS(1507), + [anon_sym_u16] = ACTIONS(1507), + [anon_sym_i16] = ACTIONS(1507), + [anon_sym_u32] = ACTIONS(1507), + [anon_sym_i32] = ACTIONS(1507), + [anon_sym_u64] = ACTIONS(1507), + [anon_sym_i64] = ACTIONS(1507), + [anon_sym_u128] = ACTIONS(1507), + [anon_sym_i128] = ACTIONS(1507), + [anon_sym_isize] = ACTIONS(1507), + [anon_sym_usize] = ACTIONS(1507), + [anon_sym_f32] = ACTIONS(1507), + [anon_sym_f64] = ACTIONS(1507), + [anon_sym_bool] = ACTIONS(1507), + [anon_sym_str] = ACTIONS(1507), + [anon_sym_char] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1507), + [anon_sym_continue] = ACTIONS(1507), + [anon_sym_default] = ACTIONS(1507), + [anon_sym_enum] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1507), + [anon_sym_for] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_impl] = ACTIONS(1507), + [anon_sym_let] = ACTIONS(1507), + [anon_sym_loop] = ACTIONS(1507), + [anon_sym_match] = ACTIONS(1507), + [anon_sym_mod] = ACTIONS(1507), + [anon_sym_pub] = ACTIONS(1507), + [anon_sym_return] = ACTIONS(1507), + [anon_sym_static] = ACTIONS(1507), + [anon_sym_struct] = ACTIONS(1507), + [anon_sym_trait] = ACTIONS(1507), + [anon_sym_type] = ACTIONS(1507), + [anon_sym_union] = ACTIONS(1507), + [anon_sym_unsafe] = ACTIONS(1507), + [anon_sym_use] = ACTIONS(1507), + [anon_sym_while] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_extern] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_COLON_COLON] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_move] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1505), + [aux_sym_string_literal_token1] = ACTIONS(1505), + [sym_char_literal] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1507), + [anon_sym_false] = ACTIONS(1507), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1507), + [sym_super] = ACTIONS(1507), + [sym_crate] = ACTIONS(1507), + [sym_metavariable] = ACTIONS(1505), + [sym_raw_string_literal] = ACTIONS(1505), + [sym_float_literal] = ACTIONS(1505), [sym_block_comment] = ACTIONS(3), }, [351] = { - [ts_builtin_sym_end] = ACTIONS(1504), - [sym_identifier] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_macro_rules_BANG] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_u8] = ACTIONS(1506), - [anon_sym_i8] = ACTIONS(1506), - [anon_sym_u16] = ACTIONS(1506), - [anon_sym_i16] = ACTIONS(1506), - [anon_sym_u32] = ACTIONS(1506), - [anon_sym_i32] = ACTIONS(1506), - [anon_sym_u64] = ACTIONS(1506), - [anon_sym_i64] = ACTIONS(1506), - [anon_sym_u128] = ACTIONS(1506), - [anon_sym_i128] = ACTIONS(1506), - [anon_sym_isize] = ACTIONS(1506), - [anon_sym_usize] = ACTIONS(1506), - [anon_sym_f32] = ACTIONS(1506), - [anon_sym_f64] = ACTIONS(1506), - [anon_sym_bool] = ACTIONS(1506), - [anon_sym_str] = ACTIONS(1506), - [anon_sym_char] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_async] = ACTIONS(1506), - [anon_sym_break] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1506), - [anon_sym_continue] = ACTIONS(1506), - [anon_sym_default] = ACTIONS(1506), - [anon_sym_enum] = ACTIONS(1506), - [anon_sym_fn] = ACTIONS(1506), - [anon_sym_for] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1506), - [anon_sym_impl] = ACTIONS(1506), - [anon_sym_let] = ACTIONS(1506), - [anon_sym_loop] = ACTIONS(1506), - [anon_sym_match] = ACTIONS(1506), - [anon_sym_mod] = ACTIONS(1506), - [anon_sym_pub] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1506), - [anon_sym_static] = ACTIONS(1506), - [anon_sym_struct] = ACTIONS(1506), - [anon_sym_trait] = ACTIONS(1506), - [anon_sym_type] = ACTIONS(1506), - [anon_sym_union] = ACTIONS(1506), - [anon_sym_unsafe] = ACTIONS(1506), - [anon_sym_use] = ACTIONS(1506), - [anon_sym_while] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1504), - [anon_sym_COLON_COLON] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_DOT_DOT] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_move] = ACTIONS(1506), - [sym_integer_literal] = ACTIONS(1504), - [aux_sym_string_literal_token1] = ACTIONS(1504), - [sym_char_literal] = ACTIONS(1504), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1506), - [sym_super] = ACTIONS(1506), - [sym_crate] = ACTIONS(1506), - [sym_metavariable] = ACTIONS(1504), - [sym_raw_string_literal] = ACTIONS(1504), - [sym_float_literal] = ACTIONS(1504), + [ts_builtin_sym_end] = ACTIONS(1509), + [sym_identifier] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1509), + [anon_sym_macro_rules_BANG] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_u8] = ACTIONS(1511), + [anon_sym_i8] = ACTIONS(1511), + [anon_sym_u16] = ACTIONS(1511), + [anon_sym_i16] = ACTIONS(1511), + [anon_sym_u32] = ACTIONS(1511), + [anon_sym_i32] = ACTIONS(1511), + [anon_sym_u64] = ACTIONS(1511), + [anon_sym_i64] = ACTIONS(1511), + [anon_sym_u128] = ACTIONS(1511), + [anon_sym_i128] = ACTIONS(1511), + [anon_sym_isize] = ACTIONS(1511), + [anon_sym_usize] = ACTIONS(1511), + [anon_sym_f32] = ACTIONS(1511), + [anon_sym_f64] = ACTIONS(1511), + [anon_sym_bool] = ACTIONS(1511), + [anon_sym_str] = ACTIONS(1511), + [anon_sym_char] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_async] = ACTIONS(1511), + [anon_sym_break] = ACTIONS(1511), + [anon_sym_const] = ACTIONS(1511), + [anon_sym_continue] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1511), + [anon_sym_enum] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1511), + [anon_sym_for] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1511), + [anon_sym_impl] = ACTIONS(1511), + [anon_sym_let] = ACTIONS(1511), + [anon_sym_loop] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mod] = ACTIONS(1511), + [anon_sym_pub] = ACTIONS(1511), + [anon_sym_return] = ACTIONS(1511), + [anon_sym_static] = ACTIONS(1511), + [anon_sym_struct] = ACTIONS(1511), + [anon_sym_trait] = ACTIONS(1511), + [anon_sym_type] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(1511), + [anon_sym_unsafe] = ACTIONS(1511), + [anon_sym_use] = ACTIONS(1511), + [anon_sym_while] = ACTIONS(1511), + [anon_sym_POUND] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_COLON_COLON] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_DOT_DOT] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_move] = ACTIONS(1511), + [sym_integer_literal] = ACTIONS(1509), + [aux_sym_string_literal_token1] = ACTIONS(1509), + [sym_char_literal] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1511), + [anon_sym_false] = ACTIONS(1511), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1511), + [sym_super] = ACTIONS(1511), + [sym_crate] = ACTIONS(1511), + [sym_metavariable] = ACTIONS(1509), + [sym_raw_string_literal] = ACTIONS(1509), + [sym_float_literal] = ACTIONS(1509), [sym_block_comment] = ACTIONS(3), }, [352] = { - [ts_builtin_sym_end] = ACTIONS(1508), - [sym_identifier] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_macro_rules_BANG] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_fn] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_impl] = ACTIONS(1510), - [anon_sym_let] = ACTIONS(1510), - [anon_sym_loop] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_mod] = ACTIONS(1510), - [anon_sym_pub] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_trait] = ACTIONS(1510), - [anon_sym_type] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_unsafe] = ACTIONS(1510), - [anon_sym_use] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_COLON_COLON] = ACTIONS(1508), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_DOT_DOT] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_move] = ACTIONS(1510), - [sym_integer_literal] = ACTIONS(1508), - [aux_sym_string_literal_token1] = ACTIONS(1508), - [sym_char_literal] = ACTIONS(1508), - [anon_sym_true] = ACTIONS(1510), - [anon_sym_false] = ACTIONS(1510), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1510), - [sym_super] = ACTIONS(1510), - [sym_crate] = ACTIONS(1510), - [sym_metavariable] = ACTIONS(1508), - [sym_raw_string_literal] = ACTIONS(1508), - [sym_float_literal] = ACTIONS(1508), + [ts_builtin_sym_end] = ACTIONS(1513), + [sym_identifier] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1513), + [anon_sym_macro_rules_BANG] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_u8] = ACTIONS(1515), + [anon_sym_i8] = ACTIONS(1515), + [anon_sym_u16] = ACTIONS(1515), + [anon_sym_i16] = ACTIONS(1515), + [anon_sym_u32] = ACTIONS(1515), + [anon_sym_i32] = ACTIONS(1515), + [anon_sym_u64] = ACTIONS(1515), + [anon_sym_i64] = ACTIONS(1515), + [anon_sym_u128] = ACTIONS(1515), + [anon_sym_i128] = ACTIONS(1515), + [anon_sym_isize] = ACTIONS(1515), + [anon_sym_usize] = ACTIONS(1515), + [anon_sym_f32] = ACTIONS(1515), + [anon_sym_f64] = ACTIONS(1515), + [anon_sym_bool] = ACTIONS(1515), + [anon_sym_str] = ACTIONS(1515), + [anon_sym_char] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_async] = ACTIONS(1515), + [anon_sym_break] = ACTIONS(1515), + [anon_sym_const] = ACTIONS(1515), + [anon_sym_continue] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1515), + [anon_sym_enum] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1515), + [anon_sym_for] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_impl] = ACTIONS(1515), + [anon_sym_let] = ACTIONS(1515), + [anon_sym_loop] = ACTIONS(1515), + [anon_sym_match] = ACTIONS(1515), + [anon_sym_mod] = ACTIONS(1515), + [anon_sym_pub] = ACTIONS(1515), + [anon_sym_return] = ACTIONS(1515), + [anon_sym_static] = ACTIONS(1515), + [anon_sym_struct] = ACTIONS(1515), + [anon_sym_trait] = ACTIONS(1515), + [anon_sym_type] = ACTIONS(1515), + [anon_sym_union] = ACTIONS(1515), + [anon_sym_unsafe] = ACTIONS(1515), + [anon_sym_use] = ACTIONS(1515), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_COLON_COLON] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_move] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1513), + [aux_sym_string_literal_token1] = ACTIONS(1513), + [sym_char_literal] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1515), + [anon_sym_false] = ACTIONS(1515), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1515), + [sym_super] = ACTIONS(1515), + [sym_crate] = ACTIONS(1515), + [sym_metavariable] = ACTIONS(1513), + [sym_raw_string_literal] = ACTIONS(1513), + [sym_float_literal] = ACTIONS(1513), [sym_block_comment] = ACTIONS(3), }, [353] = { - [ts_builtin_sym_end] = ACTIONS(1512), - [sym_identifier] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_macro_rules_BANG] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_u8] = ACTIONS(1514), - [anon_sym_i8] = ACTIONS(1514), - [anon_sym_u16] = ACTIONS(1514), - [anon_sym_i16] = ACTIONS(1514), - [anon_sym_u32] = ACTIONS(1514), - [anon_sym_i32] = ACTIONS(1514), - [anon_sym_u64] = ACTIONS(1514), - [anon_sym_i64] = ACTIONS(1514), - [anon_sym_u128] = ACTIONS(1514), - [anon_sym_i128] = ACTIONS(1514), - [anon_sym_isize] = ACTIONS(1514), - [anon_sym_usize] = ACTIONS(1514), - [anon_sym_f32] = ACTIONS(1514), - [anon_sym_f64] = ACTIONS(1514), - [anon_sym_bool] = ACTIONS(1514), - [anon_sym_str] = ACTIONS(1514), - [anon_sym_char] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_async] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_impl] = ACTIONS(1514), - [anon_sym_let] = ACTIONS(1514), - [anon_sym_loop] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_pub] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_trait] = ACTIONS(1514), - [anon_sym_type] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_unsafe] = ACTIONS(1514), - [anon_sym_use] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_POUND] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_LT] = ACTIONS(1512), - [anon_sym_COLON_COLON] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_DOT_DOT] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1512), - [anon_sym_move] = ACTIONS(1514), - [sym_integer_literal] = ACTIONS(1512), - [aux_sym_string_literal_token1] = ACTIONS(1512), - [sym_char_literal] = ACTIONS(1512), - [anon_sym_true] = ACTIONS(1514), - [anon_sym_false] = ACTIONS(1514), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1514), - [sym_super] = ACTIONS(1514), - [sym_crate] = ACTIONS(1514), - [sym_metavariable] = ACTIONS(1512), - [sym_raw_string_literal] = ACTIONS(1512), - [sym_float_literal] = ACTIONS(1512), + [sym_attribute_item] = STATE(500), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_macro_invocation] = STATE(2317), + [sym_scoped_identifier] = STATE(1472), + [sym_scoped_type_identifier] = STATE(1899), + [sym_match_arm] = STATE(466), + [sym_last_match_arm] = STATE(2451), + [sym_match_pattern] = STATE(2324), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1855), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_enum_variant_list_repeat1] = STATE(500), + [aux_sym_match_block_repeat1] = STATE(466), + [sym_identifier] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_ref] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [354] = { - [ts_builtin_sym_end] = ACTIONS(1516), - [sym_identifier] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_macro_rules_BANG] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_impl] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_mod] = ACTIONS(1518), - [anon_sym_pub] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_trait] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_unsafe] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_DOT_DOT] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_move] = ACTIONS(1518), - [sym_integer_literal] = ACTIONS(1516), - [aux_sym_string_literal_token1] = ACTIONS(1516), - [sym_char_literal] = ACTIONS(1516), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1518), - [sym_super] = ACTIONS(1518), - [sym_crate] = ACTIONS(1518), - [sym_metavariable] = ACTIONS(1516), - [sym_raw_string_literal] = ACTIONS(1516), - [sym_float_literal] = ACTIONS(1516), + [ts_builtin_sym_end] = ACTIONS(1517), + [sym_identifier] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1517), + [anon_sym_macro_rules_BANG] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_u8] = ACTIONS(1519), + [anon_sym_i8] = ACTIONS(1519), + [anon_sym_u16] = ACTIONS(1519), + [anon_sym_i16] = ACTIONS(1519), + [anon_sym_u32] = ACTIONS(1519), + [anon_sym_i32] = ACTIONS(1519), + [anon_sym_u64] = ACTIONS(1519), + [anon_sym_i64] = ACTIONS(1519), + [anon_sym_u128] = ACTIONS(1519), + [anon_sym_i128] = ACTIONS(1519), + [anon_sym_isize] = ACTIONS(1519), + [anon_sym_usize] = ACTIONS(1519), + [anon_sym_f32] = ACTIONS(1519), + [anon_sym_f64] = ACTIONS(1519), + [anon_sym_bool] = ACTIONS(1519), + [anon_sym_str] = ACTIONS(1519), + [anon_sym_char] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_async] = ACTIONS(1519), + [anon_sym_break] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(1519), + [anon_sym_continue] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1519), + [anon_sym_enum] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1519), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1519), + [anon_sym_impl] = ACTIONS(1519), + [anon_sym_let] = ACTIONS(1519), + [anon_sym_loop] = ACTIONS(1519), + [anon_sym_match] = ACTIONS(1519), + [anon_sym_mod] = ACTIONS(1519), + [anon_sym_pub] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1519), + [anon_sym_static] = ACTIONS(1519), + [anon_sym_struct] = ACTIONS(1519), + [anon_sym_trait] = ACTIONS(1519), + [anon_sym_type] = ACTIONS(1519), + [anon_sym_union] = ACTIONS(1519), + [anon_sym_unsafe] = ACTIONS(1519), + [anon_sym_use] = ACTIONS(1519), + [anon_sym_while] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_extern] = ACTIONS(1519), + [anon_sym_LT] = ACTIONS(1517), + [anon_sym_COLON_COLON] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_move] = ACTIONS(1519), + [sym_integer_literal] = ACTIONS(1517), + [aux_sym_string_literal_token1] = ACTIONS(1517), + [sym_char_literal] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1519), + [sym_super] = ACTIONS(1519), + [sym_crate] = ACTIONS(1519), + [sym_metavariable] = ACTIONS(1517), + [sym_raw_string_literal] = ACTIONS(1517), + [sym_float_literal] = ACTIONS(1517), [sym_block_comment] = ACTIONS(3), }, [355] = { - [sym_attribute_item] = STATE(494), - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_macro_invocation] = STATE(2288), - [sym_scoped_identifier] = STATE(1493), - [sym_scoped_type_identifier] = STATE(1824), - [sym_match_arm] = STATE(461), - [sym_last_match_arm] = STATE(2289), - [sym_match_pattern] = STATE(2285), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1839), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_enum_variant_list_repeat1] = STATE(494), - [aux_sym_match_block_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [ts_builtin_sym_end] = ACTIONS(1521), + [sym_identifier] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_macro_rules_BANG] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_u8] = ACTIONS(1523), + [anon_sym_i8] = ACTIONS(1523), + [anon_sym_u16] = ACTIONS(1523), + [anon_sym_i16] = ACTIONS(1523), + [anon_sym_u32] = ACTIONS(1523), + [anon_sym_i32] = ACTIONS(1523), + [anon_sym_u64] = ACTIONS(1523), + [anon_sym_i64] = ACTIONS(1523), + [anon_sym_u128] = ACTIONS(1523), + [anon_sym_i128] = ACTIONS(1523), + [anon_sym_isize] = ACTIONS(1523), + [anon_sym_usize] = ACTIONS(1523), + [anon_sym_f32] = ACTIONS(1523), + [anon_sym_f64] = ACTIONS(1523), + [anon_sym_bool] = ACTIONS(1523), + [anon_sym_str] = ACTIONS(1523), + [anon_sym_char] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_async] = ACTIONS(1523), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_const] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1523), + [anon_sym_default] = ACTIONS(1523), + [anon_sym_enum] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1523), + [anon_sym_for] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1523), + [anon_sym_impl] = ACTIONS(1523), + [anon_sym_let] = ACTIONS(1523), + [anon_sym_loop] = ACTIONS(1523), + [anon_sym_match] = ACTIONS(1523), + [anon_sym_mod] = ACTIONS(1523), + [anon_sym_pub] = ACTIONS(1523), + [anon_sym_return] = ACTIONS(1523), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_struct] = ACTIONS(1523), + [anon_sym_trait] = ACTIONS(1523), + [anon_sym_type] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(1523), + [anon_sym_unsafe] = ACTIONS(1523), + [anon_sym_use] = ACTIONS(1523), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_POUND] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_extern] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1521), + [anon_sym_COLON_COLON] = ACTIONS(1521), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_move] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1521), + [aux_sym_string_literal_token1] = ACTIONS(1521), + [sym_char_literal] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1523), + [anon_sym_false] = ACTIONS(1523), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1523), + [sym_super] = ACTIONS(1523), + [sym_crate] = ACTIONS(1523), + [sym_metavariable] = ACTIONS(1521), + [sym_raw_string_literal] = ACTIONS(1521), + [sym_float_literal] = ACTIONS(1521), [sym_block_comment] = ACTIONS(3), }, [356] = { - [ts_builtin_sym_end] = ACTIONS(1520), - [sym_identifier] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_macro_rules_BANG] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_u8] = ACTIONS(1522), - [anon_sym_i8] = ACTIONS(1522), - [anon_sym_u16] = ACTIONS(1522), - [anon_sym_i16] = ACTIONS(1522), - [anon_sym_u32] = ACTIONS(1522), - [anon_sym_i32] = ACTIONS(1522), - [anon_sym_u64] = ACTIONS(1522), - [anon_sym_i64] = ACTIONS(1522), - [anon_sym_u128] = ACTIONS(1522), - [anon_sym_i128] = ACTIONS(1522), - [anon_sym_isize] = ACTIONS(1522), - [anon_sym_usize] = ACTIONS(1522), - [anon_sym_f32] = ACTIONS(1522), - [anon_sym_f64] = ACTIONS(1522), - [anon_sym_bool] = ACTIONS(1522), - [anon_sym_str] = ACTIONS(1522), - [anon_sym_char] = ACTIONS(1522), - [anon_sym_SQUOTE] = ACTIONS(1522), - [anon_sym_async] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_enum] = ACTIONS(1522), - [anon_sym_fn] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_impl] = ACTIONS(1522), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_loop] = ACTIONS(1522), - [anon_sym_match] = ACTIONS(1522), - [anon_sym_mod] = ACTIONS(1522), - [anon_sym_pub] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_static] = ACTIONS(1522), - [anon_sym_struct] = ACTIONS(1522), - [anon_sym_trait] = ACTIONS(1522), - [anon_sym_type] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_unsafe] = ACTIONS(1522), - [anon_sym_use] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_extern] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_move] = ACTIONS(1522), - [sym_integer_literal] = ACTIONS(1520), - [aux_sym_string_literal_token1] = ACTIONS(1520), - [sym_char_literal] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1522), - [anon_sym_false] = ACTIONS(1522), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1520), - [sym_raw_string_literal] = ACTIONS(1520), - [sym_float_literal] = ACTIONS(1520), + [ts_builtin_sym_end] = ACTIONS(1525), + [sym_identifier] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1525), + [anon_sym_macro_rules_BANG] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_u8] = ACTIONS(1527), + [anon_sym_i8] = ACTIONS(1527), + [anon_sym_u16] = ACTIONS(1527), + [anon_sym_i16] = ACTIONS(1527), + [anon_sym_u32] = ACTIONS(1527), + [anon_sym_i32] = ACTIONS(1527), + [anon_sym_u64] = ACTIONS(1527), + [anon_sym_i64] = ACTIONS(1527), + [anon_sym_u128] = ACTIONS(1527), + [anon_sym_i128] = ACTIONS(1527), + [anon_sym_isize] = ACTIONS(1527), + [anon_sym_usize] = ACTIONS(1527), + [anon_sym_f32] = ACTIONS(1527), + [anon_sym_f64] = ACTIONS(1527), + [anon_sym_bool] = ACTIONS(1527), + [anon_sym_str] = ACTIONS(1527), + [anon_sym_char] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_async] = ACTIONS(1527), + [anon_sym_break] = ACTIONS(1527), + [anon_sym_const] = ACTIONS(1527), + [anon_sym_continue] = ACTIONS(1527), + [anon_sym_default] = ACTIONS(1527), + [anon_sym_enum] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1527), + [anon_sym_for] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1527), + [anon_sym_impl] = ACTIONS(1527), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_loop] = ACTIONS(1527), + [anon_sym_match] = ACTIONS(1527), + [anon_sym_mod] = ACTIONS(1527), + [anon_sym_pub] = ACTIONS(1527), + [anon_sym_return] = ACTIONS(1527), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_struct] = ACTIONS(1527), + [anon_sym_trait] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_union] = ACTIONS(1527), + [anon_sym_unsafe] = ACTIONS(1527), + [anon_sym_use] = ACTIONS(1527), + [anon_sym_while] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(1527), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_COLON_COLON] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1525), + [aux_sym_string_literal_token1] = ACTIONS(1525), + [sym_char_literal] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1527), + [anon_sym_false] = ACTIONS(1527), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1527), + [sym_super] = ACTIONS(1527), + [sym_crate] = ACTIONS(1527), + [sym_metavariable] = ACTIONS(1525), + [sym_raw_string_literal] = ACTIONS(1525), + [sym_float_literal] = ACTIONS(1525), [sym_block_comment] = ACTIONS(3), }, [357] = { - [ts_builtin_sym_end] = ACTIONS(1524), - [sym_identifier] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_macro_rules_BANG] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_SQUOTE] = ACTIONS(1526), - [anon_sym_async] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_default] = ACTIONS(1526), - [anon_sym_enum] = ACTIONS(1526), - [anon_sym_fn] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_impl] = ACTIONS(1526), - [anon_sym_let] = ACTIONS(1526), - [anon_sym_loop] = ACTIONS(1526), - [anon_sym_match] = ACTIONS(1526), - [anon_sym_mod] = ACTIONS(1526), - [anon_sym_pub] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_static] = ACTIONS(1526), - [anon_sym_struct] = ACTIONS(1526), - [anon_sym_trait] = ACTIONS(1526), - [anon_sym_type] = ACTIONS(1526), - [anon_sym_union] = ACTIONS(1526), - [anon_sym_unsafe] = ACTIONS(1526), - [anon_sym_use] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1524), - [anon_sym_extern] = ACTIONS(1526), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_COLON_COLON] = ACTIONS(1524), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_DOT_DOT] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_move] = ACTIONS(1526), - [sym_integer_literal] = ACTIONS(1524), - [aux_sym_string_literal_token1] = ACTIONS(1524), - [sym_char_literal] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1526), - [anon_sym_false] = ACTIONS(1526), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1526), - [sym_super] = ACTIONS(1526), - [sym_crate] = ACTIONS(1526), - [sym_metavariable] = ACTIONS(1524), - [sym_raw_string_literal] = ACTIONS(1524), - [sym_float_literal] = ACTIONS(1524), + [ts_builtin_sym_end] = ACTIONS(1529), + [sym_identifier] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1529), + [anon_sym_macro_rules_BANG] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_u8] = ACTIONS(1531), + [anon_sym_i8] = ACTIONS(1531), + [anon_sym_u16] = ACTIONS(1531), + [anon_sym_i16] = ACTIONS(1531), + [anon_sym_u32] = ACTIONS(1531), + [anon_sym_i32] = ACTIONS(1531), + [anon_sym_u64] = ACTIONS(1531), + [anon_sym_i64] = ACTIONS(1531), + [anon_sym_u128] = ACTIONS(1531), + [anon_sym_i128] = ACTIONS(1531), + [anon_sym_isize] = ACTIONS(1531), + [anon_sym_usize] = ACTIONS(1531), + [anon_sym_f32] = ACTIONS(1531), + [anon_sym_f64] = ACTIONS(1531), + [anon_sym_bool] = ACTIONS(1531), + [anon_sym_str] = ACTIONS(1531), + [anon_sym_char] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_async] = ACTIONS(1531), + [anon_sym_break] = ACTIONS(1531), + [anon_sym_const] = ACTIONS(1531), + [anon_sym_continue] = ACTIONS(1531), + [anon_sym_default] = ACTIONS(1531), + [anon_sym_enum] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1531), + [anon_sym_for] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1531), + [anon_sym_impl] = ACTIONS(1531), + [anon_sym_let] = ACTIONS(1531), + [anon_sym_loop] = ACTIONS(1531), + [anon_sym_match] = ACTIONS(1531), + [anon_sym_mod] = ACTIONS(1531), + [anon_sym_pub] = ACTIONS(1531), + [anon_sym_return] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(1531), + [anon_sym_struct] = ACTIONS(1531), + [anon_sym_trait] = ACTIONS(1531), + [anon_sym_type] = ACTIONS(1531), + [anon_sym_union] = ACTIONS(1531), + [anon_sym_unsafe] = ACTIONS(1531), + [anon_sym_use] = ACTIONS(1531), + [anon_sym_while] = ACTIONS(1531), + [anon_sym_POUND] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1529), + [anon_sym_extern] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_move] = ACTIONS(1531), + [sym_integer_literal] = ACTIONS(1529), + [aux_sym_string_literal_token1] = ACTIONS(1529), + [sym_char_literal] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1531), + [anon_sym_false] = ACTIONS(1531), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1531), + [sym_super] = ACTIONS(1531), + [sym_crate] = ACTIONS(1531), + [sym_metavariable] = ACTIONS(1529), + [sym_raw_string_literal] = ACTIONS(1529), + [sym_float_literal] = ACTIONS(1529), [sym_block_comment] = ACTIONS(3), }, [358] = { - [ts_builtin_sym_end] = ACTIONS(1528), - [sym_identifier] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_macro_rules_BANG] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_u8] = ACTIONS(1530), - [anon_sym_i8] = ACTIONS(1530), - [anon_sym_u16] = ACTIONS(1530), - [anon_sym_i16] = ACTIONS(1530), - [anon_sym_u32] = ACTIONS(1530), - [anon_sym_i32] = ACTIONS(1530), - [anon_sym_u64] = ACTIONS(1530), - [anon_sym_i64] = ACTIONS(1530), - [anon_sym_u128] = ACTIONS(1530), - [anon_sym_i128] = ACTIONS(1530), - [anon_sym_isize] = ACTIONS(1530), - [anon_sym_usize] = ACTIONS(1530), - [anon_sym_f32] = ACTIONS(1530), - [anon_sym_f64] = ACTIONS(1530), - [anon_sym_bool] = ACTIONS(1530), - [anon_sym_str] = ACTIONS(1530), - [anon_sym_char] = ACTIONS(1530), - [anon_sym_SQUOTE] = ACTIONS(1530), - [anon_sym_async] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_enum] = ACTIONS(1530), - [anon_sym_fn] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_impl] = ACTIONS(1530), - [anon_sym_let] = ACTIONS(1530), - [anon_sym_loop] = ACTIONS(1530), - [anon_sym_match] = ACTIONS(1530), - [anon_sym_mod] = ACTIONS(1530), - [anon_sym_pub] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_struct] = ACTIONS(1530), - [anon_sym_trait] = ACTIONS(1530), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), - [anon_sym_unsafe] = ACTIONS(1530), - [anon_sym_use] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1530), - [anon_sym_POUND] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym_LT] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_DOT_DOT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_move] = ACTIONS(1530), - [sym_integer_literal] = ACTIONS(1528), - [aux_sym_string_literal_token1] = ACTIONS(1528), - [sym_char_literal] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1530), - [sym_super] = ACTIONS(1530), - [sym_crate] = ACTIONS(1530), - [sym_metavariable] = ACTIONS(1528), - [sym_raw_string_literal] = ACTIONS(1528), - [sym_float_literal] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1533), + [sym_identifier] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_macro_rules_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1533), + [anon_sym_u8] = ACTIONS(1535), + [anon_sym_i8] = ACTIONS(1535), + [anon_sym_u16] = ACTIONS(1535), + [anon_sym_i16] = ACTIONS(1535), + [anon_sym_u32] = ACTIONS(1535), + [anon_sym_i32] = ACTIONS(1535), + [anon_sym_u64] = ACTIONS(1535), + [anon_sym_i64] = ACTIONS(1535), + [anon_sym_u128] = ACTIONS(1535), + [anon_sym_i128] = ACTIONS(1535), + [anon_sym_isize] = ACTIONS(1535), + [anon_sym_usize] = ACTIONS(1535), + [anon_sym_f32] = ACTIONS(1535), + [anon_sym_f64] = ACTIONS(1535), + [anon_sym_bool] = ACTIONS(1535), + [anon_sym_str] = ACTIONS(1535), + [anon_sym_char] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_async] = ACTIONS(1535), + [anon_sym_break] = ACTIONS(1535), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_continue] = ACTIONS(1535), + [anon_sym_default] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1535), + [anon_sym_for] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1535), + [anon_sym_impl] = ACTIONS(1535), + [anon_sym_let] = ACTIONS(1535), + [anon_sym_loop] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mod] = ACTIONS(1535), + [anon_sym_pub] = ACTIONS(1535), + [anon_sym_return] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1535), + [anon_sym_struct] = ACTIONS(1535), + [anon_sym_trait] = ACTIONS(1535), + [anon_sym_type] = ACTIONS(1535), + [anon_sym_union] = ACTIONS(1535), + [anon_sym_unsafe] = ACTIONS(1535), + [anon_sym_use] = ACTIONS(1535), + [anon_sym_while] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_extern] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1533), + [anon_sym_COLON_COLON] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_DOT_DOT] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_move] = ACTIONS(1535), + [sym_integer_literal] = ACTIONS(1533), + [aux_sym_string_literal_token1] = ACTIONS(1533), + [sym_char_literal] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1535), + [anon_sym_false] = ACTIONS(1535), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1535), + [sym_super] = ACTIONS(1535), + [sym_crate] = ACTIONS(1535), + [sym_metavariable] = ACTIONS(1533), + [sym_raw_string_literal] = ACTIONS(1533), + [sym_float_literal] = ACTIONS(1533), [sym_block_comment] = ACTIONS(3), }, [359] = { - [ts_builtin_sym_end] = ACTIONS(1532), - [sym_identifier] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1532), - [anon_sym_macro_rules_BANG] = ACTIONS(1532), - [anon_sym_LPAREN] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_RBRACE] = ACTIONS(1532), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(1532), - [anon_sym_u8] = ACTIONS(1534), - [anon_sym_i8] = ACTIONS(1534), - [anon_sym_u16] = ACTIONS(1534), - [anon_sym_i16] = ACTIONS(1534), - [anon_sym_u32] = ACTIONS(1534), - [anon_sym_i32] = ACTIONS(1534), - [anon_sym_u64] = ACTIONS(1534), - [anon_sym_i64] = ACTIONS(1534), - [anon_sym_u128] = ACTIONS(1534), - [anon_sym_i128] = ACTIONS(1534), - [anon_sym_isize] = ACTIONS(1534), - [anon_sym_usize] = ACTIONS(1534), - [anon_sym_f32] = ACTIONS(1534), - [anon_sym_f64] = ACTIONS(1534), - [anon_sym_bool] = ACTIONS(1534), - [anon_sym_str] = ACTIONS(1534), - [anon_sym_char] = ACTIONS(1534), - [anon_sym_SQUOTE] = ACTIONS(1534), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1534), - [anon_sym_enum] = ACTIONS(1534), - [anon_sym_fn] = ACTIONS(1534), - [anon_sym_for] = ACTIONS(1534), - [anon_sym_if] = ACTIONS(1534), - [anon_sym_impl] = ACTIONS(1534), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_loop] = ACTIONS(1534), - [anon_sym_match] = ACTIONS(1534), - [anon_sym_mod] = ACTIONS(1534), - [anon_sym_pub] = ACTIONS(1534), - [anon_sym_return] = ACTIONS(1534), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_struct] = ACTIONS(1534), - [anon_sym_trait] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_union] = ACTIONS(1534), - [anon_sym_unsafe] = ACTIONS(1534), - [anon_sym_use] = ACTIONS(1534), - [anon_sym_while] = ACTIONS(1534), - [anon_sym_POUND] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1532), - [anon_sym_extern] = ACTIONS(1534), - [anon_sym_LT] = ACTIONS(1532), - [anon_sym_COLON_COLON] = ACTIONS(1532), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_DOT_DOT] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(1532), - [anon_sym_move] = ACTIONS(1534), - [sym_integer_literal] = ACTIONS(1532), - [aux_sym_string_literal_token1] = ACTIONS(1532), - [sym_char_literal] = ACTIONS(1532), - [anon_sym_true] = ACTIONS(1534), - [anon_sym_false] = ACTIONS(1534), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1534), - [sym_super] = ACTIONS(1534), - [sym_crate] = ACTIONS(1534), - [sym_metavariable] = ACTIONS(1532), - [sym_raw_string_literal] = ACTIONS(1532), - [sym_float_literal] = ACTIONS(1532), + [ts_builtin_sym_end] = ACTIONS(1537), + [sym_identifier] = ACTIONS(1539), + [anon_sym_SEMI] = ACTIONS(1537), + [anon_sym_macro_rules_BANG] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_RBRACE] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_u8] = ACTIONS(1539), + [anon_sym_i8] = ACTIONS(1539), + [anon_sym_u16] = ACTIONS(1539), + [anon_sym_i16] = ACTIONS(1539), + [anon_sym_u32] = ACTIONS(1539), + [anon_sym_i32] = ACTIONS(1539), + [anon_sym_u64] = ACTIONS(1539), + [anon_sym_i64] = ACTIONS(1539), + [anon_sym_u128] = ACTIONS(1539), + [anon_sym_i128] = ACTIONS(1539), + [anon_sym_isize] = ACTIONS(1539), + [anon_sym_usize] = ACTIONS(1539), + [anon_sym_f32] = ACTIONS(1539), + [anon_sym_f64] = ACTIONS(1539), + [anon_sym_bool] = ACTIONS(1539), + [anon_sym_str] = ACTIONS(1539), + [anon_sym_char] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_break] = ACTIONS(1539), + [anon_sym_const] = ACTIONS(1539), + [anon_sym_continue] = ACTIONS(1539), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_enum] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1539), + [anon_sym_for] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1539), + [anon_sym_impl] = ACTIONS(1539), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_loop] = ACTIONS(1539), + [anon_sym_match] = ACTIONS(1539), + [anon_sym_mod] = ACTIONS(1539), + [anon_sym_pub] = ACTIONS(1539), + [anon_sym_return] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1539), + [anon_sym_trait] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_union] = ACTIONS(1539), + [anon_sym_unsafe] = ACTIONS(1539), + [anon_sym_use] = ACTIONS(1539), + [anon_sym_while] = ACTIONS(1539), + [anon_sym_POUND] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1537), + [anon_sym_extern] = ACTIONS(1539), + [anon_sym_LT] = ACTIONS(1537), + [anon_sym_COLON_COLON] = ACTIONS(1537), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_DOT_DOT] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_move] = ACTIONS(1539), + [sym_integer_literal] = ACTIONS(1537), + [aux_sym_string_literal_token1] = ACTIONS(1537), + [sym_char_literal] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1539), + [anon_sym_false] = ACTIONS(1539), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1539), + [sym_super] = ACTIONS(1539), + [sym_crate] = ACTIONS(1539), + [sym_metavariable] = ACTIONS(1537), + [sym_raw_string_literal] = ACTIONS(1537), + [sym_float_literal] = ACTIONS(1537), [sym_block_comment] = ACTIONS(3), }, [360] = { - [sym__token_pattern] = STATE(332), - [sym_token_tree_pattern] = STATE(332), - [sym_token_binding_pattern] = STATE(332), - [sym_token_repetition_pattern] = STATE(332), - [sym__literal] = STATE(332), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_pattern_repeat1] = STATE(332), - [sym_identifier] = ACTIONS(1536), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_RBRACK] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1108), - [anon_sym_u8] = ACTIONS(1536), - [anon_sym_i8] = ACTIONS(1536), - [anon_sym_u16] = ACTIONS(1536), - [anon_sym_i16] = ACTIONS(1536), - [anon_sym_u32] = ACTIONS(1536), - [anon_sym_i32] = ACTIONS(1536), - [anon_sym_u64] = ACTIONS(1536), - [anon_sym_i64] = ACTIONS(1536), - [anon_sym_u128] = ACTIONS(1536), - [anon_sym_i128] = ACTIONS(1536), - [anon_sym_isize] = ACTIONS(1536), - [anon_sym_usize] = ACTIONS(1536), - [anon_sym_f32] = ACTIONS(1536), - [anon_sym_f64] = ACTIONS(1536), - [anon_sym_bool] = ACTIONS(1536), - [anon_sym_str] = ACTIONS(1536), - [anon_sym_char] = ACTIONS(1536), - [aux_sym__non_special_token_token1] = ACTIONS(1536), - [anon_sym_SQUOTE] = ACTIONS(1536), - [anon_sym_as] = ACTIONS(1536), - [anon_sym_async] = ACTIONS(1536), - [anon_sym_await] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_enum] = ACTIONS(1536), - [anon_sym_fn] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_impl] = ACTIONS(1536), - [anon_sym_let] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1536), - [anon_sym_match] = ACTIONS(1536), - [anon_sym_mod] = ACTIONS(1536), - [anon_sym_pub] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_static] = ACTIONS(1536), - [anon_sym_struct] = ACTIONS(1536), - [anon_sym_trait] = ACTIONS(1536), - [anon_sym_type] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), - [anon_sym_unsafe] = ACTIONS(1536), - [anon_sym_use] = ACTIONS(1536), - [anon_sym_where] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [sym_mutable_specifier] = ACTIONS(1536), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1116), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [ts_builtin_sym_end] = ACTIONS(1541), + [sym_identifier] = ACTIONS(1543), + [anon_sym_SEMI] = ACTIONS(1541), + [anon_sym_macro_rules_BANG] = ACTIONS(1541), + [anon_sym_LPAREN] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_RBRACE] = ACTIONS(1541), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_u8] = ACTIONS(1543), + [anon_sym_i8] = ACTIONS(1543), + [anon_sym_u16] = ACTIONS(1543), + [anon_sym_i16] = ACTIONS(1543), + [anon_sym_u32] = ACTIONS(1543), + [anon_sym_i32] = ACTIONS(1543), + [anon_sym_u64] = ACTIONS(1543), + [anon_sym_i64] = ACTIONS(1543), + [anon_sym_u128] = ACTIONS(1543), + [anon_sym_i128] = ACTIONS(1543), + [anon_sym_isize] = ACTIONS(1543), + [anon_sym_usize] = ACTIONS(1543), + [anon_sym_f32] = ACTIONS(1543), + [anon_sym_f64] = ACTIONS(1543), + [anon_sym_bool] = ACTIONS(1543), + [anon_sym_str] = ACTIONS(1543), + [anon_sym_char] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_async] = ACTIONS(1543), + [anon_sym_break] = ACTIONS(1543), + [anon_sym_const] = ACTIONS(1543), + [anon_sym_continue] = ACTIONS(1543), + [anon_sym_default] = ACTIONS(1543), + [anon_sym_enum] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1543), + [anon_sym_for] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1543), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_loop] = ACTIONS(1543), + [anon_sym_match] = ACTIONS(1543), + [anon_sym_mod] = ACTIONS(1543), + [anon_sym_pub] = ACTIONS(1543), + [anon_sym_return] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1543), + [anon_sym_trait] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1543), + [anon_sym_use] = ACTIONS(1543), + [anon_sym_while] = ACTIONS(1543), + [anon_sym_POUND] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_extern] = ACTIONS(1543), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_COLON_COLON] = ACTIONS(1541), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_move] = ACTIONS(1543), + [sym_integer_literal] = ACTIONS(1541), + [aux_sym_string_literal_token1] = ACTIONS(1541), + [sym_char_literal] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1543), + [anon_sym_false] = ACTIONS(1543), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1543), + [sym_super] = ACTIONS(1543), + [sym_crate] = ACTIONS(1543), + [sym_metavariable] = ACTIONS(1541), + [sym_raw_string_literal] = ACTIONS(1541), + [sym_float_literal] = ACTIONS(1541), [sym_block_comment] = ACTIONS(3), }, [361] = { - [ts_builtin_sym_end] = ACTIONS(1538), - [sym_identifier] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_macro_rules_BANG] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_u8] = ACTIONS(1540), - [anon_sym_i8] = ACTIONS(1540), - [anon_sym_u16] = ACTIONS(1540), - [anon_sym_i16] = ACTIONS(1540), - [anon_sym_u32] = ACTIONS(1540), - [anon_sym_i32] = ACTIONS(1540), - [anon_sym_u64] = ACTIONS(1540), - [anon_sym_i64] = ACTIONS(1540), - [anon_sym_u128] = ACTIONS(1540), - [anon_sym_i128] = ACTIONS(1540), - [anon_sym_isize] = ACTIONS(1540), - [anon_sym_usize] = ACTIONS(1540), - [anon_sym_f32] = ACTIONS(1540), - [anon_sym_f64] = ACTIONS(1540), - [anon_sym_bool] = ACTIONS(1540), - [anon_sym_str] = ACTIONS(1540), - [anon_sym_char] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(1540), - [anon_sym_async] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_enum] = ACTIONS(1540), - [anon_sym_fn] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_impl] = ACTIONS(1540), - [anon_sym_let] = ACTIONS(1540), - [anon_sym_loop] = ACTIONS(1540), - [anon_sym_match] = ACTIONS(1540), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_pub] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_static] = ACTIONS(1540), - [anon_sym_struct] = ACTIONS(1540), - [anon_sym_trait] = ACTIONS(1540), - [anon_sym_type] = ACTIONS(1540), - [anon_sym_union] = ACTIONS(1540), - [anon_sym_unsafe] = ACTIONS(1540), - [anon_sym_use] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(1538), - [anon_sym_BANG] = ACTIONS(1538), - [anon_sym_extern] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_move] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1538), - [aux_sym_string_literal_token1] = ACTIONS(1538), - [sym_char_literal] = ACTIONS(1538), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1540), - [sym_super] = ACTIONS(1540), - [sym_crate] = ACTIONS(1540), - [sym_metavariable] = ACTIONS(1538), - [sym_raw_string_literal] = ACTIONS(1538), - [sym_float_literal] = ACTIONS(1538), + [ts_builtin_sym_end] = ACTIONS(1545), + [sym_identifier] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_macro_rules_BANG] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_u8] = ACTIONS(1547), + [anon_sym_i8] = ACTIONS(1547), + [anon_sym_u16] = ACTIONS(1547), + [anon_sym_i16] = ACTIONS(1547), + [anon_sym_u32] = ACTIONS(1547), + [anon_sym_i32] = ACTIONS(1547), + [anon_sym_u64] = ACTIONS(1547), + [anon_sym_i64] = ACTIONS(1547), + [anon_sym_u128] = ACTIONS(1547), + [anon_sym_i128] = ACTIONS(1547), + [anon_sym_isize] = ACTIONS(1547), + [anon_sym_usize] = ACTIONS(1547), + [anon_sym_f32] = ACTIONS(1547), + [anon_sym_f64] = ACTIONS(1547), + [anon_sym_bool] = ACTIONS(1547), + [anon_sym_str] = ACTIONS(1547), + [anon_sym_char] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1547), + [anon_sym_break] = ACTIONS(1547), + [anon_sym_const] = ACTIONS(1547), + [anon_sym_continue] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1547), + [anon_sym_enum] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_impl] = ACTIONS(1547), + [anon_sym_let] = ACTIONS(1547), + [anon_sym_loop] = ACTIONS(1547), + [anon_sym_match] = ACTIONS(1547), + [anon_sym_mod] = ACTIONS(1547), + [anon_sym_pub] = ACTIONS(1547), + [anon_sym_return] = ACTIONS(1547), + [anon_sym_static] = ACTIONS(1547), + [anon_sym_struct] = ACTIONS(1547), + [anon_sym_trait] = ACTIONS(1547), + [anon_sym_type] = ACTIONS(1547), + [anon_sym_union] = ACTIONS(1547), + [anon_sym_unsafe] = ACTIONS(1547), + [anon_sym_use] = ACTIONS(1547), + [anon_sym_while] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1547), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_COLON_COLON] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_move] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1545), + [aux_sym_string_literal_token1] = ACTIONS(1545), + [sym_char_literal] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1547), + [anon_sym_false] = ACTIONS(1547), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1547), + [sym_super] = ACTIONS(1547), + [sym_crate] = ACTIONS(1547), + [sym_metavariable] = ACTIONS(1545), + [sym_raw_string_literal] = ACTIONS(1545), + [sym_float_literal] = ACTIONS(1545), [sym_block_comment] = ACTIONS(3), }, [362] = { - [sym__token_pattern] = STATE(333), - [sym_token_tree_pattern] = STATE(333), - [sym_token_binding_pattern] = STATE(333), - [sym_token_repetition_pattern] = STATE(333), - [sym__literal] = STATE(333), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_pattern_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [anon_sym_u8] = ACTIONS(1542), - [anon_sym_i8] = ACTIONS(1542), - [anon_sym_u16] = ACTIONS(1542), - [anon_sym_i16] = ACTIONS(1542), - [anon_sym_u32] = ACTIONS(1542), - [anon_sym_i32] = ACTIONS(1542), - [anon_sym_u64] = ACTIONS(1542), - [anon_sym_i64] = ACTIONS(1542), - [anon_sym_u128] = ACTIONS(1542), - [anon_sym_i128] = ACTIONS(1542), - [anon_sym_isize] = ACTIONS(1542), - [anon_sym_usize] = ACTIONS(1542), - [anon_sym_f32] = ACTIONS(1542), - [anon_sym_f64] = ACTIONS(1542), - [anon_sym_bool] = ACTIONS(1542), - [anon_sym_str] = ACTIONS(1542), - [anon_sym_char] = ACTIONS(1542), - [aux_sym__non_special_token_token1] = ACTIONS(1542), - [anon_sym_SQUOTE] = ACTIONS(1542), - [anon_sym_as] = ACTIONS(1542), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_break] = ACTIONS(1542), - [anon_sym_const] = ACTIONS(1542), - [anon_sym_continue] = ACTIONS(1542), - [anon_sym_default] = ACTIONS(1542), - [anon_sym_enum] = ACTIONS(1542), - [anon_sym_fn] = ACTIONS(1542), - [anon_sym_for] = ACTIONS(1542), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_impl] = ACTIONS(1542), - [anon_sym_let] = ACTIONS(1542), - [anon_sym_loop] = ACTIONS(1542), - [anon_sym_match] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1542), - [anon_sym_pub] = ACTIONS(1542), - [anon_sym_return] = ACTIONS(1542), - [anon_sym_static] = ACTIONS(1542), - [anon_sym_struct] = ACTIONS(1542), - [anon_sym_trait] = ACTIONS(1542), - [anon_sym_type] = ACTIONS(1542), - [anon_sym_union] = ACTIONS(1542), - [anon_sym_unsafe] = ACTIONS(1542), - [anon_sym_use] = ACTIONS(1542), - [anon_sym_where] = ACTIONS(1542), - [anon_sym_while] = ACTIONS(1542), - [sym_mutable_specifier] = ACTIONS(1542), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1116), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [ts_builtin_sym_end] = ACTIONS(1549), + [sym_identifier] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_macro_rules_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_u8] = ACTIONS(1551), + [anon_sym_i8] = ACTIONS(1551), + [anon_sym_u16] = ACTIONS(1551), + [anon_sym_i16] = ACTIONS(1551), + [anon_sym_u32] = ACTIONS(1551), + [anon_sym_i32] = ACTIONS(1551), + [anon_sym_u64] = ACTIONS(1551), + [anon_sym_i64] = ACTIONS(1551), + [anon_sym_u128] = ACTIONS(1551), + [anon_sym_i128] = ACTIONS(1551), + [anon_sym_isize] = ACTIONS(1551), + [anon_sym_usize] = ACTIONS(1551), + [anon_sym_f32] = ACTIONS(1551), + [anon_sym_f64] = ACTIONS(1551), + [anon_sym_bool] = ACTIONS(1551), + [anon_sym_str] = ACTIONS(1551), + [anon_sym_char] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_async] = ACTIONS(1551), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_enum] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_impl] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_mod] = ACTIONS(1551), + [anon_sym_pub] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_static] = ACTIONS(1551), + [anon_sym_struct] = ACTIONS(1551), + [anon_sym_trait] = ACTIONS(1551), + [anon_sym_type] = ACTIONS(1551), + [anon_sym_union] = ACTIONS(1551), + [anon_sym_unsafe] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_COLON_COLON] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_move] = ACTIONS(1551), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1549), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1549), + [sym_raw_string_literal] = ACTIONS(1549), + [sym_float_literal] = ACTIONS(1549), [sym_block_comment] = ACTIONS(3), }, [363] = { - [ts_builtin_sym_end] = ACTIONS(1544), - [sym_identifier] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_macro_rules_BANG] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1544), - [anon_sym_u8] = ACTIONS(1546), - [anon_sym_i8] = ACTIONS(1546), - [anon_sym_u16] = ACTIONS(1546), - [anon_sym_i16] = ACTIONS(1546), - [anon_sym_u32] = ACTIONS(1546), - [anon_sym_i32] = ACTIONS(1546), - [anon_sym_u64] = ACTIONS(1546), - [anon_sym_i64] = ACTIONS(1546), - [anon_sym_u128] = ACTIONS(1546), - [anon_sym_i128] = ACTIONS(1546), - [anon_sym_isize] = ACTIONS(1546), - [anon_sym_usize] = ACTIONS(1546), - [anon_sym_f32] = ACTIONS(1546), - [anon_sym_f64] = ACTIONS(1546), - [anon_sym_bool] = ACTIONS(1546), - [anon_sym_str] = ACTIONS(1546), - [anon_sym_char] = ACTIONS(1546), - [anon_sym_SQUOTE] = ACTIONS(1546), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1546), - [anon_sym_const] = ACTIONS(1546), - [anon_sym_continue] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1546), - [anon_sym_enum] = ACTIONS(1546), - [anon_sym_fn] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1546), - [anon_sym_impl] = ACTIONS(1546), - [anon_sym_let] = ACTIONS(1546), - [anon_sym_loop] = ACTIONS(1546), - [anon_sym_match] = ACTIONS(1546), - [anon_sym_mod] = ACTIONS(1546), - [anon_sym_pub] = ACTIONS(1546), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_struct] = ACTIONS(1546), - [anon_sym_trait] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_unsafe] = ACTIONS(1546), - [anon_sym_use] = ACTIONS(1546), - [anon_sym_while] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1544), - [anon_sym_extern] = ACTIONS(1546), - [anon_sym_LT] = ACTIONS(1544), - [anon_sym_COLON_COLON] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_move] = ACTIONS(1546), - [sym_integer_literal] = ACTIONS(1544), - [aux_sym_string_literal_token1] = ACTIONS(1544), - [sym_char_literal] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1546), - [anon_sym_false] = ACTIONS(1546), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1546), - [sym_super] = ACTIONS(1546), - [sym_crate] = ACTIONS(1546), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(1544), - [sym_float_literal] = ACTIONS(1544), + [ts_builtin_sym_end] = ACTIONS(1553), + [sym_identifier] = ACTIONS(1555), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_macro_rules_BANG] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1553), + [anon_sym_u8] = ACTIONS(1555), + [anon_sym_i8] = ACTIONS(1555), + [anon_sym_u16] = ACTIONS(1555), + [anon_sym_i16] = ACTIONS(1555), + [anon_sym_u32] = ACTIONS(1555), + [anon_sym_i32] = ACTIONS(1555), + [anon_sym_u64] = ACTIONS(1555), + [anon_sym_i64] = ACTIONS(1555), + [anon_sym_u128] = ACTIONS(1555), + [anon_sym_i128] = ACTIONS(1555), + [anon_sym_isize] = ACTIONS(1555), + [anon_sym_usize] = ACTIONS(1555), + [anon_sym_f32] = ACTIONS(1555), + [anon_sym_f64] = ACTIONS(1555), + [anon_sym_bool] = ACTIONS(1555), + [anon_sym_str] = ACTIONS(1555), + [anon_sym_char] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_break] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(1555), + [anon_sym_continue] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1555), + [anon_sym_enum] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1555), + [anon_sym_for] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1555), + [anon_sym_impl] = ACTIONS(1555), + [anon_sym_let] = ACTIONS(1555), + [anon_sym_loop] = ACTIONS(1555), + [anon_sym_match] = ACTIONS(1555), + [anon_sym_mod] = ACTIONS(1555), + [anon_sym_pub] = ACTIONS(1555), + [anon_sym_return] = ACTIONS(1555), + [anon_sym_static] = ACTIONS(1555), + [anon_sym_struct] = ACTIONS(1555), + [anon_sym_trait] = ACTIONS(1555), + [anon_sym_type] = ACTIONS(1555), + [anon_sym_union] = ACTIONS(1555), + [anon_sym_unsafe] = ACTIONS(1555), + [anon_sym_use] = ACTIONS(1555), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_POUND] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1553), + [anon_sym_extern] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1553), + [anon_sym_COLON_COLON] = ACTIONS(1553), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_move] = ACTIONS(1555), + [sym_integer_literal] = ACTIONS(1553), + [aux_sym_string_literal_token1] = ACTIONS(1553), + [sym_char_literal] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1555), + [anon_sym_false] = ACTIONS(1555), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1555), + [sym_super] = ACTIONS(1555), + [sym_crate] = ACTIONS(1555), + [sym_metavariable] = ACTIONS(1553), + [sym_raw_string_literal] = ACTIONS(1553), + [sym_float_literal] = ACTIONS(1553), [sym_block_comment] = ACTIONS(3), }, [364] = { - [ts_builtin_sym_end] = ACTIONS(1548), - [sym_identifier] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1548), - [anon_sym_macro_rules_BANG] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1550), - [anon_sym_i8] = ACTIONS(1550), - [anon_sym_u16] = ACTIONS(1550), - [anon_sym_i16] = ACTIONS(1550), - [anon_sym_u32] = ACTIONS(1550), - [anon_sym_i32] = ACTIONS(1550), - [anon_sym_u64] = ACTIONS(1550), - [anon_sym_i64] = ACTIONS(1550), - [anon_sym_u128] = ACTIONS(1550), - [anon_sym_i128] = ACTIONS(1550), - [anon_sym_isize] = ACTIONS(1550), - [anon_sym_usize] = ACTIONS(1550), - [anon_sym_f32] = ACTIONS(1550), - [anon_sym_f64] = ACTIONS(1550), - [anon_sym_bool] = ACTIONS(1550), - [anon_sym_str] = ACTIONS(1550), - [anon_sym_char] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1550), - [anon_sym_async] = ACTIONS(1550), - [anon_sym_break] = ACTIONS(1550), - [anon_sym_const] = ACTIONS(1550), - [anon_sym_continue] = ACTIONS(1550), - [anon_sym_default] = ACTIONS(1550), - [anon_sym_enum] = ACTIONS(1550), - [anon_sym_fn] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_impl] = ACTIONS(1550), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_loop] = ACTIONS(1550), - [anon_sym_match] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1550), - [anon_sym_pub] = ACTIONS(1550), - [anon_sym_return] = ACTIONS(1550), - [anon_sym_static] = ACTIONS(1550), - [anon_sym_struct] = ACTIONS(1550), - [anon_sym_trait] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(1550), - [anon_sym_union] = ACTIONS(1550), - [anon_sym_unsafe] = ACTIONS(1550), - [anon_sym_use] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(1548), - [anon_sym_BANG] = ACTIONS(1548), - [anon_sym_extern] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1548), - [anon_sym_COLON_COLON] = ACTIONS(1548), - [anon_sym_AMP] = ACTIONS(1548), - [anon_sym_DOT_DOT] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(1548), - [anon_sym_move] = ACTIONS(1550), - [sym_integer_literal] = ACTIONS(1548), - [aux_sym_string_literal_token1] = ACTIONS(1548), - [sym_char_literal] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1550), - [anon_sym_false] = ACTIONS(1550), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1550), - [sym_super] = ACTIONS(1550), - [sym_crate] = ACTIONS(1550), - [sym_metavariable] = ACTIONS(1548), - [sym_raw_string_literal] = ACTIONS(1548), - [sym_float_literal] = ACTIONS(1548), + [ts_builtin_sym_end] = ACTIONS(1557), + [sym_identifier] = ACTIONS(1559), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_macro_rules_BANG] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_u8] = ACTIONS(1559), + [anon_sym_i8] = ACTIONS(1559), + [anon_sym_u16] = ACTIONS(1559), + [anon_sym_i16] = ACTIONS(1559), + [anon_sym_u32] = ACTIONS(1559), + [anon_sym_i32] = ACTIONS(1559), + [anon_sym_u64] = ACTIONS(1559), + [anon_sym_i64] = ACTIONS(1559), + [anon_sym_u128] = ACTIONS(1559), + [anon_sym_i128] = ACTIONS(1559), + [anon_sym_isize] = ACTIONS(1559), + [anon_sym_usize] = ACTIONS(1559), + [anon_sym_f32] = ACTIONS(1559), + [anon_sym_f64] = ACTIONS(1559), + [anon_sym_bool] = ACTIONS(1559), + [anon_sym_str] = ACTIONS(1559), + [anon_sym_char] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_async] = ACTIONS(1559), + [anon_sym_break] = ACTIONS(1559), + [anon_sym_const] = ACTIONS(1559), + [anon_sym_continue] = ACTIONS(1559), + [anon_sym_default] = ACTIONS(1559), + [anon_sym_enum] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1559), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1559), + [anon_sym_impl] = ACTIONS(1559), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_loop] = ACTIONS(1559), + [anon_sym_match] = ACTIONS(1559), + [anon_sym_mod] = ACTIONS(1559), + [anon_sym_pub] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_struct] = ACTIONS(1559), + [anon_sym_trait] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_union] = ACTIONS(1559), + [anon_sym_unsafe] = ACTIONS(1559), + [anon_sym_use] = ACTIONS(1559), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1557), + [anon_sym_extern] = ACTIONS(1559), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_COLON_COLON] = ACTIONS(1557), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_move] = ACTIONS(1559), + [sym_integer_literal] = ACTIONS(1557), + [aux_sym_string_literal_token1] = ACTIONS(1557), + [sym_char_literal] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1559), + [anon_sym_false] = ACTIONS(1559), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1559), + [sym_super] = ACTIONS(1559), + [sym_crate] = ACTIONS(1559), + [sym_metavariable] = ACTIONS(1557), + [sym_raw_string_literal] = ACTIONS(1557), + [sym_float_literal] = ACTIONS(1557), [sym_block_comment] = ACTIONS(3), }, [365] = { - [ts_builtin_sym_end] = ACTIONS(1552), - [sym_identifier] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_macro_rules_BANG] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1552), - [anon_sym_u8] = ACTIONS(1554), - [anon_sym_i8] = ACTIONS(1554), - [anon_sym_u16] = ACTIONS(1554), - [anon_sym_i16] = ACTIONS(1554), - [anon_sym_u32] = ACTIONS(1554), - [anon_sym_i32] = ACTIONS(1554), - [anon_sym_u64] = ACTIONS(1554), - [anon_sym_i64] = ACTIONS(1554), - [anon_sym_u128] = ACTIONS(1554), - [anon_sym_i128] = ACTIONS(1554), - [anon_sym_isize] = ACTIONS(1554), - [anon_sym_usize] = ACTIONS(1554), - [anon_sym_f32] = ACTIONS(1554), - [anon_sym_f64] = ACTIONS(1554), - [anon_sym_bool] = ACTIONS(1554), - [anon_sym_str] = ACTIONS(1554), - [anon_sym_char] = ACTIONS(1554), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_async] = ACTIONS(1554), - [anon_sym_break] = ACTIONS(1554), - [anon_sym_const] = ACTIONS(1554), - [anon_sym_continue] = ACTIONS(1554), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_enum] = ACTIONS(1554), - [anon_sym_fn] = ACTIONS(1554), - [anon_sym_for] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1554), - [anon_sym_impl] = ACTIONS(1554), - [anon_sym_let] = ACTIONS(1554), - [anon_sym_loop] = ACTIONS(1554), - [anon_sym_match] = ACTIONS(1554), - [anon_sym_mod] = ACTIONS(1554), - [anon_sym_pub] = ACTIONS(1554), - [anon_sym_return] = ACTIONS(1554), - [anon_sym_static] = ACTIONS(1554), - [anon_sym_struct] = ACTIONS(1554), - [anon_sym_trait] = ACTIONS(1554), - [anon_sym_type] = ACTIONS(1554), - [anon_sym_union] = ACTIONS(1554), - [anon_sym_unsafe] = ACTIONS(1554), - [anon_sym_use] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(1552), - [anon_sym_BANG] = ACTIONS(1552), - [anon_sym_extern] = ACTIONS(1554), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_COLON_COLON] = ACTIONS(1552), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1552), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_move] = ACTIONS(1554), - [sym_integer_literal] = ACTIONS(1552), - [aux_sym_string_literal_token1] = ACTIONS(1552), - [sym_char_literal] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1554), - [anon_sym_false] = ACTIONS(1554), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1554), - [sym_super] = ACTIONS(1554), - [sym_crate] = ACTIONS(1554), - [sym_metavariable] = ACTIONS(1552), - [sym_raw_string_literal] = ACTIONS(1552), - [sym_float_literal] = ACTIONS(1552), + [ts_builtin_sym_end] = ACTIONS(1561), + [sym_identifier] = ACTIONS(1563), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_macro_rules_BANG] = ACTIONS(1561), + [anon_sym_LPAREN] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_u8] = ACTIONS(1563), + [anon_sym_i8] = ACTIONS(1563), + [anon_sym_u16] = ACTIONS(1563), + [anon_sym_i16] = ACTIONS(1563), + [anon_sym_u32] = ACTIONS(1563), + [anon_sym_i32] = ACTIONS(1563), + [anon_sym_u64] = ACTIONS(1563), + [anon_sym_i64] = ACTIONS(1563), + [anon_sym_u128] = ACTIONS(1563), + [anon_sym_i128] = ACTIONS(1563), + [anon_sym_isize] = ACTIONS(1563), + [anon_sym_usize] = ACTIONS(1563), + [anon_sym_f32] = ACTIONS(1563), + [anon_sym_f64] = ACTIONS(1563), + [anon_sym_bool] = ACTIONS(1563), + [anon_sym_str] = ACTIONS(1563), + [anon_sym_char] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_async] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_default] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_impl] = ACTIONS(1563), + [anon_sym_let] = ACTIONS(1563), + [anon_sym_loop] = ACTIONS(1563), + [anon_sym_match] = ACTIONS(1563), + [anon_sym_mod] = ACTIONS(1563), + [anon_sym_pub] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_trait] = ACTIONS(1563), + [anon_sym_type] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_unsafe] = ACTIONS(1563), + [anon_sym_use] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_POUND] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_COLON_COLON] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_move] = ACTIONS(1563), + [sym_integer_literal] = ACTIONS(1561), + [aux_sym_string_literal_token1] = ACTIONS(1561), + [sym_char_literal] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1563), + [anon_sym_false] = ACTIONS(1563), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1563), + [sym_super] = ACTIONS(1563), + [sym_crate] = ACTIONS(1563), + [sym_metavariable] = ACTIONS(1561), + [sym_raw_string_literal] = ACTIONS(1561), + [sym_float_literal] = ACTIONS(1561), [sym_block_comment] = ACTIONS(3), }, [366] = { - [ts_builtin_sym_end] = ACTIONS(1556), - [sym_identifier] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_macro_rules_BANG] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_u8] = ACTIONS(1558), - [anon_sym_i8] = ACTIONS(1558), - [anon_sym_u16] = ACTIONS(1558), - [anon_sym_i16] = ACTIONS(1558), - [anon_sym_u32] = ACTIONS(1558), - [anon_sym_i32] = ACTIONS(1558), - [anon_sym_u64] = ACTIONS(1558), - [anon_sym_i64] = ACTIONS(1558), - [anon_sym_u128] = ACTIONS(1558), - [anon_sym_i128] = ACTIONS(1558), - [anon_sym_isize] = ACTIONS(1558), - [anon_sym_usize] = ACTIONS(1558), - [anon_sym_f32] = ACTIONS(1558), - [anon_sym_f64] = ACTIONS(1558), - [anon_sym_bool] = ACTIONS(1558), - [anon_sym_str] = ACTIONS(1558), - [anon_sym_char] = ACTIONS(1558), - [anon_sym_SQUOTE] = ACTIONS(1558), - [anon_sym_async] = ACTIONS(1558), - [anon_sym_break] = ACTIONS(1558), - [anon_sym_const] = ACTIONS(1558), - [anon_sym_continue] = ACTIONS(1558), - [anon_sym_default] = ACTIONS(1558), - [anon_sym_enum] = ACTIONS(1558), - [anon_sym_fn] = ACTIONS(1558), - [anon_sym_for] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(1558), - [anon_sym_impl] = ACTIONS(1558), - [anon_sym_let] = ACTIONS(1558), - [anon_sym_loop] = ACTIONS(1558), - [anon_sym_match] = ACTIONS(1558), - [anon_sym_mod] = ACTIONS(1558), - [anon_sym_pub] = ACTIONS(1558), - [anon_sym_return] = ACTIONS(1558), - [anon_sym_static] = ACTIONS(1558), - [anon_sym_struct] = ACTIONS(1558), - [anon_sym_trait] = ACTIONS(1558), - [anon_sym_type] = ACTIONS(1558), - [anon_sym_union] = ACTIONS(1558), - [anon_sym_unsafe] = ACTIONS(1558), - [anon_sym_use] = ACTIONS(1558), - [anon_sym_while] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(1556), - [anon_sym_BANG] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_move] = ACTIONS(1558), - [sym_integer_literal] = ACTIONS(1556), - [aux_sym_string_literal_token1] = ACTIONS(1556), - [sym_char_literal] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1558), - [anon_sym_false] = ACTIONS(1558), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1558), - [sym_super] = ACTIONS(1558), - [sym_crate] = ACTIONS(1558), - [sym_metavariable] = ACTIONS(1556), - [sym_raw_string_literal] = ACTIONS(1556), - [sym_float_literal] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1565), + [sym_identifier] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1565), + [anon_sym_macro_rules_BANG] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_RBRACE] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1565), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u128] = ACTIONS(1567), + [anon_sym_i128] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_str] = ACTIONS(1567), + [anon_sym_char] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_async] = ACTIONS(1567), + [anon_sym_break] = ACTIONS(1567), + [anon_sym_const] = ACTIONS(1567), + [anon_sym_continue] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(1567), + [anon_sym_enum] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(1567), + [anon_sym_for] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1567), + [anon_sym_impl] = ACTIONS(1567), + [anon_sym_let] = ACTIONS(1567), + [anon_sym_loop] = ACTIONS(1567), + [anon_sym_match] = ACTIONS(1567), + [anon_sym_mod] = ACTIONS(1567), + [anon_sym_pub] = ACTIONS(1567), + [anon_sym_return] = ACTIONS(1567), + [anon_sym_static] = ACTIONS(1567), + [anon_sym_struct] = ACTIONS(1567), + [anon_sym_trait] = ACTIONS(1567), + [anon_sym_type] = ACTIONS(1567), + [anon_sym_union] = ACTIONS(1567), + [anon_sym_unsafe] = ACTIONS(1567), + [anon_sym_use] = ACTIONS(1567), + [anon_sym_while] = ACTIONS(1567), + [anon_sym_POUND] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1565), + [anon_sym_extern] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1565), + [anon_sym_COLON_COLON] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_move] = ACTIONS(1567), + [sym_integer_literal] = ACTIONS(1565), + [aux_sym_string_literal_token1] = ACTIONS(1565), + [sym_char_literal] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1567), + [anon_sym_false] = ACTIONS(1567), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1567), + [sym_super] = ACTIONS(1567), + [sym_crate] = ACTIONS(1567), + [sym_metavariable] = ACTIONS(1565), + [sym_raw_string_literal] = ACTIONS(1565), + [sym_float_literal] = ACTIONS(1565), [sym_block_comment] = ACTIONS(3), }, [367] = { - [ts_builtin_sym_end] = ACTIONS(1560), - [sym_identifier] = ACTIONS(1562), - [anon_sym_SEMI] = ACTIONS(1560), - [anon_sym_macro_rules_BANG] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_u8] = ACTIONS(1562), - [anon_sym_i8] = ACTIONS(1562), - [anon_sym_u16] = ACTIONS(1562), - [anon_sym_i16] = ACTIONS(1562), - [anon_sym_u32] = ACTIONS(1562), - [anon_sym_i32] = ACTIONS(1562), - [anon_sym_u64] = ACTIONS(1562), - [anon_sym_i64] = ACTIONS(1562), - [anon_sym_u128] = ACTIONS(1562), - [anon_sym_i128] = ACTIONS(1562), - [anon_sym_isize] = ACTIONS(1562), - [anon_sym_usize] = ACTIONS(1562), - [anon_sym_f32] = ACTIONS(1562), - [anon_sym_f64] = ACTIONS(1562), - [anon_sym_bool] = ACTIONS(1562), - [anon_sym_str] = ACTIONS(1562), - [anon_sym_char] = ACTIONS(1562), - [anon_sym_SQUOTE] = ACTIONS(1562), - [anon_sym_async] = ACTIONS(1562), - [anon_sym_break] = ACTIONS(1562), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_continue] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1562), - [anon_sym_enum] = ACTIONS(1562), - [anon_sym_fn] = ACTIONS(1562), - [anon_sym_for] = ACTIONS(1562), - [anon_sym_if] = ACTIONS(1562), - [anon_sym_impl] = ACTIONS(1562), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_loop] = ACTIONS(1562), - [anon_sym_match] = ACTIONS(1562), - [anon_sym_mod] = ACTIONS(1562), - [anon_sym_pub] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_struct] = ACTIONS(1562), - [anon_sym_trait] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_union] = ACTIONS(1562), - [anon_sym_unsafe] = ACTIONS(1562), - [anon_sym_use] = ACTIONS(1562), - [anon_sym_while] = ACTIONS(1562), - [anon_sym_POUND] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1560), - [anon_sym_extern] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1560), - [anon_sym_COLON_COLON] = ACTIONS(1560), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_DOT_DOT] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_PIPE] = ACTIONS(1560), - [anon_sym_move] = ACTIONS(1562), - [sym_integer_literal] = ACTIONS(1560), - [aux_sym_string_literal_token1] = ACTIONS(1560), - [sym_char_literal] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1562), - [anon_sym_false] = ACTIONS(1562), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1562), - [sym_super] = ACTIONS(1562), - [sym_crate] = ACTIONS(1562), - [sym_metavariable] = ACTIONS(1560), - [sym_raw_string_literal] = ACTIONS(1560), - [sym_float_literal] = ACTIONS(1560), + [ts_builtin_sym_end] = ACTIONS(1569), + [sym_identifier] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1569), + [anon_sym_macro_rules_BANG] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1569), + [anon_sym_u8] = ACTIONS(1571), + [anon_sym_i8] = ACTIONS(1571), + [anon_sym_u16] = ACTIONS(1571), + [anon_sym_i16] = ACTIONS(1571), + [anon_sym_u32] = ACTIONS(1571), + [anon_sym_i32] = ACTIONS(1571), + [anon_sym_u64] = ACTIONS(1571), + [anon_sym_i64] = ACTIONS(1571), + [anon_sym_u128] = ACTIONS(1571), + [anon_sym_i128] = ACTIONS(1571), + [anon_sym_isize] = ACTIONS(1571), + [anon_sym_usize] = ACTIONS(1571), + [anon_sym_f32] = ACTIONS(1571), + [anon_sym_f64] = ACTIONS(1571), + [anon_sym_bool] = ACTIONS(1571), + [anon_sym_str] = ACTIONS(1571), + [anon_sym_char] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_break] = ACTIONS(1571), + [anon_sym_const] = ACTIONS(1571), + [anon_sym_continue] = ACTIONS(1571), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_enum] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1571), + [anon_sym_for] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1571), + [anon_sym_impl] = ACTIONS(1571), + [anon_sym_let] = ACTIONS(1571), + [anon_sym_loop] = ACTIONS(1571), + [anon_sym_match] = ACTIONS(1571), + [anon_sym_mod] = ACTIONS(1571), + [anon_sym_pub] = ACTIONS(1571), + [anon_sym_return] = ACTIONS(1571), + [anon_sym_static] = ACTIONS(1571), + [anon_sym_struct] = ACTIONS(1571), + [anon_sym_trait] = ACTIONS(1571), + [anon_sym_type] = ACTIONS(1571), + [anon_sym_union] = ACTIONS(1571), + [anon_sym_unsafe] = ACTIONS(1571), + [anon_sym_use] = ACTIONS(1571), + [anon_sym_while] = ACTIONS(1571), + [anon_sym_POUND] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1571), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_COLON_COLON] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_move] = ACTIONS(1571), + [sym_integer_literal] = ACTIONS(1569), + [aux_sym_string_literal_token1] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1571), + [sym_super] = ACTIONS(1571), + [sym_crate] = ACTIONS(1571), + [sym_metavariable] = ACTIONS(1569), + [sym_raw_string_literal] = ACTIONS(1569), + [sym_float_literal] = ACTIONS(1569), [sym_block_comment] = ACTIONS(3), }, [368] = { - [ts_builtin_sym_end] = ACTIONS(1564), - [sym_identifier] = ACTIONS(1566), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_macro_rules_BANG] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_RBRACE] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1564), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_SQUOTE] = ACTIONS(1566), - [anon_sym_async] = ACTIONS(1566), - [anon_sym_break] = ACTIONS(1566), - [anon_sym_const] = ACTIONS(1566), - [anon_sym_continue] = ACTIONS(1566), - [anon_sym_default] = ACTIONS(1566), - [anon_sym_enum] = ACTIONS(1566), - [anon_sym_fn] = ACTIONS(1566), - [anon_sym_for] = ACTIONS(1566), - [anon_sym_if] = ACTIONS(1566), - [anon_sym_impl] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1566), - [anon_sym_loop] = ACTIONS(1566), - [anon_sym_match] = ACTIONS(1566), - [anon_sym_mod] = ACTIONS(1566), - [anon_sym_pub] = ACTIONS(1566), - [anon_sym_return] = ACTIONS(1566), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_struct] = ACTIONS(1566), - [anon_sym_trait] = ACTIONS(1566), - [anon_sym_type] = ACTIONS(1566), - [anon_sym_union] = ACTIONS(1566), - [anon_sym_unsafe] = ACTIONS(1566), - [anon_sym_use] = ACTIONS(1566), - [anon_sym_while] = ACTIONS(1566), - [anon_sym_POUND] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1564), - [anon_sym_extern] = ACTIONS(1566), - [anon_sym_LT] = ACTIONS(1564), - [anon_sym_COLON_COLON] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1564), - [anon_sym_DOT_DOT] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_move] = ACTIONS(1566), - [sym_integer_literal] = ACTIONS(1564), - [aux_sym_string_literal_token1] = ACTIONS(1564), - [sym_char_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(1566), - [anon_sym_false] = ACTIONS(1566), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1566), - [sym_super] = ACTIONS(1566), - [sym_crate] = ACTIONS(1566), - [sym_metavariable] = ACTIONS(1564), - [sym_raw_string_literal] = ACTIONS(1564), - [sym_float_literal] = ACTIONS(1564), + [ts_builtin_sym_end] = ACTIONS(1573), + [sym_identifier] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_macro_rules_BANG] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1573), + [anon_sym_LBRACK] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_u8] = ACTIONS(1575), + [anon_sym_i8] = ACTIONS(1575), + [anon_sym_u16] = ACTIONS(1575), + [anon_sym_i16] = ACTIONS(1575), + [anon_sym_u32] = ACTIONS(1575), + [anon_sym_i32] = ACTIONS(1575), + [anon_sym_u64] = ACTIONS(1575), + [anon_sym_i64] = ACTIONS(1575), + [anon_sym_u128] = ACTIONS(1575), + [anon_sym_i128] = ACTIONS(1575), + [anon_sym_isize] = ACTIONS(1575), + [anon_sym_usize] = ACTIONS(1575), + [anon_sym_f32] = ACTIONS(1575), + [anon_sym_f64] = ACTIONS(1575), + [anon_sym_bool] = ACTIONS(1575), + [anon_sym_str] = ACTIONS(1575), + [anon_sym_char] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_break] = ACTIONS(1575), + [anon_sym_const] = ACTIONS(1575), + [anon_sym_continue] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1575), + [anon_sym_enum] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_for] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1575), + [anon_sym_impl] = ACTIONS(1575), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_loop] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_pub] = ACTIONS(1575), + [anon_sym_return] = ACTIONS(1575), + [anon_sym_static] = ACTIONS(1575), + [anon_sym_struct] = ACTIONS(1575), + [anon_sym_trait] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(1575), + [anon_sym_union] = ACTIONS(1575), + [anon_sym_unsafe] = ACTIONS(1575), + [anon_sym_use] = ACTIONS(1575), + [anon_sym_while] = ACTIONS(1575), + [anon_sym_POUND] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1573), + [anon_sym_extern] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_COLON_COLON] = ACTIONS(1573), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_move] = ACTIONS(1575), + [sym_integer_literal] = ACTIONS(1573), + [aux_sym_string_literal_token1] = ACTIONS(1573), + [sym_char_literal] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1575), + [sym_super] = ACTIONS(1575), + [sym_crate] = ACTIONS(1575), + [sym_metavariable] = ACTIONS(1573), + [sym_raw_string_literal] = ACTIONS(1573), + [sym_float_literal] = ACTIONS(1573), [sym_block_comment] = ACTIONS(3), }, [369] = { - [ts_builtin_sym_end] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [anon_sym_SEMI] = ACTIONS(1568), - [anon_sym_macro_rules_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1568), - [anon_sym_u8] = ACTIONS(1570), - [anon_sym_i8] = ACTIONS(1570), - [anon_sym_u16] = ACTIONS(1570), - [anon_sym_i16] = ACTIONS(1570), - [anon_sym_u32] = ACTIONS(1570), - [anon_sym_i32] = ACTIONS(1570), - [anon_sym_u64] = ACTIONS(1570), - [anon_sym_i64] = ACTIONS(1570), - [anon_sym_u128] = ACTIONS(1570), - [anon_sym_i128] = ACTIONS(1570), - [anon_sym_isize] = ACTIONS(1570), - [anon_sym_usize] = ACTIONS(1570), - [anon_sym_f32] = ACTIONS(1570), - [anon_sym_f64] = ACTIONS(1570), - [anon_sym_bool] = ACTIONS(1570), - [anon_sym_str] = ACTIONS(1570), - [anon_sym_char] = ACTIONS(1570), - [anon_sym_SQUOTE] = ACTIONS(1570), - [anon_sym_async] = ACTIONS(1570), - [anon_sym_break] = ACTIONS(1570), - [anon_sym_const] = ACTIONS(1570), - [anon_sym_continue] = ACTIONS(1570), - [anon_sym_default] = ACTIONS(1570), - [anon_sym_enum] = ACTIONS(1570), - [anon_sym_fn] = ACTIONS(1570), - [anon_sym_for] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_impl] = ACTIONS(1570), - [anon_sym_let] = ACTIONS(1570), - [anon_sym_loop] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1570), - [anon_sym_mod] = ACTIONS(1570), - [anon_sym_pub] = ACTIONS(1570), - [anon_sym_return] = ACTIONS(1570), - [anon_sym_static] = ACTIONS(1570), - [anon_sym_struct] = ACTIONS(1570), - [anon_sym_trait] = ACTIONS(1570), - [anon_sym_type] = ACTIONS(1570), - [anon_sym_union] = ACTIONS(1570), - [anon_sym_unsafe] = ACTIONS(1570), - [anon_sym_use] = ACTIONS(1570), - [anon_sym_while] = ACTIONS(1570), - [anon_sym_POUND] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_extern] = ACTIONS(1570), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_DOT_DOT] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_move] = ACTIONS(1570), - [sym_integer_literal] = ACTIONS(1568), - [aux_sym_string_literal_token1] = ACTIONS(1568), - [sym_char_literal] = ACTIONS(1568), - [anon_sym_true] = ACTIONS(1570), - [anon_sym_false] = ACTIONS(1570), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1570), - [sym_super] = ACTIONS(1570), - [sym_crate] = ACTIONS(1570), - [sym_metavariable] = ACTIONS(1568), - [sym_raw_string_literal] = ACTIONS(1568), - [sym_float_literal] = ACTIONS(1568), + [ts_builtin_sym_end] = ACTIONS(1577), + [sym_identifier] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1577), + [anon_sym_macro_rules_BANG] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_RBRACE] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1577), + [anon_sym_u8] = ACTIONS(1579), + [anon_sym_i8] = ACTIONS(1579), + [anon_sym_u16] = ACTIONS(1579), + [anon_sym_i16] = ACTIONS(1579), + [anon_sym_u32] = ACTIONS(1579), + [anon_sym_i32] = ACTIONS(1579), + [anon_sym_u64] = ACTIONS(1579), + [anon_sym_i64] = ACTIONS(1579), + [anon_sym_u128] = ACTIONS(1579), + [anon_sym_i128] = ACTIONS(1579), + [anon_sym_isize] = ACTIONS(1579), + [anon_sym_usize] = ACTIONS(1579), + [anon_sym_f32] = ACTIONS(1579), + [anon_sym_f64] = ACTIONS(1579), + [anon_sym_bool] = ACTIONS(1579), + [anon_sym_str] = ACTIONS(1579), + [anon_sym_char] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(1579), + [anon_sym_enum] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_impl] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_pub] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_static] = ACTIONS(1579), + [anon_sym_struct] = ACTIONS(1579), + [anon_sym_trait] = ACTIONS(1579), + [anon_sym_type] = ACTIONS(1579), + [anon_sym_union] = ACTIONS(1579), + [anon_sym_unsafe] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1577), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_COLON_COLON] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_move] = ACTIONS(1579), + [sym_integer_literal] = ACTIONS(1577), + [aux_sym_string_literal_token1] = ACTIONS(1577), + [sym_char_literal] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1579), + [sym_super] = ACTIONS(1579), + [sym_crate] = ACTIONS(1579), + [sym_metavariable] = ACTIONS(1577), + [sym_raw_string_literal] = ACTIONS(1577), + [sym_float_literal] = ACTIONS(1577), [sym_block_comment] = ACTIONS(3), }, [370] = { - [ts_builtin_sym_end] = ACTIONS(1572), - [sym_identifier] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_macro_rules_BANG] = ACTIONS(1572), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_u8] = ACTIONS(1574), - [anon_sym_i8] = ACTIONS(1574), - [anon_sym_u16] = ACTIONS(1574), - [anon_sym_i16] = ACTIONS(1574), - [anon_sym_u32] = ACTIONS(1574), - [anon_sym_i32] = ACTIONS(1574), - [anon_sym_u64] = ACTIONS(1574), - [anon_sym_i64] = ACTIONS(1574), - [anon_sym_u128] = ACTIONS(1574), - [anon_sym_i128] = ACTIONS(1574), - [anon_sym_isize] = ACTIONS(1574), - [anon_sym_usize] = ACTIONS(1574), - [anon_sym_f32] = ACTIONS(1574), - [anon_sym_f64] = ACTIONS(1574), - [anon_sym_bool] = ACTIONS(1574), - [anon_sym_str] = ACTIONS(1574), - [anon_sym_char] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1574), - [anon_sym_break] = ACTIONS(1574), - [anon_sym_const] = ACTIONS(1574), - [anon_sym_continue] = ACTIONS(1574), - [anon_sym_default] = ACTIONS(1574), - [anon_sym_enum] = ACTIONS(1574), - [anon_sym_fn] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1574), - [anon_sym_if] = ACTIONS(1574), - [anon_sym_impl] = ACTIONS(1574), - [anon_sym_let] = ACTIONS(1574), - [anon_sym_loop] = ACTIONS(1574), - [anon_sym_match] = ACTIONS(1574), - [anon_sym_mod] = ACTIONS(1574), - [anon_sym_pub] = ACTIONS(1574), - [anon_sym_return] = ACTIONS(1574), - [anon_sym_static] = ACTIONS(1574), - [anon_sym_struct] = ACTIONS(1574), - [anon_sym_trait] = ACTIONS(1574), - [anon_sym_type] = ACTIONS(1574), - [anon_sym_union] = ACTIONS(1574), - [anon_sym_unsafe] = ACTIONS(1574), - [anon_sym_use] = ACTIONS(1574), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_POUND] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1572), - [anon_sym_extern] = ACTIONS(1574), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_move] = ACTIONS(1574), - [sym_integer_literal] = ACTIONS(1572), - [aux_sym_string_literal_token1] = ACTIONS(1572), - [sym_char_literal] = ACTIONS(1572), - [anon_sym_true] = ACTIONS(1574), - [anon_sym_false] = ACTIONS(1574), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1574), - [sym_super] = ACTIONS(1574), - [sym_crate] = ACTIONS(1574), - [sym_metavariable] = ACTIONS(1572), - [sym_raw_string_literal] = ACTIONS(1572), - [sym_float_literal] = ACTIONS(1572), + [ts_builtin_sym_end] = ACTIONS(1581), + [sym_identifier] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1581), + [anon_sym_macro_rules_BANG] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1581), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_async] = ACTIONS(1583), + [anon_sym_break] = ACTIONS(1583), + [anon_sym_const] = ACTIONS(1583), + [anon_sym_continue] = ACTIONS(1583), + [anon_sym_default] = ACTIONS(1583), + [anon_sym_enum] = ACTIONS(1583), + [anon_sym_fn] = ACTIONS(1583), + [anon_sym_for] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1583), + [anon_sym_impl] = ACTIONS(1583), + [anon_sym_let] = ACTIONS(1583), + [anon_sym_loop] = ACTIONS(1583), + [anon_sym_match] = ACTIONS(1583), + [anon_sym_mod] = ACTIONS(1583), + [anon_sym_pub] = ACTIONS(1583), + [anon_sym_return] = ACTIONS(1583), + [anon_sym_static] = ACTIONS(1583), + [anon_sym_struct] = ACTIONS(1583), + [anon_sym_trait] = ACTIONS(1583), + [anon_sym_type] = ACTIONS(1583), + [anon_sym_union] = ACTIONS(1583), + [anon_sym_unsafe] = ACTIONS(1583), + [anon_sym_use] = ACTIONS(1583), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_POUND] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1581), + [anon_sym_extern] = ACTIONS(1583), + [anon_sym_LT] = ACTIONS(1581), + [anon_sym_COLON_COLON] = ACTIONS(1581), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_move] = ACTIONS(1583), + [sym_integer_literal] = ACTIONS(1581), + [aux_sym_string_literal_token1] = ACTIONS(1581), + [sym_char_literal] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1583), + [anon_sym_false] = ACTIONS(1583), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1583), + [sym_super] = ACTIONS(1583), + [sym_crate] = ACTIONS(1583), + [sym_metavariable] = ACTIONS(1581), + [sym_raw_string_literal] = ACTIONS(1581), + [sym_float_literal] = ACTIONS(1581), [sym_block_comment] = ACTIONS(3), }, [371] = { - [ts_builtin_sym_end] = ACTIONS(1576), - [sym_identifier] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [anon_sym_macro_rules_BANG] = ACTIONS(1576), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_RBRACE] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1576), - [anon_sym_u8] = ACTIONS(1578), - [anon_sym_i8] = ACTIONS(1578), - [anon_sym_u16] = ACTIONS(1578), - [anon_sym_i16] = ACTIONS(1578), - [anon_sym_u32] = ACTIONS(1578), - [anon_sym_i32] = ACTIONS(1578), - [anon_sym_u64] = ACTIONS(1578), - [anon_sym_i64] = ACTIONS(1578), - [anon_sym_u128] = ACTIONS(1578), - [anon_sym_i128] = ACTIONS(1578), - [anon_sym_isize] = ACTIONS(1578), - [anon_sym_usize] = ACTIONS(1578), - [anon_sym_f32] = ACTIONS(1578), - [anon_sym_f64] = ACTIONS(1578), - [anon_sym_bool] = ACTIONS(1578), - [anon_sym_str] = ACTIONS(1578), - [anon_sym_char] = ACTIONS(1578), - [anon_sym_SQUOTE] = ACTIONS(1578), - [anon_sym_async] = ACTIONS(1578), - [anon_sym_break] = ACTIONS(1578), - [anon_sym_const] = ACTIONS(1578), - [anon_sym_continue] = ACTIONS(1578), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_enum] = ACTIONS(1578), - [anon_sym_fn] = ACTIONS(1578), - [anon_sym_for] = ACTIONS(1578), - [anon_sym_if] = ACTIONS(1578), - [anon_sym_impl] = ACTIONS(1578), - [anon_sym_let] = ACTIONS(1578), - [anon_sym_loop] = ACTIONS(1578), - [anon_sym_match] = ACTIONS(1578), - [anon_sym_mod] = ACTIONS(1578), - [anon_sym_pub] = ACTIONS(1578), - [anon_sym_return] = ACTIONS(1578), - [anon_sym_static] = ACTIONS(1578), - [anon_sym_struct] = ACTIONS(1578), - [anon_sym_trait] = ACTIONS(1578), - [anon_sym_type] = ACTIONS(1578), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1578), - [anon_sym_use] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1578), - [anon_sym_POUND] = ACTIONS(1576), - [anon_sym_BANG] = ACTIONS(1576), - [anon_sym_extern] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_COLON_COLON] = ACTIONS(1576), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_DOT_DOT] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_move] = ACTIONS(1578), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1576), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1578), - [anon_sym_false] = ACTIONS(1578), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1578), - [sym_super] = ACTIONS(1578), - [sym_crate] = ACTIONS(1578), - [sym_metavariable] = ACTIONS(1576), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), + [ts_builtin_sym_end] = ACTIONS(1585), + [sym_identifier] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_macro_rules_BANG] = ACTIONS(1585), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_u8] = ACTIONS(1587), + [anon_sym_i8] = ACTIONS(1587), + [anon_sym_u16] = ACTIONS(1587), + [anon_sym_i16] = ACTIONS(1587), + [anon_sym_u32] = ACTIONS(1587), + [anon_sym_i32] = ACTIONS(1587), + [anon_sym_u64] = ACTIONS(1587), + [anon_sym_i64] = ACTIONS(1587), + [anon_sym_u128] = ACTIONS(1587), + [anon_sym_i128] = ACTIONS(1587), + [anon_sym_isize] = ACTIONS(1587), + [anon_sym_usize] = ACTIONS(1587), + [anon_sym_f32] = ACTIONS(1587), + [anon_sym_f64] = ACTIONS(1587), + [anon_sym_bool] = ACTIONS(1587), + [anon_sym_str] = ACTIONS(1587), + [anon_sym_char] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_async] = ACTIONS(1587), + [anon_sym_break] = ACTIONS(1587), + [anon_sym_const] = ACTIONS(1587), + [anon_sym_continue] = ACTIONS(1587), + [anon_sym_default] = ACTIONS(1587), + [anon_sym_enum] = ACTIONS(1587), + [anon_sym_fn] = ACTIONS(1587), + [anon_sym_for] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_impl] = ACTIONS(1587), + [anon_sym_let] = ACTIONS(1587), + [anon_sym_loop] = ACTIONS(1587), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_pub] = ACTIONS(1587), + [anon_sym_return] = ACTIONS(1587), + [anon_sym_static] = ACTIONS(1587), + [anon_sym_struct] = ACTIONS(1587), + [anon_sym_trait] = ACTIONS(1587), + [anon_sym_type] = ACTIONS(1587), + [anon_sym_union] = ACTIONS(1587), + [anon_sym_unsafe] = ACTIONS(1587), + [anon_sym_use] = ACTIONS(1587), + [anon_sym_while] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_extern] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_COLON_COLON] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_move] = ACTIONS(1587), + [sym_integer_literal] = ACTIONS(1585), + [aux_sym_string_literal_token1] = ACTIONS(1585), + [sym_char_literal] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1587), + [sym_super] = ACTIONS(1587), + [sym_crate] = ACTIONS(1587), + [sym_metavariable] = ACTIONS(1585), + [sym_raw_string_literal] = ACTIONS(1585), + [sym_float_literal] = ACTIONS(1585), [sym_block_comment] = ACTIONS(3), }, [372] = { - [ts_builtin_sym_end] = ACTIONS(1580), - [sym_identifier] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_macro_rules_BANG] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_STAR] = ACTIONS(1580), - [anon_sym_u8] = ACTIONS(1582), - [anon_sym_i8] = ACTIONS(1582), - [anon_sym_u16] = ACTIONS(1582), - [anon_sym_i16] = ACTIONS(1582), - [anon_sym_u32] = ACTIONS(1582), - [anon_sym_i32] = ACTIONS(1582), - [anon_sym_u64] = ACTIONS(1582), - [anon_sym_i64] = ACTIONS(1582), - [anon_sym_u128] = ACTIONS(1582), - [anon_sym_i128] = ACTIONS(1582), - [anon_sym_isize] = ACTIONS(1582), - [anon_sym_usize] = ACTIONS(1582), - [anon_sym_f32] = ACTIONS(1582), - [anon_sym_f64] = ACTIONS(1582), - [anon_sym_bool] = ACTIONS(1582), - [anon_sym_str] = ACTIONS(1582), - [anon_sym_char] = ACTIONS(1582), - [anon_sym_SQUOTE] = ACTIONS(1582), - [anon_sym_async] = ACTIONS(1582), - [anon_sym_break] = ACTIONS(1582), - [anon_sym_const] = ACTIONS(1582), - [anon_sym_continue] = ACTIONS(1582), - [anon_sym_default] = ACTIONS(1582), - [anon_sym_enum] = ACTIONS(1582), - [anon_sym_fn] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1582), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_impl] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1582), - [anon_sym_loop] = ACTIONS(1582), - [anon_sym_match] = ACTIONS(1582), - [anon_sym_mod] = ACTIONS(1582), - [anon_sym_pub] = ACTIONS(1582), - [anon_sym_return] = ACTIONS(1582), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_struct] = ACTIONS(1582), - [anon_sym_trait] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_union] = ACTIONS(1582), - [anon_sym_unsafe] = ACTIONS(1582), - [anon_sym_use] = ACTIONS(1582), - [anon_sym_while] = ACTIONS(1582), - [anon_sym_POUND] = ACTIONS(1580), - [anon_sym_BANG] = ACTIONS(1580), - [anon_sym_extern] = ACTIONS(1582), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_COLON_COLON] = ACTIONS(1580), - [anon_sym_AMP] = ACTIONS(1580), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_move] = ACTIONS(1582), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1580), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1582), - [anon_sym_false] = ACTIONS(1582), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1580), - [sym_raw_string_literal] = ACTIONS(1580), - [sym_float_literal] = ACTIONS(1580), + [ts_builtin_sym_end] = ACTIONS(1589), + [sym_identifier] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1589), + [anon_sym_macro_rules_BANG] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_async] = ACTIONS(1591), + [anon_sym_break] = ACTIONS(1591), + [anon_sym_const] = ACTIONS(1591), + [anon_sym_continue] = ACTIONS(1591), + [anon_sym_default] = ACTIONS(1591), + [anon_sym_enum] = ACTIONS(1591), + [anon_sym_fn] = ACTIONS(1591), + [anon_sym_for] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1591), + [anon_sym_impl] = ACTIONS(1591), + [anon_sym_let] = ACTIONS(1591), + [anon_sym_loop] = ACTIONS(1591), + [anon_sym_match] = ACTIONS(1591), + [anon_sym_mod] = ACTIONS(1591), + [anon_sym_pub] = ACTIONS(1591), + [anon_sym_return] = ACTIONS(1591), + [anon_sym_static] = ACTIONS(1591), + [anon_sym_struct] = ACTIONS(1591), + [anon_sym_trait] = ACTIONS(1591), + [anon_sym_type] = ACTIONS(1591), + [anon_sym_union] = ACTIONS(1591), + [anon_sym_unsafe] = ACTIONS(1591), + [anon_sym_use] = ACTIONS(1591), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_POUND] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(1589), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1589), + [anon_sym_move] = ACTIONS(1591), + [sym_integer_literal] = ACTIONS(1589), + [aux_sym_string_literal_token1] = ACTIONS(1589), + [sym_char_literal] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1591), + [sym_super] = ACTIONS(1591), + [sym_crate] = ACTIONS(1591), + [sym_metavariable] = ACTIONS(1589), + [sym_raw_string_literal] = ACTIONS(1589), + [sym_float_literal] = ACTIONS(1589), [sym_block_comment] = ACTIONS(3), }, [373] = { - [ts_builtin_sym_end] = ACTIONS(1584), - [sym_identifier] = ACTIONS(1586), - [anon_sym_SEMI] = ACTIONS(1584), - [anon_sym_macro_rules_BANG] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1584), - [anon_sym_u8] = ACTIONS(1586), - [anon_sym_i8] = ACTIONS(1586), - [anon_sym_u16] = ACTIONS(1586), - [anon_sym_i16] = ACTIONS(1586), - [anon_sym_u32] = ACTIONS(1586), - [anon_sym_i32] = ACTIONS(1586), - [anon_sym_u64] = ACTIONS(1586), - [anon_sym_i64] = ACTIONS(1586), - [anon_sym_u128] = ACTIONS(1586), - [anon_sym_i128] = ACTIONS(1586), - [anon_sym_isize] = ACTIONS(1586), - [anon_sym_usize] = ACTIONS(1586), - [anon_sym_f32] = ACTIONS(1586), - [anon_sym_f64] = ACTIONS(1586), - [anon_sym_bool] = ACTIONS(1586), - [anon_sym_str] = ACTIONS(1586), - [anon_sym_char] = ACTIONS(1586), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_async] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1586), - [anon_sym_const] = ACTIONS(1586), - [anon_sym_continue] = ACTIONS(1586), - [anon_sym_default] = ACTIONS(1586), - [anon_sym_enum] = ACTIONS(1586), - [anon_sym_fn] = ACTIONS(1586), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_impl] = ACTIONS(1586), - [anon_sym_let] = ACTIONS(1586), - [anon_sym_loop] = ACTIONS(1586), - [anon_sym_match] = ACTIONS(1586), - [anon_sym_mod] = ACTIONS(1586), - [anon_sym_pub] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_static] = ACTIONS(1586), - [anon_sym_struct] = ACTIONS(1586), - [anon_sym_trait] = ACTIONS(1586), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_union] = ACTIONS(1586), - [anon_sym_unsafe] = ACTIONS(1586), - [anon_sym_use] = ACTIONS(1586), - [anon_sym_while] = ACTIONS(1586), - [anon_sym_POUND] = ACTIONS(1584), - [anon_sym_BANG] = ACTIONS(1584), - [anon_sym_extern] = ACTIONS(1586), - [anon_sym_LT] = ACTIONS(1584), - [anon_sym_COLON_COLON] = ACTIONS(1584), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_DOT_DOT] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1584), - [anon_sym_move] = ACTIONS(1586), - [sym_integer_literal] = ACTIONS(1584), - [aux_sym_string_literal_token1] = ACTIONS(1584), - [sym_char_literal] = ACTIONS(1584), - [anon_sym_true] = ACTIONS(1586), - [anon_sym_false] = ACTIONS(1586), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1586), - [sym_super] = ACTIONS(1586), - [sym_crate] = ACTIONS(1586), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1584), - [sym_float_literal] = ACTIONS(1584), + [ts_builtin_sym_end] = ACTIONS(1593), + [sym_identifier] = ACTIONS(1595), + [anon_sym_SEMI] = ACTIONS(1593), + [anon_sym_macro_rules_BANG] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_RBRACE] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1593), + [anon_sym_u8] = ACTIONS(1595), + [anon_sym_i8] = ACTIONS(1595), + [anon_sym_u16] = ACTIONS(1595), + [anon_sym_i16] = ACTIONS(1595), + [anon_sym_u32] = ACTIONS(1595), + [anon_sym_i32] = ACTIONS(1595), + [anon_sym_u64] = ACTIONS(1595), + [anon_sym_i64] = ACTIONS(1595), + [anon_sym_u128] = ACTIONS(1595), + [anon_sym_i128] = ACTIONS(1595), + [anon_sym_isize] = ACTIONS(1595), + [anon_sym_usize] = ACTIONS(1595), + [anon_sym_f32] = ACTIONS(1595), + [anon_sym_f64] = ACTIONS(1595), + [anon_sym_bool] = ACTIONS(1595), + [anon_sym_str] = ACTIONS(1595), + [anon_sym_char] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(1595), + [anon_sym_break] = ACTIONS(1595), + [anon_sym_const] = ACTIONS(1595), + [anon_sym_continue] = ACTIONS(1595), + [anon_sym_default] = ACTIONS(1595), + [anon_sym_enum] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(1595), + [anon_sym_for] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1595), + [anon_sym_impl] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_loop] = ACTIONS(1595), + [anon_sym_match] = ACTIONS(1595), + [anon_sym_mod] = ACTIONS(1595), + [anon_sym_pub] = ACTIONS(1595), + [anon_sym_return] = ACTIONS(1595), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_struct] = ACTIONS(1595), + [anon_sym_trait] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1595), + [anon_sym_use] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_POUND] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1593), + [anon_sym_extern] = ACTIONS(1595), + [anon_sym_LT] = ACTIONS(1593), + [anon_sym_COLON_COLON] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_PIPE] = ACTIONS(1593), + [anon_sym_move] = ACTIONS(1595), + [sym_integer_literal] = ACTIONS(1593), + [aux_sym_string_literal_token1] = ACTIONS(1593), + [sym_char_literal] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1595), + [anon_sym_false] = ACTIONS(1595), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1595), + [sym_super] = ACTIONS(1595), + [sym_crate] = ACTIONS(1595), + [sym_metavariable] = ACTIONS(1593), + [sym_raw_string_literal] = ACTIONS(1593), + [sym_float_literal] = ACTIONS(1593), [sym_block_comment] = ACTIONS(3), }, [374] = { - [ts_builtin_sym_end] = ACTIONS(1588), - [sym_identifier] = ACTIONS(1590), - [anon_sym_SEMI] = ACTIONS(1588), - [anon_sym_macro_rules_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_RBRACE] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(1588), - [anon_sym_u8] = ACTIONS(1590), - [anon_sym_i8] = ACTIONS(1590), - [anon_sym_u16] = ACTIONS(1590), - [anon_sym_i16] = ACTIONS(1590), - [anon_sym_u32] = ACTIONS(1590), - [anon_sym_i32] = ACTIONS(1590), - [anon_sym_u64] = ACTIONS(1590), - [anon_sym_i64] = ACTIONS(1590), - [anon_sym_u128] = ACTIONS(1590), - [anon_sym_i128] = ACTIONS(1590), - [anon_sym_isize] = ACTIONS(1590), - [anon_sym_usize] = ACTIONS(1590), - [anon_sym_f32] = ACTIONS(1590), - [anon_sym_f64] = ACTIONS(1590), - [anon_sym_bool] = ACTIONS(1590), - [anon_sym_str] = ACTIONS(1590), - [anon_sym_char] = ACTIONS(1590), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(1590), - [anon_sym_break] = ACTIONS(1590), - [anon_sym_const] = ACTIONS(1590), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_default] = ACTIONS(1590), - [anon_sym_enum] = ACTIONS(1590), - [anon_sym_fn] = ACTIONS(1590), - [anon_sym_for] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1590), - [anon_sym_impl] = ACTIONS(1590), - [anon_sym_let] = ACTIONS(1590), - [anon_sym_loop] = ACTIONS(1590), - [anon_sym_match] = ACTIONS(1590), - [anon_sym_mod] = ACTIONS(1590), - [anon_sym_pub] = ACTIONS(1590), - [anon_sym_return] = ACTIONS(1590), - [anon_sym_static] = ACTIONS(1590), - [anon_sym_struct] = ACTIONS(1590), - [anon_sym_trait] = ACTIONS(1590), - [anon_sym_type] = ACTIONS(1590), - [anon_sym_union] = ACTIONS(1590), - [anon_sym_unsafe] = ACTIONS(1590), - [anon_sym_use] = ACTIONS(1590), - [anon_sym_while] = ACTIONS(1590), - [anon_sym_POUND] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_extern] = ACTIONS(1590), - [anon_sym_LT] = ACTIONS(1588), - [anon_sym_COLON_COLON] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_DOT_DOT] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_move] = ACTIONS(1590), - [sym_integer_literal] = ACTIONS(1588), - [aux_sym_string_literal_token1] = ACTIONS(1588), - [sym_char_literal] = ACTIONS(1588), - [anon_sym_true] = ACTIONS(1590), - [anon_sym_false] = ACTIONS(1590), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1590), - [sym_super] = ACTIONS(1590), - [sym_crate] = ACTIONS(1590), - [sym_metavariable] = ACTIONS(1588), - [sym_raw_string_literal] = ACTIONS(1588), - [sym_float_literal] = ACTIONS(1588), + [ts_builtin_sym_end] = ACTIONS(1597), + [sym_identifier] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_macro_rules_BANG] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_default] = ACTIONS(1599), + [anon_sym_enum] = ACTIONS(1599), + [anon_sym_fn] = ACTIONS(1599), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_impl] = ACTIONS(1599), + [anon_sym_let] = ACTIONS(1599), + [anon_sym_loop] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_pub] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_static] = ACTIONS(1599), + [anon_sym_struct] = ACTIONS(1599), + [anon_sym_trait] = ACTIONS(1599), + [anon_sym_type] = ACTIONS(1599), + [anon_sym_union] = ACTIONS(1599), + [anon_sym_unsafe] = ACTIONS(1599), + [anon_sym_use] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_extern] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1597), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_move] = ACTIONS(1599), + [sym_integer_literal] = ACTIONS(1597), + [aux_sym_string_literal_token1] = ACTIONS(1597), + [sym_char_literal] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1599), + [anon_sym_false] = ACTIONS(1599), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1597), + [sym_raw_string_literal] = ACTIONS(1597), + [sym_float_literal] = ACTIONS(1597), [sym_block_comment] = ACTIONS(3), }, [375] = { - [ts_builtin_sym_end] = ACTIONS(1592), - [sym_identifier] = ACTIONS(1594), - [anon_sym_SEMI] = ACTIONS(1592), - [anon_sym_macro_rules_BANG] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1592), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_RBRACE] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1592), - [anon_sym_u8] = ACTIONS(1594), - [anon_sym_i8] = ACTIONS(1594), - [anon_sym_u16] = ACTIONS(1594), - [anon_sym_i16] = ACTIONS(1594), - [anon_sym_u32] = ACTIONS(1594), - [anon_sym_i32] = ACTIONS(1594), - [anon_sym_u64] = ACTIONS(1594), - [anon_sym_i64] = ACTIONS(1594), - [anon_sym_u128] = ACTIONS(1594), - [anon_sym_i128] = ACTIONS(1594), - [anon_sym_isize] = ACTIONS(1594), - [anon_sym_usize] = ACTIONS(1594), - [anon_sym_f32] = ACTIONS(1594), - [anon_sym_f64] = ACTIONS(1594), - [anon_sym_bool] = ACTIONS(1594), - [anon_sym_str] = ACTIONS(1594), - [anon_sym_char] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1594), - [anon_sym_async] = ACTIONS(1594), - [anon_sym_break] = ACTIONS(1594), - [anon_sym_const] = ACTIONS(1594), - [anon_sym_continue] = ACTIONS(1594), - [anon_sym_default] = ACTIONS(1594), - [anon_sym_enum] = ACTIONS(1594), - [anon_sym_fn] = ACTIONS(1594), - [anon_sym_for] = ACTIONS(1594), - [anon_sym_if] = ACTIONS(1594), - [anon_sym_impl] = ACTIONS(1594), - [anon_sym_let] = ACTIONS(1594), - [anon_sym_loop] = ACTIONS(1594), - [anon_sym_match] = ACTIONS(1594), - [anon_sym_mod] = ACTIONS(1594), - [anon_sym_pub] = ACTIONS(1594), - [anon_sym_return] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_struct] = ACTIONS(1594), - [anon_sym_trait] = ACTIONS(1594), - [anon_sym_type] = ACTIONS(1594), - [anon_sym_union] = ACTIONS(1594), - [anon_sym_unsafe] = ACTIONS(1594), - [anon_sym_use] = ACTIONS(1594), - [anon_sym_while] = ACTIONS(1594), - [anon_sym_POUND] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1592), - [anon_sym_extern] = ACTIONS(1594), - [anon_sym_LT] = ACTIONS(1592), - [anon_sym_COLON_COLON] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1592), - [anon_sym_DOT_DOT] = ACTIONS(1592), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(1592), - [anon_sym_move] = ACTIONS(1594), - [sym_integer_literal] = ACTIONS(1592), - [aux_sym_string_literal_token1] = ACTIONS(1592), - [sym_char_literal] = ACTIONS(1592), - [anon_sym_true] = ACTIONS(1594), - [anon_sym_false] = ACTIONS(1594), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1594), - [sym_super] = ACTIONS(1594), - [sym_crate] = ACTIONS(1594), - [sym_metavariable] = ACTIONS(1592), - [sym_raw_string_literal] = ACTIONS(1592), - [sym_float_literal] = ACTIONS(1592), + [ts_builtin_sym_end] = ACTIONS(1601), + [sym_identifier] = ACTIONS(1603), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_macro_rules_BANG] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1601), + [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_SQUOTE] = ACTIONS(1603), + [anon_sym_async] = ACTIONS(1603), + [anon_sym_break] = ACTIONS(1603), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_continue] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1603), + [anon_sym_enum] = ACTIONS(1603), + [anon_sym_fn] = ACTIONS(1603), + [anon_sym_for] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1603), + [anon_sym_impl] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1603), + [anon_sym_loop] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1603), + [anon_sym_mod] = ACTIONS(1603), + [anon_sym_pub] = ACTIONS(1603), + [anon_sym_return] = ACTIONS(1603), + [anon_sym_static] = ACTIONS(1603), + [anon_sym_struct] = ACTIONS(1603), + [anon_sym_trait] = ACTIONS(1603), + [anon_sym_type] = ACTIONS(1603), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1603), + [anon_sym_use] = ACTIONS(1603), + [anon_sym_while] = ACTIONS(1603), + [anon_sym_POUND] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1601), + [anon_sym_extern] = ACTIONS(1603), + [anon_sym_LT] = ACTIONS(1601), + [anon_sym_COLON_COLON] = ACTIONS(1601), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_DOT_DOT] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_move] = ACTIONS(1603), + [sym_integer_literal] = ACTIONS(1601), + [aux_sym_string_literal_token1] = ACTIONS(1601), + [sym_char_literal] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1603), + [anon_sym_false] = ACTIONS(1603), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1603), + [sym_super] = ACTIONS(1603), + [sym_crate] = ACTIONS(1603), + [sym_metavariable] = ACTIONS(1601), + [sym_raw_string_literal] = ACTIONS(1601), + [sym_float_literal] = ACTIONS(1601), [sym_block_comment] = ACTIONS(3), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(1596), - [sym_identifier] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_macro_rules_BANG] = ACTIONS(1596), - [anon_sym_LPAREN] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1596), - [anon_sym_STAR] = ACTIONS(1596), - [anon_sym_u8] = ACTIONS(1598), - [anon_sym_i8] = ACTIONS(1598), - [anon_sym_u16] = ACTIONS(1598), - [anon_sym_i16] = ACTIONS(1598), - [anon_sym_u32] = ACTIONS(1598), - [anon_sym_i32] = ACTIONS(1598), - [anon_sym_u64] = ACTIONS(1598), - [anon_sym_i64] = ACTIONS(1598), - [anon_sym_u128] = ACTIONS(1598), - [anon_sym_i128] = ACTIONS(1598), - [anon_sym_isize] = ACTIONS(1598), - [anon_sym_usize] = ACTIONS(1598), - [anon_sym_f32] = ACTIONS(1598), - [anon_sym_f64] = ACTIONS(1598), - [anon_sym_bool] = ACTIONS(1598), - [anon_sym_str] = ACTIONS(1598), - [anon_sym_char] = ACTIONS(1598), - [anon_sym_SQUOTE] = ACTIONS(1598), - [anon_sym_async] = ACTIONS(1598), - [anon_sym_break] = ACTIONS(1598), - [anon_sym_const] = ACTIONS(1598), - [anon_sym_continue] = ACTIONS(1598), - [anon_sym_default] = ACTIONS(1598), - [anon_sym_enum] = ACTIONS(1598), - [anon_sym_fn] = ACTIONS(1598), - [anon_sym_for] = ACTIONS(1598), - [anon_sym_if] = ACTIONS(1598), - [anon_sym_impl] = ACTIONS(1598), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_loop] = ACTIONS(1598), - [anon_sym_match] = ACTIONS(1598), - [anon_sym_mod] = ACTIONS(1598), - [anon_sym_pub] = ACTIONS(1598), - [anon_sym_return] = ACTIONS(1598), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_struct] = ACTIONS(1598), - [anon_sym_trait] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_union] = ACTIONS(1598), - [anon_sym_unsafe] = ACTIONS(1598), - [anon_sym_use] = ACTIONS(1598), - [anon_sym_while] = ACTIONS(1598), - [anon_sym_POUND] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(1596), - [anon_sym_extern] = ACTIONS(1598), - [anon_sym_LT] = ACTIONS(1596), - [anon_sym_COLON_COLON] = ACTIONS(1596), - [anon_sym_AMP] = ACTIONS(1596), - [anon_sym_DOT_DOT] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_move] = ACTIONS(1598), - [sym_integer_literal] = ACTIONS(1596), - [aux_sym_string_literal_token1] = ACTIONS(1596), - [sym_char_literal] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1598), - [anon_sym_false] = ACTIONS(1598), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1598), - [sym_super] = ACTIONS(1598), - [sym_crate] = ACTIONS(1598), - [sym_metavariable] = ACTIONS(1596), - [sym_raw_string_literal] = ACTIONS(1596), - [sym_float_literal] = ACTIONS(1596), + [ts_builtin_sym_end] = ACTIONS(1605), + [sym_identifier] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_macro_rules_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_u8] = ACTIONS(1607), + [anon_sym_i8] = ACTIONS(1607), + [anon_sym_u16] = ACTIONS(1607), + [anon_sym_i16] = ACTIONS(1607), + [anon_sym_u32] = ACTIONS(1607), + [anon_sym_i32] = ACTIONS(1607), + [anon_sym_u64] = ACTIONS(1607), + [anon_sym_i64] = ACTIONS(1607), + [anon_sym_u128] = ACTIONS(1607), + [anon_sym_i128] = ACTIONS(1607), + [anon_sym_isize] = ACTIONS(1607), + [anon_sym_usize] = ACTIONS(1607), + [anon_sym_f32] = ACTIONS(1607), + [anon_sym_f64] = ACTIONS(1607), + [anon_sym_bool] = ACTIONS(1607), + [anon_sym_str] = ACTIONS(1607), + [anon_sym_char] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1607), + [anon_sym_enum] = ACTIONS(1607), + [anon_sym_fn] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_impl] = ACTIONS(1607), + [anon_sym_let] = ACTIONS(1607), + [anon_sym_loop] = ACTIONS(1607), + [anon_sym_match] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_pub] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_static] = ACTIONS(1607), + [anon_sym_struct] = ACTIONS(1607), + [anon_sym_trait] = ACTIONS(1607), + [anon_sym_type] = ACTIONS(1607), + [anon_sym_union] = ACTIONS(1607), + [anon_sym_unsafe] = ACTIONS(1607), + [anon_sym_use] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_move] = ACTIONS(1607), + [sym_integer_literal] = ACTIONS(1605), + [aux_sym_string_literal_token1] = ACTIONS(1605), + [sym_char_literal] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1605), + [sym_raw_string_literal] = ACTIONS(1605), + [sym_float_literal] = ACTIONS(1605), [sym_block_comment] = ACTIONS(3), }, [377] = { - [ts_builtin_sym_end] = ACTIONS(1600), - [sym_identifier] = ACTIONS(1602), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_macro_rules_BANG] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_RBRACE] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1600), - [anon_sym_u8] = ACTIONS(1602), - [anon_sym_i8] = ACTIONS(1602), - [anon_sym_u16] = ACTIONS(1602), - [anon_sym_i16] = ACTIONS(1602), - [anon_sym_u32] = ACTIONS(1602), - [anon_sym_i32] = ACTIONS(1602), - [anon_sym_u64] = ACTIONS(1602), - [anon_sym_i64] = ACTIONS(1602), - [anon_sym_u128] = ACTIONS(1602), - [anon_sym_i128] = ACTIONS(1602), - [anon_sym_isize] = ACTIONS(1602), - [anon_sym_usize] = ACTIONS(1602), - [anon_sym_f32] = ACTIONS(1602), - [anon_sym_f64] = ACTIONS(1602), - [anon_sym_bool] = ACTIONS(1602), - [anon_sym_str] = ACTIONS(1602), - [anon_sym_char] = ACTIONS(1602), - [anon_sym_SQUOTE] = ACTIONS(1602), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_break] = ACTIONS(1602), - [anon_sym_const] = ACTIONS(1602), - [anon_sym_continue] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1602), - [anon_sym_enum] = ACTIONS(1602), - [anon_sym_fn] = ACTIONS(1602), - [anon_sym_for] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(1602), - [anon_sym_impl] = ACTIONS(1602), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_loop] = ACTIONS(1602), - [anon_sym_match] = ACTIONS(1602), - [anon_sym_mod] = ACTIONS(1602), - [anon_sym_pub] = ACTIONS(1602), - [anon_sym_return] = ACTIONS(1602), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_struct] = ACTIONS(1602), - [anon_sym_trait] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_union] = ACTIONS(1602), - [anon_sym_unsafe] = ACTIONS(1602), - [anon_sym_use] = ACTIONS(1602), - [anon_sym_while] = ACTIONS(1602), - [anon_sym_POUND] = ACTIONS(1600), - [anon_sym_BANG] = ACTIONS(1600), - [anon_sym_extern] = ACTIONS(1602), - [anon_sym_LT] = ACTIONS(1600), - [anon_sym_COLON_COLON] = ACTIONS(1600), - [anon_sym_AMP] = ACTIONS(1600), - [anon_sym_DOT_DOT] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_PIPE] = ACTIONS(1600), - [anon_sym_move] = ACTIONS(1602), - [sym_integer_literal] = ACTIONS(1600), - [aux_sym_string_literal_token1] = ACTIONS(1600), - [sym_char_literal] = ACTIONS(1600), - [anon_sym_true] = ACTIONS(1602), - [anon_sym_false] = ACTIONS(1602), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1602), - [sym_super] = ACTIONS(1602), - [sym_crate] = ACTIONS(1602), - [sym_metavariable] = ACTIONS(1600), - [sym_raw_string_literal] = ACTIONS(1600), - [sym_float_literal] = ACTIONS(1600), + [ts_builtin_sym_end] = ACTIONS(1609), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_macro_rules_BANG] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_u8] = ACTIONS(1611), + [anon_sym_i8] = ACTIONS(1611), + [anon_sym_u16] = ACTIONS(1611), + [anon_sym_i16] = ACTIONS(1611), + [anon_sym_u32] = ACTIONS(1611), + [anon_sym_i32] = ACTIONS(1611), + [anon_sym_u64] = ACTIONS(1611), + [anon_sym_i64] = ACTIONS(1611), + [anon_sym_u128] = ACTIONS(1611), + [anon_sym_i128] = ACTIONS(1611), + [anon_sym_isize] = ACTIONS(1611), + [anon_sym_usize] = ACTIONS(1611), + [anon_sym_f32] = ACTIONS(1611), + [anon_sym_f64] = ACTIONS(1611), + [anon_sym_bool] = ACTIONS(1611), + [anon_sym_str] = ACTIONS(1611), + [anon_sym_char] = ACTIONS(1611), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_break] = ACTIONS(1611), + [anon_sym_const] = ACTIONS(1611), + [anon_sym_continue] = ACTIONS(1611), + [anon_sym_default] = ACTIONS(1611), + [anon_sym_enum] = ACTIONS(1611), + [anon_sym_fn] = ACTIONS(1611), + [anon_sym_for] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1611), + [anon_sym_impl] = ACTIONS(1611), + [anon_sym_let] = ACTIONS(1611), + [anon_sym_loop] = ACTIONS(1611), + [anon_sym_match] = ACTIONS(1611), + [anon_sym_mod] = ACTIONS(1611), + [anon_sym_pub] = ACTIONS(1611), + [anon_sym_return] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(1611), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_trait] = ACTIONS(1611), + [anon_sym_type] = ACTIONS(1611), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1611), + [anon_sym_use] = ACTIONS(1611), + [anon_sym_while] = ACTIONS(1611), + [anon_sym_POUND] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_extern] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(1609), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_move] = ACTIONS(1611), + [sym_integer_literal] = ACTIONS(1609), + [aux_sym_string_literal_token1] = ACTIONS(1609), + [sym_char_literal] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1611), + [anon_sym_false] = ACTIONS(1611), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1611), + [sym_super] = ACTIONS(1611), + [sym_crate] = ACTIONS(1611), + [sym_metavariable] = ACTIONS(1609), + [sym_raw_string_literal] = ACTIONS(1609), + [sym_float_literal] = ACTIONS(1609), [sym_block_comment] = ACTIONS(3), }, [378] = { - [ts_builtin_sym_end] = ACTIONS(1604), - [sym_identifier] = ACTIONS(1606), - [anon_sym_SEMI] = ACTIONS(1604), - [anon_sym_macro_rules_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_RBRACE] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1604), - [anon_sym_u8] = ACTIONS(1606), - [anon_sym_i8] = ACTIONS(1606), - [anon_sym_u16] = ACTIONS(1606), - [anon_sym_i16] = ACTIONS(1606), - [anon_sym_u32] = ACTIONS(1606), - [anon_sym_i32] = ACTIONS(1606), - [anon_sym_u64] = ACTIONS(1606), - [anon_sym_i64] = ACTIONS(1606), - [anon_sym_u128] = ACTIONS(1606), - [anon_sym_i128] = ACTIONS(1606), - [anon_sym_isize] = ACTIONS(1606), - [anon_sym_usize] = ACTIONS(1606), - [anon_sym_f32] = ACTIONS(1606), - [anon_sym_f64] = ACTIONS(1606), - [anon_sym_bool] = ACTIONS(1606), - [anon_sym_str] = ACTIONS(1606), - [anon_sym_char] = ACTIONS(1606), - [anon_sym_SQUOTE] = ACTIONS(1606), - [anon_sym_async] = ACTIONS(1606), - [anon_sym_break] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1606), - [anon_sym_continue] = ACTIONS(1606), - [anon_sym_default] = ACTIONS(1606), - [anon_sym_enum] = ACTIONS(1606), - [anon_sym_fn] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(1606), - [anon_sym_if] = ACTIONS(1606), - [anon_sym_impl] = ACTIONS(1606), - [anon_sym_let] = ACTIONS(1606), - [anon_sym_loop] = ACTIONS(1606), - [anon_sym_match] = ACTIONS(1606), - [anon_sym_mod] = ACTIONS(1606), - [anon_sym_pub] = ACTIONS(1606), - [anon_sym_return] = ACTIONS(1606), - [anon_sym_static] = ACTIONS(1606), - [anon_sym_struct] = ACTIONS(1606), - [anon_sym_trait] = ACTIONS(1606), - [anon_sym_type] = ACTIONS(1606), - [anon_sym_union] = ACTIONS(1606), - [anon_sym_unsafe] = ACTIONS(1606), - [anon_sym_use] = ACTIONS(1606), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_POUND] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_extern] = ACTIONS(1606), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1604), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_DOT_DOT] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_move] = ACTIONS(1606), - [sym_integer_literal] = ACTIONS(1604), - [aux_sym_string_literal_token1] = ACTIONS(1604), - [sym_char_literal] = ACTIONS(1604), - [anon_sym_true] = ACTIONS(1606), - [anon_sym_false] = ACTIONS(1606), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1606), - [sym_super] = ACTIONS(1606), - [sym_crate] = ACTIONS(1606), - [sym_metavariable] = ACTIONS(1604), - [sym_raw_string_literal] = ACTIONS(1604), - [sym_float_literal] = ACTIONS(1604), + [ts_builtin_sym_end] = ACTIONS(1613), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SEMI] = ACTIONS(1613), + [anon_sym_macro_rules_BANG] = ACTIONS(1613), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_RBRACE] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1613), + [anon_sym_u8] = ACTIONS(1615), + [anon_sym_i8] = ACTIONS(1615), + [anon_sym_u16] = ACTIONS(1615), + [anon_sym_i16] = ACTIONS(1615), + [anon_sym_u32] = ACTIONS(1615), + [anon_sym_i32] = ACTIONS(1615), + [anon_sym_u64] = ACTIONS(1615), + [anon_sym_i64] = ACTIONS(1615), + [anon_sym_u128] = ACTIONS(1615), + [anon_sym_i128] = ACTIONS(1615), + [anon_sym_isize] = ACTIONS(1615), + [anon_sym_usize] = ACTIONS(1615), + [anon_sym_f32] = ACTIONS(1615), + [anon_sym_f64] = ACTIONS(1615), + [anon_sym_bool] = ACTIONS(1615), + [anon_sym_str] = ACTIONS(1615), + [anon_sym_char] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_async] = ACTIONS(1615), + [anon_sym_break] = ACTIONS(1615), + [anon_sym_const] = ACTIONS(1615), + [anon_sym_continue] = ACTIONS(1615), + [anon_sym_default] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1615), + [anon_sym_for] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1615), + [anon_sym_loop] = ACTIONS(1615), + [anon_sym_match] = ACTIONS(1615), + [anon_sym_mod] = ACTIONS(1615), + [anon_sym_pub] = ACTIONS(1615), + [anon_sym_return] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1615), + [anon_sym_struct] = ACTIONS(1615), + [anon_sym_trait] = ACTIONS(1615), + [anon_sym_type] = ACTIONS(1615), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1615), + [anon_sym_use] = ACTIONS(1615), + [anon_sym_while] = ACTIONS(1615), + [anon_sym_POUND] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1613), + [anon_sym_extern] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(1613), + [anon_sym_COLON_COLON] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_DOT_DOT] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_PIPE] = ACTIONS(1613), + [anon_sym_move] = ACTIONS(1615), + [sym_integer_literal] = ACTIONS(1613), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1613), + [sym_raw_string_literal] = ACTIONS(1613), + [sym_float_literal] = ACTIONS(1613), [sym_block_comment] = ACTIONS(3), }, [379] = { - [ts_builtin_sym_end] = ACTIONS(1608), - [sym_identifier] = ACTIONS(1610), - [anon_sym_SEMI] = ACTIONS(1608), - [anon_sym_macro_rules_BANG] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1610), - [anon_sym_i8] = ACTIONS(1610), - [anon_sym_u16] = ACTIONS(1610), - [anon_sym_i16] = ACTIONS(1610), - [anon_sym_u32] = ACTIONS(1610), - [anon_sym_i32] = ACTIONS(1610), - [anon_sym_u64] = ACTIONS(1610), - [anon_sym_i64] = ACTIONS(1610), - [anon_sym_u128] = ACTIONS(1610), - [anon_sym_i128] = ACTIONS(1610), - [anon_sym_isize] = ACTIONS(1610), - [anon_sym_usize] = ACTIONS(1610), - [anon_sym_f32] = ACTIONS(1610), - [anon_sym_f64] = ACTIONS(1610), - [anon_sym_bool] = ACTIONS(1610), - [anon_sym_str] = ACTIONS(1610), - [anon_sym_char] = ACTIONS(1610), - [anon_sym_SQUOTE] = ACTIONS(1610), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_break] = ACTIONS(1610), - [anon_sym_const] = ACTIONS(1610), - [anon_sym_continue] = ACTIONS(1610), - [anon_sym_default] = ACTIONS(1610), - [anon_sym_enum] = ACTIONS(1610), - [anon_sym_fn] = ACTIONS(1610), - [anon_sym_for] = ACTIONS(1610), - [anon_sym_if] = ACTIONS(1610), - [anon_sym_impl] = ACTIONS(1610), - [anon_sym_let] = ACTIONS(1610), - [anon_sym_loop] = ACTIONS(1610), - [anon_sym_match] = ACTIONS(1610), - [anon_sym_mod] = ACTIONS(1610), - [anon_sym_pub] = ACTIONS(1610), - [anon_sym_return] = ACTIONS(1610), - [anon_sym_static] = ACTIONS(1610), - [anon_sym_struct] = ACTIONS(1610), - [anon_sym_trait] = ACTIONS(1610), - [anon_sym_type] = ACTIONS(1610), - [anon_sym_union] = ACTIONS(1610), - [anon_sym_unsafe] = ACTIONS(1610), - [anon_sym_use] = ACTIONS(1610), - [anon_sym_while] = ACTIONS(1610), - [anon_sym_POUND] = ACTIONS(1608), - [anon_sym_BANG] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(1608), - [anon_sym_DOT_DOT] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_PIPE] = ACTIONS(1608), - [anon_sym_move] = ACTIONS(1610), - [sym_integer_literal] = ACTIONS(1608), - [aux_sym_string_literal_token1] = ACTIONS(1608), - [sym_char_literal] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1610), - [anon_sym_false] = ACTIONS(1610), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1610), - [sym_super] = ACTIONS(1610), - [sym_crate] = ACTIONS(1610), - [sym_metavariable] = ACTIONS(1608), - [sym_raw_string_literal] = ACTIONS(1608), - [sym_float_literal] = ACTIONS(1608), + [ts_builtin_sym_end] = ACTIONS(1617), + [sym_identifier] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1617), + [anon_sym_macro_rules_BANG] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_RBRACE] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1617), + [anon_sym_u8] = ACTIONS(1619), + [anon_sym_i8] = ACTIONS(1619), + [anon_sym_u16] = ACTIONS(1619), + [anon_sym_i16] = ACTIONS(1619), + [anon_sym_u32] = ACTIONS(1619), + [anon_sym_i32] = ACTIONS(1619), + [anon_sym_u64] = ACTIONS(1619), + [anon_sym_i64] = ACTIONS(1619), + [anon_sym_u128] = ACTIONS(1619), + [anon_sym_i128] = ACTIONS(1619), + [anon_sym_isize] = ACTIONS(1619), + [anon_sym_usize] = ACTIONS(1619), + [anon_sym_f32] = ACTIONS(1619), + [anon_sym_f64] = ACTIONS(1619), + [anon_sym_bool] = ACTIONS(1619), + [anon_sym_str] = ACTIONS(1619), + [anon_sym_char] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_async] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [anon_sym_const] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_enum] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_for] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1619), + [anon_sym_impl] = ACTIONS(1619), + [anon_sym_let] = ACTIONS(1619), + [anon_sym_loop] = ACTIONS(1619), + [anon_sym_match] = ACTIONS(1619), + [anon_sym_mod] = ACTIONS(1619), + [anon_sym_pub] = ACTIONS(1619), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_static] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1619), + [anon_sym_trait] = ACTIONS(1619), + [anon_sym_type] = ACTIONS(1619), + [anon_sym_union] = ACTIONS(1619), + [anon_sym_unsafe] = ACTIONS(1619), + [anon_sym_use] = ACTIONS(1619), + [anon_sym_while] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1617), + [anon_sym_extern] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(1617), + [anon_sym_COLON_COLON] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_DOT_DOT] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_PIPE] = ACTIONS(1617), + [anon_sym_move] = ACTIONS(1619), + [sym_integer_literal] = ACTIONS(1617), + [aux_sym_string_literal_token1] = ACTIONS(1617), + [sym_char_literal] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1619), + [anon_sym_false] = ACTIONS(1619), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1617), + [sym_raw_string_literal] = ACTIONS(1617), + [sym_float_literal] = ACTIONS(1617), [sym_block_comment] = ACTIONS(3), }, [380] = { - [ts_builtin_sym_end] = ACTIONS(1612), - [sym_identifier] = ACTIONS(1614), - [anon_sym_SEMI] = ACTIONS(1612), - [anon_sym_macro_rules_BANG] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1612), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1612), - [anon_sym_u8] = ACTIONS(1614), - [anon_sym_i8] = ACTIONS(1614), - [anon_sym_u16] = ACTIONS(1614), - [anon_sym_i16] = ACTIONS(1614), - [anon_sym_u32] = ACTIONS(1614), - [anon_sym_i32] = ACTIONS(1614), - [anon_sym_u64] = ACTIONS(1614), - [anon_sym_i64] = ACTIONS(1614), - [anon_sym_u128] = ACTIONS(1614), - [anon_sym_i128] = ACTIONS(1614), - [anon_sym_isize] = ACTIONS(1614), - [anon_sym_usize] = ACTIONS(1614), - [anon_sym_f32] = ACTIONS(1614), - [anon_sym_f64] = ACTIONS(1614), - [anon_sym_bool] = ACTIONS(1614), - [anon_sym_str] = ACTIONS(1614), - [anon_sym_char] = ACTIONS(1614), - [anon_sym_SQUOTE] = ACTIONS(1614), - [anon_sym_async] = ACTIONS(1614), - [anon_sym_break] = ACTIONS(1614), - [anon_sym_const] = ACTIONS(1614), - [anon_sym_continue] = ACTIONS(1614), - [anon_sym_default] = ACTIONS(1614), - [anon_sym_enum] = ACTIONS(1614), - [anon_sym_fn] = ACTIONS(1614), - [anon_sym_for] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(1614), - [anon_sym_impl] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(1614), - [anon_sym_loop] = ACTIONS(1614), - [anon_sym_match] = ACTIONS(1614), - [anon_sym_mod] = ACTIONS(1614), - [anon_sym_pub] = ACTIONS(1614), - [anon_sym_return] = ACTIONS(1614), - [anon_sym_static] = ACTIONS(1614), - [anon_sym_struct] = ACTIONS(1614), - [anon_sym_trait] = ACTIONS(1614), - [anon_sym_type] = ACTIONS(1614), - [anon_sym_union] = ACTIONS(1614), - [anon_sym_unsafe] = ACTIONS(1614), - [anon_sym_use] = ACTIONS(1614), - [anon_sym_while] = ACTIONS(1614), - [anon_sym_POUND] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1612), - [anon_sym_extern] = ACTIONS(1614), - [anon_sym_LT] = ACTIONS(1612), - [anon_sym_COLON_COLON] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_DOT_DOT] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_move] = ACTIONS(1614), - [sym_integer_literal] = ACTIONS(1612), - [aux_sym_string_literal_token1] = ACTIONS(1612), - [sym_char_literal] = ACTIONS(1612), - [anon_sym_true] = ACTIONS(1614), - [anon_sym_false] = ACTIONS(1614), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1614), - [sym_super] = ACTIONS(1614), - [sym_crate] = ACTIONS(1614), - [sym_metavariable] = ACTIONS(1612), - [sym_raw_string_literal] = ACTIONS(1612), - [sym_float_literal] = ACTIONS(1612), + [ts_builtin_sym_end] = ACTIONS(1621), + [sym_identifier] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_macro_rules_BANG] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_RBRACE] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_async] = ACTIONS(1623), + [anon_sym_break] = ACTIONS(1623), + [anon_sym_const] = ACTIONS(1623), + [anon_sym_continue] = ACTIONS(1623), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_enum] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_for] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1623), + [anon_sym_let] = ACTIONS(1623), + [anon_sym_loop] = ACTIONS(1623), + [anon_sym_match] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_pub] = ACTIONS(1623), + [anon_sym_return] = ACTIONS(1623), + [anon_sym_static] = ACTIONS(1623), + [anon_sym_struct] = ACTIONS(1623), + [anon_sym_trait] = ACTIONS(1623), + [anon_sym_type] = ACTIONS(1623), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1623), + [anon_sym_use] = ACTIONS(1623), + [anon_sym_while] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1621), + [anon_sym_extern] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_COLON_COLON] = ACTIONS(1621), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_DOT_DOT] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_move] = ACTIONS(1623), + [sym_integer_literal] = ACTIONS(1621), + [aux_sym_string_literal_token1] = ACTIONS(1621), + [sym_char_literal] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1623), + [anon_sym_false] = ACTIONS(1623), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1623), + [sym_super] = ACTIONS(1623), + [sym_crate] = ACTIONS(1623), + [sym_metavariable] = ACTIONS(1621), + [sym_raw_string_literal] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1621), [sym_block_comment] = ACTIONS(3), }, [381] = { - [ts_builtin_sym_end] = ACTIONS(1616), - [sym_identifier] = ACTIONS(1618), - [anon_sym_SEMI] = ACTIONS(1616), - [anon_sym_macro_rules_BANG] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1616), - [anon_sym_RBRACE] = ACTIONS(1616), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1616), - [anon_sym_u8] = ACTIONS(1618), - [anon_sym_i8] = ACTIONS(1618), - [anon_sym_u16] = ACTIONS(1618), - [anon_sym_i16] = ACTIONS(1618), - [anon_sym_u32] = ACTIONS(1618), - [anon_sym_i32] = ACTIONS(1618), - [anon_sym_u64] = ACTIONS(1618), - [anon_sym_i64] = ACTIONS(1618), - [anon_sym_u128] = ACTIONS(1618), - [anon_sym_i128] = ACTIONS(1618), - [anon_sym_isize] = ACTIONS(1618), - [anon_sym_usize] = ACTIONS(1618), - [anon_sym_f32] = ACTIONS(1618), - [anon_sym_f64] = ACTIONS(1618), - [anon_sym_bool] = ACTIONS(1618), - [anon_sym_str] = ACTIONS(1618), - [anon_sym_char] = ACTIONS(1618), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_break] = ACTIONS(1618), - [anon_sym_const] = ACTIONS(1618), - [anon_sym_continue] = ACTIONS(1618), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_enum] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1618), - [anon_sym_for] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1618), - [anon_sym_impl] = ACTIONS(1618), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_loop] = ACTIONS(1618), - [anon_sym_match] = ACTIONS(1618), - [anon_sym_mod] = ACTIONS(1618), - [anon_sym_pub] = ACTIONS(1618), - [anon_sym_return] = ACTIONS(1618), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_struct] = ACTIONS(1618), - [anon_sym_trait] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_union] = ACTIONS(1618), - [anon_sym_unsafe] = ACTIONS(1618), - [anon_sym_use] = ACTIONS(1618), - [anon_sym_while] = ACTIONS(1618), - [anon_sym_POUND] = ACTIONS(1616), - [anon_sym_BANG] = ACTIONS(1616), - [anon_sym_extern] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(1616), - [anon_sym_COLON_COLON] = ACTIONS(1616), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_DOT_DOT] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1616), - [anon_sym_move] = ACTIONS(1618), - [sym_integer_literal] = ACTIONS(1616), - [aux_sym_string_literal_token1] = ACTIONS(1616), - [sym_char_literal] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1618), - [anon_sym_false] = ACTIONS(1618), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1618), - [sym_super] = ACTIONS(1618), - [sym_crate] = ACTIONS(1618), - [sym_metavariable] = ACTIONS(1616), - [sym_raw_string_literal] = ACTIONS(1616), - [sym_float_literal] = ACTIONS(1616), + [ts_builtin_sym_end] = ACTIONS(1625), + [sym_identifier] = ACTIONS(1627), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_macro_rules_BANG] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1625), + [anon_sym_u8] = ACTIONS(1627), + [anon_sym_i8] = ACTIONS(1627), + [anon_sym_u16] = ACTIONS(1627), + [anon_sym_i16] = ACTIONS(1627), + [anon_sym_u32] = ACTIONS(1627), + [anon_sym_i32] = ACTIONS(1627), + [anon_sym_u64] = ACTIONS(1627), + [anon_sym_i64] = ACTIONS(1627), + [anon_sym_u128] = ACTIONS(1627), + [anon_sym_i128] = ACTIONS(1627), + [anon_sym_isize] = ACTIONS(1627), + [anon_sym_usize] = ACTIONS(1627), + [anon_sym_f32] = ACTIONS(1627), + [anon_sym_f64] = ACTIONS(1627), + [anon_sym_bool] = ACTIONS(1627), + [anon_sym_str] = ACTIONS(1627), + [anon_sym_char] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_async] = ACTIONS(1627), + [anon_sym_break] = ACTIONS(1627), + [anon_sym_const] = ACTIONS(1627), + [anon_sym_continue] = ACTIONS(1627), + [anon_sym_default] = ACTIONS(1627), + [anon_sym_enum] = ACTIONS(1627), + [anon_sym_fn] = ACTIONS(1627), + [anon_sym_for] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1627), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_loop] = ACTIONS(1627), + [anon_sym_match] = ACTIONS(1627), + [anon_sym_mod] = ACTIONS(1627), + [anon_sym_pub] = ACTIONS(1627), + [anon_sym_return] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_struct] = ACTIONS(1627), + [anon_sym_trait] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1627), + [anon_sym_use] = ACTIONS(1627), + [anon_sym_while] = ACTIONS(1627), + [anon_sym_POUND] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1625), + [anon_sym_extern] = ACTIONS(1627), + [anon_sym_LT] = ACTIONS(1625), + [anon_sym_COLON_COLON] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_move] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1625), + [aux_sym_string_literal_token1] = ACTIONS(1625), + [sym_char_literal] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1627), + [anon_sym_false] = ACTIONS(1627), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1627), + [sym_super] = ACTIONS(1627), + [sym_crate] = ACTIONS(1627), + [sym_metavariable] = ACTIONS(1625), + [sym_raw_string_literal] = ACTIONS(1625), + [sym_float_literal] = ACTIONS(1625), [sym_block_comment] = ACTIONS(3), }, [382] = { - [ts_builtin_sym_end] = ACTIONS(1620), - [sym_identifier] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_macro_rules_BANG] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_u8] = ACTIONS(1622), - [anon_sym_i8] = ACTIONS(1622), - [anon_sym_u16] = ACTIONS(1622), - [anon_sym_i16] = ACTIONS(1622), - [anon_sym_u32] = ACTIONS(1622), - [anon_sym_i32] = ACTIONS(1622), - [anon_sym_u64] = ACTIONS(1622), - [anon_sym_i64] = ACTIONS(1622), - [anon_sym_u128] = ACTIONS(1622), - [anon_sym_i128] = ACTIONS(1622), - [anon_sym_isize] = ACTIONS(1622), - [anon_sym_usize] = ACTIONS(1622), - [anon_sym_f32] = ACTIONS(1622), - [anon_sym_f64] = ACTIONS(1622), - [anon_sym_bool] = ACTIONS(1622), - [anon_sym_str] = ACTIONS(1622), - [anon_sym_char] = ACTIONS(1622), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_async] = ACTIONS(1622), - [anon_sym_break] = ACTIONS(1622), - [anon_sym_const] = ACTIONS(1622), - [anon_sym_continue] = ACTIONS(1622), - [anon_sym_default] = ACTIONS(1622), - [anon_sym_enum] = ACTIONS(1622), - [anon_sym_fn] = ACTIONS(1622), - [anon_sym_for] = ACTIONS(1622), - [anon_sym_if] = ACTIONS(1622), - [anon_sym_impl] = ACTIONS(1622), - [anon_sym_let] = ACTIONS(1622), - [anon_sym_loop] = ACTIONS(1622), - [anon_sym_match] = ACTIONS(1622), - [anon_sym_mod] = ACTIONS(1622), - [anon_sym_pub] = ACTIONS(1622), - [anon_sym_return] = ACTIONS(1622), - [anon_sym_static] = ACTIONS(1622), - [anon_sym_struct] = ACTIONS(1622), - [anon_sym_trait] = ACTIONS(1622), - [anon_sym_type] = ACTIONS(1622), - [anon_sym_union] = ACTIONS(1622), - [anon_sym_unsafe] = ACTIONS(1622), - [anon_sym_use] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(1622), - [anon_sym_POUND] = ACTIONS(1620), - [anon_sym_BANG] = ACTIONS(1620), - [anon_sym_extern] = ACTIONS(1622), - [anon_sym_LT] = ACTIONS(1620), - [anon_sym_COLON_COLON] = ACTIONS(1620), - [anon_sym_AMP] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_move] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(1620), - [aux_sym_string_literal_token1] = ACTIONS(1620), - [sym_char_literal] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1622), - [sym_super] = ACTIONS(1622), - [sym_crate] = ACTIONS(1622), - [sym_metavariable] = ACTIONS(1620), - [sym_raw_string_literal] = ACTIONS(1620), - [sym_float_literal] = ACTIONS(1620), + [ts_builtin_sym_end] = ACTIONS(1629), + [sym_identifier] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_macro_rules_BANG] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1629), + [anon_sym_u8] = ACTIONS(1631), + [anon_sym_i8] = ACTIONS(1631), + [anon_sym_u16] = ACTIONS(1631), + [anon_sym_i16] = ACTIONS(1631), + [anon_sym_u32] = ACTIONS(1631), + [anon_sym_i32] = ACTIONS(1631), + [anon_sym_u64] = ACTIONS(1631), + [anon_sym_i64] = ACTIONS(1631), + [anon_sym_u128] = ACTIONS(1631), + [anon_sym_i128] = ACTIONS(1631), + [anon_sym_isize] = ACTIONS(1631), + [anon_sym_usize] = ACTIONS(1631), + [anon_sym_f32] = ACTIONS(1631), + [anon_sym_f64] = ACTIONS(1631), + [anon_sym_bool] = ACTIONS(1631), + [anon_sym_str] = ACTIONS(1631), + [anon_sym_char] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_default] = ACTIONS(1631), + [anon_sym_enum] = ACTIONS(1631), + [anon_sym_fn] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_impl] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1631), + [anon_sym_loop] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_mod] = ACTIONS(1631), + [anon_sym_pub] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_static] = ACTIONS(1631), + [anon_sym_struct] = ACTIONS(1631), + [anon_sym_trait] = ACTIONS(1631), + [anon_sym_type] = ACTIONS(1631), + [anon_sym_union] = ACTIONS(1631), + [anon_sym_unsafe] = ACTIONS(1631), + [anon_sym_use] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_POUND] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1629), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_LT] = ACTIONS(1629), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_DOT_DOT] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_move] = ACTIONS(1631), + [sym_integer_literal] = ACTIONS(1629), + [aux_sym_string_literal_token1] = ACTIONS(1629), + [sym_char_literal] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1631), + [anon_sym_false] = ACTIONS(1631), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1629), + [sym_raw_string_literal] = ACTIONS(1629), + [sym_float_literal] = ACTIONS(1629), [sym_block_comment] = ACTIONS(3), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(1624), - [sym_identifier] = ACTIONS(1626), - [anon_sym_SEMI] = ACTIONS(1624), - [anon_sym_macro_rules_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1624), - [anon_sym_LBRACK] = ACTIONS(1624), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_u8] = ACTIONS(1626), - [anon_sym_i8] = ACTIONS(1626), - [anon_sym_u16] = ACTIONS(1626), - [anon_sym_i16] = ACTIONS(1626), - [anon_sym_u32] = ACTIONS(1626), - [anon_sym_i32] = ACTIONS(1626), - [anon_sym_u64] = ACTIONS(1626), - [anon_sym_i64] = ACTIONS(1626), - [anon_sym_u128] = ACTIONS(1626), - [anon_sym_i128] = ACTIONS(1626), - [anon_sym_isize] = ACTIONS(1626), - [anon_sym_usize] = ACTIONS(1626), - [anon_sym_f32] = ACTIONS(1626), - [anon_sym_f64] = ACTIONS(1626), - [anon_sym_bool] = ACTIONS(1626), - [anon_sym_str] = ACTIONS(1626), - [anon_sym_char] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_async] = ACTIONS(1626), - [anon_sym_break] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1626), - [anon_sym_continue] = ACTIONS(1626), - [anon_sym_default] = ACTIONS(1626), - [anon_sym_enum] = ACTIONS(1626), - [anon_sym_fn] = ACTIONS(1626), - [anon_sym_for] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1626), - [anon_sym_impl] = ACTIONS(1626), - [anon_sym_let] = ACTIONS(1626), - [anon_sym_loop] = ACTIONS(1626), - [anon_sym_match] = ACTIONS(1626), - [anon_sym_mod] = ACTIONS(1626), - [anon_sym_pub] = ACTIONS(1626), - [anon_sym_return] = ACTIONS(1626), - [anon_sym_static] = ACTIONS(1626), - [anon_sym_struct] = ACTIONS(1626), - [anon_sym_trait] = ACTIONS(1626), - [anon_sym_type] = ACTIONS(1626), - [anon_sym_union] = ACTIONS(1626), - [anon_sym_unsafe] = ACTIONS(1626), - [anon_sym_use] = ACTIONS(1626), - [anon_sym_while] = ACTIONS(1626), - [anon_sym_POUND] = ACTIONS(1624), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_extern] = ACTIONS(1626), - [anon_sym_LT] = ACTIONS(1624), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(1624), - [anon_sym_DOT_DOT] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_PIPE] = ACTIONS(1624), - [anon_sym_move] = ACTIONS(1626), - [sym_integer_literal] = ACTIONS(1624), - [aux_sym_string_literal_token1] = ACTIONS(1624), - [sym_char_literal] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(1626), - [anon_sym_false] = ACTIONS(1626), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1626), - [sym_super] = ACTIONS(1626), - [sym_crate] = ACTIONS(1626), - [sym_metavariable] = ACTIONS(1624), - [sym_raw_string_literal] = ACTIONS(1624), - [sym_float_literal] = ACTIONS(1624), + [ts_builtin_sym_end] = ACTIONS(1633), + [sym_identifier] = ACTIONS(1635), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_macro_rules_BANG] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1635), + [anon_sym_i8] = ACTIONS(1635), + [anon_sym_u16] = ACTIONS(1635), + [anon_sym_i16] = ACTIONS(1635), + [anon_sym_u32] = ACTIONS(1635), + [anon_sym_i32] = ACTIONS(1635), + [anon_sym_u64] = ACTIONS(1635), + [anon_sym_i64] = ACTIONS(1635), + [anon_sym_u128] = ACTIONS(1635), + [anon_sym_i128] = ACTIONS(1635), + [anon_sym_isize] = ACTIONS(1635), + [anon_sym_usize] = ACTIONS(1635), + [anon_sym_f32] = ACTIONS(1635), + [anon_sym_f64] = ACTIONS(1635), + [anon_sym_bool] = ACTIONS(1635), + [anon_sym_str] = ACTIONS(1635), + [anon_sym_char] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_async] = ACTIONS(1635), + [anon_sym_break] = ACTIONS(1635), + [anon_sym_const] = ACTIONS(1635), + [anon_sym_continue] = ACTIONS(1635), + [anon_sym_default] = ACTIONS(1635), + [anon_sym_enum] = ACTIONS(1635), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1635), + [anon_sym_if] = ACTIONS(1635), + [anon_sym_impl] = ACTIONS(1635), + [anon_sym_let] = ACTIONS(1635), + [anon_sym_loop] = ACTIONS(1635), + [anon_sym_match] = ACTIONS(1635), + [anon_sym_mod] = ACTIONS(1635), + [anon_sym_pub] = ACTIONS(1635), + [anon_sym_return] = ACTIONS(1635), + [anon_sym_static] = ACTIONS(1635), + [anon_sym_struct] = ACTIONS(1635), + [anon_sym_trait] = ACTIONS(1635), + [anon_sym_type] = ACTIONS(1635), + [anon_sym_union] = ACTIONS(1635), + [anon_sym_unsafe] = ACTIONS(1635), + [anon_sym_use] = ACTIONS(1635), + [anon_sym_while] = ACTIONS(1635), + [anon_sym_POUND] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1633), + [anon_sym_extern] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1633), + [anon_sym_COLON_COLON] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_DOT_DOT] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_move] = ACTIONS(1635), + [sym_integer_literal] = ACTIONS(1633), + [aux_sym_string_literal_token1] = ACTIONS(1633), + [sym_char_literal] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1635), + [anon_sym_false] = ACTIONS(1635), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1633), + [sym_raw_string_literal] = ACTIONS(1633), + [sym_float_literal] = ACTIONS(1633), [sym_block_comment] = ACTIONS(3), }, [384] = { - [ts_builtin_sym_end] = ACTIONS(1628), - [sym_identifier] = ACTIONS(1630), - [anon_sym_SEMI] = ACTIONS(1628), - [anon_sym_macro_rules_BANG] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_RBRACE] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1628), - [anon_sym_u8] = ACTIONS(1630), - [anon_sym_i8] = ACTIONS(1630), - [anon_sym_u16] = ACTIONS(1630), - [anon_sym_i16] = ACTIONS(1630), - [anon_sym_u32] = ACTIONS(1630), - [anon_sym_i32] = ACTIONS(1630), - [anon_sym_u64] = ACTIONS(1630), - [anon_sym_i64] = ACTIONS(1630), - [anon_sym_u128] = ACTIONS(1630), - [anon_sym_i128] = ACTIONS(1630), - [anon_sym_isize] = ACTIONS(1630), - [anon_sym_usize] = ACTIONS(1630), - [anon_sym_f32] = ACTIONS(1630), - [anon_sym_f64] = ACTIONS(1630), - [anon_sym_bool] = ACTIONS(1630), - [anon_sym_str] = ACTIONS(1630), - [anon_sym_char] = ACTIONS(1630), - [anon_sym_SQUOTE] = ACTIONS(1630), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_break] = ACTIONS(1630), - [anon_sym_const] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(1630), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_enum] = ACTIONS(1630), - [anon_sym_fn] = ACTIONS(1630), - [anon_sym_for] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1630), - [anon_sym_impl] = ACTIONS(1630), - [anon_sym_let] = ACTIONS(1630), - [anon_sym_loop] = ACTIONS(1630), - [anon_sym_match] = ACTIONS(1630), - [anon_sym_mod] = ACTIONS(1630), - [anon_sym_pub] = ACTIONS(1630), - [anon_sym_return] = ACTIONS(1630), - [anon_sym_static] = ACTIONS(1630), - [anon_sym_struct] = ACTIONS(1630), - [anon_sym_trait] = ACTIONS(1630), - [anon_sym_type] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_unsafe] = ACTIONS(1630), - [anon_sym_use] = ACTIONS(1630), - [anon_sym_while] = ACTIONS(1630), - [anon_sym_POUND] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1628), - [anon_sym_extern] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(1628), - [anon_sym_COLON_COLON] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1628), - [anon_sym_DOT_DOT] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_PIPE] = ACTIONS(1628), - [anon_sym_move] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(1628), - [aux_sym_string_literal_token1] = ACTIONS(1628), - [sym_char_literal] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1630), - [anon_sym_false] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1630), - [sym_super] = ACTIONS(1630), - [sym_crate] = ACTIONS(1630), - [sym_metavariable] = ACTIONS(1628), - [sym_raw_string_literal] = ACTIONS(1628), - [sym_float_literal] = ACTIONS(1628), + [ts_builtin_sym_end] = ACTIONS(1637), + [sym_identifier] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_macro_rules_BANG] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_RBRACE] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_u8] = ACTIONS(1639), + [anon_sym_i8] = ACTIONS(1639), + [anon_sym_u16] = ACTIONS(1639), + [anon_sym_i16] = ACTIONS(1639), + [anon_sym_u32] = ACTIONS(1639), + [anon_sym_i32] = ACTIONS(1639), + [anon_sym_u64] = ACTIONS(1639), + [anon_sym_i64] = ACTIONS(1639), + [anon_sym_u128] = ACTIONS(1639), + [anon_sym_i128] = ACTIONS(1639), + [anon_sym_isize] = ACTIONS(1639), + [anon_sym_usize] = ACTIONS(1639), + [anon_sym_f32] = ACTIONS(1639), + [anon_sym_f64] = ACTIONS(1639), + [anon_sym_bool] = ACTIONS(1639), + [anon_sym_str] = ACTIONS(1639), + [anon_sym_char] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_async] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1639), + [anon_sym_enum] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_loop] = ACTIONS(1639), + [anon_sym_match] = ACTIONS(1639), + [anon_sym_mod] = ACTIONS(1639), + [anon_sym_pub] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1639), + [anon_sym_trait] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1639), + [anon_sym_unsafe] = ACTIONS(1639), + [anon_sym_use] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_POUND] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_COLON_COLON] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PIPE] = ACTIONS(1637), + [anon_sym_move] = ACTIONS(1639), + [sym_integer_literal] = ACTIONS(1637), + [aux_sym_string_literal_token1] = ACTIONS(1637), + [sym_char_literal] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1639), + [sym_super] = ACTIONS(1639), + [sym_crate] = ACTIONS(1639), + [sym_metavariable] = ACTIONS(1637), + [sym_raw_string_literal] = ACTIONS(1637), + [sym_float_literal] = ACTIONS(1637), [sym_block_comment] = ACTIONS(3), }, [385] = { - [ts_builtin_sym_end] = ACTIONS(1632), - [sym_identifier] = ACTIONS(1634), - [anon_sym_SEMI] = ACTIONS(1632), - [anon_sym_macro_rules_BANG] = ACTIONS(1632), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(1632), - [anon_sym_RBRACE] = ACTIONS(1632), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1632), - [anon_sym_u8] = ACTIONS(1634), - [anon_sym_i8] = ACTIONS(1634), - [anon_sym_u16] = ACTIONS(1634), - [anon_sym_i16] = ACTIONS(1634), - [anon_sym_u32] = ACTIONS(1634), - [anon_sym_i32] = ACTIONS(1634), - [anon_sym_u64] = ACTIONS(1634), - [anon_sym_i64] = ACTIONS(1634), - [anon_sym_u128] = ACTIONS(1634), - [anon_sym_i128] = ACTIONS(1634), - [anon_sym_isize] = ACTIONS(1634), - [anon_sym_usize] = ACTIONS(1634), - [anon_sym_f32] = ACTIONS(1634), - [anon_sym_f64] = ACTIONS(1634), - [anon_sym_bool] = ACTIONS(1634), - [anon_sym_str] = ACTIONS(1634), - [anon_sym_char] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1634), - [anon_sym_async] = ACTIONS(1634), - [anon_sym_break] = ACTIONS(1634), - [anon_sym_const] = ACTIONS(1634), - [anon_sym_continue] = ACTIONS(1634), - [anon_sym_default] = ACTIONS(1634), - [anon_sym_enum] = ACTIONS(1634), - [anon_sym_fn] = ACTIONS(1634), - [anon_sym_for] = ACTIONS(1634), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_impl] = ACTIONS(1634), - [anon_sym_let] = ACTIONS(1634), - [anon_sym_loop] = ACTIONS(1634), - [anon_sym_match] = ACTIONS(1634), - [anon_sym_mod] = ACTIONS(1634), - [anon_sym_pub] = ACTIONS(1634), - [anon_sym_return] = ACTIONS(1634), - [anon_sym_static] = ACTIONS(1634), - [anon_sym_struct] = ACTIONS(1634), - [anon_sym_trait] = ACTIONS(1634), - [anon_sym_type] = ACTIONS(1634), - [anon_sym_union] = ACTIONS(1634), - [anon_sym_unsafe] = ACTIONS(1634), - [anon_sym_use] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1632), - [anon_sym_extern] = ACTIONS(1634), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_COLON_COLON] = ACTIONS(1632), - [anon_sym_AMP] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(1632), - [anon_sym_DASH] = ACTIONS(1632), - [anon_sym_PIPE] = ACTIONS(1632), - [anon_sym_move] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1632), - [aux_sym_string_literal_token1] = ACTIONS(1632), - [sym_char_literal] = ACTIONS(1632), - [anon_sym_true] = ACTIONS(1634), - [anon_sym_false] = ACTIONS(1634), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1634), - [sym_super] = ACTIONS(1634), - [sym_crate] = ACTIONS(1634), - [sym_metavariable] = ACTIONS(1632), - [sym_raw_string_literal] = ACTIONS(1632), - [sym_float_literal] = ACTIONS(1632), + [ts_builtin_sym_end] = ACTIONS(1641), + [sym_identifier] = ACTIONS(1643), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_macro_rules_BANG] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_u8] = ACTIONS(1643), + [anon_sym_i8] = ACTIONS(1643), + [anon_sym_u16] = ACTIONS(1643), + [anon_sym_i16] = ACTIONS(1643), + [anon_sym_u32] = ACTIONS(1643), + [anon_sym_i32] = ACTIONS(1643), + [anon_sym_u64] = ACTIONS(1643), + [anon_sym_i64] = ACTIONS(1643), + [anon_sym_u128] = ACTIONS(1643), + [anon_sym_i128] = ACTIONS(1643), + [anon_sym_isize] = ACTIONS(1643), + [anon_sym_usize] = ACTIONS(1643), + [anon_sym_f32] = ACTIONS(1643), + [anon_sym_f64] = ACTIONS(1643), + [anon_sym_bool] = ACTIONS(1643), + [anon_sym_str] = ACTIONS(1643), + [anon_sym_char] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_default] = ACTIONS(1643), + [anon_sym_enum] = ACTIONS(1643), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_impl] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_mod] = ACTIONS(1643), + [anon_sym_pub] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_static] = ACTIONS(1643), + [anon_sym_struct] = ACTIONS(1643), + [anon_sym_trait] = ACTIONS(1643), + [anon_sym_type] = ACTIONS(1643), + [anon_sym_union] = ACTIONS(1643), + [anon_sym_unsafe] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1641), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1641), + [anon_sym_COLON_COLON] = ACTIONS(1641), + [anon_sym_AMP] = ACTIONS(1641), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_PIPE] = ACTIONS(1641), + [anon_sym_move] = ACTIONS(1643), + [sym_integer_literal] = ACTIONS(1641), + [aux_sym_string_literal_token1] = ACTIONS(1641), + [sym_char_literal] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1643), + [sym_super] = ACTIONS(1643), + [sym_crate] = ACTIONS(1643), + [sym_metavariable] = ACTIONS(1641), + [sym_raw_string_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(1641), [sym_block_comment] = ACTIONS(3), }, [386] = { - [ts_builtin_sym_end] = ACTIONS(1636), - [sym_identifier] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_macro_rules_BANG] = ACTIONS(1636), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_STAR] = ACTIONS(1636), - [anon_sym_u8] = ACTIONS(1638), - [anon_sym_i8] = ACTIONS(1638), - [anon_sym_u16] = ACTIONS(1638), - [anon_sym_i16] = ACTIONS(1638), - [anon_sym_u32] = ACTIONS(1638), - [anon_sym_i32] = ACTIONS(1638), - [anon_sym_u64] = ACTIONS(1638), - [anon_sym_i64] = ACTIONS(1638), - [anon_sym_u128] = ACTIONS(1638), - [anon_sym_i128] = ACTIONS(1638), - [anon_sym_isize] = ACTIONS(1638), - [anon_sym_usize] = ACTIONS(1638), - [anon_sym_f32] = ACTIONS(1638), - [anon_sym_f64] = ACTIONS(1638), - [anon_sym_bool] = ACTIONS(1638), - [anon_sym_str] = ACTIONS(1638), - [anon_sym_char] = ACTIONS(1638), - [anon_sym_SQUOTE] = ACTIONS(1638), - [anon_sym_async] = ACTIONS(1638), - [anon_sym_break] = ACTIONS(1638), - [anon_sym_const] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(1638), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_enum] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1638), - [anon_sym_for] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1638), - [anon_sym_impl] = ACTIONS(1638), - [anon_sym_let] = ACTIONS(1638), - [anon_sym_loop] = ACTIONS(1638), - [anon_sym_match] = ACTIONS(1638), - [anon_sym_mod] = ACTIONS(1638), - [anon_sym_pub] = ACTIONS(1638), - [anon_sym_return] = ACTIONS(1638), - [anon_sym_static] = ACTIONS(1638), - [anon_sym_struct] = ACTIONS(1638), - [anon_sym_trait] = ACTIONS(1638), - [anon_sym_type] = ACTIONS(1638), - [anon_sym_union] = ACTIONS(1638), - [anon_sym_unsafe] = ACTIONS(1638), - [anon_sym_use] = ACTIONS(1638), - [anon_sym_while] = ACTIONS(1638), - [anon_sym_POUND] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_extern] = ACTIONS(1638), - [anon_sym_LT] = ACTIONS(1636), - [anon_sym_COLON_COLON] = ACTIONS(1636), - [anon_sym_AMP] = ACTIONS(1636), - [anon_sym_DOT_DOT] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_move] = ACTIONS(1638), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1636), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1638), - [anon_sym_false] = ACTIONS(1638), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1638), - [sym_super] = ACTIONS(1638), - [sym_crate] = ACTIONS(1638), - [sym_metavariable] = ACTIONS(1636), - [sym_raw_string_literal] = ACTIONS(1636), - [sym_float_literal] = ACTIONS(1636), + [ts_builtin_sym_end] = ACTIONS(1645), + [sym_identifier] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_macro_rules_BANG] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_u8] = ACTIONS(1647), + [anon_sym_i8] = ACTIONS(1647), + [anon_sym_u16] = ACTIONS(1647), + [anon_sym_i16] = ACTIONS(1647), + [anon_sym_u32] = ACTIONS(1647), + [anon_sym_i32] = ACTIONS(1647), + [anon_sym_u64] = ACTIONS(1647), + [anon_sym_i64] = ACTIONS(1647), + [anon_sym_u128] = ACTIONS(1647), + [anon_sym_i128] = ACTIONS(1647), + [anon_sym_isize] = ACTIONS(1647), + [anon_sym_usize] = ACTIONS(1647), + [anon_sym_f32] = ACTIONS(1647), + [anon_sym_f64] = ACTIONS(1647), + [anon_sym_bool] = ACTIONS(1647), + [anon_sym_str] = ACTIONS(1647), + [anon_sym_char] = ACTIONS(1647), + [anon_sym_SQUOTE] = ACTIONS(1647), + [anon_sym_async] = ACTIONS(1647), + [anon_sym_break] = ACTIONS(1647), + [anon_sym_const] = ACTIONS(1647), + [anon_sym_continue] = ACTIONS(1647), + [anon_sym_default] = ACTIONS(1647), + [anon_sym_enum] = ACTIONS(1647), + [anon_sym_fn] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_impl] = ACTIONS(1647), + [anon_sym_let] = ACTIONS(1647), + [anon_sym_loop] = ACTIONS(1647), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_mod] = ACTIONS(1647), + [anon_sym_pub] = ACTIONS(1647), + [anon_sym_return] = ACTIONS(1647), + [anon_sym_static] = ACTIONS(1647), + [anon_sym_struct] = ACTIONS(1647), + [anon_sym_trait] = ACTIONS(1647), + [anon_sym_type] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [anon_sym_unsafe] = ACTIONS(1647), + [anon_sym_use] = ACTIONS(1647), + [anon_sym_while] = ACTIONS(1647), + [anon_sym_POUND] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_extern] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_COLON_COLON] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_move] = ACTIONS(1647), + [sym_integer_literal] = ACTIONS(1645), + [aux_sym_string_literal_token1] = ACTIONS(1645), + [sym_char_literal] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1647), + [anon_sym_false] = ACTIONS(1647), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1647), + [sym_super] = ACTIONS(1647), + [sym_crate] = ACTIONS(1647), + [sym_metavariable] = ACTIONS(1645), + [sym_raw_string_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(1645), [sym_block_comment] = ACTIONS(3), }, [387] = { - [ts_builtin_sym_end] = ACTIONS(1640), - [sym_identifier] = ACTIONS(1642), - [anon_sym_SEMI] = ACTIONS(1640), - [anon_sym_macro_rules_BANG] = ACTIONS(1640), - [anon_sym_LPAREN] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_RBRACE] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(1640), - [anon_sym_STAR] = ACTIONS(1640), - [anon_sym_u8] = ACTIONS(1642), - [anon_sym_i8] = ACTIONS(1642), - [anon_sym_u16] = ACTIONS(1642), - [anon_sym_i16] = ACTIONS(1642), - [anon_sym_u32] = ACTIONS(1642), - [anon_sym_i32] = ACTIONS(1642), - [anon_sym_u64] = ACTIONS(1642), - [anon_sym_i64] = ACTIONS(1642), - [anon_sym_u128] = ACTIONS(1642), - [anon_sym_i128] = ACTIONS(1642), - [anon_sym_isize] = ACTIONS(1642), - [anon_sym_usize] = ACTIONS(1642), - [anon_sym_f32] = ACTIONS(1642), - [anon_sym_f64] = ACTIONS(1642), - [anon_sym_bool] = ACTIONS(1642), - [anon_sym_str] = ACTIONS(1642), - [anon_sym_char] = ACTIONS(1642), - [anon_sym_SQUOTE] = ACTIONS(1642), - [anon_sym_async] = ACTIONS(1642), - [anon_sym_break] = ACTIONS(1642), - [anon_sym_const] = ACTIONS(1642), - [anon_sym_continue] = ACTIONS(1642), - [anon_sym_default] = ACTIONS(1642), - [anon_sym_enum] = ACTIONS(1642), - [anon_sym_fn] = ACTIONS(1642), - [anon_sym_for] = ACTIONS(1642), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1642), - [anon_sym_let] = ACTIONS(1642), - [anon_sym_loop] = ACTIONS(1642), - [anon_sym_match] = ACTIONS(1642), - [anon_sym_mod] = ACTIONS(1642), - [anon_sym_pub] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1642), - [anon_sym_static] = ACTIONS(1642), - [anon_sym_struct] = ACTIONS(1642), - [anon_sym_trait] = ACTIONS(1642), - [anon_sym_type] = ACTIONS(1642), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_use] = ACTIONS(1642), - [anon_sym_while] = ACTIONS(1642), - [anon_sym_POUND] = ACTIONS(1640), - [anon_sym_BANG] = ACTIONS(1640), - [anon_sym_extern] = ACTIONS(1642), - [anon_sym_LT] = ACTIONS(1640), - [anon_sym_COLON_COLON] = ACTIONS(1640), - [anon_sym_AMP] = ACTIONS(1640), - [anon_sym_DOT_DOT] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_move] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1640), - [aux_sym_string_literal_token1] = ACTIONS(1640), - [sym_char_literal] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1642), - [anon_sym_false] = ACTIONS(1642), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1640), - [sym_raw_string_literal] = ACTIONS(1640), - [sym_float_literal] = ACTIONS(1640), + [ts_builtin_sym_end] = ACTIONS(1649), + [sym_identifier] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1649), + [anon_sym_macro_rules_BANG] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACE] = ACTIONS(1649), + [anon_sym_RBRACE] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(1649), + [anon_sym_u8] = ACTIONS(1651), + [anon_sym_i8] = ACTIONS(1651), + [anon_sym_u16] = ACTIONS(1651), + [anon_sym_i16] = ACTIONS(1651), + [anon_sym_u32] = ACTIONS(1651), + [anon_sym_i32] = ACTIONS(1651), + [anon_sym_u64] = ACTIONS(1651), + [anon_sym_i64] = ACTIONS(1651), + [anon_sym_u128] = ACTIONS(1651), + [anon_sym_i128] = ACTIONS(1651), + [anon_sym_isize] = ACTIONS(1651), + [anon_sym_usize] = ACTIONS(1651), + [anon_sym_f32] = ACTIONS(1651), + [anon_sym_f64] = ACTIONS(1651), + [anon_sym_bool] = ACTIONS(1651), + [anon_sym_str] = ACTIONS(1651), + [anon_sym_char] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1651), + [anon_sym_async] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_default] = ACTIONS(1651), + [anon_sym_enum] = ACTIONS(1651), + [anon_sym_fn] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_impl] = ACTIONS(1651), + [anon_sym_let] = ACTIONS(1651), + [anon_sym_loop] = ACTIONS(1651), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_mod] = ACTIONS(1651), + [anon_sym_pub] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1651), + [anon_sym_struct] = ACTIONS(1651), + [anon_sym_trait] = ACTIONS(1651), + [anon_sym_type] = ACTIONS(1651), + [anon_sym_union] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1651), + [anon_sym_use] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(1649), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_extern] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_COLON_COLON] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1649), + [anon_sym_move] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1649), + [aux_sym_string_literal_token1] = ACTIONS(1649), + [sym_char_literal] = ACTIONS(1649), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1651), + [sym_super] = ACTIONS(1651), + [sym_crate] = ACTIONS(1651), + [sym_metavariable] = ACTIONS(1649), + [sym_raw_string_literal] = ACTIONS(1649), + [sym_float_literal] = ACTIONS(1649), [sym_block_comment] = ACTIONS(3), }, [388] = { - [ts_builtin_sym_end] = ACTIONS(1644), - [sym_identifier] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_macro_rules_BANG] = ACTIONS(1644), - [anon_sym_LPAREN] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1644), - [anon_sym_RBRACE] = ACTIONS(1644), - [anon_sym_LBRACK] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1644), - [anon_sym_u8] = ACTIONS(1646), - [anon_sym_i8] = ACTIONS(1646), - [anon_sym_u16] = ACTIONS(1646), - [anon_sym_i16] = ACTIONS(1646), - [anon_sym_u32] = ACTIONS(1646), - [anon_sym_i32] = ACTIONS(1646), - [anon_sym_u64] = ACTIONS(1646), - [anon_sym_i64] = ACTIONS(1646), - [anon_sym_u128] = ACTIONS(1646), - [anon_sym_i128] = ACTIONS(1646), - [anon_sym_isize] = ACTIONS(1646), - [anon_sym_usize] = ACTIONS(1646), - [anon_sym_f32] = ACTIONS(1646), - [anon_sym_f64] = ACTIONS(1646), - [anon_sym_bool] = ACTIONS(1646), - [anon_sym_str] = ACTIONS(1646), - [anon_sym_char] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1646), - [anon_sym_async] = ACTIONS(1646), - [anon_sym_break] = ACTIONS(1646), - [anon_sym_const] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(1646), - [anon_sym_default] = ACTIONS(1646), - [anon_sym_enum] = ACTIONS(1646), - [anon_sym_fn] = ACTIONS(1646), - [anon_sym_for] = ACTIONS(1646), - [anon_sym_if] = ACTIONS(1646), - [anon_sym_impl] = ACTIONS(1646), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_loop] = ACTIONS(1646), - [anon_sym_match] = ACTIONS(1646), - [anon_sym_mod] = ACTIONS(1646), - [anon_sym_pub] = ACTIONS(1646), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1646), - [anon_sym_trait] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_union] = ACTIONS(1646), - [anon_sym_unsafe] = ACTIONS(1646), - [anon_sym_use] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1646), - [anon_sym_POUND] = ACTIONS(1644), - [anon_sym_BANG] = ACTIONS(1644), - [anon_sym_extern] = ACTIONS(1646), - [anon_sym_LT] = ACTIONS(1644), - [anon_sym_COLON_COLON] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_DOT_DOT] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_PIPE] = ACTIONS(1644), - [anon_sym_move] = ACTIONS(1646), - [sym_integer_literal] = ACTIONS(1644), - [aux_sym_string_literal_token1] = ACTIONS(1644), - [sym_char_literal] = ACTIONS(1644), - [anon_sym_true] = ACTIONS(1646), - [anon_sym_false] = ACTIONS(1646), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1646), - [sym_super] = ACTIONS(1646), - [sym_crate] = ACTIONS(1646), - [sym_metavariable] = ACTIONS(1644), - [sym_raw_string_literal] = ACTIONS(1644), - [sym_float_literal] = ACTIONS(1644), + [ts_builtin_sym_end] = ACTIONS(1653), + [sym_identifier] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_macro_rules_BANG] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_STAR] = 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_SQUOTE] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(1655), + [anon_sym_break] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1655), + [anon_sym_continue] = ACTIONS(1655), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_enum] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1655), + [anon_sym_if] = ACTIONS(1655), + [anon_sym_impl] = ACTIONS(1655), + [anon_sym_let] = ACTIONS(1655), + [anon_sym_loop] = ACTIONS(1655), + [anon_sym_match] = ACTIONS(1655), + [anon_sym_mod] = ACTIONS(1655), + [anon_sym_pub] = ACTIONS(1655), + [anon_sym_return] = ACTIONS(1655), + [anon_sym_static] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(1655), + [anon_sym_trait] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(1655), + [anon_sym_union] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1655), + [anon_sym_use] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_POUND] = ACTIONS(1653), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1653), + [anon_sym_COLON_COLON] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_move] = ACTIONS(1655), + [sym_integer_literal] = ACTIONS(1653), + [aux_sym_string_literal_token1] = ACTIONS(1653), + [sym_char_literal] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1655), + [sym_super] = ACTIONS(1655), + [sym_crate] = ACTIONS(1655), + [sym_metavariable] = ACTIONS(1653), + [sym_raw_string_literal] = ACTIONS(1653), + [sym_float_literal] = ACTIONS(1653), [sym_block_comment] = ACTIONS(3), }, [389] = { - [ts_builtin_sym_end] = ACTIONS(1648), - [sym_identifier] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_macro_rules_BANG] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_STAR] = ACTIONS(1648), - [anon_sym_u8] = ACTIONS(1650), - [anon_sym_i8] = ACTIONS(1650), - [anon_sym_u16] = ACTIONS(1650), - [anon_sym_i16] = ACTIONS(1650), - [anon_sym_u32] = ACTIONS(1650), - [anon_sym_i32] = ACTIONS(1650), - [anon_sym_u64] = ACTIONS(1650), - [anon_sym_i64] = ACTIONS(1650), - [anon_sym_u128] = ACTIONS(1650), - [anon_sym_i128] = ACTIONS(1650), - [anon_sym_isize] = ACTIONS(1650), - [anon_sym_usize] = ACTIONS(1650), - [anon_sym_f32] = ACTIONS(1650), - [anon_sym_f64] = ACTIONS(1650), - [anon_sym_bool] = ACTIONS(1650), - [anon_sym_str] = ACTIONS(1650), - [anon_sym_char] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1650), - [anon_sym_async] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_continue] = ACTIONS(1650), - [anon_sym_default] = ACTIONS(1650), - [anon_sym_enum] = ACTIONS(1650), - [anon_sym_fn] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_impl] = ACTIONS(1650), - [anon_sym_let] = ACTIONS(1650), - [anon_sym_loop] = ACTIONS(1650), - [anon_sym_match] = ACTIONS(1650), - [anon_sym_mod] = ACTIONS(1650), - [anon_sym_pub] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_static] = ACTIONS(1650), - [anon_sym_struct] = ACTIONS(1650), - [anon_sym_trait] = ACTIONS(1650), - [anon_sym_type] = ACTIONS(1650), - [anon_sym_union] = ACTIONS(1650), - [anon_sym_unsafe] = ACTIONS(1650), - [anon_sym_use] = ACTIONS(1650), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_POUND] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1648), - [anon_sym_COLON_COLON] = ACTIONS(1648), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_move] = ACTIONS(1650), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1648), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1648), - [sym_raw_string_literal] = ACTIONS(1648), - [sym_float_literal] = ACTIONS(1648), + [ts_builtin_sym_end] = ACTIONS(1657), + [sym_identifier] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_macro_rules_BANG] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_RBRACE] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1657), + [anon_sym_STAR] = ACTIONS(1657), + [anon_sym_u8] = ACTIONS(1659), + [anon_sym_i8] = ACTIONS(1659), + [anon_sym_u16] = ACTIONS(1659), + [anon_sym_i16] = ACTIONS(1659), + [anon_sym_u32] = ACTIONS(1659), + [anon_sym_i32] = ACTIONS(1659), + [anon_sym_u64] = ACTIONS(1659), + [anon_sym_i64] = ACTIONS(1659), + [anon_sym_u128] = ACTIONS(1659), + [anon_sym_i128] = ACTIONS(1659), + [anon_sym_isize] = ACTIONS(1659), + [anon_sym_usize] = ACTIONS(1659), + [anon_sym_f32] = ACTIONS(1659), + [anon_sym_f64] = ACTIONS(1659), + [anon_sym_bool] = ACTIONS(1659), + [anon_sym_str] = ACTIONS(1659), + [anon_sym_char] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1659), + [anon_sym_async] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_enum] = ACTIONS(1659), + [anon_sym_fn] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_mod] = ACTIONS(1659), + [anon_sym_pub] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_static] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(1659), + [anon_sym_trait] = ACTIONS(1659), + [anon_sym_type] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1657), + [anon_sym_COLON_COLON] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1657), + [anon_sym_DOT_DOT] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_move] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1657), + [aux_sym_string_literal_token1] = ACTIONS(1657), + [sym_char_literal] = ACTIONS(1657), + [anon_sym_true] = ACTIONS(1659), + [anon_sym_false] = ACTIONS(1659), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_crate] = ACTIONS(1659), + [sym_metavariable] = ACTIONS(1657), + [sym_raw_string_literal] = ACTIONS(1657), + [sym_float_literal] = ACTIONS(1657), [sym_block_comment] = ACTIONS(3), }, [390] = { - [ts_builtin_sym_end] = ACTIONS(1652), - [sym_identifier] = ACTIONS(1654), - [anon_sym_SEMI] = ACTIONS(1652), - [anon_sym_macro_rules_BANG] = ACTIONS(1652), - [anon_sym_LPAREN] = ACTIONS(1652), - [anon_sym_LBRACE] = ACTIONS(1652), - [anon_sym_RBRACE] = ACTIONS(1652), - [anon_sym_LBRACK] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_u8] = ACTIONS(1654), - [anon_sym_i8] = ACTIONS(1654), - [anon_sym_u16] = ACTIONS(1654), - [anon_sym_i16] = ACTIONS(1654), - [anon_sym_u32] = ACTIONS(1654), - [anon_sym_i32] = ACTIONS(1654), - [anon_sym_u64] = ACTIONS(1654), - [anon_sym_i64] = ACTIONS(1654), - [anon_sym_u128] = ACTIONS(1654), - [anon_sym_i128] = ACTIONS(1654), - [anon_sym_isize] = ACTIONS(1654), - [anon_sym_usize] = ACTIONS(1654), - [anon_sym_f32] = ACTIONS(1654), - [anon_sym_f64] = ACTIONS(1654), - [anon_sym_bool] = ACTIONS(1654), - [anon_sym_str] = ACTIONS(1654), - [anon_sym_char] = ACTIONS(1654), - [anon_sym_SQUOTE] = ACTIONS(1654), - [anon_sym_async] = ACTIONS(1654), - [anon_sym_break] = ACTIONS(1654), - [anon_sym_const] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(1654), - [anon_sym_default] = ACTIONS(1654), - [anon_sym_enum] = ACTIONS(1654), - [anon_sym_fn] = ACTIONS(1654), - [anon_sym_for] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1654), - [anon_sym_impl] = ACTIONS(1654), - [anon_sym_let] = ACTIONS(1654), - [anon_sym_loop] = ACTIONS(1654), - [anon_sym_match] = ACTIONS(1654), - [anon_sym_mod] = ACTIONS(1654), - [anon_sym_pub] = ACTIONS(1654), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_static] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1654), - [anon_sym_trait] = ACTIONS(1654), - [anon_sym_type] = ACTIONS(1654), - [anon_sym_union] = ACTIONS(1654), - [anon_sym_unsafe] = ACTIONS(1654), - [anon_sym_use] = ACTIONS(1654), - [anon_sym_while] = ACTIONS(1654), - [anon_sym_POUND] = ACTIONS(1652), - [anon_sym_BANG] = ACTIONS(1652), - [anon_sym_extern] = ACTIONS(1654), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_COLON_COLON] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_DOT_DOT] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_move] = ACTIONS(1654), - [sym_integer_literal] = ACTIONS(1652), - [aux_sym_string_literal_token1] = ACTIONS(1652), - [sym_char_literal] = ACTIONS(1652), - [anon_sym_true] = ACTIONS(1654), - [anon_sym_false] = ACTIONS(1654), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1654), - [sym_super] = ACTIONS(1654), - [sym_crate] = ACTIONS(1654), - [sym_metavariable] = ACTIONS(1652), - [sym_raw_string_literal] = ACTIONS(1652), - [sym_float_literal] = ACTIONS(1652), + [ts_builtin_sym_end] = ACTIONS(1661), + [sym_identifier] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_macro_rules_BANG] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1663), + [anon_sym_i8] = ACTIONS(1663), + [anon_sym_u16] = ACTIONS(1663), + [anon_sym_i16] = ACTIONS(1663), + [anon_sym_u32] = ACTIONS(1663), + [anon_sym_i32] = ACTIONS(1663), + [anon_sym_u64] = ACTIONS(1663), + [anon_sym_i64] = ACTIONS(1663), + [anon_sym_u128] = ACTIONS(1663), + [anon_sym_i128] = ACTIONS(1663), + [anon_sym_isize] = ACTIONS(1663), + [anon_sym_usize] = ACTIONS(1663), + [anon_sym_f32] = ACTIONS(1663), + [anon_sym_f64] = ACTIONS(1663), + [anon_sym_bool] = ACTIONS(1663), + [anon_sym_str] = ACTIONS(1663), + [anon_sym_char] = ACTIONS(1663), + [anon_sym_SQUOTE] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1663), + [anon_sym_break] = ACTIONS(1663), + [anon_sym_const] = ACTIONS(1663), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_default] = ACTIONS(1663), + [anon_sym_enum] = ACTIONS(1663), + [anon_sym_fn] = ACTIONS(1663), + [anon_sym_for] = ACTIONS(1663), + [anon_sym_if] = ACTIONS(1663), + [anon_sym_impl] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1663), + [anon_sym_loop] = ACTIONS(1663), + [anon_sym_match] = ACTIONS(1663), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_pub] = ACTIONS(1663), + [anon_sym_return] = ACTIONS(1663), + [anon_sym_static] = ACTIONS(1663), + [anon_sym_struct] = ACTIONS(1663), + [anon_sym_trait] = ACTIONS(1663), + [anon_sym_type] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_unsafe] = ACTIONS(1663), + [anon_sym_use] = ACTIONS(1663), + [anon_sym_while] = ACTIONS(1663), + [anon_sym_POUND] = ACTIONS(1661), + [anon_sym_BANG] = ACTIONS(1661), + [anon_sym_extern] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_COLON_COLON] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_move] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1661), + [aux_sym_string_literal_token1] = ACTIONS(1661), + [sym_char_literal] = ACTIONS(1661), + [anon_sym_true] = ACTIONS(1663), + [anon_sym_false] = ACTIONS(1663), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1663), + [sym_super] = ACTIONS(1663), + [sym_crate] = ACTIONS(1663), + [sym_metavariable] = ACTIONS(1661), + [sym_raw_string_literal] = ACTIONS(1661), + [sym_float_literal] = ACTIONS(1661), [sym_block_comment] = ACTIONS(3), }, [391] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [sym_identifier] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_macro_rules_BANG] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_STAR] = ACTIONS(1656), - [anon_sym_u8] = ACTIONS(1658), - [anon_sym_i8] = ACTIONS(1658), - [anon_sym_u16] = ACTIONS(1658), - [anon_sym_i16] = ACTIONS(1658), - [anon_sym_u32] = ACTIONS(1658), - [anon_sym_i32] = ACTIONS(1658), - [anon_sym_u64] = ACTIONS(1658), - [anon_sym_i64] = ACTIONS(1658), - [anon_sym_u128] = ACTIONS(1658), - [anon_sym_i128] = ACTIONS(1658), - [anon_sym_isize] = ACTIONS(1658), - [anon_sym_usize] = ACTIONS(1658), - [anon_sym_f32] = ACTIONS(1658), - [anon_sym_f64] = ACTIONS(1658), - [anon_sym_bool] = ACTIONS(1658), - [anon_sym_str] = ACTIONS(1658), - [anon_sym_char] = ACTIONS(1658), - [anon_sym_SQUOTE] = ACTIONS(1658), - [anon_sym_async] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_continue] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_enum] = ACTIONS(1658), - [anon_sym_fn] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_impl] = ACTIONS(1658), - [anon_sym_let] = ACTIONS(1658), - [anon_sym_loop] = ACTIONS(1658), - [anon_sym_match] = ACTIONS(1658), - [anon_sym_mod] = ACTIONS(1658), - [anon_sym_pub] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_static] = ACTIONS(1658), - [anon_sym_struct] = ACTIONS(1658), - [anon_sym_trait] = ACTIONS(1658), - [anon_sym_type] = ACTIONS(1658), - [anon_sym_union] = ACTIONS(1658), - [anon_sym_unsafe] = ACTIONS(1658), - [anon_sym_use] = ACTIONS(1658), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_POUND] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_extern] = ACTIONS(1658), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_COLON_COLON] = ACTIONS(1656), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_DOT_DOT] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_move] = ACTIONS(1658), - [sym_integer_literal] = ACTIONS(1656), - [aux_sym_string_literal_token1] = ACTIONS(1656), - [sym_char_literal] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(1658), - [anon_sym_false] = ACTIONS(1658), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1658), - [sym_super] = ACTIONS(1658), - [sym_crate] = ACTIONS(1658), - [sym_metavariable] = ACTIONS(1656), - [sym_raw_string_literal] = ACTIONS(1656), - [sym_float_literal] = ACTIONS(1656), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_macro_rules_BANG] = ACTIONS(1665), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_STAR] = ACTIONS(1665), + [anon_sym_u8] = ACTIONS(1667), + [anon_sym_i8] = ACTIONS(1667), + [anon_sym_u16] = ACTIONS(1667), + [anon_sym_i16] = ACTIONS(1667), + [anon_sym_u32] = ACTIONS(1667), + [anon_sym_i32] = ACTIONS(1667), + [anon_sym_u64] = ACTIONS(1667), + [anon_sym_i64] = ACTIONS(1667), + [anon_sym_u128] = ACTIONS(1667), + [anon_sym_i128] = ACTIONS(1667), + [anon_sym_isize] = ACTIONS(1667), + [anon_sym_usize] = ACTIONS(1667), + [anon_sym_f32] = ACTIONS(1667), + [anon_sym_f64] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_str] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_SQUOTE] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_impl] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_mod] = ACTIONS(1667), + [anon_sym_pub] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_struct] = ACTIONS(1667), + [anon_sym_trait] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_union] = ACTIONS(1667), + [anon_sym_unsafe] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [anon_sym_move] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1665), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1665), + [sym_raw_string_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(1665), [sym_block_comment] = ACTIONS(3), }, [392] = { - [ts_builtin_sym_end] = ACTIONS(1660), - [sym_identifier] = ACTIONS(1662), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_macro_rules_BANG] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1660), - [anon_sym_u8] = ACTIONS(1662), - [anon_sym_i8] = ACTIONS(1662), - [anon_sym_u16] = ACTIONS(1662), - [anon_sym_i16] = ACTIONS(1662), - [anon_sym_u32] = ACTIONS(1662), - [anon_sym_i32] = ACTIONS(1662), - [anon_sym_u64] = ACTIONS(1662), - [anon_sym_i64] = ACTIONS(1662), - [anon_sym_u128] = ACTIONS(1662), - [anon_sym_i128] = ACTIONS(1662), - [anon_sym_isize] = ACTIONS(1662), - [anon_sym_usize] = ACTIONS(1662), - [anon_sym_f32] = ACTIONS(1662), - [anon_sym_f64] = ACTIONS(1662), - [anon_sym_bool] = ACTIONS(1662), - [anon_sym_str] = ACTIONS(1662), - [anon_sym_char] = ACTIONS(1662), - [anon_sym_SQUOTE] = ACTIONS(1662), - [anon_sym_async] = ACTIONS(1662), - [anon_sym_break] = ACTIONS(1662), - [anon_sym_const] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(1662), - [anon_sym_default] = ACTIONS(1662), - [anon_sym_enum] = ACTIONS(1662), - [anon_sym_fn] = ACTIONS(1662), - [anon_sym_for] = ACTIONS(1662), - [anon_sym_if] = ACTIONS(1662), - [anon_sym_impl] = ACTIONS(1662), - [anon_sym_let] = ACTIONS(1662), - [anon_sym_loop] = ACTIONS(1662), - [anon_sym_match] = ACTIONS(1662), - [anon_sym_mod] = ACTIONS(1662), - [anon_sym_pub] = ACTIONS(1662), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_static] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(1662), - [anon_sym_trait] = ACTIONS(1662), - [anon_sym_type] = ACTIONS(1662), - [anon_sym_union] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1662), - [anon_sym_use] = ACTIONS(1662), - [anon_sym_while] = ACTIONS(1662), - [anon_sym_POUND] = ACTIONS(1660), - [anon_sym_BANG] = ACTIONS(1660), - [anon_sym_extern] = ACTIONS(1662), - [anon_sym_LT] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1660), - [anon_sym_AMP] = ACTIONS(1660), - [anon_sym_DOT_DOT] = ACTIONS(1660), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_PIPE] = ACTIONS(1660), - [anon_sym_move] = ACTIONS(1662), - [sym_integer_literal] = ACTIONS(1660), - [aux_sym_string_literal_token1] = ACTIONS(1660), - [sym_char_literal] = ACTIONS(1660), - [anon_sym_true] = ACTIONS(1662), - [anon_sym_false] = ACTIONS(1662), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1662), - [sym_super] = ACTIONS(1662), - [sym_crate] = ACTIONS(1662), - [sym_metavariable] = ACTIONS(1660), - [sym_raw_string_literal] = ACTIONS(1660), - [sym_float_literal] = ACTIONS(1660), + [ts_builtin_sym_end] = ACTIONS(1669), + [sym_identifier] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_macro_rules_BANG] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_u8] = ACTIONS(1671), + [anon_sym_i8] = ACTIONS(1671), + [anon_sym_u16] = ACTIONS(1671), + [anon_sym_i16] = ACTIONS(1671), + [anon_sym_u32] = ACTIONS(1671), + [anon_sym_i32] = ACTIONS(1671), + [anon_sym_u64] = ACTIONS(1671), + [anon_sym_i64] = ACTIONS(1671), + [anon_sym_u128] = ACTIONS(1671), + [anon_sym_i128] = ACTIONS(1671), + [anon_sym_isize] = ACTIONS(1671), + [anon_sym_usize] = ACTIONS(1671), + [anon_sym_f32] = ACTIONS(1671), + [anon_sym_f64] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_str] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_SQUOTE] = ACTIONS(1671), + [anon_sym_async] = ACTIONS(1671), + [anon_sym_break] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_continue] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1671), + [anon_sym_enum] = ACTIONS(1671), + [anon_sym_fn] = ACTIONS(1671), + [anon_sym_for] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(1671), + [anon_sym_impl] = ACTIONS(1671), + [anon_sym_let] = ACTIONS(1671), + [anon_sym_loop] = ACTIONS(1671), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_pub] = ACTIONS(1671), + [anon_sym_return] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_struct] = ACTIONS(1671), + [anon_sym_trait] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_union] = ACTIONS(1671), + [anon_sym_unsafe] = ACTIONS(1671), + [anon_sym_use] = ACTIONS(1671), + [anon_sym_while] = ACTIONS(1671), + [anon_sym_POUND] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1669), + [anon_sym_extern] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_COLON_COLON] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_move] = ACTIONS(1671), + [sym_integer_literal] = ACTIONS(1669), + [aux_sym_string_literal_token1] = ACTIONS(1669), + [sym_char_literal] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1671), + [sym_super] = ACTIONS(1671), + [sym_crate] = ACTIONS(1671), + [sym_metavariable] = ACTIONS(1669), + [sym_raw_string_literal] = ACTIONS(1669), + [sym_float_literal] = ACTIONS(1669), [sym_block_comment] = ACTIONS(3), }, [393] = { - [ts_builtin_sym_end] = ACTIONS(1664), - [sym_identifier] = ACTIONS(1666), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_macro_rules_BANG] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_u8] = ACTIONS(1666), - [anon_sym_i8] = ACTIONS(1666), - [anon_sym_u16] = ACTIONS(1666), - [anon_sym_i16] = ACTIONS(1666), - [anon_sym_u32] = ACTIONS(1666), - [anon_sym_i32] = ACTIONS(1666), - [anon_sym_u64] = ACTIONS(1666), - [anon_sym_i64] = ACTIONS(1666), - [anon_sym_u128] = ACTIONS(1666), - [anon_sym_i128] = ACTIONS(1666), - [anon_sym_isize] = ACTIONS(1666), - [anon_sym_usize] = ACTIONS(1666), - [anon_sym_f32] = ACTIONS(1666), - [anon_sym_f64] = ACTIONS(1666), - [anon_sym_bool] = ACTIONS(1666), - [anon_sym_str] = ACTIONS(1666), - [anon_sym_char] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(1666), - [anon_sym_async] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1666), - [anon_sym_enum] = ACTIONS(1666), - [anon_sym_fn] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_impl] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_mod] = ACTIONS(1666), - [anon_sym_pub] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_static] = ACTIONS(1666), - [anon_sym_struct] = ACTIONS(1666), - [anon_sym_trait] = ACTIONS(1666), - [anon_sym_type] = ACTIONS(1666), - [anon_sym_union] = ACTIONS(1666), - [anon_sym_unsafe] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(1664), - [anon_sym_COLON_COLON] = ACTIONS(1664), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_DOT_DOT] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_move] = ACTIONS(1666), - [sym_integer_literal] = ACTIONS(1664), - [aux_sym_string_literal_token1] = ACTIONS(1664), - [sym_char_literal] = ACTIONS(1664), - [anon_sym_true] = ACTIONS(1666), - [anon_sym_false] = ACTIONS(1666), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1666), - [sym_super] = ACTIONS(1666), - [sym_crate] = ACTIONS(1666), - [sym_metavariable] = ACTIONS(1664), - [sym_raw_string_literal] = ACTIONS(1664), - [sym_float_literal] = ACTIONS(1664), + [ts_builtin_sym_end] = ACTIONS(1673), + [sym_identifier] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_macro_rules_BANG] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1673), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_u8] = ACTIONS(1675), + [anon_sym_i8] = ACTIONS(1675), + [anon_sym_u16] = ACTIONS(1675), + [anon_sym_i16] = ACTIONS(1675), + [anon_sym_u32] = ACTIONS(1675), + [anon_sym_i32] = ACTIONS(1675), + [anon_sym_u64] = ACTIONS(1675), + [anon_sym_i64] = ACTIONS(1675), + [anon_sym_u128] = ACTIONS(1675), + [anon_sym_i128] = ACTIONS(1675), + [anon_sym_isize] = ACTIONS(1675), + [anon_sym_usize] = ACTIONS(1675), + [anon_sym_f32] = ACTIONS(1675), + [anon_sym_f64] = ACTIONS(1675), + [anon_sym_bool] = ACTIONS(1675), + [anon_sym_str] = ACTIONS(1675), + [anon_sym_char] = ACTIONS(1675), + [anon_sym_SQUOTE] = ACTIONS(1675), + [anon_sym_async] = ACTIONS(1675), + [anon_sym_break] = ACTIONS(1675), + [anon_sym_const] = ACTIONS(1675), + [anon_sym_continue] = ACTIONS(1675), + [anon_sym_default] = ACTIONS(1675), + [anon_sym_enum] = ACTIONS(1675), + [anon_sym_fn] = ACTIONS(1675), + [anon_sym_for] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1675), + [anon_sym_impl] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_loop] = ACTIONS(1675), + [anon_sym_match] = ACTIONS(1675), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_pub] = ACTIONS(1675), + [anon_sym_return] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_struct] = ACTIONS(1675), + [anon_sym_trait] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1675), + [anon_sym_use] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_extern] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_move] = ACTIONS(1675), + [sym_integer_literal] = ACTIONS(1673), + [aux_sym_string_literal_token1] = ACTIONS(1673), + [sym_char_literal] = ACTIONS(1673), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1675), + [sym_super] = ACTIONS(1675), + [sym_crate] = ACTIONS(1675), + [sym_metavariable] = ACTIONS(1673), + [sym_raw_string_literal] = ACTIONS(1673), + [sym_float_literal] = ACTIONS(1673), [sym_block_comment] = ACTIONS(3), }, [394] = { - [ts_builtin_sym_end] = ACTIONS(1668), - [sym_identifier] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_macro_rules_BANG] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_u8] = ACTIONS(1670), - [anon_sym_i8] = ACTIONS(1670), - [anon_sym_u16] = ACTIONS(1670), - [anon_sym_i16] = ACTIONS(1670), - [anon_sym_u32] = ACTIONS(1670), - [anon_sym_i32] = ACTIONS(1670), - [anon_sym_u64] = ACTIONS(1670), - [anon_sym_i64] = ACTIONS(1670), - [anon_sym_u128] = ACTIONS(1670), - [anon_sym_i128] = ACTIONS(1670), - [anon_sym_isize] = ACTIONS(1670), - [anon_sym_usize] = ACTIONS(1670), - [anon_sym_f32] = ACTIONS(1670), - [anon_sym_f64] = ACTIONS(1670), - [anon_sym_bool] = ACTIONS(1670), - [anon_sym_str] = ACTIONS(1670), - [anon_sym_char] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [anon_sym_async] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(1670), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_enum] = ACTIONS(1670), - [anon_sym_fn] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_impl] = ACTIONS(1670), - [anon_sym_let] = ACTIONS(1670), - [anon_sym_loop] = ACTIONS(1670), - [anon_sym_match] = ACTIONS(1670), - [anon_sym_mod] = ACTIONS(1670), - [anon_sym_pub] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(1670), - [anon_sym_struct] = ACTIONS(1670), - [anon_sym_trait] = ACTIONS(1670), - [anon_sym_type] = ACTIONS(1670), - [anon_sym_union] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1670), - [anon_sym_use] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_POUND] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_extern] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1668), - [anon_sym_COLON_COLON] = ACTIONS(1668), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_move] = ACTIONS(1670), - [sym_integer_literal] = ACTIONS(1668), - [aux_sym_string_literal_token1] = ACTIONS(1668), - [sym_char_literal] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1670), - [anon_sym_false] = ACTIONS(1670), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1670), - [sym_super] = ACTIONS(1670), - [sym_crate] = ACTIONS(1670), - [sym_metavariable] = ACTIONS(1668), - [sym_raw_string_literal] = ACTIONS(1668), - [sym_float_literal] = ACTIONS(1668), + [ts_builtin_sym_end] = ACTIONS(1677), + [sym_identifier] = ACTIONS(1679), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_macro_rules_BANG] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1677), + [anon_sym_RBRACE] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1677), + [anon_sym_STAR] = ACTIONS(1677), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_async] = ACTIONS(1679), + [anon_sym_break] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1679), + [anon_sym_continue] = ACTIONS(1679), + [anon_sym_default] = ACTIONS(1679), + [anon_sym_enum] = ACTIONS(1679), + [anon_sym_fn] = ACTIONS(1679), + [anon_sym_for] = ACTIONS(1679), + [anon_sym_if] = ACTIONS(1679), + [anon_sym_impl] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_loop] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1679), + [anon_sym_mod] = ACTIONS(1679), + [anon_sym_pub] = ACTIONS(1679), + [anon_sym_return] = ACTIONS(1679), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_struct] = ACTIONS(1679), + [anon_sym_trait] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_union] = ACTIONS(1679), + [anon_sym_unsafe] = ACTIONS(1679), + [anon_sym_use] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(1677), + [anon_sym_BANG] = ACTIONS(1677), + [anon_sym_extern] = ACTIONS(1679), + [anon_sym_LT] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_AMP] = ACTIONS(1677), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1677), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_move] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1677), + [aux_sym_string_literal_token1] = ACTIONS(1677), + [sym_char_literal] = ACTIONS(1677), + [anon_sym_true] = ACTIONS(1679), + [anon_sym_false] = ACTIONS(1679), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1679), + [sym_super] = ACTIONS(1679), + [sym_crate] = ACTIONS(1679), + [sym_metavariable] = ACTIONS(1677), + [sym_raw_string_literal] = ACTIONS(1677), + [sym_float_literal] = ACTIONS(1677), [sym_block_comment] = ACTIONS(3), }, [395] = { - [ts_builtin_sym_end] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_macro_rules_BANG] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_STAR] = ACTIONS(1672), - [anon_sym_u8] = ACTIONS(1674), - [anon_sym_i8] = ACTIONS(1674), - [anon_sym_u16] = ACTIONS(1674), - [anon_sym_i16] = ACTIONS(1674), - [anon_sym_u32] = ACTIONS(1674), - [anon_sym_i32] = ACTIONS(1674), - [anon_sym_u64] = ACTIONS(1674), - [anon_sym_i64] = ACTIONS(1674), - [anon_sym_u128] = ACTIONS(1674), - [anon_sym_i128] = ACTIONS(1674), - [anon_sym_isize] = ACTIONS(1674), - [anon_sym_usize] = ACTIONS(1674), - [anon_sym_f32] = ACTIONS(1674), - [anon_sym_f64] = ACTIONS(1674), - [anon_sym_bool] = ACTIONS(1674), - [anon_sym_str] = ACTIONS(1674), - [anon_sym_char] = ACTIONS(1674), - [anon_sym_SQUOTE] = ACTIONS(1674), - [anon_sym_async] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), - [anon_sym_fn] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_impl] = ACTIONS(1674), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_loop] = ACTIONS(1674), - [anon_sym_match] = ACTIONS(1674), - [anon_sym_mod] = ACTIONS(1674), - [anon_sym_pub] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_static] = ACTIONS(1674), - [anon_sym_struct] = ACTIONS(1674), - [anon_sym_trait] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_union] = ACTIONS(1674), - [anon_sym_unsafe] = ACTIONS(1674), - [anon_sym_use] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_POUND] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_extern] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_COLON_COLON] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_DOT_DOT] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_move] = ACTIONS(1674), - [sym_integer_literal] = ACTIONS(1672), - [aux_sym_string_literal_token1] = ACTIONS(1672), - [sym_char_literal] = ACTIONS(1672), - [anon_sym_true] = ACTIONS(1674), - [anon_sym_false] = ACTIONS(1674), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1674), - [sym_super] = ACTIONS(1674), - [sym_crate] = ACTIONS(1674), - [sym_metavariable] = ACTIONS(1672), - [sym_raw_string_literal] = ACTIONS(1672), - [sym_float_literal] = ACTIONS(1672), + [ts_builtin_sym_end] = ACTIONS(1681), + [sym_identifier] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_macro_rules_BANG] = ACTIONS(1681), + [anon_sym_LPAREN] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1681), + [anon_sym_RBRACE] = ACTIONS(1681), + [anon_sym_LBRACK] = ACTIONS(1681), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_u8] = ACTIONS(1683), + [anon_sym_i8] = ACTIONS(1683), + [anon_sym_u16] = ACTIONS(1683), + [anon_sym_i16] = ACTIONS(1683), + [anon_sym_u32] = ACTIONS(1683), + [anon_sym_i32] = ACTIONS(1683), + [anon_sym_u64] = ACTIONS(1683), + [anon_sym_i64] = ACTIONS(1683), + [anon_sym_u128] = ACTIONS(1683), + [anon_sym_i128] = ACTIONS(1683), + [anon_sym_isize] = ACTIONS(1683), + [anon_sym_usize] = ACTIONS(1683), + [anon_sym_f32] = ACTIONS(1683), + [anon_sym_f64] = ACTIONS(1683), + [anon_sym_bool] = ACTIONS(1683), + [anon_sym_str] = ACTIONS(1683), + [anon_sym_char] = ACTIONS(1683), + [anon_sym_SQUOTE] = ACTIONS(1683), + [anon_sym_async] = ACTIONS(1683), + [anon_sym_break] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_continue] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_enum] = ACTIONS(1683), + [anon_sym_fn] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1683), + [anon_sym_if] = ACTIONS(1683), + [anon_sym_impl] = ACTIONS(1683), + [anon_sym_let] = ACTIONS(1683), + [anon_sym_loop] = ACTIONS(1683), + [anon_sym_match] = ACTIONS(1683), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_pub] = ACTIONS(1683), + [anon_sym_return] = ACTIONS(1683), + [anon_sym_static] = ACTIONS(1683), + [anon_sym_struct] = ACTIONS(1683), + [anon_sym_trait] = ACTIONS(1683), + [anon_sym_type] = ACTIONS(1683), + [anon_sym_union] = ACTIONS(1683), + [anon_sym_unsafe] = ACTIONS(1683), + [anon_sym_use] = ACTIONS(1683), + [anon_sym_while] = ACTIONS(1683), + [anon_sym_POUND] = ACTIONS(1681), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_extern] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_COLON_COLON] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_move] = ACTIONS(1683), + [sym_integer_literal] = ACTIONS(1681), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1683), + [sym_super] = ACTIONS(1683), + [sym_crate] = ACTIONS(1683), + [sym_metavariable] = ACTIONS(1681), + [sym_raw_string_literal] = ACTIONS(1681), + [sym_float_literal] = ACTIONS(1681), [sym_block_comment] = ACTIONS(3), }, [396] = { - [ts_builtin_sym_end] = ACTIONS(1676), - [sym_identifier] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1676), - [anon_sym_macro_rules_BANG] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_RBRACE] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_STAR] = ACTIONS(1676), - [anon_sym_u8] = ACTIONS(1678), - [anon_sym_i8] = ACTIONS(1678), - [anon_sym_u16] = ACTIONS(1678), - [anon_sym_i16] = ACTIONS(1678), - [anon_sym_u32] = ACTIONS(1678), - [anon_sym_i32] = ACTIONS(1678), - [anon_sym_u64] = ACTIONS(1678), - [anon_sym_i64] = ACTIONS(1678), - [anon_sym_u128] = ACTIONS(1678), - [anon_sym_i128] = ACTIONS(1678), - [anon_sym_isize] = ACTIONS(1678), - [anon_sym_usize] = ACTIONS(1678), - [anon_sym_f32] = ACTIONS(1678), - [anon_sym_f64] = ACTIONS(1678), - [anon_sym_bool] = ACTIONS(1678), - [anon_sym_str] = ACTIONS(1678), - [anon_sym_char] = ACTIONS(1678), - [anon_sym_SQUOTE] = ACTIONS(1678), - [anon_sym_async] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1678), - [anon_sym_enum] = ACTIONS(1678), - [anon_sym_fn] = ACTIONS(1678), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_impl] = ACTIONS(1678), - [anon_sym_let] = ACTIONS(1678), - [anon_sym_loop] = ACTIONS(1678), - [anon_sym_match] = ACTIONS(1678), - [anon_sym_mod] = ACTIONS(1678), - [anon_sym_pub] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_static] = ACTIONS(1678), - [anon_sym_struct] = ACTIONS(1678), - [anon_sym_trait] = ACTIONS(1678), - [anon_sym_type] = ACTIONS(1678), - [anon_sym_union] = ACTIONS(1678), - [anon_sym_unsafe] = ACTIONS(1678), - [anon_sym_use] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1678), - [anon_sym_POUND] = ACTIONS(1676), - [anon_sym_BANG] = ACTIONS(1676), - [anon_sym_extern] = ACTIONS(1678), - [anon_sym_LT] = ACTIONS(1676), - [anon_sym_COLON_COLON] = ACTIONS(1676), - [anon_sym_AMP] = ACTIONS(1676), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PIPE] = ACTIONS(1676), - [anon_sym_move] = ACTIONS(1678), - [sym_integer_literal] = ACTIONS(1676), - [aux_sym_string_literal_token1] = ACTIONS(1676), - [sym_char_literal] = ACTIONS(1676), - [anon_sym_true] = ACTIONS(1678), - [anon_sym_false] = ACTIONS(1678), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1678), - [sym_super] = ACTIONS(1678), - [sym_crate] = ACTIONS(1678), - [sym_metavariable] = ACTIONS(1676), - [sym_raw_string_literal] = ACTIONS(1676), - [sym_float_literal] = ACTIONS(1676), + [ts_builtin_sym_end] = ACTIONS(1685), + [sym_identifier] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_macro_rules_BANG] = ACTIONS(1685), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1685), + [anon_sym_LBRACK] = ACTIONS(1685), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_u8] = ACTIONS(1687), + [anon_sym_i8] = ACTIONS(1687), + [anon_sym_u16] = ACTIONS(1687), + [anon_sym_i16] = ACTIONS(1687), + [anon_sym_u32] = ACTIONS(1687), + [anon_sym_i32] = ACTIONS(1687), + [anon_sym_u64] = ACTIONS(1687), + [anon_sym_i64] = ACTIONS(1687), + [anon_sym_u128] = ACTIONS(1687), + [anon_sym_i128] = ACTIONS(1687), + [anon_sym_isize] = ACTIONS(1687), + [anon_sym_usize] = ACTIONS(1687), + [anon_sym_f32] = ACTIONS(1687), + [anon_sym_f64] = ACTIONS(1687), + [anon_sym_bool] = ACTIONS(1687), + [anon_sym_str] = ACTIONS(1687), + [anon_sym_char] = ACTIONS(1687), + [anon_sym_SQUOTE] = ACTIONS(1687), + [anon_sym_async] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1687), + [anon_sym_continue] = ACTIONS(1687), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_enum] = ACTIONS(1687), + [anon_sym_fn] = ACTIONS(1687), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_impl] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1687), + [anon_sym_loop] = ACTIONS(1687), + [anon_sym_match] = ACTIONS(1687), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_pub] = ACTIONS(1687), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_static] = ACTIONS(1687), + [anon_sym_struct] = ACTIONS(1687), + [anon_sym_trait] = ACTIONS(1687), + [anon_sym_type] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_use] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_POUND] = ACTIONS(1685), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_extern] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_COLON_COLON] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_DOT_DOT] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_move] = ACTIONS(1687), + [sym_integer_literal] = ACTIONS(1685), + [aux_sym_string_literal_token1] = ACTIONS(1685), + [sym_char_literal] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1687), + [anon_sym_false] = ACTIONS(1687), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1687), + [sym_super] = ACTIONS(1687), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1685), + [sym_raw_string_literal] = ACTIONS(1685), + [sym_float_literal] = ACTIONS(1685), [sym_block_comment] = ACTIONS(3), }, [397] = { - [ts_builtin_sym_end] = ACTIONS(1680), - [sym_identifier] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_macro_rules_BANG] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1680), - [anon_sym_LBRACE] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_u8] = ACTIONS(1682), - [anon_sym_i8] = ACTIONS(1682), - [anon_sym_u16] = ACTIONS(1682), - [anon_sym_i16] = ACTIONS(1682), - [anon_sym_u32] = ACTIONS(1682), - [anon_sym_i32] = ACTIONS(1682), - [anon_sym_u64] = ACTIONS(1682), - [anon_sym_i64] = ACTIONS(1682), - [anon_sym_u128] = ACTIONS(1682), - [anon_sym_i128] = ACTIONS(1682), - [anon_sym_isize] = ACTIONS(1682), - [anon_sym_usize] = ACTIONS(1682), - [anon_sym_f32] = ACTIONS(1682), - [anon_sym_f64] = ACTIONS(1682), - [anon_sym_bool] = ACTIONS(1682), - [anon_sym_str] = ACTIONS(1682), - [anon_sym_char] = ACTIONS(1682), - [anon_sym_SQUOTE] = ACTIONS(1682), - [anon_sym_async] = ACTIONS(1682), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_default] = ACTIONS(1682), - [anon_sym_enum] = ACTIONS(1682), - [anon_sym_fn] = ACTIONS(1682), - [anon_sym_for] = ACTIONS(1682), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_impl] = ACTIONS(1682), - [anon_sym_let] = ACTIONS(1682), - [anon_sym_loop] = ACTIONS(1682), - [anon_sym_match] = ACTIONS(1682), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_pub] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_static] = ACTIONS(1682), - [anon_sym_struct] = ACTIONS(1682), - [anon_sym_trait] = ACTIONS(1682), - [anon_sym_type] = ACTIONS(1682), - [anon_sym_union] = ACTIONS(1682), - [anon_sym_unsafe] = ACTIONS(1682), - [anon_sym_use] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1682), - [anon_sym_POUND] = ACTIONS(1680), - [anon_sym_BANG] = ACTIONS(1680), - [anon_sym_extern] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_COLON_COLON] = ACTIONS(1680), - [anon_sym_AMP] = ACTIONS(1680), - [anon_sym_DOT_DOT] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_move] = ACTIONS(1682), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1680), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1682), - [anon_sym_false] = ACTIONS(1682), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1682), - [sym_super] = ACTIONS(1682), - [sym_crate] = ACTIONS(1682), - [sym_metavariable] = ACTIONS(1680), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), + [ts_builtin_sym_end] = ACTIONS(1689), + [sym_identifier] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_macro_rules_BANG] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_LBRACK] = ACTIONS(1689), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_u8] = ACTIONS(1691), + [anon_sym_i8] = ACTIONS(1691), + [anon_sym_u16] = ACTIONS(1691), + [anon_sym_i16] = ACTIONS(1691), + [anon_sym_u32] = ACTIONS(1691), + [anon_sym_i32] = ACTIONS(1691), + [anon_sym_u64] = ACTIONS(1691), + [anon_sym_i64] = ACTIONS(1691), + [anon_sym_u128] = ACTIONS(1691), + [anon_sym_i128] = ACTIONS(1691), + [anon_sym_isize] = ACTIONS(1691), + [anon_sym_usize] = ACTIONS(1691), + [anon_sym_f32] = ACTIONS(1691), + [anon_sym_f64] = ACTIONS(1691), + [anon_sym_bool] = ACTIONS(1691), + [anon_sym_str] = ACTIONS(1691), + [anon_sym_char] = ACTIONS(1691), + [anon_sym_SQUOTE] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_enum] = ACTIONS(1691), + [anon_sym_fn] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_impl] = ACTIONS(1691), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_loop] = ACTIONS(1691), + [anon_sym_match] = ACTIONS(1691), + [anon_sym_mod] = ACTIONS(1691), + [anon_sym_pub] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_struct] = ACTIONS(1691), + [anon_sym_trait] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_unsafe] = ACTIONS(1691), + [anon_sym_use] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_POUND] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1689), + [anon_sym_extern] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_COLON_COLON] = ACTIONS(1689), + [anon_sym_AMP] = ACTIONS(1689), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_move] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1689), + [aux_sym_string_literal_token1] = ACTIONS(1689), + [sym_char_literal] = ACTIONS(1689), + [anon_sym_true] = ACTIONS(1691), + [anon_sym_false] = ACTIONS(1691), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1691), + [sym_super] = ACTIONS(1691), + [sym_crate] = ACTIONS(1691), + [sym_metavariable] = ACTIONS(1689), + [sym_raw_string_literal] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1689), [sym_block_comment] = ACTIONS(3), }, [398] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_macro_rules_BANG] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1684), - [anon_sym_u8] = ACTIONS(1686), - [anon_sym_i8] = ACTIONS(1686), - [anon_sym_u16] = ACTIONS(1686), - [anon_sym_i16] = ACTIONS(1686), - [anon_sym_u32] = ACTIONS(1686), - [anon_sym_i32] = ACTIONS(1686), - [anon_sym_u64] = ACTIONS(1686), - [anon_sym_i64] = ACTIONS(1686), - [anon_sym_u128] = ACTIONS(1686), - [anon_sym_i128] = ACTIONS(1686), - [anon_sym_isize] = ACTIONS(1686), - [anon_sym_usize] = ACTIONS(1686), - [anon_sym_f32] = ACTIONS(1686), - [anon_sym_f64] = ACTIONS(1686), - [anon_sym_bool] = ACTIONS(1686), - [anon_sym_str] = ACTIONS(1686), - [anon_sym_char] = ACTIONS(1686), - [anon_sym_SQUOTE] = ACTIONS(1686), - [anon_sym_async] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_const] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_enum] = ACTIONS(1686), - [anon_sym_fn] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_impl] = ACTIONS(1686), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_loop] = ACTIONS(1686), - [anon_sym_match] = ACTIONS(1686), - [anon_sym_mod] = ACTIONS(1686), - [anon_sym_pub] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_struct] = ACTIONS(1686), - [anon_sym_trait] = ACTIONS(1686), - [anon_sym_type] = ACTIONS(1686), - [anon_sym_union] = ACTIONS(1686), - [anon_sym_unsafe] = ACTIONS(1686), - [anon_sym_use] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_LT] = ACTIONS(1684), - [anon_sym_COLON_COLON] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1684), - [anon_sym_DOT_DOT] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1684), - [anon_sym_move] = ACTIONS(1686), - [sym_integer_literal] = ACTIONS(1684), - [aux_sym_string_literal_token1] = ACTIONS(1684), - [sym_char_literal] = ACTIONS(1684), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1684), - [sym_raw_string_literal] = ACTIONS(1684), - [sym_float_literal] = ACTIONS(1684), + [ts_builtin_sym_end] = ACTIONS(1693), + [sym_identifier] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_macro_rules_BANG] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(1693), + [anon_sym_STAR] = ACTIONS(1693), + [anon_sym_u8] = ACTIONS(1695), + [anon_sym_i8] = ACTIONS(1695), + [anon_sym_u16] = ACTIONS(1695), + [anon_sym_i16] = ACTIONS(1695), + [anon_sym_u32] = ACTIONS(1695), + [anon_sym_i32] = ACTIONS(1695), + [anon_sym_u64] = ACTIONS(1695), + [anon_sym_i64] = ACTIONS(1695), + [anon_sym_u128] = ACTIONS(1695), + [anon_sym_i128] = ACTIONS(1695), + [anon_sym_isize] = ACTIONS(1695), + [anon_sym_usize] = ACTIONS(1695), + [anon_sym_f32] = ACTIONS(1695), + [anon_sym_f64] = ACTIONS(1695), + [anon_sym_bool] = ACTIONS(1695), + [anon_sym_str] = ACTIONS(1695), + [anon_sym_char] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_async] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1695), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_default] = ACTIONS(1695), + [anon_sym_enum] = ACTIONS(1695), + [anon_sym_fn] = ACTIONS(1695), + [anon_sym_for] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_impl] = ACTIONS(1695), + [anon_sym_let] = ACTIONS(1695), + [anon_sym_loop] = ACTIONS(1695), + [anon_sym_match] = ACTIONS(1695), + [anon_sym_mod] = ACTIONS(1695), + [anon_sym_pub] = ACTIONS(1695), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_static] = ACTIONS(1695), + [anon_sym_struct] = ACTIONS(1695), + [anon_sym_trait] = ACTIONS(1695), + [anon_sym_type] = ACTIONS(1695), + [anon_sym_union] = ACTIONS(1695), + [anon_sym_unsafe] = ACTIONS(1695), + [anon_sym_use] = ACTIONS(1695), + [anon_sym_while] = ACTIONS(1695), + [anon_sym_POUND] = ACTIONS(1693), + [anon_sym_BANG] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1693), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1693), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_DASH] = ACTIONS(1693), + [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_move] = ACTIONS(1695), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1695), + [sym_super] = ACTIONS(1695), + [sym_crate] = ACTIONS(1695), + [sym_metavariable] = ACTIONS(1693), + [sym_raw_string_literal] = ACTIONS(1693), + [sym_float_literal] = ACTIONS(1693), [sym_block_comment] = ACTIONS(3), }, [399] = { - [sym__token_pattern] = STATE(239), - [sym_token_tree_pattern] = STATE(239), - [sym_token_binding_pattern] = STATE(239), - [sym_token_repetition_pattern] = STATE(239), - [sym__literal] = STATE(239), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1270), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_RPAREN] = ACTIONS(1688), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [anon_sym_u8] = ACTIONS(1270), - [anon_sym_i8] = ACTIONS(1270), - [anon_sym_u16] = ACTIONS(1270), - [anon_sym_i16] = ACTIONS(1270), - [anon_sym_u32] = ACTIONS(1270), - [anon_sym_i32] = ACTIONS(1270), - [anon_sym_u64] = ACTIONS(1270), - [anon_sym_i64] = ACTIONS(1270), - [anon_sym_u128] = ACTIONS(1270), - [anon_sym_i128] = ACTIONS(1270), - [anon_sym_isize] = ACTIONS(1270), - [anon_sym_usize] = ACTIONS(1270), - [anon_sym_f32] = ACTIONS(1270), - [anon_sym_f64] = ACTIONS(1270), - [anon_sym_bool] = ACTIONS(1270), - [anon_sym_str] = ACTIONS(1270), - [anon_sym_char] = ACTIONS(1270), - [aux_sym__non_special_token_token1] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_as] = ACTIONS(1270), - [anon_sym_async] = ACTIONS(1270), - [anon_sym_await] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_fn] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_impl] = ACTIONS(1270), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_loop] = ACTIONS(1270), - [anon_sym_match] = ACTIONS(1270), - [anon_sym_mod] = ACTIONS(1270), - [anon_sym_pub] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_trait] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_unsafe] = ACTIONS(1270), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_where] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [sym_mutable_specifier] = ACTIONS(1270), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1116), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [ts_builtin_sym_end] = ACTIONS(1697), + [sym_identifier] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1697), + [anon_sym_macro_rules_BANG] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1697), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_RBRACE] = ACTIONS(1697), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1697), + [anon_sym_u8] = ACTIONS(1699), + [anon_sym_i8] = ACTIONS(1699), + [anon_sym_u16] = ACTIONS(1699), + [anon_sym_i16] = ACTIONS(1699), + [anon_sym_u32] = ACTIONS(1699), + [anon_sym_i32] = ACTIONS(1699), + [anon_sym_u64] = ACTIONS(1699), + [anon_sym_i64] = ACTIONS(1699), + [anon_sym_u128] = ACTIONS(1699), + [anon_sym_i128] = ACTIONS(1699), + [anon_sym_isize] = ACTIONS(1699), + [anon_sym_usize] = ACTIONS(1699), + [anon_sym_f32] = ACTIONS(1699), + [anon_sym_f64] = ACTIONS(1699), + [anon_sym_bool] = ACTIONS(1699), + [anon_sym_str] = ACTIONS(1699), + [anon_sym_char] = ACTIONS(1699), + [anon_sym_SQUOTE] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1699), + [anon_sym_const] = ACTIONS(1699), + [anon_sym_continue] = ACTIONS(1699), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_enum] = ACTIONS(1699), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1699), + [anon_sym_impl] = ACTIONS(1699), + [anon_sym_let] = ACTIONS(1699), + [anon_sym_loop] = ACTIONS(1699), + [anon_sym_match] = ACTIONS(1699), + [anon_sym_mod] = ACTIONS(1699), + [anon_sym_pub] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1699), + [anon_sym_static] = ACTIONS(1699), + [anon_sym_struct] = ACTIONS(1699), + [anon_sym_trait] = ACTIONS(1699), + [anon_sym_type] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_unsafe] = ACTIONS(1699), + [anon_sym_use] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1699), + [anon_sym_POUND] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_extern] = ACTIONS(1699), + [anon_sym_LT] = ACTIONS(1697), + [anon_sym_COLON_COLON] = ACTIONS(1697), + [anon_sym_AMP] = ACTIONS(1697), + [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_PIPE] = ACTIONS(1697), + [anon_sym_move] = ACTIONS(1699), + [sym_integer_literal] = ACTIONS(1697), + [aux_sym_string_literal_token1] = ACTIONS(1697), + [sym_char_literal] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1699), + [anon_sym_false] = ACTIONS(1699), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1697), + [sym_raw_string_literal] = ACTIONS(1697), + [sym_float_literal] = ACTIONS(1697), [sym_block_comment] = ACTIONS(3), }, [400] = { - [ts_builtin_sym_end] = ACTIONS(1690), - [sym_identifier] = ACTIONS(1692), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_macro_rules_BANG] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1690), - [anon_sym_u8] = ACTIONS(1692), - [anon_sym_i8] = ACTIONS(1692), - [anon_sym_u16] = ACTIONS(1692), - [anon_sym_i16] = ACTIONS(1692), - [anon_sym_u32] = ACTIONS(1692), - [anon_sym_i32] = ACTIONS(1692), - [anon_sym_u64] = ACTIONS(1692), - [anon_sym_i64] = ACTIONS(1692), - [anon_sym_u128] = ACTIONS(1692), - [anon_sym_i128] = ACTIONS(1692), - [anon_sym_isize] = ACTIONS(1692), - [anon_sym_usize] = ACTIONS(1692), - [anon_sym_f32] = ACTIONS(1692), - [anon_sym_f64] = ACTIONS(1692), - [anon_sym_bool] = ACTIONS(1692), - [anon_sym_str] = ACTIONS(1692), - [anon_sym_char] = ACTIONS(1692), - [anon_sym_SQUOTE] = ACTIONS(1692), - [anon_sym_async] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1692), - [anon_sym_default] = ACTIONS(1692), - [anon_sym_enum] = ACTIONS(1692), - [anon_sym_fn] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_impl] = ACTIONS(1692), - [anon_sym_let] = ACTIONS(1692), - [anon_sym_loop] = ACTIONS(1692), - [anon_sym_match] = ACTIONS(1692), - [anon_sym_mod] = ACTIONS(1692), - [anon_sym_pub] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_static] = ACTIONS(1692), - [anon_sym_struct] = ACTIONS(1692), - [anon_sym_trait] = ACTIONS(1692), - [anon_sym_type] = ACTIONS(1692), - [anon_sym_union] = ACTIONS(1692), - [anon_sym_unsafe] = ACTIONS(1692), - [anon_sym_use] = ACTIONS(1692), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_POUND] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_extern] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1690), - [anon_sym_COLON_COLON] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1690), - [anon_sym_DOT_DOT] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_move] = ACTIONS(1692), - [sym_integer_literal] = ACTIONS(1690), - [aux_sym_string_literal_token1] = ACTIONS(1690), - [sym_char_literal] = ACTIONS(1690), - [anon_sym_true] = ACTIONS(1692), - [anon_sym_false] = ACTIONS(1692), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1692), - [sym_super] = ACTIONS(1692), - [sym_crate] = ACTIONS(1692), - [sym_metavariable] = ACTIONS(1690), - [sym_raw_string_literal] = ACTIONS(1690), - [sym_float_literal] = ACTIONS(1690), + [ts_builtin_sym_end] = ACTIONS(1701), + [sym_identifier] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1701), + [anon_sym_macro_rules_BANG] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(1701), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_u8] = ACTIONS(1703), + [anon_sym_i8] = ACTIONS(1703), + [anon_sym_u16] = ACTIONS(1703), + [anon_sym_i16] = ACTIONS(1703), + [anon_sym_u32] = ACTIONS(1703), + [anon_sym_i32] = ACTIONS(1703), + [anon_sym_u64] = ACTIONS(1703), + [anon_sym_i64] = ACTIONS(1703), + [anon_sym_u128] = ACTIONS(1703), + [anon_sym_i128] = ACTIONS(1703), + [anon_sym_isize] = ACTIONS(1703), + [anon_sym_usize] = ACTIONS(1703), + [anon_sym_f32] = ACTIONS(1703), + [anon_sym_f64] = ACTIONS(1703), + [anon_sym_bool] = ACTIONS(1703), + [anon_sym_str] = ACTIONS(1703), + [anon_sym_char] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_break] = ACTIONS(1703), + [anon_sym_const] = ACTIONS(1703), + [anon_sym_continue] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1703), + [anon_sym_enum] = ACTIONS(1703), + [anon_sym_fn] = ACTIONS(1703), + [anon_sym_for] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1703), + [anon_sym_impl] = ACTIONS(1703), + [anon_sym_let] = ACTIONS(1703), + [anon_sym_loop] = ACTIONS(1703), + [anon_sym_match] = ACTIONS(1703), + [anon_sym_mod] = ACTIONS(1703), + [anon_sym_pub] = ACTIONS(1703), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_static] = ACTIONS(1703), + [anon_sym_struct] = ACTIONS(1703), + [anon_sym_trait] = ACTIONS(1703), + [anon_sym_type] = ACTIONS(1703), + [anon_sym_union] = ACTIONS(1703), + [anon_sym_unsafe] = ACTIONS(1703), + [anon_sym_use] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1703), + [anon_sym_LT] = ACTIONS(1701), + [anon_sym_COLON_COLON] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1701), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DASH] = ACTIONS(1701), + [anon_sym_PIPE] = ACTIONS(1701), + [anon_sym_move] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1701), + [aux_sym_string_literal_token1] = ACTIONS(1701), + [sym_char_literal] = ACTIONS(1701), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1703), + [sym_super] = ACTIONS(1703), + [sym_crate] = ACTIONS(1703), + [sym_metavariable] = ACTIONS(1701), + [sym_raw_string_literal] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1701), [sym_block_comment] = ACTIONS(3), }, [401] = { - [sym_token_tree] = STATE(401), - [sym_token_repetition] = STATE(401), - [sym__literal] = STATE(401), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(401), - [sym_identifier] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(1697), - [anon_sym_RPAREN] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_RBRACE] = ACTIONS(1700), + [ts_builtin_sym_end] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_macro_rules_BANG] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_RBRACK] = ACTIONS(1700), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_u8] = ACTIONS(1694), - [anon_sym_i8] = ACTIONS(1694), - [anon_sym_u16] = ACTIONS(1694), - [anon_sym_i16] = ACTIONS(1694), - [anon_sym_u32] = ACTIONS(1694), - [anon_sym_i32] = ACTIONS(1694), - [anon_sym_u64] = ACTIONS(1694), - [anon_sym_i64] = ACTIONS(1694), - [anon_sym_u128] = ACTIONS(1694), - [anon_sym_i128] = ACTIONS(1694), - [anon_sym_isize] = ACTIONS(1694), - [anon_sym_usize] = ACTIONS(1694), - [anon_sym_f32] = ACTIONS(1694), - [anon_sym_f64] = ACTIONS(1694), - [anon_sym_bool] = ACTIONS(1694), - [anon_sym_str] = ACTIONS(1694), - [anon_sym_char] = ACTIONS(1694), - [aux_sym__non_special_token_token1] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1694), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_async] = ACTIONS(1694), - [anon_sym_await] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_const] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1694), - [anon_sym_enum] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(1694), - [anon_sym_for] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_impl] = ACTIONS(1694), - [anon_sym_let] = ACTIONS(1694), - [anon_sym_loop] = ACTIONS(1694), - [anon_sym_match] = ACTIONS(1694), - [anon_sym_mod] = ACTIONS(1694), - [anon_sym_pub] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_static] = ACTIONS(1694), - [anon_sym_struct] = ACTIONS(1694), - [anon_sym_trait] = ACTIONS(1694), - [anon_sym_type] = ACTIONS(1694), - [anon_sym_union] = ACTIONS(1694), - [anon_sym_unsafe] = ACTIONS(1694), - [anon_sym_use] = ACTIONS(1694), - [anon_sym_where] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [sym_mutable_specifier] = ACTIONS(1694), - [sym_integer_literal] = ACTIONS(1711), - [aux_sym_string_literal_token1] = ACTIONS(1714), - [sym_char_literal] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(1694), - [sym_super] = ACTIONS(1694), - [sym_crate] = ACTIONS(1694), - [sym_metavariable] = ACTIONS(1720), - [sym_raw_string_literal] = ACTIONS(1711), - [sym_float_literal] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1705), + [anon_sym_u8] = ACTIONS(1707), + [anon_sym_i8] = ACTIONS(1707), + [anon_sym_u16] = ACTIONS(1707), + [anon_sym_i16] = ACTIONS(1707), + [anon_sym_u32] = ACTIONS(1707), + [anon_sym_i32] = ACTIONS(1707), + [anon_sym_u64] = ACTIONS(1707), + [anon_sym_i64] = ACTIONS(1707), + [anon_sym_u128] = ACTIONS(1707), + [anon_sym_i128] = ACTIONS(1707), + [anon_sym_isize] = ACTIONS(1707), + [anon_sym_usize] = ACTIONS(1707), + [anon_sym_f32] = ACTIONS(1707), + [anon_sym_f64] = ACTIONS(1707), + [anon_sym_bool] = ACTIONS(1707), + [anon_sym_str] = ACTIONS(1707), + [anon_sym_char] = ACTIONS(1707), + [anon_sym_SQUOTE] = ACTIONS(1707), + [anon_sym_async] = ACTIONS(1707), + [anon_sym_break] = ACTIONS(1707), + [anon_sym_const] = ACTIONS(1707), + [anon_sym_continue] = ACTIONS(1707), + [anon_sym_default] = ACTIONS(1707), + [anon_sym_enum] = ACTIONS(1707), + [anon_sym_fn] = ACTIONS(1707), + [anon_sym_for] = ACTIONS(1707), + [anon_sym_if] = ACTIONS(1707), + [anon_sym_impl] = ACTIONS(1707), + [anon_sym_let] = ACTIONS(1707), + [anon_sym_loop] = ACTIONS(1707), + [anon_sym_match] = ACTIONS(1707), + [anon_sym_mod] = ACTIONS(1707), + [anon_sym_pub] = ACTIONS(1707), + [anon_sym_return] = ACTIONS(1707), + [anon_sym_static] = ACTIONS(1707), + [anon_sym_struct] = ACTIONS(1707), + [anon_sym_trait] = ACTIONS(1707), + [anon_sym_type] = ACTIONS(1707), + [anon_sym_union] = ACTIONS(1707), + [anon_sym_unsafe] = ACTIONS(1707), + [anon_sym_use] = ACTIONS(1707), + [anon_sym_while] = ACTIONS(1707), + [anon_sym_POUND] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1705), + [anon_sym_COLON_COLON] = ACTIONS(1705), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1705), + [anon_sym_move] = ACTIONS(1707), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1705), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1707), + [sym_super] = ACTIONS(1707), + [sym_crate] = ACTIONS(1707), + [sym_metavariable] = ACTIONS(1705), + [sym_raw_string_literal] = ACTIONS(1705), + [sym_float_literal] = ACTIONS(1705), [sym_block_comment] = ACTIONS(3), }, [402] = { - [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_LBRACE] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1723), - [anon_sym_BANG] = ACTIONS(1723), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_COLON_COLON] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1725), - [sym_super] = ACTIONS(1725), - [sym_crate] = ACTIONS(1725), - [sym_metavariable] = ACTIONS(1723), - [sym_raw_string_literal] = ACTIONS(1723), - [sym_float_literal] = ACTIONS(1723), + [ts_builtin_sym_end] = ACTIONS(1709), + [sym_identifier] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_macro_rules_BANG] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_u8] = ACTIONS(1711), + [anon_sym_i8] = ACTIONS(1711), + [anon_sym_u16] = ACTIONS(1711), + [anon_sym_i16] = ACTIONS(1711), + [anon_sym_u32] = ACTIONS(1711), + [anon_sym_i32] = ACTIONS(1711), + [anon_sym_u64] = ACTIONS(1711), + [anon_sym_i64] = ACTIONS(1711), + [anon_sym_u128] = ACTIONS(1711), + [anon_sym_i128] = ACTIONS(1711), + [anon_sym_isize] = ACTIONS(1711), + [anon_sym_usize] = ACTIONS(1711), + [anon_sym_f32] = ACTIONS(1711), + [anon_sym_f64] = ACTIONS(1711), + [anon_sym_bool] = ACTIONS(1711), + [anon_sym_str] = ACTIONS(1711), + [anon_sym_char] = ACTIONS(1711), + [anon_sym_SQUOTE] = ACTIONS(1711), + [anon_sym_async] = ACTIONS(1711), + [anon_sym_break] = ACTIONS(1711), + [anon_sym_const] = ACTIONS(1711), + [anon_sym_continue] = ACTIONS(1711), + [anon_sym_default] = ACTIONS(1711), + [anon_sym_enum] = ACTIONS(1711), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_for] = ACTIONS(1711), + [anon_sym_if] = ACTIONS(1711), + [anon_sym_impl] = ACTIONS(1711), + [anon_sym_let] = ACTIONS(1711), + [anon_sym_loop] = ACTIONS(1711), + [anon_sym_match] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_pub] = ACTIONS(1711), + [anon_sym_return] = ACTIONS(1711), + [anon_sym_static] = ACTIONS(1711), + [anon_sym_struct] = ACTIONS(1711), + [anon_sym_trait] = ACTIONS(1711), + [anon_sym_type] = ACTIONS(1711), + [anon_sym_union] = ACTIONS(1711), + [anon_sym_unsafe] = ACTIONS(1711), + [anon_sym_use] = ACTIONS(1711), + [anon_sym_while] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(1709), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_AMP] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_move] = ACTIONS(1711), + [sym_integer_literal] = ACTIONS(1709), + [aux_sym_string_literal_token1] = ACTIONS(1709), + [sym_char_literal] = ACTIONS(1709), + [anon_sym_true] = ACTIONS(1711), + [anon_sym_false] = ACTIONS(1711), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1709), + [sym_raw_string_literal] = ACTIONS(1709), + [sym_float_literal] = ACTIONS(1709), [sym_block_comment] = ACTIONS(3), }, [403] = { - [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_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1727), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_COLON_COLON] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1729), - [sym_super] = ACTIONS(1729), - [sym_crate] = ACTIONS(1729), - [sym_metavariable] = ACTIONS(1727), - [sym_raw_string_literal] = ACTIONS(1727), - [sym_float_literal] = ACTIONS(1727), + [ts_builtin_sym_end] = ACTIONS(1713), + [sym_identifier] = ACTIONS(1715), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_macro_rules_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_u8] = ACTIONS(1715), + [anon_sym_i8] = ACTIONS(1715), + [anon_sym_u16] = ACTIONS(1715), + [anon_sym_i16] = ACTIONS(1715), + [anon_sym_u32] = ACTIONS(1715), + [anon_sym_i32] = ACTIONS(1715), + [anon_sym_u64] = ACTIONS(1715), + [anon_sym_i64] = ACTIONS(1715), + [anon_sym_u128] = ACTIONS(1715), + [anon_sym_i128] = ACTIONS(1715), + [anon_sym_isize] = ACTIONS(1715), + [anon_sym_usize] = ACTIONS(1715), + [anon_sym_f32] = ACTIONS(1715), + [anon_sym_f64] = ACTIONS(1715), + [anon_sym_bool] = ACTIONS(1715), + [anon_sym_str] = ACTIONS(1715), + [anon_sym_char] = ACTIONS(1715), + [anon_sym_SQUOTE] = ACTIONS(1715), + [anon_sym_async] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_default] = ACTIONS(1715), + [anon_sym_enum] = ACTIONS(1715), + [anon_sym_fn] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_impl] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_mod] = ACTIONS(1715), + [anon_sym_pub] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_static] = ACTIONS(1715), + [anon_sym_struct] = ACTIONS(1715), + [anon_sym_trait] = ACTIONS(1715), + [anon_sym_type] = ACTIONS(1715), + [anon_sym_union] = ACTIONS(1715), + [anon_sym_unsafe] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(1713), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_DOT_DOT] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_move] = ACTIONS(1715), + [sym_integer_literal] = ACTIONS(1713), + [aux_sym_string_literal_token1] = ACTIONS(1713), + [sym_char_literal] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1715), + [sym_super] = ACTIONS(1715), + [sym_crate] = ACTIONS(1715), + [sym_metavariable] = ACTIONS(1713), + [sym_raw_string_literal] = ACTIONS(1713), + [sym_float_literal] = ACTIONS(1713), [sym_block_comment] = ACTIONS(3), }, [404] = { - [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_LBRACE] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1731), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1731), - [anon_sym_COLON_COLON] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1731), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1733), - [sym_super] = ACTIONS(1733), - [sym_crate] = ACTIONS(1733), - [sym_metavariable] = ACTIONS(1731), - [sym_raw_string_literal] = ACTIONS(1731), - [sym_float_literal] = ACTIONS(1731), + [ts_builtin_sym_end] = ACTIONS(1717), + [sym_identifier] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_macro_rules_BANG] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_u8] = ACTIONS(1719), + [anon_sym_i8] = ACTIONS(1719), + [anon_sym_u16] = ACTIONS(1719), + [anon_sym_i16] = ACTIONS(1719), + [anon_sym_u32] = ACTIONS(1719), + [anon_sym_i32] = ACTIONS(1719), + [anon_sym_u64] = ACTIONS(1719), + [anon_sym_i64] = ACTIONS(1719), + [anon_sym_u128] = ACTIONS(1719), + [anon_sym_i128] = ACTIONS(1719), + [anon_sym_isize] = ACTIONS(1719), + [anon_sym_usize] = ACTIONS(1719), + [anon_sym_f32] = ACTIONS(1719), + [anon_sym_f64] = ACTIONS(1719), + [anon_sym_bool] = ACTIONS(1719), + [anon_sym_str] = ACTIONS(1719), + [anon_sym_char] = ACTIONS(1719), + [anon_sym_SQUOTE] = ACTIONS(1719), + [anon_sym_async] = ACTIONS(1719), + [anon_sym_break] = ACTIONS(1719), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_continue] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_enum] = ACTIONS(1719), + [anon_sym_fn] = ACTIONS(1719), + [anon_sym_for] = ACTIONS(1719), + [anon_sym_if] = ACTIONS(1719), + [anon_sym_impl] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_loop] = ACTIONS(1719), + [anon_sym_match] = ACTIONS(1719), + [anon_sym_mod] = ACTIONS(1719), + [anon_sym_pub] = ACTIONS(1719), + [anon_sym_return] = ACTIONS(1719), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_struct] = ACTIONS(1719), + [anon_sym_trait] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_union] = ACTIONS(1719), + [anon_sym_unsafe] = ACTIONS(1719), + [anon_sym_use] = ACTIONS(1719), + [anon_sym_while] = ACTIONS(1719), + [anon_sym_POUND] = ACTIONS(1717), + [anon_sym_BANG] = ACTIONS(1717), + [anon_sym_extern] = ACTIONS(1719), + [anon_sym_LT] = ACTIONS(1717), + [anon_sym_COLON_COLON] = ACTIONS(1717), + [anon_sym_AMP] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_move] = ACTIONS(1719), + [sym_integer_literal] = ACTIONS(1717), + [aux_sym_string_literal_token1] = ACTIONS(1717), + [sym_char_literal] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1719), + [anon_sym_false] = ACTIONS(1719), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1719), + [sym_super] = ACTIONS(1719), + [sym_crate] = ACTIONS(1719), + [sym_metavariable] = ACTIONS(1717), + [sym_raw_string_literal] = ACTIONS(1717), + [sym_float_literal] = ACTIONS(1717), [sym_block_comment] = ACTIONS(3), }, [405] = { - [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_LBRACE] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_DOT_DOT] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1737), - [sym_super] = ACTIONS(1737), - [sym_crate] = ACTIONS(1737), - [sym_metavariable] = ACTIONS(1735), - [sym_raw_string_literal] = ACTIONS(1735), - [sym_float_literal] = ACTIONS(1735), + [ts_builtin_sym_end] = ACTIONS(1721), + [sym_identifier] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1721), + [anon_sym_macro_rules_BANG] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_STAR] = ACTIONS(1721), + [anon_sym_u8] = ACTIONS(1723), + [anon_sym_i8] = ACTIONS(1723), + [anon_sym_u16] = ACTIONS(1723), + [anon_sym_i16] = ACTIONS(1723), + [anon_sym_u32] = ACTIONS(1723), + [anon_sym_i32] = ACTIONS(1723), + [anon_sym_u64] = ACTIONS(1723), + [anon_sym_i64] = ACTIONS(1723), + [anon_sym_u128] = ACTIONS(1723), + [anon_sym_i128] = ACTIONS(1723), + [anon_sym_isize] = ACTIONS(1723), + [anon_sym_usize] = ACTIONS(1723), + [anon_sym_f32] = ACTIONS(1723), + [anon_sym_f64] = ACTIONS(1723), + [anon_sym_bool] = ACTIONS(1723), + [anon_sym_str] = ACTIONS(1723), + [anon_sym_char] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_async] = ACTIONS(1723), + [anon_sym_break] = ACTIONS(1723), + [anon_sym_const] = ACTIONS(1723), + [anon_sym_continue] = ACTIONS(1723), + [anon_sym_default] = ACTIONS(1723), + [anon_sym_enum] = ACTIONS(1723), + [anon_sym_fn] = ACTIONS(1723), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_impl] = ACTIONS(1723), + [anon_sym_let] = ACTIONS(1723), + [anon_sym_loop] = ACTIONS(1723), + [anon_sym_match] = ACTIONS(1723), + [anon_sym_mod] = ACTIONS(1723), + [anon_sym_pub] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1723), + [anon_sym_static] = ACTIONS(1723), + [anon_sym_struct] = ACTIONS(1723), + [anon_sym_trait] = ACTIONS(1723), + [anon_sym_type] = ACTIONS(1723), + [anon_sym_union] = ACTIONS(1723), + [anon_sym_unsafe] = ACTIONS(1723), + [anon_sym_use] = ACTIONS(1723), + [anon_sym_while] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(1721), + [anon_sym_BANG] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(1721), + [anon_sym_COLON_COLON] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1721), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_move] = ACTIONS(1723), + [sym_integer_literal] = ACTIONS(1721), + [aux_sym_string_literal_token1] = ACTIONS(1721), + [sym_char_literal] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1723), + [sym_super] = ACTIONS(1723), + [sym_crate] = ACTIONS(1723), + [sym_metavariable] = ACTIONS(1721), + [sym_raw_string_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(1721), [sym_block_comment] = ACTIONS(3), }, [406] = { - [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_LBRACE] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_LBRACK] = 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_SQUOTE] = ACTIONS(1741), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [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_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_POUND] = ACTIONS(1739), - [anon_sym_BANG] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1741), - [sym_super] = ACTIONS(1741), - [sym_crate] = ACTIONS(1741), - [sym_metavariable] = ACTIONS(1739), - [sym_raw_string_literal] = ACTIONS(1739), - [sym_float_literal] = ACTIONS(1739), + [ts_builtin_sym_end] = ACTIONS(1725), + [sym_identifier] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_macro_rules_BANG] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_LBRACE] = ACTIONS(1725), + [anon_sym_RBRACE] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1725), + [anon_sym_u8] = ACTIONS(1727), + [anon_sym_i8] = ACTIONS(1727), + [anon_sym_u16] = ACTIONS(1727), + [anon_sym_i16] = ACTIONS(1727), + [anon_sym_u32] = ACTIONS(1727), + [anon_sym_i32] = ACTIONS(1727), + [anon_sym_u64] = ACTIONS(1727), + [anon_sym_i64] = ACTIONS(1727), + [anon_sym_u128] = ACTIONS(1727), + [anon_sym_i128] = ACTIONS(1727), + [anon_sym_isize] = ACTIONS(1727), + [anon_sym_usize] = ACTIONS(1727), + [anon_sym_f32] = ACTIONS(1727), + [anon_sym_f64] = ACTIONS(1727), + [anon_sym_bool] = ACTIONS(1727), + [anon_sym_str] = ACTIONS(1727), + [anon_sym_char] = ACTIONS(1727), + [anon_sym_SQUOTE] = ACTIONS(1727), + [anon_sym_async] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_default] = ACTIONS(1727), + [anon_sym_enum] = ACTIONS(1727), + [anon_sym_fn] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_impl] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_mod] = ACTIONS(1727), + [anon_sym_pub] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_static] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1727), + [anon_sym_trait] = ACTIONS(1727), + [anon_sym_type] = ACTIONS(1727), + [anon_sym_union] = ACTIONS(1727), + [anon_sym_unsafe] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1725), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_COLON_COLON] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_move] = ACTIONS(1727), + [sym_integer_literal] = ACTIONS(1725), + [aux_sym_string_literal_token1] = ACTIONS(1725), + [sym_char_literal] = ACTIONS(1725), + [anon_sym_true] = ACTIONS(1727), + [anon_sym_false] = ACTIONS(1727), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1727), + [sym_super] = ACTIONS(1727), + [sym_crate] = ACTIONS(1727), + [sym_metavariable] = ACTIONS(1725), + [sym_raw_string_literal] = ACTIONS(1725), + [sym_float_literal] = ACTIONS(1725), [sym_block_comment] = ACTIONS(3), }, [407] = { - [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_LBRACE] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1743), - [anon_sym_BANG] = ACTIONS(1743), - [anon_sym_extern] = ACTIONS(1745), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_COLON_COLON] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1743), - [anon_sym_DOT_DOT] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1745), - [sym_super] = ACTIONS(1745), - [sym_crate] = ACTIONS(1745), - [sym_metavariable] = ACTIONS(1743), - [sym_raw_string_literal] = ACTIONS(1743), - [sym_float_literal] = ACTIONS(1743), + [ts_builtin_sym_end] = ACTIONS(1729), + [sym_identifier] = ACTIONS(1731), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_macro_rules_BANG] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1729), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_u8] = ACTIONS(1731), + [anon_sym_i8] = ACTIONS(1731), + [anon_sym_u16] = ACTIONS(1731), + [anon_sym_i16] = ACTIONS(1731), + [anon_sym_u32] = ACTIONS(1731), + [anon_sym_i32] = ACTIONS(1731), + [anon_sym_u64] = ACTIONS(1731), + [anon_sym_i64] = ACTIONS(1731), + [anon_sym_u128] = ACTIONS(1731), + [anon_sym_i128] = ACTIONS(1731), + [anon_sym_isize] = ACTIONS(1731), + [anon_sym_usize] = ACTIONS(1731), + [anon_sym_f32] = ACTIONS(1731), + [anon_sym_f64] = ACTIONS(1731), + [anon_sym_bool] = ACTIONS(1731), + [anon_sym_str] = ACTIONS(1731), + [anon_sym_char] = ACTIONS(1731), + [anon_sym_SQUOTE] = ACTIONS(1731), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_const] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_default] = ACTIONS(1731), + [anon_sym_enum] = ACTIONS(1731), + [anon_sym_fn] = ACTIONS(1731), + [anon_sym_for] = ACTIONS(1731), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_impl] = ACTIONS(1731), + [anon_sym_let] = ACTIONS(1731), + [anon_sym_loop] = ACTIONS(1731), + [anon_sym_match] = ACTIONS(1731), + [anon_sym_mod] = ACTIONS(1731), + [anon_sym_pub] = ACTIONS(1731), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_static] = ACTIONS(1731), + [anon_sym_struct] = ACTIONS(1731), + [anon_sym_trait] = ACTIONS(1731), + [anon_sym_type] = ACTIONS(1731), + [anon_sym_union] = ACTIONS(1731), + [anon_sym_unsafe] = ACTIONS(1731), + [anon_sym_use] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(1729), + [anon_sym_BANG] = ACTIONS(1729), + [anon_sym_extern] = ACTIONS(1731), + [anon_sym_LT] = ACTIONS(1729), + [anon_sym_COLON_COLON] = ACTIONS(1729), + [anon_sym_AMP] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1729), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_move] = ACTIONS(1731), + [sym_integer_literal] = ACTIONS(1729), + [aux_sym_string_literal_token1] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1731), + [sym_super] = ACTIONS(1731), + [sym_crate] = ACTIONS(1731), + [sym_metavariable] = ACTIONS(1729), + [sym_raw_string_literal] = ACTIONS(1729), + [sym_float_literal] = ACTIONS(1729), [sym_block_comment] = ACTIONS(3), }, [408] = { - [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_LBRACE] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1747), - [anon_sym_BANG] = ACTIONS(1747), - [anon_sym_extern] = ACTIONS(1749), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_COLON_COLON] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1749), - [sym_super] = ACTIONS(1749), - [sym_crate] = ACTIONS(1749), - [sym_metavariable] = ACTIONS(1747), - [sym_raw_string_literal] = ACTIONS(1747), - [sym_float_literal] = ACTIONS(1747), + [ts_builtin_sym_end] = ACTIONS(1733), + [sym_identifier] = ACTIONS(1735), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_macro_rules_BANG] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_STAR] = ACTIONS(1733), + [anon_sym_u8] = ACTIONS(1735), + [anon_sym_i8] = ACTIONS(1735), + [anon_sym_u16] = ACTIONS(1735), + [anon_sym_i16] = ACTIONS(1735), + [anon_sym_u32] = ACTIONS(1735), + [anon_sym_i32] = ACTIONS(1735), + [anon_sym_u64] = ACTIONS(1735), + [anon_sym_i64] = ACTIONS(1735), + [anon_sym_u128] = ACTIONS(1735), + [anon_sym_i128] = ACTIONS(1735), + [anon_sym_isize] = ACTIONS(1735), + [anon_sym_usize] = ACTIONS(1735), + [anon_sym_f32] = ACTIONS(1735), + [anon_sym_f64] = ACTIONS(1735), + [anon_sym_bool] = ACTIONS(1735), + [anon_sym_str] = ACTIONS(1735), + [anon_sym_char] = ACTIONS(1735), + [anon_sym_SQUOTE] = ACTIONS(1735), + [anon_sym_async] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1735), + [anon_sym_enum] = ACTIONS(1735), + [anon_sym_fn] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_impl] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_mod] = ACTIONS(1735), + [anon_sym_pub] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_static] = ACTIONS(1735), + [anon_sym_struct] = ACTIONS(1735), + [anon_sym_trait] = ACTIONS(1735), + [anon_sym_type] = ACTIONS(1735), + [anon_sym_union] = ACTIONS(1735), + [anon_sym_unsafe] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1733), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(1733), + [anon_sym_COLON_COLON] = ACTIONS(1733), + [anon_sym_AMP] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_move] = ACTIONS(1735), + [sym_integer_literal] = ACTIONS(1733), + [aux_sym_string_literal_token1] = ACTIONS(1733), + [sym_char_literal] = ACTIONS(1733), + [anon_sym_true] = ACTIONS(1735), + [anon_sym_false] = ACTIONS(1735), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1735), + [sym_super] = ACTIONS(1735), + [sym_crate] = ACTIONS(1735), + [sym_metavariable] = ACTIONS(1733), + [sym_raw_string_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(1733), [sym_block_comment] = ACTIONS(3), }, [409] = { - [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_LBRACE] = ACTIONS(1751), - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1751), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_extern] = ACTIONS(1753), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_COLON_COLON] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_DOT_DOT] = ACTIONS(1751), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1753), - [sym_super] = ACTIONS(1753), - [sym_crate] = ACTIONS(1753), - [sym_metavariable] = ACTIONS(1751), - [sym_raw_string_literal] = ACTIONS(1751), - [sym_float_literal] = ACTIONS(1751), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_macro_rules_BANG] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_STAR] = ACTIONS(1737), + [anon_sym_u8] = ACTIONS(1739), + [anon_sym_i8] = ACTIONS(1739), + [anon_sym_u16] = ACTIONS(1739), + [anon_sym_i16] = ACTIONS(1739), + [anon_sym_u32] = ACTIONS(1739), + [anon_sym_i32] = ACTIONS(1739), + [anon_sym_u64] = ACTIONS(1739), + [anon_sym_i64] = ACTIONS(1739), + [anon_sym_u128] = ACTIONS(1739), + [anon_sym_i128] = ACTIONS(1739), + [anon_sym_isize] = ACTIONS(1739), + [anon_sym_usize] = ACTIONS(1739), + [anon_sym_f32] = ACTIONS(1739), + [anon_sym_f64] = ACTIONS(1739), + [anon_sym_bool] = ACTIONS(1739), + [anon_sym_str] = ACTIONS(1739), + [anon_sym_char] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(1739), + [anon_sym_enum] = ACTIONS(1739), + [anon_sym_fn] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_impl] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_mod] = ACTIONS(1739), + [anon_sym_pub] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_static] = ACTIONS(1739), + [anon_sym_struct] = ACTIONS(1739), + [anon_sym_trait] = ACTIONS(1739), + [anon_sym_type] = ACTIONS(1739), + [anon_sym_union] = ACTIONS(1739), + [anon_sym_unsafe] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_LT] = ACTIONS(1737), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1737), + [anon_sym_DASH] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_move] = ACTIONS(1739), + [sym_integer_literal] = ACTIONS(1737), + [aux_sym_string_literal_token1] = ACTIONS(1737), + [sym_char_literal] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1739), + [anon_sym_false] = ACTIONS(1739), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1739), + [sym_super] = ACTIONS(1739), + [sym_crate] = ACTIONS(1739), + [sym_metavariable] = ACTIONS(1737), + [sym_raw_string_literal] = ACTIONS(1737), + [sym_float_literal] = ACTIONS(1737), [sym_block_comment] = ACTIONS(3), }, [410] = { - [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_LBRACE] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1755), - [anon_sym_BANG] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1755), - [anon_sym_COLON_COLON] = ACTIONS(1755), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_PIPE] = ACTIONS(1755), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1757), - [sym_super] = ACTIONS(1757), - [sym_crate] = ACTIONS(1757), - [sym_metavariable] = ACTIONS(1755), - [sym_raw_string_literal] = ACTIONS(1755), - [sym_float_literal] = ACTIONS(1755), + [ts_builtin_sym_end] = ACTIONS(1741), + [sym_identifier] = ACTIONS(1743), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_macro_rules_BANG] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_STAR] = ACTIONS(1741), + [anon_sym_u8] = ACTIONS(1743), + [anon_sym_i8] = ACTIONS(1743), + [anon_sym_u16] = ACTIONS(1743), + [anon_sym_i16] = ACTIONS(1743), + [anon_sym_u32] = ACTIONS(1743), + [anon_sym_i32] = ACTIONS(1743), + [anon_sym_u64] = ACTIONS(1743), + [anon_sym_i64] = ACTIONS(1743), + [anon_sym_u128] = ACTIONS(1743), + [anon_sym_i128] = ACTIONS(1743), + [anon_sym_isize] = ACTIONS(1743), + [anon_sym_usize] = ACTIONS(1743), + [anon_sym_f32] = ACTIONS(1743), + [anon_sym_f64] = ACTIONS(1743), + [anon_sym_bool] = ACTIONS(1743), + [anon_sym_str] = ACTIONS(1743), + [anon_sym_char] = ACTIONS(1743), + [anon_sym_SQUOTE] = ACTIONS(1743), + [anon_sym_async] = ACTIONS(1743), + [anon_sym_break] = ACTIONS(1743), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_continue] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_enum] = ACTIONS(1743), + [anon_sym_fn] = ACTIONS(1743), + [anon_sym_for] = ACTIONS(1743), + [anon_sym_if] = ACTIONS(1743), + [anon_sym_impl] = ACTIONS(1743), + [anon_sym_let] = ACTIONS(1743), + [anon_sym_loop] = ACTIONS(1743), + [anon_sym_match] = ACTIONS(1743), + [anon_sym_mod] = ACTIONS(1743), + [anon_sym_pub] = ACTIONS(1743), + [anon_sym_return] = ACTIONS(1743), + [anon_sym_static] = ACTIONS(1743), + [anon_sym_struct] = ACTIONS(1743), + [anon_sym_trait] = ACTIONS(1743), + [anon_sym_type] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1743), + [anon_sym_use] = ACTIONS(1743), + [anon_sym_while] = ACTIONS(1743), + [anon_sym_POUND] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1741), + [anon_sym_extern] = ACTIONS(1743), + [anon_sym_LT] = ACTIONS(1741), + [anon_sym_COLON_COLON] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1741), + [anon_sym_DASH] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_move] = ACTIONS(1743), + [sym_integer_literal] = ACTIONS(1741), + [aux_sym_string_literal_token1] = ACTIONS(1741), + [sym_char_literal] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1743), + [anon_sym_false] = ACTIONS(1743), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1743), + [sym_super] = ACTIONS(1743), + [sym_crate] = ACTIONS(1743), + [sym_metavariable] = ACTIONS(1741), + [sym_raw_string_literal] = ACTIONS(1741), + [sym_float_literal] = ACTIONS(1741), [sym_block_comment] = ACTIONS(3), }, [411] = { - [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_LBRACE] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1759), - [anon_sym_BANG] = ACTIONS(1759), - [anon_sym_extern] = ACTIONS(1761), - [anon_sym_LT] = ACTIONS(1759), - [anon_sym_COLON_COLON] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1761), - [sym_super] = ACTIONS(1761), - [sym_crate] = ACTIONS(1761), - [sym_metavariable] = ACTIONS(1759), - [sym_raw_string_literal] = ACTIONS(1759), - [sym_float_literal] = ACTIONS(1759), + [ts_builtin_sym_end] = ACTIONS(1745), + [sym_identifier] = ACTIONS(1747), + [anon_sym_SEMI] = ACTIONS(1745), + [anon_sym_macro_rules_BANG] = ACTIONS(1745), + [anon_sym_LPAREN] = ACTIONS(1745), + [anon_sym_LBRACE] = ACTIONS(1745), + [anon_sym_RBRACE] = ACTIONS(1745), + [anon_sym_LBRACK] = ACTIONS(1745), + [anon_sym_STAR] = ACTIONS(1745), + [anon_sym_u8] = ACTIONS(1747), + [anon_sym_i8] = ACTIONS(1747), + [anon_sym_u16] = ACTIONS(1747), + [anon_sym_i16] = ACTIONS(1747), + [anon_sym_u32] = ACTIONS(1747), + [anon_sym_i32] = ACTIONS(1747), + [anon_sym_u64] = ACTIONS(1747), + [anon_sym_i64] = ACTIONS(1747), + [anon_sym_u128] = ACTIONS(1747), + [anon_sym_i128] = ACTIONS(1747), + [anon_sym_isize] = ACTIONS(1747), + [anon_sym_usize] = ACTIONS(1747), + [anon_sym_f32] = ACTIONS(1747), + [anon_sym_f64] = ACTIONS(1747), + [anon_sym_bool] = ACTIONS(1747), + [anon_sym_str] = ACTIONS(1747), + [anon_sym_char] = ACTIONS(1747), + [anon_sym_SQUOTE] = ACTIONS(1747), + [anon_sym_async] = ACTIONS(1747), + [anon_sym_break] = ACTIONS(1747), + [anon_sym_const] = ACTIONS(1747), + [anon_sym_continue] = ACTIONS(1747), + [anon_sym_default] = ACTIONS(1747), + [anon_sym_enum] = ACTIONS(1747), + [anon_sym_fn] = ACTIONS(1747), + [anon_sym_for] = ACTIONS(1747), + [anon_sym_if] = ACTIONS(1747), + [anon_sym_impl] = ACTIONS(1747), + [anon_sym_let] = ACTIONS(1747), + [anon_sym_loop] = ACTIONS(1747), + [anon_sym_match] = ACTIONS(1747), + [anon_sym_mod] = ACTIONS(1747), + [anon_sym_pub] = ACTIONS(1747), + [anon_sym_return] = ACTIONS(1747), + [anon_sym_static] = ACTIONS(1747), + [anon_sym_struct] = ACTIONS(1747), + [anon_sym_trait] = ACTIONS(1747), + [anon_sym_type] = ACTIONS(1747), + [anon_sym_union] = ACTIONS(1747), + [anon_sym_unsafe] = ACTIONS(1747), + [anon_sym_use] = ACTIONS(1747), + [anon_sym_while] = ACTIONS(1747), + [anon_sym_POUND] = ACTIONS(1745), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_extern] = ACTIONS(1747), + [anon_sym_LT] = ACTIONS(1745), + [anon_sym_COLON_COLON] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_DOT_DOT] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1745), + [anon_sym_PIPE] = ACTIONS(1745), + [anon_sym_move] = ACTIONS(1747), + [sym_integer_literal] = ACTIONS(1745), + [aux_sym_string_literal_token1] = ACTIONS(1745), + [sym_char_literal] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1745), + [sym_raw_string_literal] = ACTIONS(1745), + [sym_float_literal] = ACTIONS(1745), [sym_block_comment] = ACTIONS(3), }, [412] = { - [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_LBRACE] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_COLON_COLON] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1765), - [sym_super] = ACTIONS(1765), - [sym_crate] = ACTIONS(1765), - [sym_metavariable] = ACTIONS(1763), - [sym_raw_string_literal] = ACTIONS(1763), - [sym_float_literal] = ACTIONS(1763), + [ts_builtin_sym_end] = ACTIONS(1749), + [sym_identifier] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1749), + [anon_sym_macro_rules_BANG] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1749), + [anon_sym_STAR] = ACTIONS(1749), + [anon_sym_u8] = ACTIONS(1751), + [anon_sym_i8] = ACTIONS(1751), + [anon_sym_u16] = ACTIONS(1751), + [anon_sym_i16] = ACTIONS(1751), + [anon_sym_u32] = ACTIONS(1751), + [anon_sym_i32] = ACTIONS(1751), + [anon_sym_u64] = ACTIONS(1751), + [anon_sym_i64] = ACTIONS(1751), + [anon_sym_u128] = ACTIONS(1751), + [anon_sym_i128] = ACTIONS(1751), + [anon_sym_isize] = ACTIONS(1751), + [anon_sym_usize] = ACTIONS(1751), + [anon_sym_f32] = ACTIONS(1751), + [anon_sym_f64] = ACTIONS(1751), + [anon_sym_bool] = ACTIONS(1751), + [anon_sym_str] = ACTIONS(1751), + [anon_sym_char] = ACTIONS(1751), + [anon_sym_SQUOTE] = ACTIONS(1751), + [anon_sym_async] = ACTIONS(1751), + [anon_sym_break] = ACTIONS(1751), + [anon_sym_const] = ACTIONS(1751), + [anon_sym_continue] = ACTIONS(1751), + [anon_sym_default] = ACTIONS(1751), + [anon_sym_enum] = ACTIONS(1751), + [anon_sym_fn] = ACTIONS(1751), + [anon_sym_for] = ACTIONS(1751), + [anon_sym_if] = ACTIONS(1751), + [anon_sym_impl] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1751), + [anon_sym_loop] = ACTIONS(1751), + [anon_sym_match] = ACTIONS(1751), + [anon_sym_mod] = ACTIONS(1751), + [anon_sym_pub] = ACTIONS(1751), + [anon_sym_return] = ACTIONS(1751), + [anon_sym_static] = ACTIONS(1751), + [anon_sym_struct] = ACTIONS(1751), + [anon_sym_trait] = ACTIONS(1751), + [anon_sym_type] = ACTIONS(1751), + [anon_sym_union] = ACTIONS(1751), + [anon_sym_unsafe] = ACTIONS(1751), + [anon_sym_use] = ACTIONS(1751), + [anon_sym_while] = ACTIONS(1751), + [anon_sym_POUND] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1751), + [anon_sym_LT] = ACTIONS(1749), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_AMP] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1749), + [anon_sym_move] = ACTIONS(1751), + [sym_integer_literal] = ACTIONS(1749), + [aux_sym_string_literal_token1] = ACTIONS(1749), + [sym_char_literal] = ACTIONS(1749), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1751), + [sym_super] = ACTIONS(1751), + [sym_crate] = ACTIONS(1751), + [sym_metavariable] = ACTIONS(1749), + [sym_raw_string_literal] = ACTIONS(1749), + [sym_float_literal] = ACTIONS(1749), [sym_block_comment] = ACTIONS(3), }, [413] = { - [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_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_LBRACK] = 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_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_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_POUND] = ACTIONS(1767), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_COLON_COLON] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_move] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1769), - [sym_super] = ACTIONS(1769), - [sym_crate] = ACTIONS(1769), - [sym_metavariable] = ACTIONS(1767), - [sym_raw_string_literal] = ACTIONS(1767), - [sym_float_literal] = ACTIONS(1767), + [ts_builtin_sym_end] = ACTIONS(1753), + [sym_identifier] = ACTIONS(1755), + [anon_sym_SEMI] = ACTIONS(1753), + [anon_sym_macro_rules_BANG] = ACTIONS(1753), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACE] = ACTIONS(1753), + [anon_sym_RBRACE] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1753), + [anon_sym_STAR] = ACTIONS(1753), + [anon_sym_u8] = ACTIONS(1755), + [anon_sym_i8] = ACTIONS(1755), + [anon_sym_u16] = ACTIONS(1755), + [anon_sym_i16] = ACTIONS(1755), + [anon_sym_u32] = ACTIONS(1755), + [anon_sym_i32] = ACTIONS(1755), + [anon_sym_u64] = ACTIONS(1755), + [anon_sym_i64] = ACTIONS(1755), + [anon_sym_u128] = ACTIONS(1755), + [anon_sym_i128] = ACTIONS(1755), + [anon_sym_isize] = ACTIONS(1755), + [anon_sym_usize] = ACTIONS(1755), + [anon_sym_f32] = ACTIONS(1755), + [anon_sym_f64] = ACTIONS(1755), + [anon_sym_bool] = ACTIONS(1755), + [anon_sym_str] = ACTIONS(1755), + [anon_sym_char] = ACTIONS(1755), + [anon_sym_SQUOTE] = ACTIONS(1755), + [anon_sym_async] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_const] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_default] = ACTIONS(1755), + [anon_sym_enum] = ACTIONS(1755), + [anon_sym_fn] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_impl] = ACTIONS(1755), + [anon_sym_let] = ACTIONS(1755), + [anon_sym_loop] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1755), + [anon_sym_mod] = ACTIONS(1755), + [anon_sym_pub] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_static] = ACTIONS(1755), + [anon_sym_struct] = ACTIONS(1755), + [anon_sym_trait] = ACTIONS(1755), + [anon_sym_type] = ACTIONS(1755), + [anon_sym_union] = ACTIONS(1755), + [anon_sym_unsafe] = ACTIONS(1755), + [anon_sym_use] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1753), + [anon_sym_extern] = ACTIONS(1755), + [anon_sym_LT] = ACTIONS(1753), + [anon_sym_COLON_COLON] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1753), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_DASH] = ACTIONS(1753), + [anon_sym_PIPE] = ACTIONS(1753), + [anon_sym_move] = ACTIONS(1755), + [sym_integer_literal] = ACTIONS(1753), + [aux_sym_string_literal_token1] = ACTIONS(1753), + [sym_char_literal] = ACTIONS(1753), + [anon_sym_true] = ACTIONS(1755), + [anon_sym_false] = ACTIONS(1755), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1755), + [sym_super] = ACTIONS(1755), + [sym_crate] = ACTIONS(1755), + [sym_metavariable] = ACTIONS(1753), + [sym_raw_string_literal] = ACTIONS(1753), + [sym_float_literal] = ACTIONS(1753), [sym_block_comment] = ACTIONS(3), }, [414] = { - [ts_builtin_sym_end] = ACTIONS(1771), - [sym_identifier] = ACTIONS(1773), - [anon_sym_SEMI] = ACTIONS(1771), - [anon_sym_macro_rules_BANG] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1771), - [anon_sym_u8] = ACTIONS(1773), - [anon_sym_i8] = ACTIONS(1773), - [anon_sym_u16] = ACTIONS(1773), - [anon_sym_i16] = ACTIONS(1773), - [anon_sym_u32] = ACTIONS(1773), - [anon_sym_i32] = ACTIONS(1773), - [anon_sym_u64] = ACTIONS(1773), - [anon_sym_i64] = ACTIONS(1773), - [anon_sym_u128] = ACTIONS(1773), - [anon_sym_i128] = ACTIONS(1773), - [anon_sym_isize] = ACTIONS(1773), - [anon_sym_usize] = ACTIONS(1773), - [anon_sym_f32] = ACTIONS(1773), - [anon_sym_f64] = ACTIONS(1773), - [anon_sym_bool] = ACTIONS(1773), - [anon_sym_str] = ACTIONS(1773), - [anon_sym_char] = ACTIONS(1773), - [anon_sym_SQUOTE] = ACTIONS(1773), - [anon_sym_async] = ACTIONS(1773), - [anon_sym_break] = ACTIONS(1773), - [anon_sym_const] = ACTIONS(1773), - [anon_sym_continue] = ACTIONS(1773), - [anon_sym_default] = ACTIONS(1773), - [anon_sym_enum] = ACTIONS(1773), - [anon_sym_fn] = ACTIONS(1773), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_if] = ACTIONS(1773), - [anon_sym_impl] = ACTIONS(1773), - [anon_sym_let] = ACTIONS(1773), - [anon_sym_loop] = ACTIONS(1773), - [anon_sym_match] = ACTIONS(1773), - [anon_sym_mod] = ACTIONS(1773), - [anon_sym_pub] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(1773), - [anon_sym_static] = ACTIONS(1773), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_trait] = ACTIONS(1773), - [anon_sym_type] = ACTIONS(1773), - [anon_sym_union] = ACTIONS(1773), - [anon_sym_unsafe] = ACTIONS(1773), - [anon_sym_use] = ACTIONS(1773), - [anon_sym_while] = ACTIONS(1773), - [anon_sym_POUND] = ACTIONS(1771), - [anon_sym_BANG] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1773), - [anon_sym_LT] = ACTIONS(1771), - [anon_sym_COLON_COLON] = ACTIONS(1771), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_PIPE] = ACTIONS(1771), - [anon_sym_move] = ACTIONS(1773), - [sym_integer_literal] = ACTIONS(1771), - [aux_sym_string_literal_token1] = ACTIONS(1771), - [sym_char_literal] = ACTIONS(1771), - [anon_sym_true] = ACTIONS(1773), - [anon_sym_false] = ACTIONS(1773), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1773), - [sym_super] = ACTIONS(1773), - [sym_crate] = ACTIONS(1773), - [sym_metavariable] = ACTIONS(1771), - [sym_raw_string_literal] = ACTIONS(1771), - [sym_float_literal] = ACTIONS(1771), + [ts_builtin_sym_end] = ACTIONS(1757), + [sym_identifier] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(1757), + [anon_sym_macro_rules_BANG] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_STAR] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_SQUOTE] = ACTIONS(1759), + [anon_sym_async] = ACTIONS(1759), + [anon_sym_break] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(1759), + [anon_sym_continue] = ACTIONS(1759), + [anon_sym_default] = ACTIONS(1759), + [anon_sym_enum] = ACTIONS(1759), + [anon_sym_fn] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_impl] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_loop] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(1759), + [anon_sym_mod] = ACTIONS(1759), + [anon_sym_pub] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1759), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_struct] = ACTIONS(1759), + [anon_sym_trait] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_union] = ACTIONS(1759), + [anon_sym_unsafe] = ACTIONS(1759), + [anon_sym_use] = ACTIONS(1759), + [anon_sym_while] = ACTIONS(1759), + [anon_sym_POUND] = ACTIONS(1757), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_extern] = ACTIONS(1759), + [anon_sym_LT] = ACTIONS(1757), + [anon_sym_COLON_COLON] = ACTIONS(1757), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_PIPE] = ACTIONS(1757), + [anon_sym_move] = ACTIONS(1759), + [sym_integer_literal] = ACTIONS(1757), + [aux_sym_string_literal_token1] = ACTIONS(1757), + [sym_char_literal] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1759), + [anon_sym_false] = ACTIONS(1759), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1759), + [sym_super] = ACTIONS(1759), + [sym_crate] = ACTIONS(1759), + [sym_metavariable] = ACTIONS(1757), + [sym_raw_string_literal] = ACTIONS(1757), + [sym_float_literal] = ACTIONS(1757), [sym_block_comment] = ACTIONS(3), }, [415] = { - [ts_builtin_sym_end] = ACTIONS(1775), - [sym_identifier] = ACTIONS(1777), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_macro_rules_BANG] = ACTIONS(1775), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1775), - [anon_sym_RBRACE] = ACTIONS(1775), - [anon_sym_LBRACK] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_u8] = ACTIONS(1777), - [anon_sym_i8] = ACTIONS(1777), - [anon_sym_u16] = ACTIONS(1777), - [anon_sym_i16] = ACTIONS(1777), - [anon_sym_u32] = ACTIONS(1777), - [anon_sym_i32] = ACTIONS(1777), - [anon_sym_u64] = ACTIONS(1777), - [anon_sym_i64] = ACTIONS(1777), - [anon_sym_u128] = ACTIONS(1777), - [anon_sym_i128] = ACTIONS(1777), - [anon_sym_isize] = ACTIONS(1777), - [anon_sym_usize] = ACTIONS(1777), - [anon_sym_f32] = ACTIONS(1777), - [anon_sym_f64] = ACTIONS(1777), - [anon_sym_bool] = ACTIONS(1777), - [anon_sym_str] = ACTIONS(1777), - [anon_sym_char] = ACTIONS(1777), - [anon_sym_SQUOTE] = ACTIONS(1777), - [anon_sym_async] = ACTIONS(1777), - [anon_sym_break] = ACTIONS(1777), - [anon_sym_const] = ACTIONS(1777), - [anon_sym_continue] = ACTIONS(1777), - [anon_sym_default] = ACTIONS(1777), - [anon_sym_enum] = ACTIONS(1777), - [anon_sym_fn] = ACTIONS(1777), - [anon_sym_for] = ACTIONS(1777), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_impl] = ACTIONS(1777), - [anon_sym_let] = ACTIONS(1777), - [anon_sym_loop] = ACTIONS(1777), - [anon_sym_match] = ACTIONS(1777), - [anon_sym_mod] = ACTIONS(1777), - [anon_sym_pub] = ACTIONS(1777), - [anon_sym_return] = ACTIONS(1777), - [anon_sym_static] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1777), - [anon_sym_trait] = ACTIONS(1777), - [anon_sym_type] = ACTIONS(1777), - [anon_sym_union] = ACTIONS(1777), - [anon_sym_unsafe] = ACTIONS(1777), - [anon_sym_use] = ACTIONS(1777), - [anon_sym_while] = ACTIONS(1777), - [anon_sym_POUND] = ACTIONS(1775), - [anon_sym_BANG] = ACTIONS(1775), - [anon_sym_extern] = ACTIONS(1777), - [anon_sym_LT] = ACTIONS(1775), - [anon_sym_COLON_COLON] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_DOT_DOT] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_PIPE] = ACTIONS(1775), - [anon_sym_move] = ACTIONS(1777), - [sym_integer_literal] = ACTIONS(1775), - [aux_sym_string_literal_token1] = ACTIONS(1775), - [sym_char_literal] = ACTIONS(1775), - [anon_sym_true] = ACTIONS(1777), - [anon_sym_false] = ACTIONS(1777), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1777), - [sym_super] = ACTIONS(1777), - [sym_crate] = ACTIONS(1777), - [sym_metavariable] = ACTIONS(1775), - [sym_raw_string_literal] = ACTIONS(1775), - [sym_float_literal] = ACTIONS(1775), + [ts_builtin_sym_end] = ACTIONS(1761), + [sym_identifier] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_macro_rules_BANG] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1761), + [anon_sym_RBRACE] = ACTIONS(1761), + [anon_sym_LBRACK] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_u8] = ACTIONS(1763), + [anon_sym_i8] = ACTIONS(1763), + [anon_sym_u16] = ACTIONS(1763), + [anon_sym_i16] = ACTIONS(1763), + [anon_sym_u32] = ACTIONS(1763), + [anon_sym_i32] = ACTIONS(1763), + [anon_sym_u64] = ACTIONS(1763), + [anon_sym_i64] = ACTIONS(1763), + [anon_sym_u128] = ACTIONS(1763), + [anon_sym_i128] = ACTIONS(1763), + [anon_sym_isize] = ACTIONS(1763), + [anon_sym_usize] = ACTIONS(1763), + [anon_sym_f32] = ACTIONS(1763), + [anon_sym_f64] = ACTIONS(1763), + [anon_sym_bool] = ACTIONS(1763), + [anon_sym_str] = ACTIONS(1763), + [anon_sym_char] = ACTIONS(1763), + [anon_sym_SQUOTE] = ACTIONS(1763), + [anon_sym_async] = ACTIONS(1763), + [anon_sym_break] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1763), + [anon_sym_continue] = ACTIONS(1763), + [anon_sym_default] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1763), + [anon_sym_fn] = ACTIONS(1763), + [anon_sym_for] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1763), + [anon_sym_impl] = ACTIONS(1763), + [anon_sym_let] = ACTIONS(1763), + [anon_sym_loop] = ACTIONS(1763), + [anon_sym_match] = ACTIONS(1763), + [anon_sym_mod] = ACTIONS(1763), + [anon_sym_pub] = ACTIONS(1763), + [anon_sym_return] = ACTIONS(1763), + [anon_sym_static] = ACTIONS(1763), + [anon_sym_struct] = ACTIONS(1763), + [anon_sym_trait] = ACTIONS(1763), + [anon_sym_type] = ACTIONS(1763), + [anon_sym_union] = ACTIONS(1763), + [anon_sym_unsafe] = ACTIONS(1763), + [anon_sym_use] = ACTIONS(1763), + [anon_sym_while] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(1761), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_extern] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_COLON_COLON] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_DOT_DOT] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_move] = ACTIONS(1763), + [sym_integer_literal] = ACTIONS(1761), + [aux_sym_string_literal_token1] = ACTIONS(1761), + [sym_char_literal] = ACTIONS(1761), + [anon_sym_true] = ACTIONS(1763), + [anon_sym_false] = ACTIONS(1763), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1763), + [sym_super] = ACTIONS(1763), + [sym_crate] = ACTIONS(1763), + [sym_metavariable] = ACTIONS(1761), + [sym_raw_string_literal] = ACTIONS(1761), + [sym_float_literal] = ACTIONS(1761), [sym_block_comment] = ACTIONS(3), }, [416] = { - [ts_builtin_sym_end] = ACTIONS(1779), - [sym_identifier] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1779), - [anon_sym_macro_rules_BANG] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1779), - [anon_sym_u8] = ACTIONS(1781), - [anon_sym_i8] = ACTIONS(1781), - [anon_sym_u16] = ACTIONS(1781), - [anon_sym_i16] = ACTIONS(1781), - [anon_sym_u32] = ACTIONS(1781), - [anon_sym_i32] = ACTIONS(1781), - [anon_sym_u64] = ACTIONS(1781), - [anon_sym_i64] = ACTIONS(1781), - [anon_sym_u128] = ACTIONS(1781), - [anon_sym_i128] = ACTIONS(1781), - [anon_sym_isize] = ACTIONS(1781), - [anon_sym_usize] = ACTIONS(1781), - [anon_sym_f32] = ACTIONS(1781), - [anon_sym_f64] = ACTIONS(1781), - [anon_sym_bool] = ACTIONS(1781), - [anon_sym_str] = ACTIONS(1781), - [anon_sym_char] = ACTIONS(1781), - [anon_sym_SQUOTE] = ACTIONS(1781), - [anon_sym_async] = ACTIONS(1781), - [anon_sym_break] = ACTIONS(1781), - [anon_sym_const] = ACTIONS(1781), - [anon_sym_continue] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1781), - [anon_sym_enum] = ACTIONS(1781), - [anon_sym_fn] = ACTIONS(1781), - [anon_sym_for] = ACTIONS(1781), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_impl] = ACTIONS(1781), - [anon_sym_let] = ACTIONS(1781), - [anon_sym_loop] = ACTIONS(1781), - [anon_sym_match] = ACTIONS(1781), - [anon_sym_mod] = ACTIONS(1781), - [anon_sym_pub] = ACTIONS(1781), - [anon_sym_return] = ACTIONS(1781), - [anon_sym_static] = ACTIONS(1781), - [anon_sym_struct] = ACTIONS(1781), - [anon_sym_trait] = ACTIONS(1781), - [anon_sym_type] = ACTIONS(1781), - [anon_sym_union] = ACTIONS(1781), - [anon_sym_unsafe] = ACTIONS(1781), - [anon_sym_use] = ACTIONS(1781), - [anon_sym_while] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1781), - [anon_sym_LT] = ACTIONS(1779), - [anon_sym_COLON_COLON] = ACTIONS(1779), - [anon_sym_AMP] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_move] = ACTIONS(1781), - [sym_integer_literal] = ACTIONS(1779), - [aux_sym_string_literal_token1] = ACTIONS(1779), - [sym_char_literal] = ACTIONS(1779), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1781), - [sym_super] = ACTIONS(1781), - [sym_crate] = ACTIONS(1781), - [sym_metavariable] = ACTIONS(1779), - [sym_raw_string_literal] = ACTIONS(1779), - [sym_float_literal] = ACTIONS(1779), + [ts_builtin_sym_end] = ACTIONS(1765), + [sym_identifier] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_macro_rules_BANG] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_u8] = ACTIONS(1767), + [anon_sym_i8] = ACTIONS(1767), + [anon_sym_u16] = ACTIONS(1767), + [anon_sym_i16] = ACTIONS(1767), + [anon_sym_u32] = ACTIONS(1767), + [anon_sym_i32] = ACTIONS(1767), + [anon_sym_u64] = ACTIONS(1767), + [anon_sym_i64] = ACTIONS(1767), + [anon_sym_u128] = ACTIONS(1767), + [anon_sym_i128] = ACTIONS(1767), + [anon_sym_isize] = ACTIONS(1767), + [anon_sym_usize] = ACTIONS(1767), + [anon_sym_f32] = ACTIONS(1767), + [anon_sym_f64] = ACTIONS(1767), + [anon_sym_bool] = ACTIONS(1767), + [anon_sym_str] = ACTIONS(1767), + [anon_sym_char] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_impl] = ACTIONS(1767), + [anon_sym_let] = ACTIONS(1767), + [anon_sym_loop] = ACTIONS(1767), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_mod] = ACTIONS(1767), + [anon_sym_pub] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_static] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_trait] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_union] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_use] = ACTIONS(1767), + [anon_sym_while] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(1765), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_COLON_COLON] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_move] = ACTIONS(1767), + [sym_integer_literal] = ACTIONS(1765), + [aux_sym_string_literal_token1] = ACTIONS(1765), + [sym_char_literal] = ACTIONS(1765), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1767), + [sym_super] = ACTIONS(1767), + [sym_crate] = ACTIONS(1767), + [sym_metavariable] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), [sym_block_comment] = ACTIONS(3), }, [417] = { - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_macro_rules_BANG] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1783), - [anon_sym_u8] = ACTIONS(1785), - [anon_sym_i8] = ACTIONS(1785), - [anon_sym_u16] = ACTIONS(1785), - [anon_sym_i16] = ACTIONS(1785), - [anon_sym_u32] = ACTIONS(1785), - [anon_sym_i32] = ACTIONS(1785), - [anon_sym_u64] = ACTIONS(1785), - [anon_sym_i64] = ACTIONS(1785), - [anon_sym_u128] = ACTIONS(1785), - [anon_sym_i128] = ACTIONS(1785), - [anon_sym_isize] = ACTIONS(1785), - [anon_sym_usize] = ACTIONS(1785), - [anon_sym_f32] = ACTIONS(1785), - [anon_sym_f64] = ACTIONS(1785), - [anon_sym_bool] = ACTIONS(1785), - [anon_sym_str] = ACTIONS(1785), - [anon_sym_char] = ACTIONS(1785), - [anon_sym_SQUOTE] = ACTIONS(1785), - [anon_sym_async] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_default] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_impl] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_mod] = ACTIONS(1785), - [anon_sym_pub] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_static] = ACTIONS(1785), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_trait] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_union] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(1783), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_COLON_COLON] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(1783), - [anon_sym_move] = ACTIONS(1785), - [sym_integer_literal] = ACTIONS(1783), - [aux_sym_string_literal_token1] = ACTIONS(1783), - [sym_char_literal] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1785), - [sym_super] = ACTIONS(1785), - [sym_crate] = ACTIONS(1785), - [sym_metavariable] = ACTIONS(1783), - [sym_raw_string_literal] = ACTIONS(1783), - [sym_float_literal] = ACTIONS(1783), + [ts_builtin_sym_end] = ACTIONS(1769), + [sym_identifier] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1769), + [anon_sym_macro_rules_BANG] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_u8] = ACTIONS(1771), + [anon_sym_i8] = ACTIONS(1771), + [anon_sym_u16] = ACTIONS(1771), + [anon_sym_i16] = ACTIONS(1771), + [anon_sym_u32] = ACTIONS(1771), + [anon_sym_i32] = ACTIONS(1771), + [anon_sym_u64] = ACTIONS(1771), + [anon_sym_i64] = ACTIONS(1771), + [anon_sym_u128] = ACTIONS(1771), + [anon_sym_i128] = ACTIONS(1771), + [anon_sym_isize] = ACTIONS(1771), + [anon_sym_usize] = ACTIONS(1771), + [anon_sym_f32] = ACTIONS(1771), + [anon_sym_f64] = ACTIONS(1771), + [anon_sym_bool] = ACTIONS(1771), + [anon_sym_str] = ACTIONS(1771), + [anon_sym_char] = ACTIONS(1771), + [anon_sym_SQUOTE] = ACTIONS(1771), + [anon_sym_async] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(1771), + [anon_sym_enum] = ACTIONS(1771), + [anon_sym_fn] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_impl] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_mod] = ACTIONS(1771), + [anon_sym_pub] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1771), + [anon_sym_trait] = ACTIONS(1771), + [anon_sym_type] = ACTIONS(1771), + [anon_sym_union] = ACTIONS(1771), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(1769), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_LT] = ACTIONS(1769), + [anon_sym_COLON_COLON] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_move] = ACTIONS(1771), + [sym_integer_literal] = ACTIONS(1769), + [aux_sym_string_literal_token1] = ACTIONS(1769), + [sym_char_literal] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1769), + [sym_raw_string_literal] = ACTIONS(1769), + [sym_float_literal] = ACTIONS(1769), [sym_block_comment] = ACTIONS(3), }, [418] = { - [ts_builtin_sym_end] = ACTIONS(1787), - [sym_identifier] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_macro_rules_BANG] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_STAR] = ACTIONS(1787), - [anon_sym_u8] = ACTIONS(1789), - [anon_sym_i8] = ACTIONS(1789), - [anon_sym_u16] = ACTIONS(1789), - [anon_sym_i16] = ACTIONS(1789), - [anon_sym_u32] = ACTIONS(1789), - [anon_sym_i32] = ACTIONS(1789), - [anon_sym_u64] = ACTIONS(1789), - [anon_sym_i64] = ACTIONS(1789), - [anon_sym_u128] = ACTIONS(1789), - [anon_sym_i128] = ACTIONS(1789), - [anon_sym_isize] = ACTIONS(1789), - [anon_sym_usize] = ACTIONS(1789), - [anon_sym_f32] = ACTIONS(1789), - [anon_sym_f64] = ACTIONS(1789), - [anon_sym_bool] = ACTIONS(1789), - [anon_sym_str] = ACTIONS(1789), - [anon_sym_char] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_break] = ACTIONS(1789), - [anon_sym_const] = ACTIONS(1789), - [anon_sym_continue] = ACTIONS(1789), - [anon_sym_default] = ACTIONS(1789), - [anon_sym_enum] = ACTIONS(1789), - [anon_sym_fn] = ACTIONS(1789), - [anon_sym_for] = ACTIONS(1789), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_impl] = ACTIONS(1789), - [anon_sym_let] = ACTIONS(1789), - [anon_sym_loop] = ACTIONS(1789), - [anon_sym_match] = ACTIONS(1789), - [anon_sym_mod] = ACTIONS(1789), - [anon_sym_pub] = ACTIONS(1789), - [anon_sym_return] = ACTIONS(1789), - [anon_sym_static] = ACTIONS(1789), - [anon_sym_struct] = ACTIONS(1789), - [anon_sym_trait] = ACTIONS(1789), - [anon_sym_type] = ACTIONS(1789), - [anon_sym_union] = ACTIONS(1789), - [anon_sym_unsafe] = ACTIONS(1789), - [anon_sym_use] = ACTIONS(1789), - [anon_sym_while] = ACTIONS(1789), - [anon_sym_POUND] = ACTIONS(1787), - [anon_sym_BANG] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1789), - [anon_sym_LT] = ACTIONS(1787), - [anon_sym_COLON_COLON] = ACTIONS(1787), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_move] = ACTIONS(1789), - [sym_integer_literal] = ACTIONS(1787), - [aux_sym_string_literal_token1] = ACTIONS(1787), - [sym_char_literal] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1789), - [anon_sym_false] = ACTIONS(1789), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1789), - [sym_super] = ACTIONS(1789), - [sym_crate] = ACTIONS(1789), - [sym_metavariable] = ACTIONS(1787), - [sym_raw_string_literal] = ACTIONS(1787), - [sym_float_literal] = ACTIONS(1787), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym_identifier] = ACTIONS(1775), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_macro_rules_BANG] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_STAR] = ACTIONS(1773), + [anon_sym_u8] = ACTIONS(1775), + [anon_sym_i8] = ACTIONS(1775), + [anon_sym_u16] = ACTIONS(1775), + [anon_sym_i16] = ACTIONS(1775), + [anon_sym_u32] = ACTIONS(1775), + [anon_sym_i32] = ACTIONS(1775), + [anon_sym_u64] = ACTIONS(1775), + [anon_sym_i64] = ACTIONS(1775), + [anon_sym_u128] = ACTIONS(1775), + [anon_sym_i128] = ACTIONS(1775), + [anon_sym_isize] = ACTIONS(1775), + [anon_sym_usize] = ACTIONS(1775), + [anon_sym_f32] = ACTIONS(1775), + [anon_sym_f64] = ACTIONS(1775), + [anon_sym_bool] = ACTIONS(1775), + [anon_sym_str] = ACTIONS(1775), + [anon_sym_char] = ACTIONS(1775), + [anon_sym_SQUOTE] = ACTIONS(1775), + [anon_sym_async] = ACTIONS(1775), + [anon_sym_break] = ACTIONS(1775), + [anon_sym_const] = ACTIONS(1775), + [anon_sym_continue] = ACTIONS(1775), + [anon_sym_default] = ACTIONS(1775), + [anon_sym_enum] = ACTIONS(1775), + [anon_sym_fn] = ACTIONS(1775), + [anon_sym_for] = ACTIONS(1775), + [anon_sym_if] = ACTIONS(1775), + [anon_sym_impl] = ACTIONS(1775), + [anon_sym_let] = ACTIONS(1775), + [anon_sym_loop] = ACTIONS(1775), + [anon_sym_match] = ACTIONS(1775), + [anon_sym_mod] = ACTIONS(1775), + [anon_sym_pub] = ACTIONS(1775), + [anon_sym_return] = ACTIONS(1775), + [anon_sym_static] = ACTIONS(1775), + [anon_sym_struct] = ACTIONS(1775), + [anon_sym_trait] = ACTIONS(1775), + [anon_sym_type] = ACTIONS(1775), + [anon_sym_union] = ACTIONS(1775), + [anon_sym_unsafe] = ACTIONS(1775), + [anon_sym_use] = ACTIONS(1775), + [anon_sym_while] = ACTIONS(1775), + [anon_sym_POUND] = ACTIONS(1773), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_extern] = ACTIONS(1775), + [anon_sym_LT] = ACTIONS(1773), + [anon_sym_COLON_COLON] = ACTIONS(1773), + [anon_sym_AMP] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1773), + [anon_sym_DASH] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_move] = ACTIONS(1775), + [sym_integer_literal] = ACTIONS(1773), + [aux_sym_string_literal_token1] = ACTIONS(1773), + [sym_char_literal] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1775), + [anon_sym_false] = ACTIONS(1775), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1775), + [sym_super] = ACTIONS(1775), + [sym_crate] = ACTIONS(1775), + [sym_metavariable] = ACTIONS(1773), + [sym_raw_string_literal] = ACTIONS(1773), + [sym_float_literal] = ACTIONS(1773), [sym_block_comment] = ACTIONS(3), }, [419] = { - [ts_builtin_sym_end] = ACTIONS(1791), - [sym_identifier] = ACTIONS(1793), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_macro_rules_BANG] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(1791), - [anon_sym_u8] = ACTIONS(1793), - [anon_sym_i8] = ACTIONS(1793), - [anon_sym_u16] = ACTIONS(1793), - [anon_sym_i16] = ACTIONS(1793), - [anon_sym_u32] = ACTIONS(1793), - [anon_sym_i32] = ACTIONS(1793), - [anon_sym_u64] = ACTIONS(1793), - [anon_sym_i64] = ACTIONS(1793), - [anon_sym_u128] = ACTIONS(1793), - [anon_sym_i128] = ACTIONS(1793), - [anon_sym_isize] = ACTIONS(1793), - [anon_sym_usize] = ACTIONS(1793), - [anon_sym_f32] = ACTIONS(1793), - [anon_sym_f64] = ACTIONS(1793), - [anon_sym_bool] = ACTIONS(1793), - [anon_sym_str] = ACTIONS(1793), - [anon_sym_char] = ACTIONS(1793), - [anon_sym_SQUOTE] = ACTIONS(1793), - [anon_sym_async] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_default] = ACTIONS(1793), - [anon_sym_enum] = ACTIONS(1793), - [anon_sym_fn] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_impl] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_mod] = ACTIONS(1793), - [anon_sym_pub] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_static] = ACTIONS(1793), - [anon_sym_struct] = ACTIONS(1793), - [anon_sym_trait] = ACTIONS(1793), - [anon_sym_type] = ACTIONS(1793), - [anon_sym_union] = ACTIONS(1793), - [anon_sym_unsafe] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(1791), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_DOT_DOT] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_move] = ACTIONS(1793), - [sym_integer_literal] = ACTIONS(1791), - [aux_sym_string_literal_token1] = ACTIONS(1791), - [sym_char_literal] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1793), - [anon_sym_false] = ACTIONS(1793), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1793), - [sym_super] = ACTIONS(1793), - [sym_crate] = ACTIONS(1793), - [sym_metavariable] = ACTIONS(1791), - [sym_raw_string_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), + [ts_builtin_sym_end] = ACTIONS(1777), + [sym_identifier] = ACTIONS(1779), + [anon_sym_SEMI] = ACTIONS(1777), + [anon_sym_macro_rules_BANG] = ACTIONS(1777), + [anon_sym_LPAREN] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1777), + [anon_sym_RBRACE] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_u8] = ACTIONS(1779), + [anon_sym_i8] = ACTIONS(1779), + [anon_sym_u16] = ACTIONS(1779), + [anon_sym_i16] = ACTIONS(1779), + [anon_sym_u32] = ACTIONS(1779), + [anon_sym_i32] = ACTIONS(1779), + [anon_sym_u64] = ACTIONS(1779), + [anon_sym_i64] = ACTIONS(1779), + [anon_sym_u128] = ACTIONS(1779), + [anon_sym_i128] = ACTIONS(1779), + [anon_sym_isize] = ACTIONS(1779), + [anon_sym_usize] = ACTIONS(1779), + [anon_sym_f32] = ACTIONS(1779), + [anon_sym_f64] = ACTIONS(1779), + [anon_sym_bool] = ACTIONS(1779), + [anon_sym_str] = ACTIONS(1779), + [anon_sym_char] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_async] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_default] = ACTIONS(1779), + [anon_sym_enum] = ACTIONS(1779), + [anon_sym_fn] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_impl] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_mod] = ACTIONS(1779), + [anon_sym_pub] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1779), + [anon_sym_struct] = ACTIONS(1779), + [anon_sym_trait] = ACTIONS(1779), + [anon_sym_type] = ACTIONS(1779), + [anon_sym_union] = ACTIONS(1779), + [anon_sym_unsafe] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(1777), + [anon_sym_BANG] = ACTIONS(1777), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_LT] = ACTIONS(1777), + [anon_sym_COLON_COLON] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1777), + [anon_sym_DOT_DOT] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_PIPE] = ACTIONS(1777), + [anon_sym_move] = ACTIONS(1779), + [sym_integer_literal] = ACTIONS(1777), + [aux_sym_string_literal_token1] = ACTIONS(1777), + [sym_char_literal] = ACTIONS(1777), + [anon_sym_true] = ACTIONS(1779), + [anon_sym_false] = ACTIONS(1779), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1779), + [sym_super] = ACTIONS(1779), + [sym_crate] = ACTIONS(1779), + [sym_metavariable] = ACTIONS(1777), + [sym_raw_string_literal] = ACTIONS(1777), + [sym_float_literal] = ACTIONS(1777), [sym_block_comment] = ACTIONS(3), }, [420] = { - [ts_builtin_sym_end] = ACTIONS(1795), - [sym_identifier] = ACTIONS(1797), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_macro_rules_BANG] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_u8] = ACTIONS(1797), - [anon_sym_i8] = ACTIONS(1797), - [anon_sym_u16] = ACTIONS(1797), - [anon_sym_i16] = ACTIONS(1797), - [anon_sym_u32] = ACTIONS(1797), - [anon_sym_i32] = ACTIONS(1797), - [anon_sym_u64] = ACTIONS(1797), - [anon_sym_i64] = ACTIONS(1797), - [anon_sym_u128] = ACTIONS(1797), - [anon_sym_i128] = ACTIONS(1797), - [anon_sym_isize] = ACTIONS(1797), - [anon_sym_usize] = ACTIONS(1797), - [anon_sym_f32] = ACTIONS(1797), - [anon_sym_f64] = ACTIONS(1797), - [anon_sym_bool] = ACTIONS(1797), - [anon_sym_str] = ACTIONS(1797), - [anon_sym_char] = ACTIONS(1797), - [anon_sym_SQUOTE] = ACTIONS(1797), - [anon_sym_async] = ACTIONS(1797), - [anon_sym_break] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1797), - [anon_sym_continue] = ACTIONS(1797), - [anon_sym_default] = ACTIONS(1797), - [anon_sym_enum] = ACTIONS(1797), - [anon_sym_fn] = ACTIONS(1797), - [anon_sym_for] = ACTIONS(1797), - [anon_sym_if] = ACTIONS(1797), - [anon_sym_impl] = ACTIONS(1797), - [anon_sym_let] = ACTIONS(1797), - [anon_sym_loop] = ACTIONS(1797), - [anon_sym_match] = ACTIONS(1797), - [anon_sym_mod] = ACTIONS(1797), - [anon_sym_pub] = ACTIONS(1797), - [anon_sym_return] = ACTIONS(1797), - [anon_sym_static] = ACTIONS(1797), - [anon_sym_struct] = ACTIONS(1797), - [anon_sym_trait] = ACTIONS(1797), - [anon_sym_type] = ACTIONS(1797), - [anon_sym_union] = ACTIONS(1797), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_use] = ACTIONS(1797), - [anon_sym_while] = ACTIONS(1797), - [anon_sym_POUND] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_extern] = ACTIONS(1797), - [anon_sym_LT] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_DOT_DOT] = ACTIONS(1795), - [anon_sym_DASH] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_move] = ACTIONS(1797), - [sym_integer_literal] = ACTIONS(1795), - [aux_sym_string_literal_token1] = ACTIONS(1795), - [sym_char_literal] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1797), - [anon_sym_false] = ACTIONS(1797), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1797), - [sym_super] = ACTIONS(1797), - [sym_crate] = ACTIONS(1797), - [sym_metavariable] = ACTIONS(1795), - [sym_raw_string_literal] = ACTIONS(1795), - [sym_float_literal] = ACTIONS(1795), + [ts_builtin_sym_end] = ACTIONS(1781), + [sym_identifier] = ACTIONS(1783), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_macro_rules_BANG] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1781), + [anon_sym_u8] = ACTIONS(1783), + [anon_sym_i8] = ACTIONS(1783), + [anon_sym_u16] = ACTIONS(1783), + [anon_sym_i16] = ACTIONS(1783), + [anon_sym_u32] = ACTIONS(1783), + [anon_sym_i32] = ACTIONS(1783), + [anon_sym_u64] = ACTIONS(1783), + [anon_sym_i64] = ACTIONS(1783), + [anon_sym_u128] = ACTIONS(1783), + [anon_sym_i128] = ACTIONS(1783), + [anon_sym_isize] = ACTIONS(1783), + [anon_sym_usize] = ACTIONS(1783), + [anon_sym_f32] = ACTIONS(1783), + [anon_sym_f64] = ACTIONS(1783), + [anon_sym_bool] = ACTIONS(1783), + [anon_sym_str] = ACTIONS(1783), + [anon_sym_char] = ACTIONS(1783), + [anon_sym_SQUOTE] = ACTIONS(1783), + [anon_sym_async] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_default] = ACTIONS(1783), + [anon_sym_enum] = ACTIONS(1783), + [anon_sym_fn] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_impl] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_mod] = ACTIONS(1783), + [anon_sym_pub] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_static] = ACTIONS(1783), + [anon_sym_struct] = ACTIONS(1783), + [anon_sym_trait] = ACTIONS(1783), + [anon_sym_type] = ACTIONS(1783), + [anon_sym_union] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1781), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_COLON_COLON] = ACTIONS(1781), + [anon_sym_AMP] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_move] = ACTIONS(1783), + [sym_integer_literal] = ACTIONS(1781), + [aux_sym_string_literal_token1] = ACTIONS(1781), + [sym_char_literal] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1783), + [anon_sym_false] = ACTIONS(1783), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1783), + [sym_super] = ACTIONS(1783), + [sym_crate] = ACTIONS(1783), + [sym_metavariable] = ACTIONS(1781), + [sym_raw_string_literal] = ACTIONS(1781), + [sym_float_literal] = ACTIONS(1781), [sym_block_comment] = ACTIONS(3), }, [421] = { - [ts_builtin_sym_end] = ACTIONS(1799), - [sym_identifier] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_macro_rules_BANG] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_u8] = ACTIONS(1801), - [anon_sym_i8] = ACTIONS(1801), - [anon_sym_u16] = ACTIONS(1801), - [anon_sym_i16] = ACTIONS(1801), - [anon_sym_u32] = ACTIONS(1801), - [anon_sym_i32] = ACTIONS(1801), - [anon_sym_u64] = ACTIONS(1801), - [anon_sym_i64] = ACTIONS(1801), - [anon_sym_u128] = ACTIONS(1801), - [anon_sym_i128] = ACTIONS(1801), - [anon_sym_isize] = ACTIONS(1801), - [anon_sym_usize] = ACTIONS(1801), - [anon_sym_f32] = ACTIONS(1801), - [anon_sym_f64] = ACTIONS(1801), - [anon_sym_bool] = ACTIONS(1801), - [anon_sym_str] = ACTIONS(1801), - [anon_sym_char] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1801), - [anon_sym_async] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_default] = ACTIONS(1801), - [anon_sym_enum] = ACTIONS(1801), - [anon_sym_fn] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_impl] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_mod] = ACTIONS(1801), - [anon_sym_pub] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(1801), - [anon_sym_struct] = ACTIONS(1801), - [anon_sym_trait] = ACTIONS(1801), - [anon_sym_type] = ACTIONS(1801), - [anon_sym_union] = ACTIONS(1801), - [anon_sym_unsafe] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(1799), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1799), - [anon_sym_COLON_COLON] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_DOT_DOT] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_PIPE] = ACTIONS(1799), - [anon_sym_move] = ACTIONS(1801), - [sym_integer_literal] = ACTIONS(1799), - [aux_sym_string_literal_token1] = ACTIONS(1799), - [sym_char_literal] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1801), - [sym_super] = ACTIONS(1801), - [sym_crate] = ACTIONS(1801), - [sym_metavariable] = ACTIONS(1799), - [sym_raw_string_literal] = ACTIONS(1799), - [sym_float_literal] = ACTIONS(1799), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_macro_rules_BANG] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_u8] = ACTIONS(1787), + [anon_sym_i8] = ACTIONS(1787), + [anon_sym_u16] = ACTIONS(1787), + [anon_sym_i16] = ACTIONS(1787), + [anon_sym_u32] = ACTIONS(1787), + [anon_sym_i32] = ACTIONS(1787), + [anon_sym_u64] = ACTIONS(1787), + [anon_sym_i64] = ACTIONS(1787), + [anon_sym_u128] = ACTIONS(1787), + [anon_sym_i128] = ACTIONS(1787), + [anon_sym_isize] = ACTIONS(1787), + [anon_sym_usize] = ACTIONS(1787), + [anon_sym_f32] = ACTIONS(1787), + [anon_sym_f64] = ACTIONS(1787), + [anon_sym_bool] = ACTIONS(1787), + [anon_sym_str] = ACTIONS(1787), + [anon_sym_char] = ACTIONS(1787), + [anon_sym_SQUOTE] = ACTIONS(1787), + [anon_sym_async] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_const] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_fn] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_impl] = ACTIONS(1787), + [anon_sym_let] = ACTIONS(1787), + [anon_sym_loop] = ACTIONS(1787), + [anon_sym_match] = ACTIONS(1787), + [anon_sym_mod] = ACTIONS(1787), + [anon_sym_pub] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_struct] = ACTIONS(1787), + [anon_sym_trait] = ACTIONS(1787), + [anon_sym_type] = ACTIONS(1787), + [anon_sym_union] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1787), + [anon_sym_use] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_LT] = ACTIONS(1785), + [anon_sym_COLON_COLON] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_move] = ACTIONS(1787), + [sym_integer_literal] = ACTIONS(1785), + [aux_sym_string_literal_token1] = ACTIONS(1785), + [sym_char_literal] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1787), + [sym_super] = ACTIONS(1787), + [sym_crate] = ACTIONS(1787), + [sym_metavariable] = ACTIONS(1785), + [sym_raw_string_literal] = ACTIONS(1785), + [sym_float_literal] = ACTIONS(1785), [sym_block_comment] = ACTIONS(3), }, [422] = { - [ts_builtin_sym_end] = ACTIONS(1803), - [sym_identifier] = ACTIONS(1805), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_macro_rules_BANG] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1803), - [anon_sym_u8] = ACTIONS(1805), - [anon_sym_i8] = ACTIONS(1805), - [anon_sym_u16] = ACTIONS(1805), - [anon_sym_i16] = ACTIONS(1805), - [anon_sym_u32] = ACTIONS(1805), - [anon_sym_i32] = ACTIONS(1805), - [anon_sym_u64] = ACTIONS(1805), - [anon_sym_i64] = ACTIONS(1805), - [anon_sym_u128] = ACTIONS(1805), - [anon_sym_i128] = ACTIONS(1805), - [anon_sym_isize] = ACTIONS(1805), - [anon_sym_usize] = ACTIONS(1805), - [anon_sym_f32] = ACTIONS(1805), - [anon_sym_f64] = ACTIONS(1805), - [anon_sym_bool] = ACTIONS(1805), - [anon_sym_str] = ACTIONS(1805), - [anon_sym_char] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(1805), - [anon_sym_async] = ACTIONS(1805), - [anon_sym_break] = ACTIONS(1805), - [anon_sym_const] = ACTIONS(1805), - [anon_sym_continue] = ACTIONS(1805), - [anon_sym_default] = ACTIONS(1805), - [anon_sym_enum] = ACTIONS(1805), - [anon_sym_fn] = ACTIONS(1805), - [anon_sym_for] = ACTIONS(1805), - [anon_sym_if] = ACTIONS(1805), - [anon_sym_impl] = ACTIONS(1805), - [anon_sym_let] = ACTIONS(1805), - [anon_sym_loop] = ACTIONS(1805), - [anon_sym_match] = ACTIONS(1805), - [anon_sym_mod] = ACTIONS(1805), - [anon_sym_pub] = ACTIONS(1805), - [anon_sym_return] = ACTIONS(1805), - [anon_sym_static] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1805), - [anon_sym_trait] = ACTIONS(1805), - [anon_sym_type] = ACTIONS(1805), - [anon_sym_union] = ACTIONS(1805), - [anon_sym_unsafe] = ACTIONS(1805), - [anon_sym_use] = ACTIONS(1805), - [anon_sym_while] = ACTIONS(1805), - [anon_sym_POUND] = ACTIONS(1803), - [anon_sym_BANG] = ACTIONS(1803), - [anon_sym_extern] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_COLON_COLON] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_DOT_DOT] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_move] = ACTIONS(1805), - [sym_integer_literal] = ACTIONS(1803), - [aux_sym_string_literal_token1] = ACTIONS(1803), - [sym_char_literal] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(1805), - [anon_sym_false] = ACTIONS(1805), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1805), - [sym_super] = ACTIONS(1805), - [sym_crate] = ACTIONS(1805), - [sym_metavariable] = ACTIONS(1803), - [sym_raw_string_literal] = ACTIONS(1803), - [sym_float_literal] = ACTIONS(1803), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_macro_rules_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(1789), + [anon_sym_STAR] = ACTIONS(1789), + [anon_sym_u8] = ACTIONS(1791), + [anon_sym_i8] = ACTIONS(1791), + [anon_sym_u16] = ACTIONS(1791), + [anon_sym_i16] = ACTIONS(1791), + [anon_sym_u32] = ACTIONS(1791), + [anon_sym_i32] = ACTIONS(1791), + [anon_sym_u64] = ACTIONS(1791), + [anon_sym_i64] = ACTIONS(1791), + [anon_sym_u128] = ACTIONS(1791), + [anon_sym_i128] = ACTIONS(1791), + [anon_sym_isize] = ACTIONS(1791), + [anon_sym_usize] = ACTIONS(1791), + [anon_sym_f32] = ACTIONS(1791), + [anon_sym_f64] = ACTIONS(1791), + [anon_sym_bool] = ACTIONS(1791), + [anon_sym_str] = ACTIONS(1791), + [anon_sym_char] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_async] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_impl] = ACTIONS(1791), + [anon_sym_let] = ACTIONS(1791), + [anon_sym_loop] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_mod] = ACTIONS(1791), + [anon_sym_pub] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_trait] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_use] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_POUND] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_extern] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_COLON_COLON] = ACTIONS(1789), + [anon_sym_AMP] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_PIPE] = ACTIONS(1789), + [anon_sym_move] = ACTIONS(1791), + [sym_integer_literal] = ACTIONS(1789), + [aux_sym_string_literal_token1] = ACTIONS(1789), + [sym_char_literal] = ACTIONS(1789), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1791), + [sym_super] = ACTIONS(1791), + [sym_crate] = ACTIONS(1791), + [sym_metavariable] = ACTIONS(1789), + [sym_raw_string_literal] = ACTIONS(1789), + [sym_float_literal] = ACTIONS(1789), [sym_block_comment] = ACTIONS(3), }, [423] = { - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1807), - [anon_sym_macro_rules_BANG] = ACTIONS(1807), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1807), - [anon_sym_u8] = ACTIONS(1809), - [anon_sym_i8] = ACTIONS(1809), - [anon_sym_u16] = ACTIONS(1809), - [anon_sym_i16] = ACTIONS(1809), - [anon_sym_u32] = ACTIONS(1809), - [anon_sym_i32] = ACTIONS(1809), - [anon_sym_u64] = ACTIONS(1809), - [anon_sym_i64] = ACTIONS(1809), - [anon_sym_u128] = ACTIONS(1809), - [anon_sym_i128] = ACTIONS(1809), - [anon_sym_isize] = ACTIONS(1809), - [anon_sym_usize] = ACTIONS(1809), - [anon_sym_f32] = ACTIONS(1809), - [anon_sym_f64] = ACTIONS(1809), - [anon_sym_bool] = ACTIONS(1809), - [anon_sym_str] = ACTIONS(1809), - [anon_sym_char] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_async] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_default] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_impl] = ACTIONS(1809), - [anon_sym_let] = ACTIONS(1809), - [anon_sym_loop] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_mod] = ACTIONS(1809), - [anon_sym_pub] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_trait] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_use] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_POUND] = ACTIONS(1807), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_extern] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1807), - [anon_sym_COLON_COLON] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_DOT_DOT] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_PIPE] = ACTIONS(1807), - [anon_sym_move] = ACTIONS(1809), - [sym_integer_literal] = ACTIONS(1807), - [aux_sym_string_literal_token1] = ACTIONS(1807), - [sym_char_literal] = ACTIONS(1807), - [anon_sym_true] = ACTIONS(1809), - [anon_sym_false] = ACTIONS(1809), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1809), - [sym_super] = ACTIONS(1809), - [sym_crate] = ACTIONS(1809), - [sym_metavariable] = ACTIONS(1807), - [sym_raw_string_literal] = ACTIONS(1807), - [sym_float_literal] = ACTIONS(1807), + [ts_builtin_sym_end] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_macro_rules_BANG] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_STAR] = ACTIONS(1793), + [anon_sym_u8] = ACTIONS(1795), + [anon_sym_i8] = ACTIONS(1795), + [anon_sym_u16] = ACTIONS(1795), + [anon_sym_i16] = ACTIONS(1795), + [anon_sym_u32] = ACTIONS(1795), + [anon_sym_i32] = ACTIONS(1795), + [anon_sym_u64] = ACTIONS(1795), + [anon_sym_i64] = ACTIONS(1795), + [anon_sym_u128] = ACTIONS(1795), + [anon_sym_i128] = ACTIONS(1795), + [anon_sym_isize] = ACTIONS(1795), + [anon_sym_usize] = ACTIONS(1795), + [anon_sym_f32] = ACTIONS(1795), + [anon_sym_f64] = ACTIONS(1795), + [anon_sym_bool] = ACTIONS(1795), + [anon_sym_str] = ACTIONS(1795), + [anon_sym_char] = ACTIONS(1795), + [anon_sym_SQUOTE] = ACTIONS(1795), + [anon_sym_async] = ACTIONS(1795), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1795), + [anon_sym_enum] = ACTIONS(1795), + [anon_sym_fn] = ACTIONS(1795), + [anon_sym_for] = ACTIONS(1795), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_impl] = ACTIONS(1795), + [anon_sym_let] = ACTIONS(1795), + [anon_sym_loop] = ACTIONS(1795), + [anon_sym_match] = ACTIONS(1795), + [anon_sym_mod] = ACTIONS(1795), + [anon_sym_pub] = ACTIONS(1795), + [anon_sym_return] = ACTIONS(1795), + [anon_sym_static] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(1795), + [anon_sym_trait] = ACTIONS(1795), + [anon_sym_type] = ACTIONS(1795), + [anon_sym_union] = ACTIONS(1795), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_use] = ACTIONS(1795), + [anon_sym_while] = ACTIONS(1795), + [anon_sym_POUND] = ACTIONS(1793), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_extern] = ACTIONS(1795), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_COLON_COLON] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_DOT_DOT] = ACTIONS(1793), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_PIPE] = ACTIONS(1793), + [anon_sym_move] = ACTIONS(1795), + [sym_integer_literal] = ACTIONS(1793), + [aux_sym_string_literal_token1] = ACTIONS(1793), + [sym_char_literal] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1795), + [anon_sym_false] = ACTIONS(1795), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1795), + [sym_super] = ACTIONS(1795), + [sym_crate] = ACTIONS(1795), + [sym_metavariable] = ACTIONS(1793), + [sym_raw_string_literal] = ACTIONS(1793), + [sym_float_literal] = ACTIONS(1793), [sym_block_comment] = ACTIONS(3), }, [424] = { - [ts_builtin_sym_end] = ACTIONS(1811), + [ts_builtin_sym_end] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1797), + [anon_sym_macro_rules_BANG] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1797), + [anon_sym_u8] = ACTIONS(1799), + [anon_sym_i8] = ACTIONS(1799), + [anon_sym_u16] = ACTIONS(1799), + [anon_sym_i16] = ACTIONS(1799), + [anon_sym_u32] = ACTIONS(1799), + [anon_sym_i32] = ACTIONS(1799), + [anon_sym_u64] = ACTIONS(1799), + [anon_sym_i64] = ACTIONS(1799), + [anon_sym_u128] = ACTIONS(1799), + [anon_sym_i128] = ACTIONS(1799), + [anon_sym_isize] = ACTIONS(1799), + [anon_sym_usize] = ACTIONS(1799), + [anon_sym_f32] = ACTIONS(1799), + [anon_sym_f64] = ACTIONS(1799), + [anon_sym_bool] = ACTIONS(1799), + [anon_sym_str] = ACTIONS(1799), + [anon_sym_char] = ACTIONS(1799), + [anon_sym_SQUOTE] = ACTIONS(1799), + [anon_sym_async] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_fn] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_impl] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_mod] = ACTIONS(1799), + [anon_sym_pub] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(1799), + [anon_sym_trait] = ACTIONS(1799), + [anon_sym_type] = ACTIONS(1799), + [anon_sym_union] = ACTIONS(1799), + [anon_sym_unsafe] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_LT] = ACTIONS(1797), + [anon_sym_COLON_COLON] = ACTIONS(1797), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_PIPE] = ACTIONS(1797), + [anon_sym_move] = ACTIONS(1799), + [sym_integer_literal] = ACTIONS(1797), + [aux_sym_string_literal_token1] = ACTIONS(1797), + [sym_char_literal] = ACTIONS(1797), + [anon_sym_true] = ACTIONS(1799), + [anon_sym_false] = ACTIONS(1799), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1799), + [sym_super] = ACTIONS(1799), + [sym_crate] = ACTIONS(1799), + [sym_metavariable] = ACTIONS(1797), + [sym_raw_string_literal] = ACTIONS(1797), + [sym_float_literal] = ACTIONS(1797), + [sym_block_comment] = ACTIONS(3), + }, + [425] = { + [ts_builtin_sym_end] = ACTIONS(1801), + [sym_identifier] = ACTIONS(1803), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_macro_rules_BANG] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_u8] = ACTIONS(1803), + [anon_sym_i8] = ACTIONS(1803), + [anon_sym_u16] = ACTIONS(1803), + [anon_sym_i16] = ACTIONS(1803), + [anon_sym_u32] = ACTIONS(1803), + [anon_sym_i32] = ACTIONS(1803), + [anon_sym_u64] = ACTIONS(1803), + [anon_sym_i64] = ACTIONS(1803), + [anon_sym_u128] = ACTIONS(1803), + [anon_sym_i128] = ACTIONS(1803), + [anon_sym_isize] = ACTIONS(1803), + [anon_sym_usize] = ACTIONS(1803), + [anon_sym_f32] = ACTIONS(1803), + [anon_sym_f64] = ACTIONS(1803), + [anon_sym_bool] = ACTIONS(1803), + [anon_sym_str] = ACTIONS(1803), + [anon_sym_char] = ACTIONS(1803), + [anon_sym_SQUOTE] = ACTIONS(1803), + [anon_sym_async] = ACTIONS(1803), + [anon_sym_break] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_continue] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(1803), + [anon_sym_enum] = ACTIONS(1803), + [anon_sym_fn] = ACTIONS(1803), + [anon_sym_for] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1803), + [anon_sym_impl] = ACTIONS(1803), + [anon_sym_let] = ACTIONS(1803), + [anon_sym_loop] = ACTIONS(1803), + [anon_sym_match] = ACTIONS(1803), + [anon_sym_mod] = ACTIONS(1803), + [anon_sym_pub] = ACTIONS(1803), + [anon_sym_return] = ACTIONS(1803), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1803), + [anon_sym_trait] = ACTIONS(1803), + [anon_sym_type] = ACTIONS(1803), + [anon_sym_union] = ACTIONS(1803), + [anon_sym_unsafe] = ACTIONS(1803), + [anon_sym_use] = ACTIONS(1803), + [anon_sym_while] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1801), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1801), + [anon_sym_COLON_COLON] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_move] = ACTIONS(1803), + [sym_integer_literal] = ACTIONS(1801), + [aux_sym_string_literal_token1] = ACTIONS(1801), + [sym_char_literal] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1803), + [anon_sym_false] = ACTIONS(1803), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1803), + [sym_super] = ACTIONS(1803), + [sym_crate] = ACTIONS(1803), + [sym_metavariable] = ACTIONS(1801), + [sym_raw_string_literal] = ACTIONS(1801), + [sym_float_literal] = ACTIONS(1801), + [sym_block_comment] = ACTIONS(3), + }, + [426] = { + [ts_builtin_sym_end] = ACTIONS(1805), + [sym_identifier] = ACTIONS(1807), + [anon_sym_SEMI] = ACTIONS(1805), + [anon_sym_macro_rules_BANG] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1805), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_LBRACK] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_u8] = ACTIONS(1807), + [anon_sym_i8] = ACTIONS(1807), + [anon_sym_u16] = ACTIONS(1807), + [anon_sym_i16] = ACTIONS(1807), + [anon_sym_u32] = ACTIONS(1807), + [anon_sym_i32] = ACTIONS(1807), + [anon_sym_u64] = ACTIONS(1807), + [anon_sym_i64] = ACTIONS(1807), + [anon_sym_u128] = ACTIONS(1807), + [anon_sym_i128] = ACTIONS(1807), + [anon_sym_isize] = ACTIONS(1807), + [anon_sym_usize] = ACTIONS(1807), + [anon_sym_f32] = ACTIONS(1807), + [anon_sym_f64] = ACTIONS(1807), + [anon_sym_bool] = ACTIONS(1807), + [anon_sym_str] = ACTIONS(1807), + [anon_sym_char] = ACTIONS(1807), + [anon_sym_SQUOTE] = ACTIONS(1807), + [anon_sym_async] = ACTIONS(1807), + [anon_sym_break] = ACTIONS(1807), + [anon_sym_const] = ACTIONS(1807), + [anon_sym_continue] = ACTIONS(1807), + [anon_sym_default] = ACTIONS(1807), + [anon_sym_enum] = ACTIONS(1807), + [anon_sym_fn] = ACTIONS(1807), + [anon_sym_for] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1807), + [anon_sym_impl] = ACTIONS(1807), + [anon_sym_let] = ACTIONS(1807), + [anon_sym_loop] = ACTIONS(1807), + [anon_sym_match] = ACTIONS(1807), + [anon_sym_mod] = ACTIONS(1807), + [anon_sym_pub] = ACTIONS(1807), + [anon_sym_return] = ACTIONS(1807), + [anon_sym_static] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1807), + [anon_sym_trait] = ACTIONS(1807), + [anon_sym_type] = ACTIONS(1807), + [anon_sym_union] = ACTIONS(1807), + [anon_sym_unsafe] = ACTIONS(1807), + [anon_sym_use] = ACTIONS(1807), + [anon_sym_while] = ACTIONS(1807), + [anon_sym_POUND] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_extern] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_COLON_COLON] = ACTIONS(1805), + [anon_sym_AMP] = ACTIONS(1805), + [anon_sym_DOT_DOT] = ACTIONS(1805), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_PIPE] = ACTIONS(1805), + [anon_sym_move] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [aux_sym_string_literal_token1] = ACTIONS(1805), + [sym_char_literal] = ACTIONS(1805), + [anon_sym_true] = ACTIONS(1807), + [anon_sym_false] = ACTIONS(1807), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1807), + [sym_super] = ACTIONS(1807), + [sym_crate] = ACTIONS(1807), + [sym_metavariable] = ACTIONS(1805), + [sym_raw_string_literal] = ACTIONS(1805), + [sym_float_literal] = ACTIONS(1805), + [sym_block_comment] = ACTIONS(3), + }, + [427] = { + [ts_builtin_sym_end] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SEMI] = ACTIONS(1809), + [anon_sym_macro_rules_BANG] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_u8] = ACTIONS(1811), + [anon_sym_i8] = ACTIONS(1811), + [anon_sym_u16] = ACTIONS(1811), + [anon_sym_i16] = ACTIONS(1811), + [anon_sym_u32] = ACTIONS(1811), + [anon_sym_i32] = ACTIONS(1811), + [anon_sym_u64] = ACTIONS(1811), + [anon_sym_i64] = ACTIONS(1811), + [anon_sym_u128] = ACTIONS(1811), + [anon_sym_i128] = ACTIONS(1811), + [anon_sym_isize] = ACTIONS(1811), + [anon_sym_usize] = ACTIONS(1811), + [anon_sym_f32] = ACTIONS(1811), + [anon_sym_f64] = ACTIONS(1811), + [anon_sym_bool] = ACTIONS(1811), + [anon_sym_str] = ACTIONS(1811), + [anon_sym_char] = ACTIONS(1811), + [anon_sym_SQUOTE] = ACTIONS(1811), + [anon_sym_async] = ACTIONS(1811), + [anon_sym_break] = ACTIONS(1811), + [anon_sym_const] = ACTIONS(1811), + [anon_sym_continue] = ACTIONS(1811), + [anon_sym_default] = ACTIONS(1811), + [anon_sym_enum] = ACTIONS(1811), + [anon_sym_fn] = ACTIONS(1811), + [anon_sym_for] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1811), + [anon_sym_impl] = ACTIONS(1811), + [anon_sym_let] = ACTIONS(1811), + [anon_sym_loop] = ACTIONS(1811), + [anon_sym_match] = ACTIONS(1811), + [anon_sym_mod] = ACTIONS(1811), + [anon_sym_pub] = ACTIONS(1811), + [anon_sym_return] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(1811), + [anon_sym_trait] = ACTIONS(1811), + [anon_sym_type] = ACTIONS(1811), + [anon_sym_union] = ACTIONS(1811), + [anon_sym_unsafe] = ACTIONS(1811), + [anon_sym_use] = ACTIONS(1811), + [anon_sym_while] = ACTIONS(1811), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_extern] = ACTIONS(1811), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_COLON_COLON] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_DOT_DOT] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_move] = ACTIONS(1811), + [sym_integer_literal] = ACTIONS(1809), + [aux_sym_string_literal_token1] = ACTIONS(1809), + [sym_char_literal] = ACTIONS(1809), + [anon_sym_true] = ACTIONS(1811), + [anon_sym_false] = ACTIONS(1811), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1811), + [sym_super] = ACTIONS(1811), + [sym_crate] = ACTIONS(1811), + [sym_metavariable] = ACTIONS(1809), + [sym_raw_string_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), + [sym_block_comment] = ACTIONS(3), + }, + [428] = { + [sym__token_pattern] = STATE(280), + [sym_token_tree_pattern] = STATE(280), + [sym_token_binding_pattern] = STATE(280), + [sym_token_repetition_pattern] = STATE(280), + [sym__literal] = STATE(280), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_pattern_repeat1] = STATE(280), [sym_identifier] = ACTIONS(1813), - [anon_sym_SEMI] = ACTIONS(1811), - [anon_sym_macro_rules_BANG] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_RBRACK] = ACTIONS(1815), + [anon_sym_DOLLAR] = ACTIONS(1200), [anon_sym_u8] = ACTIONS(1813), [anon_sym_i8] = ACTIONS(1813), [anon_sym_u16] = ACTIONS(1813), @@ -53009,8 +53400,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1813), [anon_sym_str] = ACTIONS(1813), [anon_sym_char] = ACTIONS(1813), + [aux_sym__non_special_token_token1] = ACTIONS(1813), [anon_sym_SQUOTE] = ACTIONS(1813), + [anon_sym_as] = ACTIONS(1813), [anon_sym_async] = ACTIONS(1813), + [anon_sym_await] = ACTIONS(1813), [anon_sym_break] = ACTIONS(1813), [anon_sym_const] = ACTIONS(1813), [anon_sym_continue] = ACTIONS(1813), @@ -53033,41 +53427,38 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1813), [anon_sym_unsafe] = ACTIONS(1813), [anon_sym_use] = ACTIONS(1813), + [anon_sym_where] = ACTIONS(1813), [anon_sym_while] = ACTIONS(1813), - [anon_sym_POUND] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1811), - [anon_sym_extern] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1811), - [anon_sym_COLON_COLON] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_DOT_DOT] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_PIPE] = ACTIONS(1811), - [anon_sym_move] = ACTIONS(1813), - [sym_integer_literal] = ACTIONS(1811), - [aux_sym_string_literal_token1] = ACTIONS(1811), - [sym_char_literal] = ACTIONS(1811), - [anon_sym_true] = ACTIONS(1813), - [anon_sym_false] = ACTIONS(1813), - [sym_line_comment] = ACTIONS(3), + [sym_mutable_specifier] = ACTIONS(1813), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(1813), [sym_super] = ACTIONS(1813), [sym_crate] = ACTIONS(1813), - [sym_metavariable] = ACTIONS(1811), - [sym_raw_string_literal] = ACTIONS(1811), - [sym_float_literal] = ACTIONS(1811), + [sym_metavariable] = ACTIONS(1208), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [425] = { - [ts_builtin_sym_end] = ACTIONS(1815), + [429] = { + [sym__token_pattern] = STATE(273), + [sym_token_tree_pattern] = STATE(273), + [sym_token_binding_pattern] = STATE(273), + [sym_token_repetition_pattern] = STATE(273), + [sym__literal] = STATE(273), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_pattern_repeat1] = STATE(273), [sym_identifier] = ACTIONS(1817), - [anon_sym_SEMI] = ACTIONS(1815), - [anon_sym_macro_rules_BANG] = ACTIONS(1815), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1196), [anon_sym_RBRACE] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1200), [anon_sym_u8] = ACTIONS(1817), [anon_sym_i8] = ACTIONS(1817), [anon_sym_u16] = ACTIONS(1817), @@ -53085,8 +53476,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1817), [anon_sym_str] = ACTIONS(1817), [anon_sym_char] = ACTIONS(1817), + [aux_sym__non_special_token_token1] = ACTIONS(1817), [anon_sym_SQUOTE] = ACTIONS(1817), + [anon_sym_as] = ACTIONS(1817), [anon_sym_async] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(1817), [anon_sym_break] = ACTIONS(1817), [anon_sym_const] = ACTIONS(1817), [anon_sym_continue] = ACTIONS(1817), @@ -53109,108 +53503,24 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1817), [anon_sym_unsafe] = ACTIONS(1817), [anon_sym_use] = ACTIONS(1817), + [anon_sym_where] = ACTIONS(1817), [anon_sym_while] = ACTIONS(1817), - [anon_sym_POUND] = ACTIONS(1815), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_extern] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1815), - [anon_sym_COLON_COLON] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1815), - [anon_sym_move] = ACTIONS(1817), - [sym_integer_literal] = ACTIONS(1815), - [aux_sym_string_literal_token1] = ACTIONS(1815), - [sym_char_literal] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [sym_line_comment] = ACTIONS(3), + [sym_mutable_specifier] = ACTIONS(1817), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(1817), [sym_super] = ACTIONS(1817), [sym_crate] = ACTIONS(1817), - [sym_metavariable] = ACTIONS(1815), - [sym_raw_string_literal] = ACTIONS(1815), - [sym_float_literal] = ACTIONS(1815), - [sym_block_comment] = ACTIONS(3), - }, - [426] = { - [ts_builtin_sym_end] = ACTIONS(397), - [sym_identifier] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_macro_rules_BANG] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(399), - [anon_sym_const] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_default] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(399), - [anon_sym_fn] = ACTIONS(399), - [anon_sym_for] = ACTIONS(399), - [anon_sym_if] = ACTIONS(399), - [anon_sym_impl] = ACTIONS(399), - [anon_sym_let] = ACTIONS(399), - [anon_sym_loop] = ACTIONS(399), - [anon_sym_match] = ACTIONS(399), - [anon_sym_mod] = ACTIONS(399), - [anon_sym_pub] = ACTIONS(399), - [anon_sym_return] = ACTIONS(399), - [anon_sym_static] = ACTIONS(399), - [anon_sym_struct] = ACTIONS(399), - [anon_sym_trait] = ACTIONS(399), - [anon_sym_type] = ACTIONS(399), - [anon_sym_union] = ACTIONS(399), - [anon_sym_unsafe] = ACTIONS(399), - [anon_sym_use] = ACTIONS(399), - [anon_sym_while] = ACTIONS(399), - [anon_sym_POUND] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_extern] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_move] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(397), - [aux_sym_string_literal_token1] = ACTIONS(397), - [sym_char_literal] = ACTIONS(397), - [anon_sym_true] = ACTIONS(399), - [anon_sym_false] = ACTIONS(399), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(399), - [sym_super] = ACTIONS(399), - [sym_crate] = ACTIONS(399), - [sym_metavariable] = ACTIONS(397), - [sym_raw_string_literal] = ACTIONS(397), - [sym_float_literal] = ACTIONS(397), + [sym_metavariable] = ACTIONS(1208), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [427] = { + [430] = { [ts_builtin_sym_end] = ACTIONS(1819), [sym_identifier] = ACTIONS(1821), [anon_sym_SEMI] = ACTIONS(1819), @@ -53286,249 +53596,244 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1819), [sym_block_comment] = ACTIONS(3), }, - [428] = { - [ts_builtin_sym_end] = ACTIONS(1823), - [sym_identifier] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_macro_rules_BANG] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_RBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_u8] = ACTIONS(1825), - [anon_sym_i8] = ACTIONS(1825), - [anon_sym_u16] = ACTIONS(1825), - [anon_sym_i16] = ACTIONS(1825), - [anon_sym_u32] = ACTIONS(1825), - [anon_sym_i32] = ACTIONS(1825), - [anon_sym_u64] = ACTIONS(1825), - [anon_sym_i64] = ACTIONS(1825), - [anon_sym_u128] = ACTIONS(1825), - [anon_sym_i128] = ACTIONS(1825), - [anon_sym_isize] = ACTIONS(1825), - [anon_sym_usize] = ACTIONS(1825), - [anon_sym_f32] = ACTIONS(1825), - [anon_sym_f64] = ACTIONS(1825), - [anon_sym_bool] = ACTIONS(1825), - [anon_sym_str] = ACTIONS(1825), - [anon_sym_char] = ACTIONS(1825), - [anon_sym_SQUOTE] = ACTIONS(1825), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_break] = ACTIONS(1825), - [anon_sym_const] = ACTIONS(1825), - [anon_sym_continue] = ACTIONS(1825), - [anon_sym_default] = ACTIONS(1825), - [anon_sym_enum] = ACTIONS(1825), - [anon_sym_fn] = ACTIONS(1825), - [anon_sym_for] = ACTIONS(1825), - [anon_sym_if] = ACTIONS(1825), - [anon_sym_impl] = ACTIONS(1825), - [anon_sym_let] = ACTIONS(1825), - [anon_sym_loop] = ACTIONS(1825), - [anon_sym_match] = ACTIONS(1825), - [anon_sym_mod] = ACTIONS(1825), - [anon_sym_pub] = ACTIONS(1825), - [anon_sym_return] = ACTIONS(1825), - [anon_sym_static] = ACTIONS(1825), - [anon_sym_struct] = ACTIONS(1825), - [anon_sym_trait] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1825), - [anon_sym_union] = ACTIONS(1825), - [anon_sym_unsafe] = ACTIONS(1825), - [anon_sym_use] = ACTIONS(1825), - [anon_sym_while] = ACTIONS(1825), - [anon_sym_POUND] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_extern] = ACTIONS(1825), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_move] = ACTIONS(1825), - [sym_integer_literal] = ACTIONS(1823), - [aux_sym_string_literal_token1] = ACTIONS(1823), - [sym_char_literal] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1825), - [anon_sym_false] = ACTIONS(1825), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1825), - [sym_super] = ACTIONS(1825), - [sym_crate] = ACTIONS(1825), - [sym_metavariable] = ACTIONS(1823), - [sym_raw_string_literal] = ACTIONS(1823), - [sym_float_literal] = ACTIONS(1823), + [431] = { + [sym__token_pattern] = STATE(271), + [sym_token_tree_pattern] = STATE(271), + [sym_token_binding_pattern] = STATE(271), + [sym_token_repetition_pattern] = STATE(271), + [sym__literal] = STATE(271), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_pattern_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1815), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1200), + [anon_sym_u8] = ACTIONS(1823), + [anon_sym_i8] = ACTIONS(1823), + [anon_sym_u16] = ACTIONS(1823), + [anon_sym_i16] = ACTIONS(1823), + [anon_sym_u32] = ACTIONS(1823), + [anon_sym_i32] = ACTIONS(1823), + [anon_sym_u64] = ACTIONS(1823), + [anon_sym_i64] = ACTIONS(1823), + [anon_sym_u128] = ACTIONS(1823), + [anon_sym_i128] = ACTIONS(1823), + [anon_sym_isize] = ACTIONS(1823), + [anon_sym_usize] = ACTIONS(1823), + [anon_sym_f32] = ACTIONS(1823), + [anon_sym_f64] = ACTIONS(1823), + [anon_sym_bool] = ACTIONS(1823), + [anon_sym_str] = ACTIONS(1823), + [anon_sym_char] = ACTIONS(1823), + [aux_sym__non_special_token_token1] = ACTIONS(1823), + [anon_sym_SQUOTE] = ACTIONS(1823), + [anon_sym_as] = ACTIONS(1823), + [anon_sym_async] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_break] = ACTIONS(1823), + [anon_sym_const] = ACTIONS(1823), + [anon_sym_continue] = ACTIONS(1823), + [anon_sym_default] = ACTIONS(1823), + [anon_sym_enum] = ACTIONS(1823), + [anon_sym_fn] = ACTIONS(1823), + [anon_sym_for] = ACTIONS(1823), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_impl] = ACTIONS(1823), + [anon_sym_let] = ACTIONS(1823), + [anon_sym_loop] = ACTIONS(1823), + [anon_sym_match] = ACTIONS(1823), + [anon_sym_mod] = ACTIONS(1823), + [anon_sym_pub] = ACTIONS(1823), + [anon_sym_return] = ACTIONS(1823), + [anon_sym_static] = ACTIONS(1823), + [anon_sym_struct] = ACTIONS(1823), + [anon_sym_trait] = ACTIONS(1823), + [anon_sym_type] = ACTIONS(1823), + [anon_sym_union] = ACTIONS(1823), + [anon_sym_unsafe] = ACTIONS(1823), + [anon_sym_use] = ACTIONS(1823), + [anon_sym_where] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(1823), + [sym_mutable_specifier] = ACTIONS(1823), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(1823), + [sym_super] = ACTIONS(1823), + [sym_crate] = ACTIONS(1823), + [sym_metavariable] = ACTIONS(1208), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [429] = { - [ts_builtin_sym_end] = ACTIONS(1827), - [sym_identifier] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [anon_sym_macro_rules_BANG] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1827), - [anon_sym_RBRACE] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_u8] = ACTIONS(1829), - [anon_sym_i8] = ACTIONS(1829), - [anon_sym_u16] = ACTIONS(1829), - [anon_sym_i16] = ACTIONS(1829), - [anon_sym_u32] = ACTIONS(1829), - [anon_sym_i32] = ACTIONS(1829), - [anon_sym_u64] = ACTIONS(1829), - [anon_sym_i64] = ACTIONS(1829), - [anon_sym_u128] = ACTIONS(1829), - [anon_sym_i128] = ACTIONS(1829), - [anon_sym_isize] = ACTIONS(1829), - [anon_sym_usize] = ACTIONS(1829), - [anon_sym_f32] = ACTIONS(1829), - [anon_sym_f64] = ACTIONS(1829), - [anon_sym_bool] = ACTIONS(1829), - [anon_sym_str] = ACTIONS(1829), - [anon_sym_char] = ACTIONS(1829), - [anon_sym_SQUOTE] = ACTIONS(1829), - [anon_sym_async] = ACTIONS(1829), - [anon_sym_break] = ACTIONS(1829), - [anon_sym_const] = ACTIONS(1829), - [anon_sym_continue] = ACTIONS(1829), - [anon_sym_default] = ACTIONS(1829), - [anon_sym_enum] = ACTIONS(1829), - [anon_sym_fn] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(1829), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_impl] = ACTIONS(1829), - [anon_sym_let] = ACTIONS(1829), - [anon_sym_loop] = ACTIONS(1829), - [anon_sym_match] = ACTIONS(1829), - [anon_sym_mod] = ACTIONS(1829), - [anon_sym_pub] = ACTIONS(1829), - [anon_sym_return] = ACTIONS(1829), - [anon_sym_static] = ACTIONS(1829), - [anon_sym_struct] = ACTIONS(1829), - [anon_sym_trait] = ACTIONS(1829), - [anon_sym_type] = ACTIONS(1829), - [anon_sym_union] = ACTIONS(1829), - [anon_sym_unsafe] = ACTIONS(1829), - [anon_sym_use] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1829), - [anon_sym_POUND] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_extern] = ACTIONS(1829), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_COLON_COLON] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_DOT_DOT] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_move] = ACTIONS(1829), - [sym_integer_literal] = ACTIONS(1827), - [aux_sym_string_literal_token1] = ACTIONS(1827), - [sym_char_literal] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1829), - [anon_sym_false] = ACTIONS(1829), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1829), - [sym_super] = ACTIONS(1829), - [sym_crate] = ACTIONS(1829), - [sym_metavariable] = ACTIONS(1827), - [sym_raw_string_literal] = ACTIONS(1827), - [sym_float_literal] = ACTIONS(1827), + [432] = { + [ts_builtin_sym_end] = ACTIONS(1825), + [sym_identifier] = ACTIONS(1827), + [anon_sym_SEMI] = ACTIONS(1825), + [anon_sym_macro_rules_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1825), + [anon_sym_RBRACE] = ACTIONS(1825), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_STAR] = ACTIONS(1825), + [anon_sym_u8] = ACTIONS(1827), + [anon_sym_i8] = ACTIONS(1827), + [anon_sym_u16] = ACTIONS(1827), + [anon_sym_i16] = ACTIONS(1827), + [anon_sym_u32] = ACTIONS(1827), + [anon_sym_i32] = ACTIONS(1827), + [anon_sym_u64] = ACTIONS(1827), + [anon_sym_i64] = ACTIONS(1827), + [anon_sym_u128] = ACTIONS(1827), + [anon_sym_i128] = ACTIONS(1827), + [anon_sym_isize] = ACTIONS(1827), + [anon_sym_usize] = ACTIONS(1827), + [anon_sym_f32] = ACTIONS(1827), + [anon_sym_f64] = ACTIONS(1827), + [anon_sym_bool] = ACTIONS(1827), + [anon_sym_str] = ACTIONS(1827), + [anon_sym_char] = ACTIONS(1827), + [anon_sym_SQUOTE] = ACTIONS(1827), + [anon_sym_async] = ACTIONS(1827), + [anon_sym_break] = ACTIONS(1827), + [anon_sym_const] = ACTIONS(1827), + [anon_sym_continue] = ACTIONS(1827), + [anon_sym_default] = ACTIONS(1827), + [anon_sym_enum] = ACTIONS(1827), + [anon_sym_fn] = ACTIONS(1827), + [anon_sym_for] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_impl] = ACTIONS(1827), + [anon_sym_let] = ACTIONS(1827), + [anon_sym_loop] = ACTIONS(1827), + [anon_sym_match] = ACTIONS(1827), + [anon_sym_mod] = ACTIONS(1827), + [anon_sym_pub] = ACTIONS(1827), + [anon_sym_return] = ACTIONS(1827), + [anon_sym_static] = ACTIONS(1827), + [anon_sym_struct] = ACTIONS(1827), + [anon_sym_trait] = ACTIONS(1827), + [anon_sym_type] = ACTIONS(1827), + [anon_sym_union] = ACTIONS(1827), + [anon_sym_unsafe] = ACTIONS(1827), + [anon_sym_use] = ACTIONS(1827), + [anon_sym_while] = ACTIONS(1827), + [anon_sym_POUND] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_extern] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1825), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1825), + [anon_sym_move] = ACTIONS(1827), + [sym_integer_literal] = ACTIONS(1825), + [aux_sym_string_literal_token1] = ACTIONS(1825), + [sym_char_literal] = ACTIONS(1825), + [anon_sym_true] = ACTIONS(1827), + [anon_sym_false] = ACTIONS(1827), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1827), + [sym_super] = ACTIONS(1827), + [sym_crate] = ACTIONS(1827), + [sym_metavariable] = ACTIONS(1825), + [sym_raw_string_literal] = ACTIONS(1825), + [sym_float_literal] = ACTIONS(1825), [sym_block_comment] = ACTIONS(3), }, - [430] = { - [ts_builtin_sym_end] = ACTIONS(1831), - [sym_identifier] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_macro_rules_BANG] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_u8] = ACTIONS(1833), - [anon_sym_i8] = ACTIONS(1833), - [anon_sym_u16] = ACTIONS(1833), - [anon_sym_i16] = ACTIONS(1833), - [anon_sym_u32] = ACTIONS(1833), - [anon_sym_i32] = ACTIONS(1833), - [anon_sym_u64] = ACTIONS(1833), - [anon_sym_i64] = ACTIONS(1833), - [anon_sym_u128] = ACTIONS(1833), - [anon_sym_i128] = ACTIONS(1833), - [anon_sym_isize] = ACTIONS(1833), - [anon_sym_usize] = ACTIONS(1833), - [anon_sym_f32] = ACTIONS(1833), - [anon_sym_f64] = ACTIONS(1833), - [anon_sym_bool] = ACTIONS(1833), - [anon_sym_str] = ACTIONS(1833), - [anon_sym_char] = ACTIONS(1833), - [anon_sym_SQUOTE] = ACTIONS(1833), - [anon_sym_async] = ACTIONS(1833), - [anon_sym_break] = ACTIONS(1833), - [anon_sym_const] = ACTIONS(1833), - [anon_sym_continue] = ACTIONS(1833), - [anon_sym_default] = ACTIONS(1833), - [anon_sym_enum] = ACTIONS(1833), - [anon_sym_fn] = ACTIONS(1833), - [anon_sym_for] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_impl] = ACTIONS(1833), - [anon_sym_let] = ACTIONS(1833), - [anon_sym_loop] = ACTIONS(1833), - [anon_sym_match] = ACTIONS(1833), - [anon_sym_mod] = ACTIONS(1833), - [anon_sym_pub] = ACTIONS(1833), - [anon_sym_return] = ACTIONS(1833), - [anon_sym_static] = ACTIONS(1833), - [anon_sym_struct] = ACTIONS(1833), - [anon_sym_trait] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1833), - [anon_sym_union] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_use] = ACTIONS(1833), - [anon_sym_while] = ACTIONS(1833), - [anon_sym_POUND] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_extern] = ACTIONS(1833), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_move] = ACTIONS(1833), - [sym_integer_literal] = ACTIONS(1831), - [aux_sym_string_literal_token1] = ACTIONS(1831), - [sym_char_literal] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1833), - [anon_sym_false] = ACTIONS(1833), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1833), - [sym_super] = ACTIONS(1833), - [sym_crate] = ACTIONS(1833), - [sym_metavariable] = ACTIONS(1831), - [sym_raw_string_literal] = ACTIONS(1831), - [sym_float_literal] = ACTIONS(1831), + [433] = { + [ts_builtin_sym_end] = ACTIONS(1829), + [sym_identifier] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1829), + [anon_sym_macro_rules_BANG] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1829), + [anon_sym_RBRACE] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(1829), + [anon_sym_u8] = ACTIONS(1831), + [anon_sym_i8] = ACTIONS(1831), + [anon_sym_u16] = ACTIONS(1831), + [anon_sym_i16] = ACTIONS(1831), + [anon_sym_u32] = ACTIONS(1831), + [anon_sym_i32] = ACTIONS(1831), + [anon_sym_u64] = ACTIONS(1831), + [anon_sym_i64] = ACTIONS(1831), + [anon_sym_u128] = ACTIONS(1831), + [anon_sym_i128] = ACTIONS(1831), + [anon_sym_isize] = ACTIONS(1831), + [anon_sym_usize] = ACTIONS(1831), + [anon_sym_f32] = ACTIONS(1831), + [anon_sym_f64] = ACTIONS(1831), + [anon_sym_bool] = ACTIONS(1831), + [anon_sym_str] = ACTIONS(1831), + [anon_sym_char] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [anon_sym_async] = ACTIONS(1831), + [anon_sym_break] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(1831), + [anon_sym_continue] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(1831), + [anon_sym_enum] = ACTIONS(1831), + [anon_sym_fn] = ACTIONS(1831), + [anon_sym_for] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_impl] = ACTIONS(1831), + [anon_sym_let] = ACTIONS(1831), + [anon_sym_loop] = ACTIONS(1831), + [anon_sym_match] = ACTIONS(1831), + [anon_sym_mod] = ACTIONS(1831), + [anon_sym_pub] = ACTIONS(1831), + [anon_sym_return] = ACTIONS(1831), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_struct] = ACTIONS(1831), + [anon_sym_trait] = ACTIONS(1831), + [anon_sym_type] = ACTIONS(1831), + [anon_sym_union] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_use] = ACTIONS(1831), + [anon_sym_while] = ACTIONS(1831), + [anon_sym_POUND] = ACTIONS(1829), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_extern] = ACTIONS(1831), + [anon_sym_LT] = ACTIONS(1829), + [anon_sym_COLON_COLON] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_DOT_DOT] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1829), + [anon_sym_move] = ACTIONS(1831), + [sym_integer_literal] = ACTIONS(1829), + [aux_sym_string_literal_token1] = ACTIONS(1829), + [sym_char_literal] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1831), + [anon_sym_false] = ACTIONS(1831), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1831), + [sym_super] = ACTIONS(1831), + [sym_crate] = ACTIONS(1831), + [sym_metavariable] = ACTIONS(1829), + [sym_raw_string_literal] = ACTIONS(1829), + [sym_float_literal] = ACTIONS(1829), [sym_block_comment] = ACTIONS(3), }, - [431] = { - [sym__token_pattern] = STATE(399), - [sym_token_tree_pattern] = STATE(399), - [sym_token_binding_pattern] = STATE(399), - [sym_token_repetition_pattern] = STATE(399), - [sym__literal] = STATE(399), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_pattern_repeat1] = STATE(399), + [434] = { + [ts_builtin_sym_end] = ACTIONS(1833), [sym_identifier] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_macro_rules_BANG] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1833), [anon_sym_u8] = ACTIONS(1835), [anon_sym_i8] = ACTIONS(1835), [anon_sym_u16] = ACTIONS(1835), @@ -53546,11 +53851,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1835), [anon_sym_str] = ACTIONS(1835), [anon_sym_char] = ACTIONS(1835), - [aux_sym__non_special_token_token1] = ACTIONS(1835), [anon_sym_SQUOTE] = ACTIONS(1835), - [anon_sym_as] = ACTIONS(1835), [anon_sym_async] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1835), [anon_sym_break] = ACTIONS(1835), [anon_sym_const] = ACTIONS(1835), [anon_sym_continue] = ACTIONS(1835), @@ -53573,1026 +53875,877 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1835), [anon_sym_unsafe] = ACTIONS(1835), [anon_sym_use] = ACTIONS(1835), - [anon_sym_where] = ACTIONS(1835), [anon_sym_while] = ACTIONS(1835), - [sym_mutable_specifier] = ACTIONS(1835), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [anon_sym_POUND] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1833), + [anon_sym_extern] = ACTIONS(1835), + [anon_sym_LT] = ACTIONS(1833), + [anon_sym_COLON_COLON] = ACTIONS(1833), + [anon_sym_AMP] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_PIPE] = ACTIONS(1833), + [anon_sym_move] = ACTIONS(1835), + [sym_integer_literal] = ACTIONS(1833), + [aux_sym_string_literal_token1] = ACTIONS(1833), + [sym_char_literal] = ACTIONS(1833), + [anon_sym_true] = ACTIONS(1835), + [anon_sym_false] = ACTIONS(1835), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1835), [sym_super] = ACTIONS(1835), [sym_crate] = ACTIONS(1835), - [sym_metavariable] = ACTIONS(1116), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), - [sym_block_comment] = ACTIONS(3), - }, - [432] = { - [ts_builtin_sym_end] = ACTIONS(1839), - [sym_identifier] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1839), - [anon_sym_macro_rules_BANG] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_STAR] = ACTIONS(1839), - [anon_sym_u8] = ACTIONS(1841), - [anon_sym_i8] = ACTIONS(1841), - [anon_sym_u16] = ACTIONS(1841), - [anon_sym_i16] = ACTIONS(1841), - [anon_sym_u32] = ACTIONS(1841), - [anon_sym_i32] = ACTIONS(1841), - [anon_sym_u64] = ACTIONS(1841), - [anon_sym_i64] = ACTIONS(1841), - [anon_sym_u128] = ACTIONS(1841), - [anon_sym_i128] = ACTIONS(1841), - [anon_sym_isize] = ACTIONS(1841), - [anon_sym_usize] = ACTIONS(1841), - [anon_sym_f32] = ACTIONS(1841), - [anon_sym_f64] = ACTIONS(1841), - [anon_sym_bool] = ACTIONS(1841), - [anon_sym_str] = ACTIONS(1841), - [anon_sym_char] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_default] = ACTIONS(1841), - [anon_sym_enum] = ACTIONS(1841), - [anon_sym_fn] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_impl] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_loop] = ACTIONS(1841), - [anon_sym_match] = ACTIONS(1841), - [anon_sym_mod] = ACTIONS(1841), - [anon_sym_pub] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_static] = ACTIONS(1841), - [anon_sym_struct] = ACTIONS(1841), - [anon_sym_trait] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1841), - [anon_sym_union] = ACTIONS(1841), - [anon_sym_unsafe] = ACTIONS(1841), - [anon_sym_use] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_POUND] = ACTIONS(1839), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1839), - [anon_sym_COLON_COLON] = ACTIONS(1839), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(1839), - [anon_sym_move] = ACTIONS(1841), - [sym_integer_literal] = ACTIONS(1839), - [aux_sym_string_literal_token1] = ACTIONS(1839), - [sym_char_literal] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1841), - [anon_sym_false] = ACTIONS(1841), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1841), - [sym_super] = ACTIONS(1841), - [sym_crate] = ACTIONS(1841), - [sym_metavariable] = ACTIONS(1839), - [sym_raw_string_literal] = ACTIONS(1839), - [sym_float_literal] = ACTIONS(1839), - [sym_block_comment] = ACTIONS(3), - }, - [433] = { - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_macro_rules_BANG] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1843), - [anon_sym_u8] = ACTIONS(1845), - [anon_sym_i8] = ACTIONS(1845), - [anon_sym_u16] = ACTIONS(1845), - [anon_sym_i16] = ACTIONS(1845), - [anon_sym_u32] = ACTIONS(1845), - [anon_sym_i32] = ACTIONS(1845), - [anon_sym_u64] = ACTIONS(1845), - [anon_sym_i64] = ACTIONS(1845), - [anon_sym_u128] = ACTIONS(1845), - [anon_sym_i128] = ACTIONS(1845), - [anon_sym_isize] = ACTIONS(1845), - [anon_sym_usize] = ACTIONS(1845), - [anon_sym_f32] = ACTIONS(1845), - [anon_sym_f64] = ACTIONS(1845), - [anon_sym_bool] = ACTIONS(1845), - [anon_sym_str] = ACTIONS(1845), - [anon_sym_char] = ACTIONS(1845), - [anon_sym_SQUOTE] = ACTIONS(1845), - [anon_sym_async] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [anon_sym_fn] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_impl] = ACTIONS(1845), - [anon_sym_let] = ACTIONS(1845), - [anon_sym_loop] = ACTIONS(1845), - [anon_sym_match] = ACTIONS(1845), - [anon_sym_mod] = ACTIONS(1845), - [anon_sym_pub] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_static] = ACTIONS(1845), - [anon_sym_struct] = ACTIONS(1845), - [anon_sym_trait] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_union] = ACTIONS(1845), - [anon_sym_unsafe] = ACTIONS(1845), - [anon_sym_use] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_POUND] = ACTIONS(1843), - [anon_sym_BANG] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1843), - [anon_sym_COLON_COLON] = ACTIONS(1843), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_DOT_DOT] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_move] = ACTIONS(1845), - [sym_integer_literal] = ACTIONS(1843), - [aux_sym_string_literal_token1] = ACTIONS(1843), - [sym_char_literal] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(1845), - [anon_sym_false] = ACTIONS(1845), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1845), - [sym_super] = ACTIONS(1845), - [sym_crate] = ACTIONS(1845), - [sym_metavariable] = ACTIONS(1843), - [sym_raw_string_literal] = ACTIONS(1843), - [sym_float_literal] = ACTIONS(1843), - [sym_block_comment] = ACTIONS(3), - }, - [434] = { - [ts_builtin_sym_end] = ACTIONS(389), - [sym_identifier] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(389), - [anon_sym_macro_rules_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_u8] = ACTIONS(391), - [anon_sym_i8] = ACTIONS(391), - [anon_sym_u16] = ACTIONS(391), - [anon_sym_i16] = ACTIONS(391), - [anon_sym_u32] = ACTIONS(391), - [anon_sym_i32] = ACTIONS(391), - [anon_sym_u64] = ACTIONS(391), - [anon_sym_i64] = ACTIONS(391), - [anon_sym_u128] = ACTIONS(391), - [anon_sym_i128] = ACTIONS(391), - [anon_sym_isize] = ACTIONS(391), - [anon_sym_usize] = ACTIONS(391), - [anon_sym_f32] = ACTIONS(391), - [anon_sym_f64] = ACTIONS(391), - [anon_sym_bool] = ACTIONS(391), - [anon_sym_str] = ACTIONS(391), - [anon_sym_char] = ACTIONS(391), - [anon_sym_SQUOTE] = ACTIONS(391), - [anon_sym_async] = ACTIONS(391), - [anon_sym_break] = ACTIONS(391), - [anon_sym_const] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(391), - [anon_sym_default] = ACTIONS(391), - [anon_sym_enum] = ACTIONS(391), - [anon_sym_fn] = ACTIONS(391), - [anon_sym_for] = ACTIONS(391), - [anon_sym_if] = ACTIONS(391), - [anon_sym_impl] = ACTIONS(391), - [anon_sym_let] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_match] = ACTIONS(391), - [anon_sym_mod] = ACTIONS(391), - [anon_sym_pub] = ACTIONS(391), - [anon_sym_return] = ACTIONS(391), - [anon_sym_static] = ACTIONS(391), - [anon_sym_struct] = ACTIONS(391), - [anon_sym_trait] = ACTIONS(391), - [anon_sym_type] = ACTIONS(391), - [anon_sym_union] = ACTIONS(391), - [anon_sym_unsafe] = ACTIONS(391), - [anon_sym_use] = ACTIONS(391), - [anon_sym_while] = ACTIONS(391), - [anon_sym_POUND] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_extern] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_move] = ACTIONS(391), - [sym_integer_literal] = ACTIONS(389), - [aux_sym_string_literal_token1] = ACTIONS(389), - [sym_char_literal] = ACTIONS(389), - [anon_sym_true] = ACTIONS(391), - [anon_sym_false] = ACTIONS(391), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(391), - [sym_super] = ACTIONS(391), - [sym_crate] = ACTIONS(391), - [sym_metavariable] = ACTIONS(389), - [sym_raw_string_literal] = ACTIONS(389), - [sym_float_literal] = ACTIONS(389), + [sym_metavariable] = ACTIONS(1833), + [sym_raw_string_literal] = ACTIONS(1833), + [sym_float_literal] = ACTIONS(1833), [sym_block_comment] = ACTIONS(3), }, [435] = { - [ts_builtin_sym_end] = ACTIONS(1847), - [sym_identifier] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1847), - [anon_sym_macro_rules_BANG] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_u8] = ACTIONS(1849), - [anon_sym_i8] = ACTIONS(1849), - [anon_sym_u16] = ACTIONS(1849), - [anon_sym_i16] = ACTIONS(1849), - [anon_sym_u32] = ACTIONS(1849), - [anon_sym_i32] = ACTIONS(1849), - [anon_sym_u64] = ACTIONS(1849), - [anon_sym_i64] = ACTIONS(1849), - [anon_sym_u128] = ACTIONS(1849), - [anon_sym_i128] = ACTIONS(1849), - [anon_sym_isize] = ACTIONS(1849), - [anon_sym_usize] = ACTIONS(1849), - [anon_sym_f32] = ACTIONS(1849), - [anon_sym_f64] = ACTIONS(1849), - [anon_sym_bool] = ACTIONS(1849), - [anon_sym_str] = ACTIONS(1849), - [anon_sym_char] = ACTIONS(1849), - [anon_sym_SQUOTE] = ACTIONS(1849), - [anon_sym_async] = ACTIONS(1849), - [anon_sym_break] = ACTIONS(1849), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_continue] = ACTIONS(1849), - [anon_sym_default] = ACTIONS(1849), - [anon_sym_enum] = ACTIONS(1849), - [anon_sym_fn] = ACTIONS(1849), - [anon_sym_for] = ACTIONS(1849), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_impl] = ACTIONS(1849), - [anon_sym_let] = ACTIONS(1849), - [anon_sym_loop] = ACTIONS(1849), - [anon_sym_match] = ACTIONS(1849), - [anon_sym_mod] = ACTIONS(1849), - [anon_sym_pub] = ACTIONS(1849), - [anon_sym_return] = ACTIONS(1849), - [anon_sym_static] = ACTIONS(1849), - [anon_sym_struct] = ACTIONS(1849), - [anon_sym_trait] = ACTIONS(1849), - [anon_sym_type] = ACTIONS(1849), - [anon_sym_union] = ACTIONS(1849), - [anon_sym_unsafe] = ACTIONS(1849), - [anon_sym_use] = ACTIONS(1849), - [anon_sym_while] = ACTIONS(1849), - [anon_sym_POUND] = ACTIONS(1847), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1849), - [anon_sym_LT] = ACTIONS(1847), - [anon_sym_COLON_COLON] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_DOT_DOT] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_PIPE] = ACTIONS(1847), - [anon_sym_move] = ACTIONS(1849), - [sym_integer_literal] = ACTIONS(1847), - [aux_sym_string_literal_token1] = ACTIONS(1847), - [sym_char_literal] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1849), - [anon_sym_false] = ACTIONS(1849), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1849), - [sym_super] = ACTIONS(1849), - [sym_crate] = ACTIONS(1849), - [sym_metavariable] = ACTIONS(1847), - [sym_raw_string_literal] = ACTIONS(1847), - [sym_float_literal] = ACTIONS(1847), + [ts_builtin_sym_end] = ACTIONS(1837), + [sym_identifier] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_macro_rules_BANG] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_u8] = ACTIONS(1839), + [anon_sym_i8] = ACTIONS(1839), + [anon_sym_u16] = ACTIONS(1839), + [anon_sym_i16] = ACTIONS(1839), + [anon_sym_u32] = ACTIONS(1839), + [anon_sym_i32] = ACTIONS(1839), + [anon_sym_u64] = ACTIONS(1839), + [anon_sym_i64] = ACTIONS(1839), + [anon_sym_u128] = ACTIONS(1839), + [anon_sym_i128] = ACTIONS(1839), + [anon_sym_isize] = ACTIONS(1839), + [anon_sym_usize] = ACTIONS(1839), + [anon_sym_f32] = ACTIONS(1839), + [anon_sym_f64] = ACTIONS(1839), + [anon_sym_bool] = ACTIONS(1839), + [anon_sym_str] = ACTIONS(1839), + [anon_sym_char] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_async] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_const] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_default] = ACTIONS(1839), + [anon_sym_enum] = ACTIONS(1839), + [anon_sym_fn] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(1839), + [anon_sym_impl] = ACTIONS(1839), + [anon_sym_let] = ACTIONS(1839), + [anon_sym_loop] = ACTIONS(1839), + [anon_sym_match] = ACTIONS(1839), + [anon_sym_mod] = ACTIONS(1839), + [anon_sym_pub] = ACTIONS(1839), + [anon_sym_return] = ACTIONS(1839), + [anon_sym_static] = ACTIONS(1839), + [anon_sym_struct] = ACTIONS(1839), + [anon_sym_trait] = ACTIONS(1839), + [anon_sym_type] = ACTIONS(1839), + [anon_sym_union] = ACTIONS(1839), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_use] = ACTIONS(1839), + [anon_sym_while] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_extern] = ACTIONS(1839), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_move] = ACTIONS(1839), + [sym_integer_literal] = ACTIONS(1837), + [aux_sym_string_literal_token1] = ACTIONS(1837), + [sym_char_literal] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1839), + [anon_sym_false] = ACTIONS(1839), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1839), + [sym_super] = ACTIONS(1839), + [sym_crate] = ACTIONS(1839), + [sym_metavariable] = ACTIONS(1837), + [sym_raw_string_literal] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1837), [sym_block_comment] = ACTIONS(3), }, [436] = { - [ts_builtin_sym_end] = ACTIONS(1851), - [sym_identifier] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_macro_rules_BANG] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_u8] = ACTIONS(1853), - [anon_sym_i8] = ACTIONS(1853), - [anon_sym_u16] = ACTIONS(1853), - [anon_sym_i16] = ACTIONS(1853), - [anon_sym_u32] = ACTIONS(1853), - [anon_sym_i32] = ACTIONS(1853), - [anon_sym_u64] = ACTIONS(1853), - [anon_sym_i64] = ACTIONS(1853), - [anon_sym_u128] = ACTIONS(1853), - [anon_sym_i128] = ACTIONS(1853), - [anon_sym_isize] = ACTIONS(1853), - [anon_sym_usize] = ACTIONS(1853), - [anon_sym_f32] = ACTIONS(1853), - [anon_sym_f64] = ACTIONS(1853), - [anon_sym_bool] = ACTIONS(1853), - [anon_sym_str] = ACTIONS(1853), - [anon_sym_char] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(1853), - [anon_sym_async] = ACTIONS(1853), - [anon_sym_break] = ACTIONS(1853), - [anon_sym_const] = ACTIONS(1853), - [anon_sym_continue] = ACTIONS(1853), - [anon_sym_default] = ACTIONS(1853), - [anon_sym_enum] = ACTIONS(1853), - [anon_sym_fn] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1853), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_impl] = ACTIONS(1853), - [anon_sym_let] = ACTIONS(1853), - [anon_sym_loop] = ACTIONS(1853), - [anon_sym_match] = ACTIONS(1853), - [anon_sym_mod] = ACTIONS(1853), - [anon_sym_pub] = ACTIONS(1853), - [anon_sym_return] = ACTIONS(1853), - [anon_sym_static] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1853), - [anon_sym_trait] = ACTIONS(1853), - [anon_sym_type] = ACTIONS(1853), - [anon_sym_union] = ACTIONS(1853), - [anon_sym_unsafe] = ACTIONS(1853), - [anon_sym_use] = ACTIONS(1853), - [anon_sym_while] = ACTIONS(1853), - [anon_sym_POUND] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_extern] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_COLON_COLON] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_move] = ACTIONS(1853), - [sym_integer_literal] = ACTIONS(1851), - [aux_sym_string_literal_token1] = ACTIONS(1851), - [sym_char_literal] = ACTIONS(1851), - [anon_sym_true] = ACTIONS(1853), - [anon_sym_false] = ACTIONS(1853), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1853), - [sym_super] = ACTIONS(1853), - [sym_crate] = ACTIONS(1853), - [sym_metavariable] = ACTIONS(1851), - [sym_raw_string_literal] = ACTIONS(1851), - [sym_float_literal] = ACTIONS(1851), + [ts_builtin_sym_end] = ACTIONS(1841), + [sym_identifier] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_macro_rules_BANG] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_u8] = ACTIONS(1843), + [anon_sym_i8] = ACTIONS(1843), + [anon_sym_u16] = ACTIONS(1843), + [anon_sym_i16] = ACTIONS(1843), + [anon_sym_u32] = ACTIONS(1843), + [anon_sym_i32] = ACTIONS(1843), + [anon_sym_u64] = ACTIONS(1843), + [anon_sym_i64] = ACTIONS(1843), + [anon_sym_u128] = ACTIONS(1843), + [anon_sym_i128] = ACTIONS(1843), + [anon_sym_isize] = ACTIONS(1843), + [anon_sym_usize] = ACTIONS(1843), + [anon_sym_f32] = ACTIONS(1843), + [anon_sym_f64] = ACTIONS(1843), + [anon_sym_bool] = ACTIONS(1843), + [anon_sym_str] = ACTIONS(1843), + [anon_sym_char] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_async] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_default] = ACTIONS(1843), + [anon_sym_enum] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_impl] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_loop] = ACTIONS(1843), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_mod] = ACTIONS(1843), + [anon_sym_pub] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_struct] = ACTIONS(1843), + [anon_sym_trait] = ACTIONS(1843), + [anon_sym_type] = ACTIONS(1843), + [anon_sym_union] = ACTIONS(1843), + [anon_sym_unsafe] = ACTIONS(1843), + [anon_sym_use] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_extern] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_COLON_COLON] = ACTIONS(1841), + [anon_sym_AMP] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_move] = ACTIONS(1843), + [sym_integer_literal] = ACTIONS(1841), + [aux_sym_string_literal_token1] = ACTIONS(1841), + [sym_char_literal] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1843), + [sym_super] = ACTIONS(1843), + [sym_crate] = ACTIONS(1843), + [sym_metavariable] = ACTIONS(1841), + [sym_raw_string_literal] = ACTIONS(1841), + [sym_float_literal] = ACTIONS(1841), [sym_block_comment] = ACTIONS(3), }, [437] = { - [ts_builtin_sym_end] = ACTIONS(393), - [sym_identifier] = ACTIONS(395), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_macro_rules_BANG] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(395), - [anon_sym_i8] = ACTIONS(395), - [anon_sym_u16] = ACTIONS(395), - [anon_sym_i16] = ACTIONS(395), - [anon_sym_u32] = ACTIONS(395), - [anon_sym_i32] = ACTIONS(395), - [anon_sym_u64] = ACTIONS(395), - [anon_sym_i64] = ACTIONS(395), - [anon_sym_u128] = ACTIONS(395), - [anon_sym_i128] = ACTIONS(395), - [anon_sym_isize] = ACTIONS(395), - [anon_sym_usize] = ACTIONS(395), - [anon_sym_f32] = ACTIONS(395), - [anon_sym_f64] = ACTIONS(395), - [anon_sym_bool] = ACTIONS(395), - [anon_sym_str] = ACTIONS(395), - [anon_sym_char] = ACTIONS(395), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_async] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_const] = ACTIONS(395), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_default] = ACTIONS(395), - [anon_sym_enum] = ACTIONS(395), - [anon_sym_fn] = ACTIONS(395), - [anon_sym_for] = ACTIONS(395), - [anon_sym_if] = ACTIONS(395), - [anon_sym_impl] = ACTIONS(395), - [anon_sym_let] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(395), - [anon_sym_match] = ACTIONS(395), - [anon_sym_mod] = ACTIONS(395), - [anon_sym_pub] = ACTIONS(395), - [anon_sym_return] = ACTIONS(395), - [anon_sym_static] = ACTIONS(395), - [anon_sym_struct] = ACTIONS(395), - [anon_sym_trait] = ACTIONS(395), - [anon_sym_type] = ACTIONS(395), - [anon_sym_union] = ACTIONS(395), - [anon_sym_unsafe] = ACTIONS(395), - [anon_sym_use] = ACTIONS(395), - [anon_sym_while] = ACTIONS(395), - [anon_sym_POUND] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_extern] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_move] = ACTIONS(395), - [sym_integer_literal] = ACTIONS(393), - [aux_sym_string_literal_token1] = ACTIONS(393), - [sym_char_literal] = ACTIONS(393), - [anon_sym_true] = ACTIONS(395), - [anon_sym_false] = ACTIONS(395), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(395), - [sym_super] = ACTIONS(395), - [sym_crate] = ACTIONS(395), - [sym_metavariable] = ACTIONS(393), - [sym_raw_string_literal] = ACTIONS(393), - [sym_float_literal] = ACTIONS(393), + [ts_builtin_sym_end] = ACTIONS(1845), + [sym_identifier] = ACTIONS(1847), + [anon_sym_SEMI] = ACTIONS(1845), + [anon_sym_macro_rules_BANG] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_LBRACE] = ACTIONS(1845), + [anon_sym_RBRACE] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1845), + [anon_sym_u8] = ACTIONS(1847), + [anon_sym_i8] = ACTIONS(1847), + [anon_sym_u16] = ACTIONS(1847), + [anon_sym_i16] = ACTIONS(1847), + [anon_sym_u32] = ACTIONS(1847), + [anon_sym_i32] = ACTIONS(1847), + [anon_sym_u64] = ACTIONS(1847), + [anon_sym_i64] = ACTIONS(1847), + [anon_sym_u128] = ACTIONS(1847), + [anon_sym_i128] = ACTIONS(1847), + [anon_sym_isize] = ACTIONS(1847), + [anon_sym_usize] = ACTIONS(1847), + [anon_sym_f32] = ACTIONS(1847), + [anon_sym_f64] = ACTIONS(1847), + [anon_sym_bool] = ACTIONS(1847), + [anon_sym_str] = ACTIONS(1847), + [anon_sym_char] = ACTIONS(1847), + [anon_sym_SQUOTE] = ACTIONS(1847), + [anon_sym_async] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_enum] = ACTIONS(1847), + [anon_sym_fn] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_impl] = ACTIONS(1847), + [anon_sym_let] = ACTIONS(1847), + [anon_sym_loop] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [anon_sym_mod] = ACTIONS(1847), + [anon_sym_pub] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_static] = ACTIONS(1847), + [anon_sym_struct] = ACTIONS(1847), + [anon_sym_trait] = ACTIONS(1847), + [anon_sym_type] = ACTIONS(1847), + [anon_sym_union] = ACTIONS(1847), + [anon_sym_unsafe] = ACTIONS(1847), + [anon_sym_use] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_POUND] = ACTIONS(1845), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_extern] = ACTIONS(1847), + [anon_sym_LT] = ACTIONS(1845), + [anon_sym_COLON_COLON] = ACTIONS(1845), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_DOT_DOT] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PIPE] = ACTIONS(1845), + [anon_sym_move] = ACTIONS(1847), + [sym_integer_literal] = ACTIONS(1845), + [aux_sym_string_literal_token1] = ACTIONS(1845), + [sym_char_literal] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1847), + [anon_sym_false] = ACTIONS(1847), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1847), + [sym_super] = ACTIONS(1847), + [sym_crate] = ACTIONS(1847), + [sym_metavariable] = ACTIONS(1845), + [sym_raw_string_literal] = ACTIONS(1845), + [sym_float_literal] = ACTIONS(1845), [sym_block_comment] = ACTIONS(3), }, [438] = { - [ts_builtin_sym_end] = ACTIONS(1855), - [sym_identifier] = ACTIONS(1857), - [anon_sym_SEMI] = ACTIONS(1855), - [anon_sym_macro_rules_BANG] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_u8] = ACTIONS(1857), - [anon_sym_i8] = ACTIONS(1857), - [anon_sym_u16] = ACTIONS(1857), - [anon_sym_i16] = ACTIONS(1857), - [anon_sym_u32] = ACTIONS(1857), - [anon_sym_i32] = ACTIONS(1857), - [anon_sym_u64] = ACTIONS(1857), - [anon_sym_i64] = ACTIONS(1857), - [anon_sym_u128] = ACTIONS(1857), - [anon_sym_i128] = ACTIONS(1857), - [anon_sym_isize] = ACTIONS(1857), - [anon_sym_usize] = ACTIONS(1857), - [anon_sym_f32] = ACTIONS(1857), - [anon_sym_f64] = ACTIONS(1857), - [anon_sym_bool] = ACTIONS(1857), - [anon_sym_str] = ACTIONS(1857), - [anon_sym_char] = ACTIONS(1857), - [anon_sym_SQUOTE] = ACTIONS(1857), - [anon_sym_async] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1857), - [anon_sym_const] = ACTIONS(1857), - [anon_sym_continue] = ACTIONS(1857), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_enum] = ACTIONS(1857), - [anon_sym_fn] = ACTIONS(1857), - [anon_sym_for] = ACTIONS(1857), - [anon_sym_if] = ACTIONS(1857), - [anon_sym_impl] = ACTIONS(1857), - [anon_sym_let] = ACTIONS(1857), - [anon_sym_loop] = ACTIONS(1857), - [anon_sym_match] = ACTIONS(1857), - [anon_sym_mod] = ACTIONS(1857), - [anon_sym_pub] = ACTIONS(1857), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_static] = ACTIONS(1857), - [anon_sym_struct] = ACTIONS(1857), - [anon_sym_trait] = ACTIONS(1857), - [anon_sym_type] = ACTIONS(1857), - [anon_sym_union] = ACTIONS(1857), - [anon_sym_unsafe] = ACTIONS(1857), - [anon_sym_use] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_POUND] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_extern] = ACTIONS(1857), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_COLON_COLON] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_move] = ACTIONS(1857), - [sym_integer_literal] = ACTIONS(1855), - [aux_sym_string_literal_token1] = ACTIONS(1855), - [sym_char_literal] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1857), - [anon_sym_false] = ACTIONS(1857), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1857), - [sym_super] = ACTIONS(1857), - [sym_crate] = ACTIONS(1857), - [sym_metavariable] = ACTIONS(1855), - [sym_raw_string_literal] = ACTIONS(1855), - [sym_float_literal] = ACTIONS(1855), + [ts_builtin_sym_end] = ACTIONS(1849), + [sym_identifier] = ACTIONS(1851), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_macro_rules_BANG] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_u8] = ACTIONS(1851), + [anon_sym_i8] = ACTIONS(1851), + [anon_sym_u16] = ACTIONS(1851), + [anon_sym_i16] = ACTIONS(1851), + [anon_sym_u32] = ACTIONS(1851), + [anon_sym_i32] = ACTIONS(1851), + [anon_sym_u64] = ACTIONS(1851), + [anon_sym_i64] = ACTIONS(1851), + [anon_sym_u128] = ACTIONS(1851), + [anon_sym_i128] = ACTIONS(1851), + [anon_sym_isize] = ACTIONS(1851), + [anon_sym_usize] = ACTIONS(1851), + [anon_sym_f32] = ACTIONS(1851), + [anon_sym_f64] = ACTIONS(1851), + [anon_sym_bool] = ACTIONS(1851), + [anon_sym_str] = ACTIONS(1851), + [anon_sym_char] = ACTIONS(1851), + [anon_sym_SQUOTE] = ACTIONS(1851), + [anon_sym_async] = ACTIONS(1851), + [anon_sym_break] = ACTIONS(1851), + [anon_sym_const] = ACTIONS(1851), + [anon_sym_continue] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1851), + [anon_sym_enum] = ACTIONS(1851), + [anon_sym_fn] = ACTIONS(1851), + [anon_sym_for] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1851), + [anon_sym_impl] = ACTIONS(1851), + [anon_sym_let] = ACTIONS(1851), + [anon_sym_loop] = ACTIONS(1851), + [anon_sym_match] = ACTIONS(1851), + [anon_sym_mod] = ACTIONS(1851), + [anon_sym_pub] = ACTIONS(1851), + [anon_sym_return] = ACTIONS(1851), + [anon_sym_static] = ACTIONS(1851), + [anon_sym_struct] = ACTIONS(1851), + [anon_sym_trait] = ACTIONS(1851), + [anon_sym_type] = ACTIONS(1851), + [anon_sym_union] = ACTIONS(1851), + [anon_sym_unsafe] = ACTIONS(1851), + [anon_sym_use] = ACTIONS(1851), + [anon_sym_while] = ACTIONS(1851), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_BANG] = ACTIONS(1849), + [anon_sym_extern] = ACTIONS(1851), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(1849), + [anon_sym_DOT_DOT] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_move] = ACTIONS(1851), + [sym_integer_literal] = ACTIONS(1849), + [aux_sym_string_literal_token1] = ACTIONS(1849), + [sym_char_literal] = ACTIONS(1849), + [anon_sym_true] = ACTIONS(1851), + [anon_sym_false] = ACTIONS(1851), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1851), + [sym_super] = ACTIONS(1851), + [sym_crate] = ACTIONS(1851), + [sym_metavariable] = ACTIONS(1849), + [sym_raw_string_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), [sym_block_comment] = ACTIONS(3), }, [439] = { - [ts_builtin_sym_end] = ACTIONS(1859), - [sym_identifier] = ACTIONS(1861), - [anon_sym_SEMI] = ACTIONS(1859), - [anon_sym_macro_rules_BANG] = ACTIONS(1859), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_STAR] = ACTIONS(1859), - [anon_sym_u8] = ACTIONS(1861), - [anon_sym_i8] = ACTIONS(1861), - [anon_sym_u16] = ACTIONS(1861), - [anon_sym_i16] = ACTIONS(1861), - [anon_sym_u32] = ACTIONS(1861), - [anon_sym_i32] = ACTIONS(1861), - [anon_sym_u64] = ACTIONS(1861), - [anon_sym_i64] = ACTIONS(1861), - [anon_sym_u128] = ACTIONS(1861), - [anon_sym_i128] = ACTIONS(1861), - [anon_sym_isize] = ACTIONS(1861), - [anon_sym_usize] = ACTIONS(1861), - [anon_sym_f32] = ACTIONS(1861), - [anon_sym_f64] = ACTIONS(1861), - [anon_sym_bool] = ACTIONS(1861), - [anon_sym_str] = ACTIONS(1861), - [anon_sym_char] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_default] = ACTIONS(1861), - [anon_sym_enum] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_impl] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_loop] = ACTIONS(1861), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_mod] = ACTIONS(1861), - [anon_sym_pub] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_static] = ACTIONS(1861), - [anon_sym_struct] = ACTIONS(1861), - [anon_sym_trait] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_union] = ACTIONS(1861), - [anon_sym_unsafe] = ACTIONS(1861), - [anon_sym_use] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(1859), - [anon_sym_BANG] = ACTIONS(1859), - [anon_sym_extern] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1859), - [anon_sym_COLON_COLON] = ACTIONS(1859), - [anon_sym_AMP] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1859), - [anon_sym_DASH] = ACTIONS(1859), - [anon_sym_PIPE] = ACTIONS(1859), - [anon_sym_move] = ACTIONS(1861), - [sym_integer_literal] = ACTIONS(1859), - [aux_sym_string_literal_token1] = ACTIONS(1859), - [sym_char_literal] = ACTIONS(1859), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1861), - [sym_super] = ACTIONS(1861), - [sym_crate] = ACTIONS(1861), - [sym_metavariable] = ACTIONS(1859), - [sym_raw_string_literal] = ACTIONS(1859), - [sym_float_literal] = ACTIONS(1859), + [ts_builtin_sym_end] = ACTIONS(1853), + [sym_identifier] = ACTIONS(1855), + [anon_sym_SEMI] = ACTIONS(1853), + [anon_sym_macro_rules_BANG] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1853), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_u8] = ACTIONS(1855), + [anon_sym_i8] = ACTIONS(1855), + [anon_sym_u16] = ACTIONS(1855), + [anon_sym_i16] = ACTIONS(1855), + [anon_sym_u32] = ACTIONS(1855), + [anon_sym_i32] = ACTIONS(1855), + [anon_sym_u64] = ACTIONS(1855), + [anon_sym_i64] = ACTIONS(1855), + [anon_sym_u128] = ACTIONS(1855), + [anon_sym_i128] = ACTIONS(1855), + [anon_sym_isize] = ACTIONS(1855), + [anon_sym_usize] = ACTIONS(1855), + [anon_sym_f32] = ACTIONS(1855), + [anon_sym_f64] = ACTIONS(1855), + [anon_sym_bool] = ACTIONS(1855), + [anon_sym_str] = ACTIONS(1855), + [anon_sym_char] = ACTIONS(1855), + [anon_sym_SQUOTE] = ACTIONS(1855), + [anon_sym_async] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [anon_sym_const] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_default] = ACTIONS(1855), + [anon_sym_enum] = ACTIONS(1855), + [anon_sym_fn] = ACTIONS(1855), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_impl] = ACTIONS(1855), + [anon_sym_let] = ACTIONS(1855), + [anon_sym_loop] = ACTIONS(1855), + [anon_sym_match] = ACTIONS(1855), + [anon_sym_mod] = ACTIONS(1855), + [anon_sym_pub] = ACTIONS(1855), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_static] = ACTIONS(1855), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_trait] = ACTIONS(1855), + [anon_sym_type] = ACTIONS(1855), + [anon_sym_union] = ACTIONS(1855), + [anon_sym_unsafe] = ACTIONS(1855), + [anon_sym_use] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_extern] = ACTIONS(1855), + [anon_sym_LT] = ACTIONS(1853), + [anon_sym_COLON_COLON] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_move] = ACTIONS(1855), + [sym_integer_literal] = ACTIONS(1853), + [aux_sym_string_literal_token1] = ACTIONS(1853), + [sym_char_literal] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1855), + [anon_sym_false] = ACTIONS(1855), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1855), + [sym_super] = ACTIONS(1855), + [sym_crate] = ACTIONS(1855), + [sym_metavariable] = ACTIONS(1853), + [sym_raw_string_literal] = ACTIONS(1853), + [sym_float_literal] = ACTIONS(1853), [sym_block_comment] = ACTIONS(3), }, [440] = { - [ts_builtin_sym_end] = ACTIONS(1863), - [sym_identifier] = ACTIONS(1865), - [anon_sym_SEMI] = ACTIONS(1863), - [anon_sym_macro_rules_BANG] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1863), - [anon_sym_u8] = ACTIONS(1865), - [anon_sym_i8] = ACTIONS(1865), - [anon_sym_u16] = ACTIONS(1865), - [anon_sym_i16] = ACTIONS(1865), - [anon_sym_u32] = ACTIONS(1865), - [anon_sym_i32] = ACTIONS(1865), - [anon_sym_u64] = ACTIONS(1865), - [anon_sym_i64] = ACTIONS(1865), - [anon_sym_u128] = ACTIONS(1865), - [anon_sym_i128] = ACTIONS(1865), - [anon_sym_isize] = ACTIONS(1865), - [anon_sym_usize] = ACTIONS(1865), - [anon_sym_f32] = ACTIONS(1865), - [anon_sym_f64] = ACTIONS(1865), - [anon_sym_bool] = ACTIONS(1865), - [anon_sym_str] = ACTIONS(1865), - [anon_sym_char] = ACTIONS(1865), - [anon_sym_SQUOTE] = ACTIONS(1865), - [anon_sym_async] = ACTIONS(1865), - [anon_sym_break] = ACTIONS(1865), - [anon_sym_const] = ACTIONS(1865), - [anon_sym_continue] = ACTIONS(1865), - [anon_sym_default] = ACTIONS(1865), - [anon_sym_enum] = ACTIONS(1865), - [anon_sym_fn] = ACTIONS(1865), - [anon_sym_for] = ACTIONS(1865), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_impl] = ACTIONS(1865), - [anon_sym_let] = ACTIONS(1865), - [anon_sym_loop] = ACTIONS(1865), - [anon_sym_match] = ACTIONS(1865), - [anon_sym_mod] = ACTIONS(1865), - [anon_sym_pub] = ACTIONS(1865), - [anon_sym_return] = ACTIONS(1865), - [anon_sym_static] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1865), - [anon_sym_trait] = ACTIONS(1865), - [anon_sym_type] = ACTIONS(1865), - [anon_sym_union] = ACTIONS(1865), - [anon_sym_unsafe] = ACTIONS(1865), - [anon_sym_use] = ACTIONS(1865), - [anon_sym_while] = ACTIONS(1865), - [anon_sym_POUND] = ACTIONS(1863), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1865), - [anon_sym_LT] = ACTIONS(1863), - [anon_sym_COLON_COLON] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_DOT_DOT] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_PIPE] = ACTIONS(1863), - [anon_sym_move] = ACTIONS(1865), - [sym_integer_literal] = ACTIONS(1863), - [aux_sym_string_literal_token1] = ACTIONS(1863), - [sym_char_literal] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1865), - [anon_sym_false] = ACTIONS(1865), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1865), - [sym_super] = ACTIONS(1865), - [sym_crate] = ACTIONS(1865), - [sym_metavariable] = ACTIONS(1863), - [sym_raw_string_literal] = ACTIONS(1863), - [sym_float_literal] = ACTIONS(1863), + [ts_builtin_sym_end] = ACTIONS(1857), + [sym_identifier] = ACTIONS(1859), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_macro_rules_BANG] = ACTIONS(1857), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_STAR] = ACTIONS(1857), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u128] = ACTIONS(1859), + [anon_sym_i128] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_str] = ACTIONS(1859), + [anon_sym_char] = ACTIONS(1859), + [anon_sym_SQUOTE] = ACTIONS(1859), + [anon_sym_async] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_default] = ACTIONS(1859), + [anon_sym_enum] = ACTIONS(1859), + [anon_sym_fn] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_impl] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_loop] = ACTIONS(1859), + [anon_sym_match] = ACTIONS(1859), + [anon_sym_mod] = ACTIONS(1859), + [anon_sym_pub] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_struct] = ACTIONS(1859), + [anon_sym_trait] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_union] = ACTIONS(1859), + [anon_sym_unsafe] = ACTIONS(1859), + [anon_sym_use] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_POUND] = ACTIONS(1857), + [anon_sym_BANG] = ACTIONS(1857), + [anon_sym_extern] = ACTIONS(1859), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_COLON_COLON] = ACTIONS(1857), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_move] = ACTIONS(1859), + [sym_integer_literal] = ACTIONS(1857), + [aux_sym_string_literal_token1] = ACTIONS(1857), + [sym_char_literal] = ACTIONS(1857), + [anon_sym_true] = ACTIONS(1859), + [anon_sym_false] = ACTIONS(1859), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1859), + [sym_super] = ACTIONS(1859), + [sym_crate] = ACTIONS(1859), + [sym_metavariable] = ACTIONS(1857), + [sym_raw_string_literal] = ACTIONS(1857), + [sym_float_literal] = ACTIONS(1857), [sym_block_comment] = ACTIONS(3), }, [441] = { - [ts_builtin_sym_end] = ACTIONS(1867), - [sym_identifier] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1867), - [anon_sym_macro_rules_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_STAR] = ACTIONS(1867), - [anon_sym_u8] = ACTIONS(1869), - [anon_sym_i8] = ACTIONS(1869), - [anon_sym_u16] = ACTIONS(1869), - [anon_sym_i16] = ACTIONS(1869), - [anon_sym_u32] = ACTIONS(1869), - [anon_sym_i32] = ACTIONS(1869), - [anon_sym_u64] = ACTIONS(1869), - [anon_sym_i64] = ACTIONS(1869), - [anon_sym_u128] = ACTIONS(1869), - [anon_sym_i128] = ACTIONS(1869), - [anon_sym_isize] = ACTIONS(1869), - [anon_sym_usize] = ACTIONS(1869), - [anon_sym_f32] = ACTIONS(1869), - [anon_sym_f64] = ACTIONS(1869), - [anon_sym_bool] = ACTIONS(1869), - [anon_sym_str] = ACTIONS(1869), - [anon_sym_char] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_async] = ACTIONS(1869), - [anon_sym_break] = ACTIONS(1869), - [anon_sym_const] = ACTIONS(1869), - [anon_sym_continue] = ACTIONS(1869), - [anon_sym_default] = ACTIONS(1869), - [anon_sym_enum] = ACTIONS(1869), - [anon_sym_fn] = ACTIONS(1869), - [anon_sym_for] = ACTIONS(1869), - [anon_sym_if] = ACTIONS(1869), - [anon_sym_impl] = ACTIONS(1869), - [anon_sym_let] = ACTIONS(1869), - [anon_sym_loop] = ACTIONS(1869), - [anon_sym_match] = ACTIONS(1869), - [anon_sym_mod] = ACTIONS(1869), - [anon_sym_pub] = ACTIONS(1869), - [anon_sym_return] = ACTIONS(1869), - [anon_sym_static] = ACTIONS(1869), - [anon_sym_struct] = ACTIONS(1869), - [anon_sym_trait] = ACTIONS(1869), - [anon_sym_type] = ACTIONS(1869), - [anon_sym_union] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1869), - [anon_sym_use] = ACTIONS(1869), - [anon_sym_while] = ACTIONS(1869), - [anon_sym_POUND] = ACTIONS(1867), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_COLON_COLON] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_DOT_DOT] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_PIPE] = ACTIONS(1867), - [anon_sym_move] = ACTIONS(1869), - [sym_integer_literal] = ACTIONS(1867), - [aux_sym_string_literal_token1] = ACTIONS(1867), - [sym_char_literal] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1869), - [anon_sym_false] = ACTIONS(1869), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1869), - [sym_super] = ACTIONS(1869), - [sym_crate] = ACTIONS(1869), - [sym_metavariable] = ACTIONS(1867), - [sym_raw_string_literal] = ACTIONS(1867), - [sym_float_literal] = ACTIONS(1867), + [ts_builtin_sym_end] = ACTIONS(1861), + [sym_identifier] = ACTIONS(1863), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_macro_rules_BANG] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(1861), + [anon_sym_STAR] = ACTIONS(1861), + [anon_sym_u8] = ACTIONS(1863), + [anon_sym_i8] = ACTIONS(1863), + [anon_sym_u16] = ACTIONS(1863), + [anon_sym_i16] = ACTIONS(1863), + [anon_sym_u32] = ACTIONS(1863), + [anon_sym_i32] = ACTIONS(1863), + [anon_sym_u64] = ACTIONS(1863), + [anon_sym_i64] = ACTIONS(1863), + [anon_sym_u128] = ACTIONS(1863), + [anon_sym_i128] = ACTIONS(1863), + [anon_sym_isize] = ACTIONS(1863), + [anon_sym_usize] = ACTIONS(1863), + [anon_sym_f32] = ACTIONS(1863), + [anon_sym_f64] = ACTIONS(1863), + [anon_sym_bool] = ACTIONS(1863), + [anon_sym_str] = ACTIONS(1863), + [anon_sym_char] = ACTIONS(1863), + [anon_sym_SQUOTE] = ACTIONS(1863), + [anon_sym_async] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_default] = ACTIONS(1863), + [anon_sym_enum] = ACTIONS(1863), + [anon_sym_fn] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_impl] = ACTIONS(1863), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_loop] = ACTIONS(1863), + [anon_sym_match] = ACTIONS(1863), + [anon_sym_mod] = ACTIONS(1863), + [anon_sym_pub] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_static] = ACTIONS(1863), + [anon_sym_struct] = ACTIONS(1863), + [anon_sym_trait] = ACTIONS(1863), + [anon_sym_type] = ACTIONS(1863), + [anon_sym_union] = ACTIONS(1863), + [anon_sym_unsafe] = ACTIONS(1863), + [anon_sym_use] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_POUND] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1861), + [anon_sym_extern] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1861), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_DASH] = ACTIONS(1861), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_move] = ACTIONS(1863), + [sym_integer_literal] = ACTIONS(1861), + [aux_sym_string_literal_token1] = ACTIONS(1861), + [sym_char_literal] = ACTIONS(1861), + [anon_sym_true] = ACTIONS(1863), + [anon_sym_false] = ACTIONS(1863), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1863), + [sym_super] = ACTIONS(1863), + [sym_crate] = ACTIONS(1863), + [sym_metavariable] = ACTIONS(1861), + [sym_raw_string_literal] = ACTIONS(1861), + [sym_float_literal] = ACTIONS(1861), [sym_block_comment] = ACTIONS(3), }, [442] = { - [ts_builtin_sym_end] = ACTIONS(1871), - [sym_identifier] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1871), - [anon_sym_macro_rules_BANG] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(1871), - [anon_sym_STAR] = ACTIONS(1871), - [anon_sym_u8] = ACTIONS(1873), - [anon_sym_i8] = ACTIONS(1873), - [anon_sym_u16] = ACTIONS(1873), - [anon_sym_i16] = ACTIONS(1873), - [anon_sym_u32] = ACTIONS(1873), - [anon_sym_i32] = ACTIONS(1873), - [anon_sym_u64] = ACTIONS(1873), - [anon_sym_i64] = ACTIONS(1873), - [anon_sym_u128] = ACTIONS(1873), - [anon_sym_i128] = ACTIONS(1873), - [anon_sym_isize] = ACTIONS(1873), - [anon_sym_usize] = ACTIONS(1873), - [anon_sym_f32] = ACTIONS(1873), - [anon_sym_f64] = ACTIONS(1873), - [anon_sym_bool] = ACTIONS(1873), - [anon_sym_str] = ACTIONS(1873), - [anon_sym_char] = ACTIONS(1873), - [anon_sym_SQUOTE] = ACTIONS(1873), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_break] = ACTIONS(1873), - [anon_sym_const] = ACTIONS(1873), - [anon_sym_continue] = ACTIONS(1873), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_enum] = ACTIONS(1873), - [anon_sym_fn] = ACTIONS(1873), - [anon_sym_for] = ACTIONS(1873), - [anon_sym_if] = ACTIONS(1873), - [anon_sym_impl] = ACTIONS(1873), - [anon_sym_let] = ACTIONS(1873), - [anon_sym_loop] = ACTIONS(1873), - [anon_sym_match] = ACTIONS(1873), - [anon_sym_mod] = ACTIONS(1873), - [anon_sym_pub] = ACTIONS(1873), - [anon_sym_return] = ACTIONS(1873), - [anon_sym_static] = ACTIONS(1873), - [anon_sym_struct] = ACTIONS(1873), - [anon_sym_trait] = ACTIONS(1873), - [anon_sym_type] = ACTIONS(1873), - [anon_sym_union] = ACTIONS(1873), - [anon_sym_unsafe] = ACTIONS(1873), - [anon_sym_use] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1873), - [anon_sym_POUND] = ACTIONS(1871), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1873), - [anon_sym_LT] = ACTIONS(1871), - [anon_sym_COLON_COLON] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_DOT_DOT] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1871), - [anon_sym_move] = ACTIONS(1873), - [sym_integer_literal] = ACTIONS(1871), - [aux_sym_string_literal_token1] = ACTIONS(1871), - [sym_char_literal] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1873), - [sym_super] = ACTIONS(1873), - [sym_crate] = ACTIONS(1873), - [sym_metavariable] = ACTIONS(1871), - [sym_raw_string_literal] = ACTIONS(1871), - [sym_float_literal] = ACTIONS(1871), + [ts_builtin_sym_end] = ACTIONS(1865), + [sym_identifier] = ACTIONS(1867), + [anon_sym_SEMI] = ACTIONS(1865), + [anon_sym_macro_rules_BANG] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_LBRACK] = ACTIONS(1865), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_u8] = ACTIONS(1867), + [anon_sym_i8] = ACTIONS(1867), + [anon_sym_u16] = ACTIONS(1867), + [anon_sym_i16] = ACTIONS(1867), + [anon_sym_u32] = ACTIONS(1867), + [anon_sym_i32] = ACTIONS(1867), + [anon_sym_u64] = ACTIONS(1867), + [anon_sym_i64] = ACTIONS(1867), + [anon_sym_u128] = ACTIONS(1867), + [anon_sym_i128] = ACTIONS(1867), + [anon_sym_isize] = ACTIONS(1867), + [anon_sym_usize] = ACTIONS(1867), + [anon_sym_f32] = ACTIONS(1867), + [anon_sym_f64] = ACTIONS(1867), + [anon_sym_bool] = ACTIONS(1867), + [anon_sym_str] = ACTIONS(1867), + [anon_sym_char] = ACTIONS(1867), + [anon_sym_SQUOTE] = ACTIONS(1867), + [anon_sym_async] = ACTIONS(1867), + [anon_sym_break] = ACTIONS(1867), + [anon_sym_const] = ACTIONS(1867), + [anon_sym_continue] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(1867), + [anon_sym_enum] = ACTIONS(1867), + [anon_sym_fn] = ACTIONS(1867), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(1867), + [anon_sym_impl] = ACTIONS(1867), + [anon_sym_let] = ACTIONS(1867), + [anon_sym_loop] = ACTIONS(1867), + [anon_sym_match] = ACTIONS(1867), + [anon_sym_mod] = ACTIONS(1867), + [anon_sym_pub] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1867), + [anon_sym_static] = ACTIONS(1867), + [anon_sym_struct] = ACTIONS(1867), + [anon_sym_trait] = ACTIONS(1867), + [anon_sym_type] = ACTIONS(1867), + [anon_sym_union] = ACTIONS(1867), + [anon_sym_unsafe] = ACTIONS(1867), + [anon_sym_use] = ACTIONS(1867), + [anon_sym_while] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(1865), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_extern] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(1865), + [anon_sym_COLON_COLON] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_DOT_DOT] = ACTIONS(1865), + [anon_sym_DASH] = ACTIONS(1865), + [anon_sym_PIPE] = ACTIONS(1865), + [anon_sym_move] = ACTIONS(1867), + [sym_integer_literal] = ACTIONS(1865), + [aux_sym_string_literal_token1] = ACTIONS(1865), + [sym_char_literal] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1867), + [anon_sym_false] = ACTIONS(1867), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1867), + [sym_super] = ACTIONS(1867), + [sym_crate] = ACTIONS(1867), + [sym_metavariable] = ACTIONS(1865), + [sym_raw_string_literal] = ACTIONS(1865), + [sym_float_literal] = ACTIONS(1865), [sym_block_comment] = ACTIONS(3), }, [443] = { - [ts_builtin_sym_end] = ACTIONS(1875), - [sym_identifier] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1875), - [anon_sym_macro_rules_BANG] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1875), - [anon_sym_RBRACE] = ACTIONS(1875), - [anon_sym_LBRACK] = ACTIONS(1875), - [anon_sym_STAR] = ACTIONS(1875), - [anon_sym_u8] = ACTIONS(1877), - [anon_sym_i8] = ACTIONS(1877), - [anon_sym_u16] = ACTIONS(1877), - [anon_sym_i16] = ACTIONS(1877), - [anon_sym_u32] = ACTIONS(1877), - [anon_sym_i32] = ACTIONS(1877), - [anon_sym_u64] = ACTIONS(1877), - [anon_sym_i64] = ACTIONS(1877), - [anon_sym_u128] = ACTIONS(1877), - [anon_sym_i128] = ACTIONS(1877), - [anon_sym_isize] = ACTIONS(1877), - [anon_sym_usize] = ACTIONS(1877), - [anon_sym_f32] = ACTIONS(1877), - [anon_sym_f64] = ACTIONS(1877), - [anon_sym_bool] = ACTIONS(1877), - [anon_sym_str] = ACTIONS(1877), - [anon_sym_char] = ACTIONS(1877), - [anon_sym_SQUOTE] = ACTIONS(1877), - [anon_sym_async] = ACTIONS(1877), - [anon_sym_break] = ACTIONS(1877), - [anon_sym_const] = ACTIONS(1877), - [anon_sym_continue] = ACTIONS(1877), - [anon_sym_default] = ACTIONS(1877), - [anon_sym_enum] = ACTIONS(1877), - [anon_sym_fn] = ACTIONS(1877), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_impl] = ACTIONS(1877), - [anon_sym_let] = ACTIONS(1877), - [anon_sym_loop] = ACTIONS(1877), - [anon_sym_match] = ACTIONS(1877), - [anon_sym_mod] = ACTIONS(1877), - [anon_sym_pub] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(1877), - [anon_sym_static] = ACTIONS(1877), - [anon_sym_struct] = ACTIONS(1877), - [anon_sym_trait] = ACTIONS(1877), - [anon_sym_type] = ACTIONS(1877), - [anon_sym_union] = ACTIONS(1877), - [anon_sym_unsafe] = ACTIONS(1877), - [anon_sym_use] = ACTIONS(1877), - [anon_sym_while] = ACTIONS(1877), - [anon_sym_POUND] = ACTIONS(1875), - [anon_sym_BANG] = ACTIONS(1875), - [anon_sym_extern] = ACTIONS(1877), - [anon_sym_LT] = ACTIONS(1875), - [anon_sym_COLON_COLON] = ACTIONS(1875), - [anon_sym_AMP] = ACTIONS(1875), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [anon_sym_DASH] = ACTIONS(1875), - [anon_sym_PIPE] = ACTIONS(1875), - [anon_sym_move] = ACTIONS(1877), - [sym_integer_literal] = ACTIONS(1875), - [aux_sym_string_literal_token1] = ACTIONS(1875), - [sym_char_literal] = ACTIONS(1875), - [anon_sym_true] = ACTIONS(1877), - [anon_sym_false] = ACTIONS(1877), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1877), - [sym_super] = ACTIONS(1877), - [sym_crate] = ACTIONS(1877), - [sym_metavariable] = ACTIONS(1875), - [sym_raw_string_literal] = ACTIONS(1875), - [sym_float_literal] = ACTIONS(1875), + [ts_builtin_sym_end] = ACTIONS(1869), + [sym_identifier] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1869), + [anon_sym_macro_rules_BANG] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_LBRACK] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_u8] = ACTIONS(1871), + [anon_sym_i8] = ACTIONS(1871), + [anon_sym_u16] = ACTIONS(1871), + [anon_sym_i16] = ACTIONS(1871), + [anon_sym_u32] = ACTIONS(1871), + [anon_sym_i32] = ACTIONS(1871), + [anon_sym_u64] = ACTIONS(1871), + [anon_sym_i64] = ACTIONS(1871), + [anon_sym_u128] = ACTIONS(1871), + [anon_sym_i128] = ACTIONS(1871), + [anon_sym_isize] = ACTIONS(1871), + [anon_sym_usize] = ACTIONS(1871), + [anon_sym_f32] = ACTIONS(1871), + [anon_sym_f64] = ACTIONS(1871), + [anon_sym_bool] = ACTIONS(1871), + [anon_sym_str] = ACTIONS(1871), + [anon_sym_char] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_async] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_enum] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_impl] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_loop] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_mod] = ACTIONS(1871), + [anon_sym_pub] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_static] = ACTIONS(1871), + [anon_sym_struct] = ACTIONS(1871), + [anon_sym_trait] = ACTIONS(1871), + [anon_sym_type] = ACTIONS(1871), + [anon_sym_union] = ACTIONS(1871), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_use] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_extern] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_COLON_COLON] = ACTIONS(1869), + [anon_sym_AMP] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_move] = ACTIONS(1871), + [sym_integer_literal] = ACTIONS(1869), + [aux_sym_string_literal_token1] = ACTIONS(1869), + [sym_char_literal] = ACTIONS(1869), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1871), + [sym_super] = ACTIONS(1871), + [sym_crate] = ACTIONS(1871), + [sym_metavariable] = ACTIONS(1869), + [sym_raw_string_literal] = ACTIONS(1869), + [sym_float_literal] = ACTIONS(1869), [sym_block_comment] = ACTIONS(3), }, [444] = { - [ts_builtin_sym_end] = ACTIONS(1879), - [sym_identifier] = ACTIONS(1881), - [anon_sym_SEMI] = ACTIONS(1879), - [anon_sym_macro_rules_BANG] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1879), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1879), - [anon_sym_u8] = ACTIONS(1881), - [anon_sym_i8] = ACTIONS(1881), - [anon_sym_u16] = ACTIONS(1881), - [anon_sym_i16] = ACTIONS(1881), - [anon_sym_u32] = ACTIONS(1881), - [anon_sym_i32] = ACTIONS(1881), - [anon_sym_u64] = ACTIONS(1881), - [anon_sym_i64] = ACTIONS(1881), - [anon_sym_u128] = ACTIONS(1881), - [anon_sym_i128] = ACTIONS(1881), - [anon_sym_isize] = ACTIONS(1881), - [anon_sym_usize] = ACTIONS(1881), - [anon_sym_f32] = ACTIONS(1881), - [anon_sym_f64] = ACTIONS(1881), - [anon_sym_bool] = ACTIONS(1881), - [anon_sym_str] = ACTIONS(1881), - [anon_sym_char] = ACTIONS(1881), - [anon_sym_SQUOTE] = ACTIONS(1881), - [anon_sym_async] = ACTIONS(1881), - [anon_sym_break] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_continue] = ACTIONS(1881), - [anon_sym_default] = ACTIONS(1881), - [anon_sym_enum] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_for] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_impl] = ACTIONS(1881), - [anon_sym_let] = ACTIONS(1881), - [anon_sym_loop] = ACTIONS(1881), - [anon_sym_match] = ACTIONS(1881), - [anon_sym_mod] = ACTIONS(1881), - [anon_sym_pub] = ACTIONS(1881), - [anon_sym_return] = ACTIONS(1881), - [anon_sym_static] = ACTIONS(1881), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_trait] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_union] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1881), - [anon_sym_use] = ACTIONS(1881), - [anon_sym_while] = ACTIONS(1881), - [anon_sym_POUND] = ACTIONS(1879), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1879), - [anon_sym_COLON_COLON] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_PIPE] = ACTIONS(1879), - [anon_sym_move] = ACTIONS(1881), - [sym_integer_literal] = ACTIONS(1879), - [aux_sym_string_literal_token1] = ACTIONS(1879), - [sym_char_literal] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1881), - [sym_super] = ACTIONS(1881), - [sym_crate] = ACTIONS(1881), - [sym_metavariable] = ACTIONS(1879), - [sym_raw_string_literal] = ACTIONS(1879), - [sym_float_literal] = ACTIONS(1879), + [ts_builtin_sym_end] = ACTIONS(1873), + [sym_identifier] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_macro_rules_BANG] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_u8] = ACTIONS(1875), + [anon_sym_i8] = ACTIONS(1875), + [anon_sym_u16] = ACTIONS(1875), + [anon_sym_i16] = ACTIONS(1875), + [anon_sym_u32] = ACTIONS(1875), + [anon_sym_i32] = ACTIONS(1875), + [anon_sym_u64] = ACTIONS(1875), + [anon_sym_i64] = ACTIONS(1875), + [anon_sym_u128] = ACTIONS(1875), + [anon_sym_i128] = ACTIONS(1875), + [anon_sym_isize] = ACTIONS(1875), + [anon_sym_usize] = ACTIONS(1875), + [anon_sym_f32] = ACTIONS(1875), + [anon_sym_f64] = ACTIONS(1875), + [anon_sym_bool] = ACTIONS(1875), + [anon_sym_str] = ACTIONS(1875), + [anon_sym_char] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(1875), + [anon_sym_async] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_default] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_fn] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_impl] = ACTIONS(1875), + [anon_sym_let] = ACTIONS(1875), + [anon_sym_loop] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_mod] = ACTIONS(1875), + [anon_sym_pub] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_trait] = ACTIONS(1875), + [anon_sym_type] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [anon_sym_unsafe] = ACTIONS(1875), + [anon_sym_use] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_DOT_DOT] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_move] = ACTIONS(1875), + [sym_integer_literal] = ACTIONS(1873), + [aux_sym_string_literal_token1] = ACTIONS(1873), + [sym_char_literal] = ACTIONS(1873), + [anon_sym_true] = ACTIONS(1875), + [anon_sym_false] = ACTIONS(1875), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1875), + [sym_super] = ACTIONS(1875), + [sym_crate] = ACTIONS(1875), + [sym_metavariable] = ACTIONS(1873), + [sym_raw_string_literal] = ACTIONS(1873), + [sym_float_literal] = ACTIONS(1873), [sym_block_comment] = ACTIONS(3), }, [445] = { - [sym__token_pattern] = STATE(307), - [sym_token_tree_pattern] = STATE(307), - [sym_token_binding_pattern] = STATE(307), - [sym_token_repetition_pattern] = STATE(307), - [sym__literal] = STATE(307), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_pattern_repeat1] = STATE(307), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_macro_rules_BANG] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_u8] = ACTIONS(1879), + [anon_sym_i8] = ACTIONS(1879), + [anon_sym_u16] = ACTIONS(1879), + [anon_sym_i16] = ACTIONS(1879), + [anon_sym_u32] = ACTIONS(1879), + [anon_sym_i32] = ACTIONS(1879), + [anon_sym_u64] = ACTIONS(1879), + [anon_sym_i64] = ACTIONS(1879), + [anon_sym_u128] = ACTIONS(1879), + [anon_sym_i128] = ACTIONS(1879), + [anon_sym_isize] = ACTIONS(1879), + [anon_sym_usize] = ACTIONS(1879), + [anon_sym_f32] = ACTIONS(1879), + [anon_sym_f64] = ACTIONS(1879), + [anon_sym_bool] = ACTIONS(1879), + [anon_sym_str] = ACTIONS(1879), + [anon_sym_char] = ACTIONS(1879), + [anon_sym_SQUOTE] = ACTIONS(1879), + [anon_sym_async] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_default] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_impl] = ACTIONS(1879), + [anon_sym_let] = ACTIONS(1879), + [anon_sym_loop] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_mod] = ACTIONS(1879), + [anon_sym_pub] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_static] = ACTIONS(1879), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_trait] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_use] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_move] = ACTIONS(1879), + [sym_integer_literal] = ACTIONS(1877), + [aux_sym_string_literal_token1] = ACTIONS(1877), + [sym_char_literal] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1879), + [anon_sym_false] = ACTIONS(1879), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1879), + [sym_super] = ACTIONS(1879), + [sym_crate] = ACTIONS(1879), + [sym_metavariable] = ACTIONS(1877), + [sym_raw_string_literal] = ACTIONS(1877), + [sym_float_literal] = ACTIONS(1877), + [sym_block_comment] = ACTIONS(3), + }, + [446] = { + [ts_builtin_sym_end] = ACTIONS(1881), [sym_identifier] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_RBRACK] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_macro_rules_BANG] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1881), [anon_sym_u8] = ACTIONS(1883), [anon_sym_i8] = ACTIONS(1883), [anon_sym_u16] = ACTIONS(1883), @@ -54610,11 +54763,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1883), [anon_sym_str] = ACTIONS(1883), [anon_sym_char] = ACTIONS(1883), - [aux_sym__non_special_token_token1] = ACTIONS(1883), [anon_sym_SQUOTE] = ACTIONS(1883), - [anon_sym_as] = ACTIONS(1883), [anon_sym_async] = ACTIONS(1883), - [anon_sym_await] = ACTIONS(1883), [anon_sym_break] = ACTIONS(1883), [anon_sym_const] = ACTIONS(1883), [anon_sym_continue] = ACTIONS(1883), @@ -54637,114 +54787,117 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1883), [anon_sym_unsafe] = ACTIONS(1883), [anon_sym_use] = ACTIONS(1883), - [anon_sym_where] = ACTIONS(1883), [anon_sym_while] = ACTIONS(1883), - [sym_mutable_specifier] = ACTIONS(1883), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_extern] = ACTIONS(1883), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_COLON_COLON] = ACTIONS(1881), + [anon_sym_AMP] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_move] = ACTIONS(1883), + [sym_integer_literal] = ACTIONS(1881), + [aux_sym_string_literal_token1] = ACTIONS(1881), + [sym_char_literal] = ACTIONS(1881), + [anon_sym_true] = ACTIONS(1883), + [anon_sym_false] = ACTIONS(1883), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1883), [sym_super] = ACTIONS(1883), [sym_crate] = ACTIONS(1883), - [sym_metavariable] = ACTIONS(1116), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(1881), + [sym_raw_string_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), [sym_block_comment] = ACTIONS(3), }, - [446] = { - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_macro_rules_BANG] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_u8] = ACTIONS(1889), - [anon_sym_i8] = ACTIONS(1889), - [anon_sym_u16] = ACTIONS(1889), - [anon_sym_i16] = ACTIONS(1889), - [anon_sym_u32] = ACTIONS(1889), - [anon_sym_i32] = ACTIONS(1889), - [anon_sym_u64] = ACTIONS(1889), - [anon_sym_i64] = ACTIONS(1889), - [anon_sym_u128] = ACTIONS(1889), - [anon_sym_i128] = ACTIONS(1889), - [anon_sym_isize] = ACTIONS(1889), - [anon_sym_usize] = ACTIONS(1889), - [anon_sym_f32] = ACTIONS(1889), - [anon_sym_f64] = ACTIONS(1889), - [anon_sym_bool] = ACTIONS(1889), - [anon_sym_str] = ACTIONS(1889), - [anon_sym_char] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1889), - [anon_sym_async] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_default] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_impl] = ACTIONS(1889), - [anon_sym_let] = ACTIONS(1889), - [anon_sym_loop] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_mod] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_static] = ACTIONS(1889), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_trait] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_use] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(1887), - [anon_sym_extern] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_COLON_COLON] = ACTIONS(1887), - [anon_sym_AMP] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1889), - [sym_integer_literal] = ACTIONS(1887), - [aux_sym_string_literal_token1] = ACTIONS(1887), - [sym_char_literal] = ACTIONS(1887), - [anon_sym_true] = ACTIONS(1889), - [anon_sym_false] = ACTIONS(1889), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1889), - [sym_super] = ACTIONS(1889), - [sym_crate] = ACTIONS(1889), - [sym_metavariable] = ACTIONS(1887), - [sym_raw_string_literal] = ACTIONS(1887), - [sym_float_literal] = ACTIONS(1887), + [447] = { + [ts_builtin_sym_end] = ACTIONS(1885), + [sym_identifier] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_macro_rules_BANG] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_LBRACK] = ACTIONS(1885), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_u8] = ACTIONS(1887), + [anon_sym_i8] = ACTIONS(1887), + [anon_sym_u16] = ACTIONS(1887), + [anon_sym_i16] = ACTIONS(1887), + [anon_sym_u32] = ACTIONS(1887), + [anon_sym_i32] = ACTIONS(1887), + [anon_sym_u64] = ACTIONS(1887), + [anon_sym_i64] = ACTIONS(1887), + [anon_sym_u128] = ACTIONS(1887), + [anon_sym_i128] = ACTIONS(1887), + [anon_sym_isize] = ACTIONS(1887), + [anon_sym_usize] = ACTIONS(1887), + [anon_sym_f32] = ACTIONS(1887), + [anon_sym_f64] = ACTIONS(1887), + [anon_sym_bool] = ACTIONS(1887), + [anon_sym_str] = ACTIONS(1887), + [anon_sym_char] = ACTIONS(1887), + [anon_sym_SQUOTE] = ACTIONS(1887), + [anon_sym_async] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_default] = ACTIONS(1887), + [anon_sym_enum] = ACTIONS(1887), + [anon_sym_fn] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_impl] = ACTIONS(1887), + [anon_sym_let] = ACTIONS(1887), + [anon_sym_loop] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_mod] = ACTIONS(1887), + [anon_sym_pub] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_static] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1887), + [anon_sym_trait] = ACTIONS(1887), + [anon_sym_type] = ACTIONS(1887), + [anon_sym_union] = ACTIONS(1887), + [anon_sym_unsafe] = ACTIONS(1887), + [anon_sym_use] = ACTIONS(1887), + [anon_sym_while] = ACTIONS(1887), + [anon_sym_POUND] = ACTIONS(1885), + [anon_sym_BANG] = ACTIONS(1885), + [anon_sym_extern] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1885), + [anon_sym_COLON_COLON] = ACTIONS(1885), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_DOT_DOT] = ACTIONS(1885), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(1885), + [anon_sym_move] = ACTIONS(1887), + [sym_integer_literal] = ACTIONS(1885), + [aux_sym_string_literal_token1] = ACTIONS(1885), + [sym_char_literal] = ACTIONS(1885), + [anon_sym_true] = ACTIONS(1887), + [anon_sym_false] = ACTIONS(1887), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1887), + [sym_super] = ACTIONS(1887), + [sym_crate] = ACTIONS(1887), + [sym_metavariable] = ACTIONS(1885), + [sym_raw_string_literal] = ACTIONS(1885), + [sym_float_literal] = ACTIONS(1885), [sym_block_comment] = ACTIONS(3), }, - [447] = { - [sym__token_pattern] = STATE(305), - [sym_token_tree_pattern] = STATE(305), - [sym_token_binding_pattern] = STATE(305), - [sym_token_repetition_pattern] = STATE(305), - [sym__literal] = STATE(305), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_pattern_repeat1] = STATE(305), + [448] = { + [ts_builtin_sym_end] = ACTIONS(1889), [sym_identifier] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_SEMI] = ACTIONS(1889), + [anon_sym_macro_rules_BANG] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1889), [anon_sym_u8] = ACTIONS(1891), [anon_sym_i8] = ACTIONS(1891), [anon_sym_u16] = ACTIONS(1891), @@ -54762,11 +54915,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1891), [anon_sym_str] = ACTIONS(1891), [anon_sym_char] = ACTIONS(1891), - [aux_sym__non_special_token_token1] = ACTIONS(1891), [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_as] = ACTIONS(1891), [anon_sym_async] = ACTIONS(1891), - [anon_sym_await] = ACTIONS(1891), [anon_sym_break] = ACTIONS(1891), [anon_sym_const] = ACTIONS(1891), [anon_sym_continue] = ACTIONS(1891), @@ -54789,1247 +54939,1411 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1891), [anon_sym_unsafe] = ACTIONS(1891), [anon_sym_use] = ACTIONS(1891), - [anon_sym_where] = ACTIONS(1891), [anon_sym_while] = ACTIONS(1891), - [sym_mutable_specifier] = ACTIONS(1891), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [anon_sym_POUND] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_extern] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_COLON_COLON] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_move] = ACTIONS(1891), + [sym_integer_literal] = ACTIONS(1889), + [aux_sym_string_literal_token1] = ACTIONS(1889), + [sym_char_literal] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1891), + [anon_sym_false] = ACTIONS(1891), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1891), [sym_super] = ACTIONS(1891), [sym_crate] = ACTIONS(1891), - [sym_metavariable] = ACTIONS(1116), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), - [sym_block_comment] = ACTIONS(3), - }, - [448] = { - [sym__token_pattern] = STATE(287), - [sym_token_tree_pattern] = STATE(287), - [sym_token_binding_pattern] = STATE(287), - [sym_token_repetition_pattern] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_pattern_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [anon_sym_u8] = ACTIONS(1893), - [anon_sym_i8] = ACTIONS(1893), - [anon_sym_u16] = ACTIONS(1893), - [anon_sym_i16] = ACTIONS(1893), - [anon_sym_u32] = ACTIONS(1893), - [anon_sym_i32] = ACTIONS(1893), - [anon_sym_u64] = ACTIONS(1893), - [anon_sym_i64] = ACTIONS(1893), - [anon_sym_u128] = ACTIONS(1893), - [anon_sym_i128] = ACTIONS(1893), - [anon_sym_isize] = ACTIONS(1893), - [anon_sym_usize] = ACTIONS(1893), - [anon_sym_f32] = ACTIONS(1893), - [anon_sym_f64] = ACTIONS(1893), - [anon_sym_bool] = ACTIONS(1893), - [anon_sym_str] = ACTIONS(1893), - [anon_sym_char] = ACTIONS(1893), - [aux_sym__non_special_token_token1] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_as] = ACTIONS(1893), - [anon_sym_async] = ACTIONS(1893), - [anon_sym_await] = ACTIONS(1893), - [anon_sym_break] = ACTIONS(1893), - [anon_sym_const] = ACTIONS(1893), - [anon_sym_continue] = ACTIONS(1893), - [anon_sym_default] = ACTIONS(1893), - [anon_sym_enum] = ACTIONS(1893), - [anon_sym_fn] = ACTIONS(1893), - [anon_sym_for] = ACTIONS(1893), - [anon_sym_if] = ACTIONS(1893), - [anon_sym_impl] = ACTIONS(1893), - [anon_sym_let] = ACTIONS(1893), - [anon_sym_loop] = ACTIONS(1893), - [anon_sym_match] = ACTIONS(1893), - [anon_sym_mod] = ACTIONS(1893), - [anon_sym_pub] = ACTIONS(1893), - [anon_sym_return] = ACTIONS(1893), - [anon_sym_static] = ACTIONS(1893), - [anon_sym_struct] = ACTIONS(1893), - [anon_sym_trait] = ACTIONS(1893), - [anon_sym_type] = ACTIONS(1893), - [anon_sym_union] = ACTIONS(1893), - [anon_sym_unsafe] = ACTIONS(1893), - [anon_sym_use] = ACTIONS(1893), - [anon_sym_where] = ACTIONS(1893), - [anon_sym_while] = ACTIONS(1893), - [sym_mutable_specifier] = ACTIONS(1893), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(1893), - [sym_super] = ACTIONS(1893), - [sym_crate] = ACTIONS(1893), - [sym_metavariable] = ACTIONS(1116), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(1889), + [sym_raw_string_literal] = ACTIONS(1889), + [sym_float_literal] = ACTIONS(1889), [sym_block_comment] = ACTIONS(3), }, [449] = { - [ts_builtin_sym_end] = ACTIONS(1895), - [sym_identifier] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1895), - [anon_sym_macro_rules_BANG] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1895), - [anon_sym_LBRACK] = ACTIONS(1895), - [anon_sym_STAR] = ACTIONS(1895), - [anon_sym_u8] = ACTIONS(1897), - [anon_sym_i8] = ACTIONS(1897), - [anon_sym_u16] = ACTIONS(1897), - [anon_sym_i16] = ACTIONS(1897), - [anon_sym_u32] = ACTIONS(1897), - [anon_sym_i32] = ACTIONS(1897), - [anon_sym_u64] = ACTIONS(1897), - [anon_sym_i64] = ACTIONS(1897), - [anon_sym_u128] = ACTIONS(1897), - [anon_sym_i128] = ACTIONS(1897), - [anon_sym_isize] = ACTIONS(1897), - [anon_sym_usize] = ACTIONS(1897), - [anon_sym_f32] = ACTIONS(1897), - [anon_sym_f64] = ACTIONS(1897), - [anon_sym_bool] = ACTIONS(1897), - [anon_sym_str] = ACTIONS(1897), - [anon_sym_char] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_break] = ACTIONS(1897), - [anon_sym_const] = ACTIONS(1897), - [anon_sym_continue] = ACTIONS(1897), - [anon_sym_default] = ACTIONS(1897), - [anon_sym_enum] = ACTIONS(1897), - [anon_sym_fn] = ACTIONS(1897), - [anon_sym_for] = ACTIONS(1897), - [anon_sym_if] = ACTIONS(1897), - [anon_sym_impl] = ACTIONS(1897), - [anon_sym_let] = ACTIONS(1897), - [anon_sym_loop] = ACTIONS(1897), - [anon_sym_match] = ACTIONS(1897), - [anon_sym_mod] = ACTIONS(1897), - [anon_sym_pub] = ACTIONS(1897), - [anon_sym_return] = ACTIONS(1897), - [anon_sym_static] = ACTIONS(1897), - [anon_sym_struct] = ACTIONS(1897), - [anon_sym_trait] = ACTIONS(1897), - [anon_sym_type] = ACTIONS(1897), - [anon_sym_union] = ACTIONS(1897), - [anon_sym_unsafe] = ACTIONS(1897), - [anon_sym_use] = ACTIONS(1897), - [anon_sym_while] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(1895), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_extern] = ACTIONS(1897), - [anon_sym_LT] = ACTIONS(1895), - [anon_sym_COLON_COLON] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1895), - [anon_sym_DASH] = ACTIONS(1895), - [anon_sym_PIPE] = ACTIONS(1895), - [anon_sym_move] = ACTIONS(1897), - [sym_integer_literal] = ACTIONS(1895), - [aux_sym_string_literal_token1] = ACTIONS(1895), - [sym_char_literal] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_false] = ACTIONS(1897), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1897), - [sym_super] = ACTIONS(1897), - [sym_crate] = ACTIONS(1897), - [sym_metavariable] = ACTIONS(1895), - [sym_raw_string_literal] = ACTIONS(1895), - [sym_float_literal] = ACTIONS(1895), + [ts_builtin_sym_end] = ACTIONS(1893), + [sym_identifier] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym_macro_rules_BANG] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_u8] = ACTIONS(1895), + [anon_sym_i8] = ACTIONS(1895), + [anon_sym_u16] = ACTIONS(1895), + [anon_sym_i16] = ACTIONS(1895), + [anon_sym_u32] = ACTIONS(1895), + [anon_sym_i32] = ACTIONS(1895), + [anon_sym_u64] = ACTIONS(1895), + [anon_sym_i64] = ACTIONS(1895), + [anon_sym_u128] = ACTIONS(1895), + [anon_sym_i128] = ACTIONS(1895), + [anon_sym_isize] = ACTIONS(1895), + [anon_sym_usize] = ACTIONS(1895), + [anon_sym_f32] = ACTIONS(1895), + [anon_sym_f64] = ACTIONS(1895), + [anon_sym_bool] = ACTIONS(1895), + [anon_sym_str] = ACTIONS(1895), + [anon_sym_char] = ACTIONS(1895), + [anon_sym_SQUOTE] = ACTIONS(1895), + [anon_sym_async] = ACTIONS(1895), + [anon_sym_break] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(1895), + [anon_sym_continue] = ACTIONS(1895), + [anon_sym_default] = ACTIONS(1895), + [anon_sym_enum] = ACTIONS(1895), + [anon_sym_fn] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_impl] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_loop] = ACTIONS(1895), + [anon_sym_match] = ACTIONS(1895), + [anon_sym_mod] = ACTIONS(1895), + [anon_sym_pub] = ACTIONS(1895), + [anon_sym_return] = ACTIONS(1895), + [anon_sym_static] = ACTIONS(1895), + [anon_sym_struct] = ACTIONS(1895), + [anon_sym_trait] = ACTIONS(1895), + [anon_sym_type] = ACTIONS(1895), + [anon_sym_union] = ACTIONS(1895), + [anon_sym_unsafe] = ACTIONS(1895), + [anon_sym_use] = ACTIONS(1895), + [anon_sym_while] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_extern] = ACTIONS(1895), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_COLON_COLON] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1893), + [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_move] = ACTIONS(1895), + [sym_integer_literal] = ACTIONS(1893), + [aux_sym_string_literal_token1] = ACTIONS(1893), + [sym_char_literal] = ACTIONS(1893), + [anon_sym_true] = ACTIONS(1895), + [anon_sym_false] = ACTIONS(1895), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1895), + [sym_super] = ACTIONS(1895), + [sym_crate] = ACTIONS(1895), + [sym_metavariable] = ACTIONS(1893), + [sym_raw_string_literal] = ACTIONS(1893), + [sym_float_literal] = ACTIONS(1893), [sym_block_comment] = ACTIONS(3), }, [450] = { - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_macro_rules_BANG] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_u8] = ACTIONS(1901), - [anon_sym_i8] = ACTIONS(1901), - [anon_sym_u16] = ACTIONS(1901), - [anon_sym_i16] = ACTIONS(1901), - [anon_sym_u32] = ACTIONS(1901), - [anon_sym_i32] = ACTIONS(1901), - [anon_sym_u64] = ACTIONS(1901), - [anon_sym_i64] = ACTIONS(1901), - [anon_sym_u128] = ACTIONS(1901), - [anon_sym_i128] = ACTIONS(1901), - [anon_sym_isize] = ACTIONS(1901), - [anon_sym_usize] = ACTIONS(1901), - [anon_sym_f32] = ACTIONS(1901), - [anon_sym_f64] = ACTIONS(1901), - [anon_sym_bool] = ACTIONS(1901), - [anon_sym_str] = ACTIONS(1901), - [anon_sym_char] = ACTIONS(1901), - [anon_sym_SQUOTE] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1901), - [anon_sym_const] = ACTIONS(1901), - [anon_sym_continue] = ACTIONS(1901), - [anon_sym_default] = ACTIONS(1901), - [anon_sym_enum] = ACTIONS(1901), - [anon_sym_fn] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_impl] = ACTIONS(1901), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_loop] = ACTIONS(1901), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_mod] = ACTIONS(1901), - [anon_sym_pub] = ACTIONS(1901), - [anon_sym_return] = ACTIONS(1901), - [anon_sym_static] = ACTIONS(1901), - [anon_sym_struct] = ACTIONS(1901), - [anon_sym_trait] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_union] = ACTIONS(1901), - [anon_sym_unsafe] = ACTIONS(1901), - [anon_sym_use] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_POUND] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_COLON_COLON] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_move] = ACTIONS(1901), - [sym_integer_literal] = ACTIONS(1899), - [aux_sym_string_literal_token1] = ACTIONS(1899), - [sym_char_literal] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1901), - [sym_super] = ACTIONS(1901), - [sym_crate] = ACTIONS(1901), - [sym_metavariable] = ACTIONS(1899), - [sym_raw_string_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1899), + [ts_builtin_sym_end] = ACTIONS(1897), + [sym_identifier] = ACTIONS(1899), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_macro_rules_BANG] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_u8] = ACTIONS(1899), + [anon_sym_i8] = ACTIONS(1899), + [anon_sym_u16] = ACTIONS(1899), + [anon_sym_i16] = ACTIONS(1899), + [anon_sym_u32] = ACTIONS(1899), + [anon_sym_i32] = ACTIONS(1899), + [anon_sym_u64] = ACTIONS(1899), + [anon_sym_i64] = ACTIONS(1899), + [anon_sym_u128] = ACTIONS(1899), + [anon_sym_i128] = ACTIONS(1899), + [anon_sym_isize] = ACTIONS(1899), + [anon_sym_usize] = ACTIONS(1899), + [anon_sym_f32] = ACTIONS(1899), + [anon_sym_f64] = ACTIONS(1899), + [anon_sym_bool] = ACTIONS(1899), + [anon_sym_str] = ACTIONS(1899), + [anon_sym_char] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(1899), + [anon_sym_enum] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_impl] = ACTIONS(1899), + [anon_sym_let] = ACTIONS(1899), + [anon_sym_loop] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_mod] = ACTIONS(1899), + [anon_sym_pub] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_static] = ACTIONS(1899), + [anon_sym_struct] = ACTIONS(1899), + [anon_sym_trait] = ACTIONS(1899), + [anon_sym_type] = ACTIONS(1899), + [anon_sym_union] = ACTIONS(1899), + [anon_sym_unsafe] = ACTIONS(1899), + [anon_sym_use] = ACTIONS(1899), + [anon_sym_while] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1897), + [anon_sym_extern] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_COLON_COLON] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_move] = ACTIONS(1899), + [sym_integer_literal] = ACTIONS(1897), + [aux_sym_string_literal_token1] = ACTIONS(1897), + [sym_char_literal] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1899), + [sym_super] = ACTIONS(1899), + [sym_crate] = ACTIONS(1899), + [sym_metavariable] = ACTIONS(1897), + [sym_raw_string_literal] = ACTIONS(1897), + [sym_float_literal] = ACTIONS(1897), [sym_block_comment] = ACTIONS(3), }, [451] = { - [ts_builtin_sym_end] = ACTIONS(1903), - [sym_identifier] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1903), - [anon_sym_macro_rules_BANG] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_RBRACE] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_STAR] = ACTIONS(1903), - [anon_sym_u8] = ACTIONS(1905), - [anon_sym_i8] = ACTIONS(1905), - [anon_sym_u16] = ACTIONS(1905), - [anon_sym_i16] = ACTIONS(1905), - [anon_sym_u32] = ACTIONS(1905), - [anon_sym_i32] = ACTIONS(1905), - [anon_sym_u64] = ACTIONS(1905), - [anon_sym_i64] = ACTIONS(1905), - [anon_sym_u128] = ACTIONS(1905), - [anon_sym_i128] = ACTIONS(1905), - [anon_sym_isize] = ACTIONS(1905), - [anon_sym_usize] = ACTIONS(1905), - [anon_sym_f32] = ACTIONS(1905), - [anon_sym_f64] = ACTIONS(1905), - [anon_sym_bool] = ACTIONS(1905), - [anon_sym_str] = ACTIONS(1905), - [anon_sym_char] = ACTIONS(1905), - [anon_sym_SQUOTE] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_default] = ACTIONS(1905), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_fn] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_impl] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_loop] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_mod] = ACTIONS(1905), - [anon_sym_pub] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_static] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(1905), - [anon_sym_trait] = ACTIONS(1905), - [anon_sym_type] = ACTIONS(1905), - [anon_sym_union] = ACTIONS(1905), - [anon_sym_unsafe] = ACTIONS(1905), - [anon_sym_use] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(1903), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_extern] = ACTIONS(1905), - [anon_sym_LT] = ACTIONS(1903), - [anon_sym_COLON_COLON] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_DOT_DOT] = ACTIONS(1903), - [anon_sym_DASH] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1903), - [anon_sym_move] = ACTIONS(1905), - [sym_integer_literal] = ACTIONS(1903), - [aux_sym_string_literal_token1] = ACTIONS(1903), - [sym_char_literal] = ACTIONS(1903), - [anon_sym_true] = ACTIONS(1905), - [anon_sym_false] = ACTIONS(1905), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1905), - [sym_super] = ACTIONS(1905), - [sym_crate] = ACTIONS(1905), - [sym_metavariable] = ACTIONS(1903), - [sym_raw_string_literal] = ACTIONS(1903), - [sym_float_literal] = ACTIONS(1903), + [ts_builtin_sym_end] = ACTIONS(1901), + [sym_identifier] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1901), + [anon_sym_macro_rules_BANG] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1901), + [anon_sym_u8] = ACTIONS(1903), + [anon_sym_i8] = ACTIONS(1903), + [anon_sym_u16] = ACTIONS(1903), + [anon_sym_i16] = ACTIONS(1903), + [anon_sym_u32] = ACTIONS(1903), + [anon_sym_i32] = ACTIONS(1903), + [anon_sym_u64] = ACTIONS(1903), + [anon_sym_i64] = ACTIONS(1903), + [anon_sym_u128] = ACTIONS(1903), + [anon_sym_i128] = ACTIONS(1903), + [anon_sym_isize] = ACTIONS(1903), + [anon_sym_usize] = ACTIONS(1903), + [anon_sym_f32] = ACTIONS(1903), + [anon_sym_f64] = ACTIONS(1903), + [anon_sym_bool] = ACTIONS(1903), + [anon_sym_str] = ACTIONS(1903), + [anon_sym_char] = ACTIONS(1903), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_async] = ACTIONS(1903), + [anon_sym_break] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_continue] = ACTIONS(1903), + [anon_sym_default] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_fn] = ACTIONS(1903), + [anon_sym_for] = ACTIONS(1903), + [anon_sym_if] = ACTIONS(1903), + [anon_sym_impl] = ACTIONS(1903), + [anon_sym_let] = ACTIONS(1903), + [anon_sym_loop] = ACTIONS(1903), + [anon_sym_match] = ACTIONS(1903), + [anon_sym_mod] = ACTIONS(1903), + [anon_sym_pub] = ACTIONS(1903), + [anon_sym_return] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_trait] = ACTIONS(1903), + [anon_sym_type] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_unsafe] = ACTIONS(1903), + [anon_sym_use] = ACTIONS(1903), + [anon_sym_while] = ACTIONS(1903), + [anon_sym_POUND] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1901), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym_LT] = ACTIONS(1901), + [anon_sym_COLON_COLON] = ACTIONS(1901), + [anon_sym_AMP] = ACTIONS(1901), + [anon_sym_DOT_DOT] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_PIPE] = ACTIONS(1901), + [anon_sym_move] = ACTIONS(1903), + [sym_integer_literal] = ACTIONS(1901), + [aux_sym_string_literal_token1] = ACTIONS(1901), + [sym_char_literal] = ACTIONS(1901), + [anon_sym_true] = ACTIONS(1903), + [anon_sym_false] = ACTIONS(1903), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1903), + [sym_super] = ACTIONS(1903), + [sym_crate] = ACTIONS(1903), + [sym_metavariable] = ACTIONS(1901), + [sym_raw_string_literal] = ACTIONS(1901), + [sym_float_literal] = ACTIONS(1901), [sym_block_comment] = ACTIONS(3), }, [452] = { - [ts_builtin_sym_end] = ACTIONS(1907), - [sym_identifier] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1907), - [anon_sym_macro_rules_BANG] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_LBRACK] = ACTIONS(1907), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_u8] = ACTIONS(1909), - [anon_sym_i8] = ACTIONS(1909), - [anon_sym_u16] = ACTIONS(1909), - [anon_sym_i16] = ACTIONS(1909), - [anon_sym_u32] = ACTIONS(1909), - [anon_sym_i32] = ACTIONS(1909), - [anon_sym_u64] = ACTIONS(1909), - [anon_sym_i64] = ACTIONS(1909), - [anon_sym_u128] = ACTIONS(1909), - [anon_sym_i128] = ACTIONS(1909), - [anon_sym_isize] = ACTIONS(1909), - [anon_sym_usize] = ACTIONS(1909), - [anon_sym_f32] = ACTIONS(1909), - [anon_sym_f64] = ACTIONS(1909), - [anon_sym_bool] = ACTIONS(1909), - [anon_sym_str] = ACTIONS(1909), - [anon_sym_char] = ACTIONS(1909), - [anon_sym_SQUOTE] = ACTIONS(1909), - [anon_sym_async] = ACTIONS(1909), - [anon_sym_break] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(1909), - [anon_sym_continue] = ACTIONS(1909), - [anon_sym_default] = ACTIONS(1909), - [anon_sym_enum] = ACTIONS(1909), - [anon_sym_fn] = ACTIONS(1909), - [anon_sym_for] = ACTIONS(1909), - [anon_sym_if] = ACTIONS(1909), - [anon_sym_impl] = ACTIONS(1909), - [anon_sym_let] = ACTIONS(1909), - [anon_sym_loop] = ACTIONS(1909), - [anon_sym_match] = ACTIONS(1909), - [anon_sym_mod] = ACTIONS(1909), - [anon_sym_pub] = ACTIONS(1909), - [anon_sym_return] = ACTIONS(1909), - [anon_sym_static] = ACTIONS(1909), - [anon_sym_struct] = ACTIONS(1909), - [anon_sym_trait] = ACTIONS(1909), - [anon_sym_type] = ACTIONS(1909), - [anon_sym_union] = ACTIONS(1909), - [anon_sym_unsafe] = ACTIONS(1909), - [anon_sym_use] = ACTIONS(1909), - [anon_sym_while] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(1907), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_extern] = ACTIONS(1909), - [anon_sym_LT] = ACTIONS(1907), - [anon_sym_COLON_COLON] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_DOT_DOT] = ACTIONS(1907), - [anon_sym_DASH] = ACTIONS(1907), - [anon_sym_PIPE] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1909), - [sym_integer_literal] = ACTIONS(1907), - [aux_sym_string_literal_token1] = ACTIONS(1907), - [sym_char_literal] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1909), - [anon_sym_false] = ACTIONS(1909), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1909), - [sym_super] = ACTIONS(1909), - [sym_crate] = ACTIONS(1909), - [sym_metavariable] = ACTIONS(1907), - [sym_raw_string_literal] = ACTIONS(1907), - [sym_float_literal] = ACTIONS(1907), + [ts_builtin_sym_end] = ACTIONS(1905), + [sym_identifier] = ACTIONS(1907), + [anon_sym_SEMI] = ACTIONS(1905), + [anon_sym_macro_rules_BANG] = ACTIONS(1905), + [anon_sym_LPAREN] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1905), + [anon_sym_RBRACE] = ACTIONS(1905), + [anon_sym_LBRACK] = ACTIONS(1905), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_u8] = ACTIONS(1907), + [anon_sym_i8] = ACTIONS(1907), + [anon_sym_u16] = ACTIONS(1907), + [anon_sym_i16] = ACTIONS(1907), + [anon_sym_u32] = ACTIONS(1907), + [anon_sym_i32] = ACTIONS(1907), + [anon_sym_u64] = ACTIONS(1907), + [anon_sym_i64] = ACTIONS(1907), + [anon_sym_u128] = ACTIONS(1907), + [anon_sym_i128] = ACTIONS(1907), + [anon_sym_isize] = ACTIONS(1907), + [anon_sym_usize] = ACTIONS(1907), + [anon_sym_f32] = ACTIONS(1907), + [anon_sym_f64] = ACTIONS(1907), + [anon_sym_bool] = ACTIONS(1907), + [anon_sym_str] = ACTIONS(1907), + [anon_sym_char] = ACTIONS(1907), + [anon_sym_SQUOTE] = ACTIONS(1907), + [anon_sym_async] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1907), + [anon_sym_enum] = ACTIONS(1907), + [anon_sym_fn] = ACTIONS(1907), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_impl] = ACTIONS(1907), + [anon_sym_let] = ACTIONS(1907), + [anon_sym_loop] = ACTIONS(1907), + [anon_sym_match] = ACTIONS(1907), + [anon_sym_mod] = ACTIONS(1907), + [anon_sym_pub] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_struct] = ACTIONS(1907), + [anon_sym_trait] = ACTIONS(1907), + [anon_sym_type] = ACTIONS(1907), + [anon_sym_union] = ACTIONS(1907), + [anon_sym_unsafe] = ACTIONS(1907), + [anon_sym_use] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_POUND] = ACTIONS(1905), + [anon_sym_BANG] = ACTIONS(1905), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1905), + [anon_sym_COLON_COLON] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_DOT_DOT] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_PIPE] = ACTIONS(1905), + [anon_sym_move] = ACTIONS(1907), + [sym_integer_literal] = ACTIONS(1905), + [aux_sym_string_literal_token1] = ACTIONS(1905), + [sym_char_literal] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(1907), + [anon_sym_false] = ACTIONS(1907), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1907), + [sym_super] = ACTIONS(1907), + [sym_crate] = ACTIONS(1907), + [sym_metavariable] = ACTIONS(1905), + [sym_raw_string_literal] = ACTIONS(1905), + [sym_float_literal] = ACTIONS(1905), [sym_block_comment] = ACTIONS(3), }, [453] = { - [sym_attribute_item] = STATE(494), - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_macro_invocation] = STATE(2288), - [sym_scoped_identifier] = STATE(1493), - [sym_scoped_type_identifier] = STATE(1824), - [sym_match_arm] = STATE(461), - [sym_last_match_arm] = STATE(2413), - [sym_match_pattern] = STATE(2285), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1839), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_enum_variant_list_repeat1] = STATE(494), - [aux_sym_match_block_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [ts_builtin_sym_end] = ACTIONS(1909), + [sym_identifier] = ACTIONS(1911), + [anon_sym_SEMI] = ACTIONS(1909), + [anon_sym_macro_rules_BANG] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1909), + [anon_sym_u8] = ACTIONS(1911), + [anon_sym_i8] = ACTIONS(1911), + [anon_sym_u16] = ACTIONS(1911), + [anon_sym_i16] = ACTIONS(1911), + [anon_sym_u32] = ACTIONS(1911), + [anon_sym_i32] = ACTIONS(1911), + [anon_sym_u64] = ACTIONS(1911), + [anon_sym_i64] = ACTIONS(1911), + [anon_sym_u128] = ACTIONS(1911), + [anon_sym_i128] = ACTIONS(1911), + [anon_sym_isize] = ACTIONS(1911), + [anon_sym_usize] = ACTIONS(1911), + [anon_sym_f32] = ACTIONS(1911), + [anon_sym_f64] = ACTIONS(1911), + [anon_sym_bool] = ACTIONS(1911), + [anon_sym_str] = ACTIONS(1911), + [anon_sym_char] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_async] = ACTIONS(1911), + [anon_sym_break] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(1911), + [anon_sym_continue] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1911), + [anon_sym_fn] = ACTIONS(1911), + [anon_sym_for] = ACTIONS(1911), + [anon_sym_if] = ACTIONS(1911), + [anon_sym_impl] = ACTIONS(1911), + [anon_sym_let] = ACTIONS(1911), + [anon_sym_loop] = ACTIONS(1911), + [anon_sym_match] = ACTIONS(1911), + [anon_sym_mod] = ACTIONS(1911), + [anon_sym_pub] = ACTIONS(1911), + [anon_sym_return] = ACTIONS(1911), + [anon_sym_static] = ACTIONS(1911), + [anon_sym_struct] = ACTIONS(1911), + [anon_sym_trait] = ACTIONS(1911), + [anon_sym_type] = ACTIONS(1911), + [anon_sym_union] = ACTIONS(1911), + [anon_sym_unsafe] = ACTIONS(1911), + [anon_sym_use] = ACTIONS(1911), + [anon_sym_while] = ACTIONS(1911), + [anon_sym_POUND] = ACTIONS(1909), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_extern] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_COLON_COLON] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1909), + [anon_sym_move] = ACTIONS(1911), + [sym_integer_literal] = ACTIONS(1909), + [aux_sym_string_literal_token1] = ACTIONS(1909), + [sym_char_literal] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(1911), + [anon_sym_false] = ACTIONS(1911), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1911), + [sym_super] = ACTIONS(1911), + [sym_crate] = ACTIONS(1911), + [sym_metavariable] = ACTIONS(1909), + [sym_raw_string_literal] = ACTIONS(1909), + [sym_float_literal] = ACTIONS(1909), [sym_block_comment] = ACTIONS(3), }, [454] = { - [ts_builtin_sym_end] = ACTIONS(1911), - [sym_identifier] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_macro_rules_BANG] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_u8] = ACTIONS(1913), - [anon_sym_i8] = ACTIONS(1913), - [anon_sym_u16] = ACTIONS(1913), - [anon_sym_i16] = ACTIONS(1913), - [anon_sym_u32] = ACTIONS(1913), - [anon_sym_i32] = ACTIONS(1913), - [anon_sym_u64] = ACTIONS(1913), - [anon_sym_i64] = ACTIONS(1913), - [anon_sym_u128] = ACTIONS(1913), - [anon_sym_i128] = ACTIONS(1913), - [anon_sym_isize] = ACTIONS(1913), - [anon_sym_usize] = ACTIONS(1913), - [anon_sym_f32] = ACTIONS(1913), - [anon_sym_f64] = ACTIONS(1913), - [anon_sym_bool] = ACTIONS(1913), - [anon_sym_str] = ACTIONS(1913), - [anon_sym_char] = ACTIONS(1913), - [anon_sym_SQUOTE] = ACTIONS(1913), - [anon_sym_async] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_default] = ACTIONS(1913), - [anon_sym_enum] = ACTIONS(1913), - [anon_sym_fn] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_impl] = ACTIONS(1913), - [anon_sym_let] = ACTIONS(1913), - [anon_sym_loop] = ACTIONS(1913), - [anon_sym_match] = ACTIONS(1913), - [anon_sym_mod] = ACTIONS(1913), - [anon_sym_pub] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_static] = ACTIONS(1913), - [anon_sym_struct] = ACTIONS(1913), - [anon_sym_trait] = ACTIONS(1913), - [anon_sym_type] = ACTIONS(1913), - [anon_sym_union] = ACTIONS(1913), - [anon_sym_unsafe] = ACTIONS(1913), - [anon_sym_use] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_extern] = ACTIONS(1913), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_COLON_COLON] = ACTIONS(1911), - [anon_sym_AMP] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_move] = ACTIONS(1913), - [sym_integer_literal] = ACTIONS(1911), - [aux_sym_string_literal_token1] = ACTIONS(1911), - [sym_char_literal] = ACTIONS(1911), - [anon_sym_true] = ACTIONS(1913), - [anon_sym_false] = ACTIONS(1913), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1913), - [sym_super] = ACTIONS(1913), - [sym_crate] = ACTIONS(1913), - [sym_metavariable] = ACTIONS(1911), - [sym_raw_string_literal] = ACTIONS(1911), - [sym_float_literal] = ACTIONS(1911), + [ts_builtin_sym_end] = ACTIONS(1913), + [sym_identifier] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1913), + [anon_sym_macro_rules_BANG] = ACTIONS(1913), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_RBRACE] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(1913), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_u8] = ACTIONS(1915), + [anon_sym_i8] = ACTIONS(1915), + [anon_sym_u16] = ACTIONS(1915), + [anon_sym_i16] = ACTIONS(1915), + [anon_sym_u32] = ACTIONS(1915), + [anon_sym_i32] = ACTIONS(1915), + [anon_sym_u64] = ACTIONS(1915), + [anon_sym_i64] = ACTIONS(1915), + [anon_sym_u128] = ACTIONS(1915), + [anon_sym_i128] = ACTIONS(1915), + [anon_sym_isize] = ACTIONS(1915), + [anon_sym_usize] = ACTIONS(1915), + [anon_sym_f32] = ACTIONS(1915), + [anon_sym_f64] = ACTIONS(1915), + [anon_sym_bool] = ACTIONS(1915), + [anon_sym_str] = ACTIONS(1915), + [anon_sym_char] = ACTIONS(1915), + [anon_sym_SQUOTE] = ACTIONS(1915), + [anon_sym_async] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1915), + [anon_sym_const] = ACTIONS(1915), + [anon_sym_continue] = ACTIONS(1915), + [anon_sym_default] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1915), + [anon_sym_fn] = ACTIONS(1915), + [anon_sym_for] = ACTIONS(1915), + [anon_sym_if] = ACTIONS(1915), + [anon_sym_impl] = ACTIONS(1915), + [anon_sym_let] = ACTIONS(1915), + [anon_sym_loop] = ACTIONS(1915), + [anon_sym_match] = ACTIONS(1915), + [anon_sym_mod] = ACTIONS(1915), + [anon_sym_pub] = ACTIONS(1915), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_static] = ACTIONS(1915), + [anon_sym_struct] = ACTIONS(1915), + [anon_sym_trait] = ACTIONS(1915), + [anon_sym_type] = ACTIONS(1915), + [anon_sym_union] = ACTIONS(1915), + [anon_sym_unsafe] = ACTIONS(1915), + [anon_sym_use] = ACTIONS(1915), + [anon_sym_while] = ACTIONS(1915), + [anon_sym_POUND] = ACTIONS(1913), + [anon_sym_BANG] = ACTIONS(1913), + [anon_sym_extern] = ACTIONS(1915), + [anon_sym_LT] = ACTIONS(1913), + [anon_sym_COLON_COLON] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_PIPE] = ACTIONS(1913), + [anon_sym_move] = ACTIONS(1915), + [sym_integer_literal] = ACTIONS(1913), + [aux_sym_string_literal_token1] = ACTIONS(1913), + [sym_char_literal] = ACTIONS(1913), + [anon_sym_true] = ACTIONS(1915), + [anon_sym_false] = ACTIONS(1915), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1915), + [sym_super] = ACTIONS(1915), + [sym_crate] = ACTIONS(1915), + [sym_metavariable] = ACTIONS(1913), + [sym_raw_string_literal] = ACTIONS(1913), + [sym_float_literal] = ACTIONS(1913), [sym_block_comment] = ACTIONS(3), }, [455] = { - [ts_builtin_sym_end] = ACTIONS(1915), - [sym_identifier] = ACTIONS(1917), - [anon_sym_SEMI] = ACTIONS(1915), - [anon_sym_macro_rules_BANG] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1915), - [anon_sym_u8] = ACTIONS(1917), - [anon_sym_i8] = ACTIONS(1917), - [anon_sym_u16] = ACTIONS(1917), - [anon_sym_i16] = ACTIONS(1917), - [anon_sym_u32] = ACTIONS(1917), - [anon_sym_i32] = ACTIONS(1917), - [anon_sym_u64] = ACTIONS(1917), - [anon_sym_i64] = ACTIONS(1917), - [anon_sym_u128] = ACTIONS(1917), - [anon_sym_i128] = ACTIONS(1917), - [anon_sym_isize] = ACTIONS(1917), - [anon_sym_usize] = ACTIONS(1917), - [anon_sym_f32] = ACTIONS(1917), - [anon_sym_f64] = ACTIONS(1917), - [anon_sym_bool] = ACTIONS(1917), - [anon_sym_str] = ACTIONS(1917), - [anon_sym_char] = ACTIONS(1917), - [anon_sym_SQUOTE] = ACTIONS(1917), - [anon_sym_async] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_default] = ACTIONS(1917), - [anon_sym_enum] = ACTIONS(1917), - [anon_sym_fn] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_impl] = ACTIONS(1917), - [anon_sym_let] = ACTIONS(1917), - [anon_sym_loop] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_mod] = ACTIONS(1917), - [anon_sym_pub] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_static] = ACTIONS(1917), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_trait] = ACTIONS(1917), - [anon_sym_type] = ACTIONS(1917), - [anon_sym_union] = ACTIONS(1917), - [anon_sym_unsafe] = ACTIONS(1917), - [anon_sym_use] = ACTIONS(1917), - [anon_sym_while] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(1915), - [anon_sym_BANG] = ACTIONS(1915), - [anon_sym_extern] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_COLON_COLON] = ACTIONS(1915), - [anon_sym_AMP] = ACTIONS(1915), - [anon_sym_DOT_DOT] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1917), - [sym_integer_literal] = ACTIONS(1915), - [aux_sym_string_literal_token1] = ACTIONS(1915), - [sym_char_literal] = ACTIONS(1915), - [anon_sym_true] = ACTIONS(1917), - [anon_sym_false] = ACTIONS(1917), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1917), - [sym_super] = ACTIONS(1917), - [sym_crate] = ACTIONS(1917), - [sym_metavariable] = ACTIONS(1915), - [sym_raw_string_literal] = ACTIONS(1915), - [sym_float_literal] = ACTIONS(1915), + [ts_builtin_sym_end] = ACTIONS(1917), + [sym_identifier] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1917), + [anon_sym_macro_rules_BANG] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_LBRACK] = ACTIONS(1917), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_u8] = ACTIONS(1919), + [anon_sym_i8] = ACTIONS(1919), + [anon_sym_u16] = ACTIONS(1919), + [anon_sym_i16] = ACTIONS(1919), + [anon_sym_u32] = ACTIONS(1919), + [anon_sym_i32] = ACTIONS(1919), + [anon_sym_u64] = ACTIONS(1919), + [anon_sym_i64] = ACTIONS(1919), + [anon_sym_u128] = ACTIONS(1919), + [anon_sym_i128] = ACTIONS(1919), + [anon_sym_isize] = ACTIONS(1919), + [anon_sym_usize] = ACTIONS(1919), + [anon_sym_f32] = ACTIONS(1919), + [anon_sym_f64] = ACTIONS(1919), + [anon_sym_bool] = ACTIONS(1919), + [anon_sym_str] = ACTIONS(1919), + [anon_sym_char] = ACTIONS(1919), + [anon_sym_SQUOTE] = ACTIONS(1919), + [anon_sym_async] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_default] = ACTIONS(1919), + [anon_sym_enum] = ACTIONS(1919), + [anon_sym_fn] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_impl] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_mod] = ACTIONS(1919), + [anon_sym_pub] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_static] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1919), + [anon_sym_trait] = ACTIONS(1919), + [anon_sym_type] = ACTIONS(1919), + [anon_sym_union] = ACTIONS(1919), + [anon_sym_unsafe] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_BANG] = ACTIONS(1917), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_LT] = ACTIONS(1917), + [anon_sym_COLON_COLON] = ACTIONS(1917), + [anon_sym_AMP] = ACTIONS(1917), + [anon_sym_DOT_DOT] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(1917), + [anon_sym_PIPE] = ACTIONS(1917), + [anon_sym_move] = ACTIONS(1919), + [sym_integer_literal] = ACTIONS(1917), + [aux_sym_string_literal_token1] = ACTIONS(1917), + [sym_char_literal] = ACTIONS(1917), + [anon_sym_true] = ACTIONS(1919), + [anon_sym_false] = ACTIONS(1919), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1919), + [sym_super] = ACTIONS(1919), + [sym_crate] = ACTIONS(1919), + [sym_metavariable] = ACTIONS(1917), + [sym_raw_string_literal] = ACTIONS(1917), + [sym_float_literal] = ACTIONS(1917), [sym_block_comment] = ACTIONS(3), }, [456] = { - [ts_builtin_sym_end] = ACTIONS(1919), - [sym_identifier] = ACTIONS(1921), - [anon_sym_SEMI] = ACTIONS(1919), - [anon_sym_macro_rules_BANG] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1919), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_LBRACK] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_u8] = ACTIONS(1921), - [anon_sym_i8] = ACTIONS(1921), - [anon_sym_u16] = ACTIONS(1921), - [anon_sym_i16] = ACTIONS(1921), - [anon_sym_u32] = ACTIONS(1921), - [anon_sym_i32] = ACTIONS(1921), - [anon_sym_u64] = ACTIONS(1921), - [anon_sym_i64] = ACTIONS(1921), - [anon_sym_u128] = ACTIONS(1921), - [anon_sym_i128] = ACTIONS(1921), - [anon_sym_isize] = ACTIONS(1921), - [anon_sym_usize] = ACTIONS(1921), - [anon_sym_f32] = ACTIONS(1921), - [anon_sym_f64] = ACTIONS(1921), - [anon_sym_bool] = ACTIONS(1921), - [anon_sym_str] = ACTIONS(1921), - [anon_sym_char] = ACTIONS(1921), - [anon_sym_SQUOTE] = ACTIONS(1921), - [anon_sym_async] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_default] = ACTIONS(1921), - [anon_sym_enum] = ACTIONS(1921), - [anon_sym_fn] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_impl] = ACTIONS(1921), - [anon_sym_let] = ACTIONS(1921), - [anon_sym_loop] = ACTIONS(1921), - [anon_sym_match] = ACTIONS(1921), - [anon_sym_mod] = ACTIONS(1921), - [anon_sym_pub] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_static] = ACTIONS(1921), - [anon_sym_struct] = ACTIONS(1921), - [anon_sym_trait] = ACTIONS(1921), - [anon_sym_type] = ACTIONS(1921), - [anon_sym_union] = ACTIONS(1921), - [anon_sym_unsafe] = ACTIONS(1921), - [anon_sym_use] = ACTIONS(1921), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_POUND] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_extern] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_COLON_COLON] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_DOT_DOT] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_move] = ACTIONS(1921), - [sym_integer_literal] = ACTIONS(1919), - [aux_sym_string_literal_token1] = ACTIONS(1919), - [sym_char_literal] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1921), - [anon_sym_false] = ACTIONS(1921), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1921), - [sym_super] = ACTIONS(1921), - [sym_crate] = ACTIONS(1921), - [sym_metavariable] = ACTIONS(1919), - [sym_raw_string_literal] = ACTIONS(1919), - [sym_float_literal] = ACTIONS(1919), + [ts_builtin_sym_end] = ACTIONS(1921), + [sym_identifier] = ACTIONS(1923), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_macro_rules_BANG] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_STAR] = ACTIONS(1921), + [anon_sym_u8] = ACTIONS(1923), + [anon_sym_i8] = ACTIONS(1923), + [anon_sym_u16] = ACTIONS(1923), + [anon_sym_i16] = ACTIONS(1923), + [anon_sym_u32] = ACTIONS(1923), + [anon_sym_i32] = ACTIONS(1923), + [anon_sym_u64] = ACTIONS(1923), + [anon_sym_i64] = ACTIONS(1923), + [anon_sym_u128] = ACTIONS(1923), + [anon_sym_i128] = ACTIONS(1923), + [anon_sym_isize] = ACTIONS(1923), + [anon_sym_usize] = ACTIONS(1923), + [anon_sym_f32] = ACTIONS(1923), + [anon_sym_f64] = ACTIONS(1923), + [anon_sym_bool] = ACTIONS(1923), + [anon_sym_str] = ACTIONS(1923), + [anon_sym_char] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_break] = ACTIONS(1923), + [anon_sym_const] = ACTIONS(1923), + [anon_sym_continue] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(1923), + [anon_sym_enum] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1923), + [anon_sym_for] = ACTIONS(1923), + [anon_sym_if] = ACTIONS(1923), + [anon_sym_impl] = ACTIONS(1923), + [anon_sym_let] = ACTIONS(1923), + [anon_sym_loop] = ACTIONS(1923), + [anon_sym_match] = ACTIONS(1923), + [anon_sym_mod] = ACTIONS(1923), + [anon_sym_pub] = ACTIONS(1923), + [anon_sym_return] = ACTIONS(1923), + [anon_sym_static] = ACTIONS(1923), + [anon_sym_struct] = ACTIONS(1923), + [anon_sym_trait] = ACTIONS(1923), + [anon_sym_type] = ACTIONS(1923), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_unsafe] = ACTIONS(1923), + [anon_sym_use] = ACTIONS(1923), + [anon_sym_while] = ACTIONS(1923), + [anon_sym_POUND] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_extern] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1921), + [anon_sym_COLON_COLON] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_DOT_DOT] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_move] = ACTIONS(1923), + [sym_integer_literal] = ACTIONS(1921), + [aux_sym_string_literal_token1] = ACTIONS(1921), + [sym_char_literal] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1923), + [sym_super] = ACTIONS(1923), + [sym_crate] = ACTIONS(1923), + [sym_metavariable] = ACTIONS(1921), + [sym_raw_string_literal] = ACTIONS(1921), + [sym_float_literal] = ACTIONS(1921), [sym_block_comment] = ACTIONS(3), }, [457] = { - [ts_builtin_sym_end] = ACTIONS(1923), - [sym_identifier] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym_macro_rules_BANG] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(1923), - [anon_sym_LBRACK] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_u8] = ACTIONS(1925), - [anon_sym_i8] = ACTIONS(1925), - [anon_sym_u16] = ACTIONS(1925), - [anon_sym_i16] = ACTIONS(1925), - [anon_sym_u32] = ACTIONS(1925), - [anon_sym_i32] = ACTIONS(1925), - [anon_sym_u64] = ACTIONS(1925), - [anon_sym_i64] = ACTIONS(1925), - [anon_sym_u128] = ACTIONS(1925), - [anon_sym_i128] = ACTIONS(1925), - [anon_sym_isize] = ACTIONS(1925), - [anon_sym_usize] = ACTIONS(1925), - [anon_sym_f32] = ACTIONS(1925), - [anon_sym_f64] = ACTIONS(1925), - [anon_sym_bool] = ACTIONS(1925), - [anon_sym_str] = ACTIONS(1925), - [anon_sym_char] = ACTIONS(1925), - [anon_sym_SQUOTE] = ACTIONS(1925), - [anon_sym_async] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_default] = ACTIONS(1925), - [anon_sym_enum] = ACTIONS(1925), - [anon_sym_fn] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_impl] = ACTIONS(1925), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_loop] = ACTIONS(1925), - [anon_sym_match] = ACTIONS(1925), - [anon_sym_mod] = ACTIONS(1925), - [anon_sym_pub] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_static] = ACTIONS(1925), - [anon_sym_struct] = ACTIONS(1925), - [anon_sym_trait] = ACTIONS(1925), - [anon_sym_type] = ACTIONS(1925), - [anon_sym_union] = ACTIONS(1925), - [anon_sym_unsafe] = ACTIONS(1925), - [anon_sym_use] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_POUND] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_extern] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_COLON_COLON] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_DOT_DOT] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_move] = ACTIONS(1925), - [sym_integer_literal] = ACTIONS(1923), - [aux_sym_string_literal_token1] = ACTIONS(1923), - [sym_char_literal] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1925), - [anon_sym_false] = ACTIONS(1925), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1925), - [sym_super] = ACTIONS(1925), - [sym_crate] = ACTIONS(1925), - [sym_metavariable] = ACTIONS(1923), - [sym_raw_string_literal] = ACTIONS(1923), - [sym_float_literal] = ACTIONS(1923), + [ts_builtin_sym_end] = ACTIONS(1925), + [sym_identifier] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_macro_rules_BANG] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1925), + [anon_sym_RBRACE] = ACTIONS(1925), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1925), + [anon_sym_u8] = ACTIONS(1927), + [anon_sym_i8] = ACTIONS(1927), + [anon_sym_u16] = ACTIONS(1927), + [anon_sym_i16] = ACTIONS(1927), + [anon_sym_u32] = ACTIONS(1927), + [anon_sym_i32] = ACTIONS(1927), + [anon_sym_u64] = ACTIONS(1927), + [anon_sym_i64] = ACTIONS(1927), + [anon_sym_u128] = ACTIONS(1927), + [anon_sym_i128] = ACTIONS(1927), + [anon_sym_isize] = ACTIONS(1927), + [anon_sym_usize] = ACTIONS(1927), + [anon_sym_f32] = ACTIONS(1927), + [anon_sym_f64] = ACTIONS(1927), + [anon_sym_bool] = ACTIONS(1927), + [anon_sym_str] = ACTIONS(1927), + [anon_sym_char] = ACTIONS(1927), + [anon_sym_SQUOTE] = ACTIONS(1927), + [anon_sym_async] = ACTIONS(1927), + [anon_sym_break] = ACTIONS(1927), + [anon_sym_const] = ACTIONS(1927), + [anon_sym_continue] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1927), + [anon_sym_enum] = ACTIONS(1927), + [anon_sym_fn] = ACTIONS(1927), + [anon_sym_for] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_impl] = ACTIONS(1927), + [anon_sym_let] = ACTIONS(1927), + [anon_sym_loop] = ACTIONS(1927), + [anon_sym_match] = ACTIONS(1927), + [anon_sym_mod] = ACTIONS(1927), + [anon_sym_pub] = ACTIONS(1927), + [anon_sym_return] = ACTIONS(1927), + [anon_sym_static] = ACTIONS(1927), + [anon_sym_struct] = ACTIONS(1927), + [anon_sym_trait] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_union] = ACTIONS(1927), + [anon_sym_unsafe] = ACTIONS(1927), + [anon_sym_use] = ACTIONS(1927), + [anon_sym_while] = ACTIONS(1927), + [anon_sym_POUND] = ACTIONS(1925), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_extern] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_COLON_COLON] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), + [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_move] = ACTIONS(1927), + [sym_integer_literal] = ACTIONS(1925), + [aux_sym_string_literal_token1] = ACTIONS(1925), + [sym_char_literal] = ACTIONS(1925), + [anon_sym_true] = ACTIONS(1927), + [anon_sym_false] = ACTIONS(1927), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1927), + [sym_super] = ACTIONS(1927), + [sym_crate] = ACTIONS(1927), + [sym_metavariable] = ACTIONS(1925), + [sym_raw_string_literal] = ACTIONS(1925), + [sym_float_literal] = ACTIONS(1925), [sym_block_comment] = ACTIONS(3), }, [458] = { - [ts_builtin_sym_end] = ACTIONS(1927), - [sym_identifier] = ACTIONS(1929), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_macro_rules_BANG] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_u8] = ACTIONS(1929), - [anon_sym_i8] = ACTIONS(1929), - [anon_sym_u16] = ACTIONS(1929), - [anon_sym_i16] = ACTIONS(1929), - [anon_sym_u32] = ACTIONS(1929), - [anon_sym_i32] = ACTIONS(1929), - [anon_sym_u64] = ACTIONS(1929), - [anon_sym_i64] = ACTIONS(1929), - [anon_sym_u128] = ACTIONS(1929), - [anon_sym_i128] = ACTIONS(1929), - [anon_sym_isize] = ACTIONS(1929), - [anon_sym_usize] = ACTIONS(1929), - [anon_sym_f32] = ACTIONS(1929), - [anon_sym_f64] = ACTIONS(1929), - [anon_sym_bool] = ACTIONS(1929), - [anon_sym_str] = ACTIONS(1929), - [anon_sym_char] = ACTIONS(1929), - [anon_sym_SQUOTE] = ACTIONS(1929), - [anon_sym_async] = ACTIONS(1929), - [anon_sym_break] = ACTIONS(1929), - [anon_sym_const] = ACTIONS(1929), - [anon_sym_continue] = ACTIONS(1929), - [anon_sym_default] = ACTIONS(1929), - [anon_sym_enum] = ACTIONS(1929), - [anon_sym_fn] = ACTIONS(1929), - [anon_sym_for] = ACTIONS(1929), - [anon_sym_if] = ACTIONS(1929), - [anon_sym_impl] = ACTIONS(1929), - [anon_sym_let] = ACTIONS(1929), - [anon_sym_loop] = ACTIONS(1929), - [anon_sym_match] = ACTIONS(1929), - [anon_sym_mod] = ACTIONS(1929), - [anon_sym_pub] = ACTIONS(1929), - [anon_sym_return] = ACTIONS(1929), - [anon_sym_static] = ACTIONS(1929), - [anon_sym_struct] = ACTIONS(1929), - [anon_sym_trait] = ACTIONS(1929), - [anon_sym_type] = ACTIONS(1929), - [anon_sym_union] = ACTIONS(1929), - [anon_sym_unsafe] = ACTIONS(1929), - [anon_sym_use] = ACTIONS(1929), - [anon_sym_while] = ACTIONS(1929), - [anon_sym_POUND] = ACTIONS(1927), - [anon_sym_BANG] = ACTIONS(1927), - [anon_sym_extern] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1927), - [anon_sym_COLON_COLON] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1927), - [anon_sym_DASH] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1927), - [anon_sym_move] = ACTIONS(1929), - [sym_integer_literal] = ACTIONS(1927), - [aux_sym_string_literal_token1] = ACTIONS(1927), - [sym_char_literal] = ACTIONS(1927), - [anon_sym_true] = ACTIONS(1929), - [anon_sym_false] = ACTIONS(1929), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1929), - [sym_super] = ACTIONS(1929), - [sym_crate] = ACTIONS(1929), - [sym_metavariable] = ACTIONS(1927), - [sym_raw_string_literal] = ACTIONS(1927), - [sym_float_literal] = ACTIONS(1927), + [ts_builtin_sym_end] = ACTIONS(1929), + [sym_identifier] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_macro_rules_BANG] = ACTIONS(1929), + [anon_sym_LPAREN] = ACTIONS(1929), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_RBRACE] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1929), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_u8] = ACTIONS(1931), + [anon_sym_i8] = ACTIONS(1931), + [anon_sym_u16] = ACTIONS(1931), + [anon_sym_i16] = ACTIONS(1931), + [anon_sym_u32] = ACTIONS(1931), + [anon_sym_i32] = ACTIONS(1931), + [anon_sym_u64] = ACTIONS(1931), + [anon_sym_i64] = ACTIONS(1931), + [anon_sym_u128] = ACTIONS(1931), + [anon_sym_i128] = ACTIONS(1931), + [anon_sym_isize] = ACTIONS(1931), + [anon_sym_usize] = ACTIONS(1931), + [anon_sym_f32] = ACTIONS(1931), + [anon_sym_f64] = ACTIONS(1931), + [anon_sym_bool] = ACTIONS(1931), + [anon_sym_str] = ACTIONS(1931), + [anon_sym_char] = ACTIONS(1931), + [anon_sym_SQUOTE] = ACTIONS(1931), + [anon_sym_async] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_default] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [anon_sym_fn] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_impl] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_loop] = ACTIONS(1931), + [anon_sym_match] = ACTIONS(1931), + [anon_sym_mod] = ACTIONS(1931), + [anon_sym_pub] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_static] = ACTIONS(1931), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_trait] = ACTIONS(1931), + [anon_sym_type] = ACTIONS(1931), + [anon_sym_union] = ACTIONS(1931), + [anon_sym_unsafe] = ACTIONS(1931), + [anon_sym_use] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(1929), + [anon_sym_BANG] = ACTIONS(1929), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_DASH] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_move] = ACTIONS(1931), + [sym_integer_literal] = ACTIONS(1929), + [aux_sym_string_literal_token1] = ACTIONS(1929), + [sym_char_literal] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1931), + [sym_super] = ACTIONS(1931), + [sym_crate] = ACTIONS(1931), + [sym_metavariable] = ACTIONS(1929), + [sym_raw_string_literal] = ACTIONS(1929), + [sym_float_literal] = ACTIONS(1929), [sym_block_comment] = ACTIONS(3), }, [459] = { - [ts_builtin_sym_end] = ACTIONS(1931), - [sym_identifier] = ACTIONS(1933), - [anon_sym_SEMI] = ACTIONS(1931), - [anon_sym_macro_rules_BANG] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_LBRACE] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_STAR] = ACTIONS(1931), - [anon_sym_u8] = ACTIONS(1933), - [anon_sym_i8] = ACTIONS(1933), - [anon_sym_u16] = ACTIONS(1933), - [anon_sym_i16] = ACTIONS(1933), - [anon_sym_u32] = ACTIONS(1933), - [anon_sym_i32] = ACTIONS(1933), - [anon_sym_u64] = ACTIONS(1933), - [anon_sym_i64] = ACTIONS(1933), - [anon_sym_u128] = ACTIONS(1933), - [anon_sym_i128] = ACTIONS(1933), - [anon_sym_isize] = ACTIONS(1933), - [anon_sym_usize] = ACTIONS(1933), - [anon_sym_f32] = ACTIONS(1933), - [anon_sym_f64] = ACTIONS(1933), - [anon_sym_bool] = ACTIONS(1933), - [anon_sym_str] = ACTIONS(1933), - [anon_sym_char] = ACTIONS(1933), - [anon_sym_SQUOTE] = ACTIONS(1933), - [anon_sym_async] = ACTIONS(1933), - [anon_sym_break] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1933), - [anon_sym_continue] = ACTIONS(1933), - [anon_sym_default] = ACTIONS(1933), - [anon_sym_enum] = ACTIONS(1933), - [anon_sym_fn] = ACTIONS(1933), - [anon_sym_for] = ACTIONS(1933), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_impl] = ACTIONS(1933), - [anon_sym_let] = ACTIONS(1933), - [anon_sym_loop] = ACTIONS(1933), - [anon_sym_match] = ACTIONS(1933), - [anon_sym_mod] = ACTIONS(1933), - [anon_sym_pub] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(1933), - [anon_sym_static] = ACTIONS(1933), - [anon_sym_struct] = ACTIONS(1933), - [anon_sym_trait] = ACTIONS(1933), - [anon_sym_type] = ACTIONS(1933), - [anon_sym_union] = ACTIONS(1933), - [anon_sym_unsafe] = ACTIONS(1933), - [anon_sym_use] = ACTIONS(1933), - [anon_sym_while] = ACTIONS(1933), - [anon_sym_POUND] = ACTIONS(1931), - [anon_sym_BANG] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(1933), - [anon_sym_LT] = ACTIONS(1931), - [anon_sym_COLON_COLON] = ACTIONS(1931), - [anon_sym_AMP] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [anon_sym_DASH] = ACTIONS(1931), - [anon_sym_PIPE] = ACTIONS(1931), - [anon_sym_move] = ACTIONS(1933), - [sym_integer_literal] = ACTIONS(1931), - [aux_sym_string_literal_token1] = ACTIONS(1931), - [sym_char_literal] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(1933), - [anon_sym_false] = ACTIONS(1933), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1933), - [sym_super] = ACTIONS(1933), - [sym_crate] = ACTIONS(1933), - [sym_metavariable] = ACTIONS(1931), - [sym_raw_string_literal] = ACTIONS(1931), - [sym_float_literal] = ACTIONS(1931), + [ts_builtin_sym_end] = ACTIONS(1933), + [sym_identifier] = ACTIONS(1935), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym_macro_rules_BANG] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_LBRACK] = ACTIONS(1933), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_u8] = ACTIONS(1935), + [anon_sym_i8] = ACTIONS(1935), + [anon_sym_u16] = ACTIONS(1935), + [anon_sym_i16] = ACTIONS(1935), + [anon_sym_u32] = ACTIONS(1935), + [anon_sym_i32] = ACTIONS(1935), + [anon_sym_u64] = ACTIONS(1935), + [anon_sym_i64] = ACTIONS(1935), + [anon_sym_u128] = ACTIONS(1935), + [anon_sym_i128] = ACTIONS(1935), + [anon_sym_isize] = ACTIONS(1935), + [anon_sym_usize] = ACTIONS(1935), + [anon_sym_f32] = ACTIONS(1935), + [anon_sym_f64] = ACTIONS(1935), + [anon_sym_bool] = ACTIONS(1935), + [anon_sym_str] = ACTIONS(1935), + [anon_sym_char] = ACTIONS(1935), + [anon_sym_SQUOTE] = ACTIONS(1935), + [anon_sym_async] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_default] = ACTIONS(1935), + [anon_sym_enum] = ACTIONS(1935), + [anon_sym_fn] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_impl] = ACTIONS(1935), + [anon_sym_let] = ACTIONS(1935), + [anon_sym_loop] = ACTIONS(1935), + [anon_sym_match] = ACTIONS(1935), + [anon_sym_mod] = ACTIONS(1935), + [anon_sym_pub] = ACTIONS(1935), + [anon_sym_return] = ACTIONS(1935), + [anon_sym_static] = ACTIONS(1935), + [anon_sym_struct] = ACTIONS(1935), + [anon_sym_trait] = ACTIONS(1935), + [anon_sym_type] = ACTIONS(1935), + [anon_sym_union] = ACTIONS(1935), + [anon_sym_unsafe] = ACTIONS(1935), + [anon_sym_use] = ACTIONS(1935), + [anon_sym_while] = ACTIONS(1935), + [anon_sym_POUND] = ACTIONS(1933), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_extern] = ACTIONS(1935), + [anon_sym_LT] = ACTIONS(1933), + [anon_sym_COLON_COLON] = ACTIONS(1933), + [anon_sym_AMP] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_DASH] = ACTIONS(1933), + [anon_sym_PIPE] = ACTIONS(1933), + [anon_sym_move] = ACTIONS(1935), + [sym_integer_literal] = ACTIONS(1933), + [aux_sym_string_literal_token1] = ACTIONS(1933), + [sym_char_literal] = ACTIONS(1933), + [anon_sym_true] = ACTIONS(1935), + [anon_sym_false] = ACTIONS(1935), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1935), + [sym_super] = ACTIONS(1935), + [sym_crate] = ACTIONS(1935), + [sym_metavariable] = ACTIONS(1933), + [sym_raw_string_literal] = ACTIONS(1933), + [sym_float_literal] = ACTIONS(1933), [sym_block_comment] = ACTIONS(3), }, [460] = { - [ts_builtin_sym_end] = ACTIONS(1935), - [sym_identifier] = ACTIONS(1937), - [anon_sym_SEMI] = ACTIONS(1935), - [anon_sym_macro_rules_BANG] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1935), - [anon_sym_u8] = ACTIONS(1937), - [anon_sym_i8] = ACTIONS(1937), - [anon_sym_u16] = ACTIONS(1937), - [anon_sym_i16] = ACTIONS(1937), - [anon_sym_u32] = ACTIONS(1937), - [anon_sym_i32] = ACTIONS(1937), - [anon_sym_u64] = ACTIONS(1937), - [anon_sym_i64] = ACTIONS(1937), - [anon_sym_u128] = ACTIONS(1937), - [anon_sym_i128] = ACTIONS(1937), - [anon_sym_isize] = ACTIONS(1937), - [anon_sym_usize] = ACTIONS(1937), - [anon_sym_f32] = ACTIONS(1937), - [anon_sym_f64] = ACTIONS(1937), - [anon_sym_bool] = ACTIONS(1937), - [anon_sym_str] = ACTIONS(1937), - [anon_sym_char] = ACTIONS(1937), - [anon_sym_SQUOTE] = ACTIONS(1937), - [anon_sym_async] = ACTIONS(1937), - [anon_sym_break] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1937), - [anon_sym_continue] = ACTIONS(1937), - [anon_sym_default] = ACTIONS(1937), - [anon_sym_enum] = ACTIONS(1937), - [anon_sym_fn] = ACTIONS(1937), - [anon_sym_for] = ACTIONS(1937), - [anon_sym_if] = ACTIONS(1937), - [anon_sym_impl] = ACTIONS(1937), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_loop] = ACTIONS(1937), - [anon_sym_match] = ACTIONS(1937), - [anon_sym_mod] = ACTIONS(1937), - [anon_sym_pub] = ACTIONS(1937), - [anon_sym_return] = ACTIONS(1937), - [anon_sym_static] = ACTIONS(1937), - [anon_sym_struct] = ACTIONS(1937), - [anon_sym_trait] = ACTIONS(1937), - [anon_sym_type] = ACTIONS(1937), - [anon_sym_union] = ACTIONS(1937), - [anon_sym_unsafe] = ACTIONS(1937), - [anon_sym_use] = ACTIONS(1937), - [anon_sym_while] = ACTIONS(1937), - [anon_sym_POUND] = ACTIONS(1935), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_extern] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(1935), - [anon_sym_COLON_COLON] = ACTIONS(1935), - [anon_sym_AMP] = ACTIONS(1935), - [anon_sym_DOT_DOT] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_PIPE] = ACTIONS(1935), - [anon_sym_move] = ACTIONS(1937), - [sym_integer_literal] = ACTIONS(1935), - [aux_sym_string_literal_token1] = ACTIONS(1935), - [sym_char_literal] = ACTIONS(1935), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1937), - [sym_super] = ACTIONS(1937), - [sym_crate] = ACTIONS(1937), - [sym_metavariable] = ACTIONS(1935), - [sym_raw_string_literal] = ACTIONS(1935), - [sym_float_literal] = ACTIONS(1935), + [ts_builtin_sym_end] = ACTIONS(1937), + [sym_identifier] = ACTIONS(1939), + [anon_sym_SEMI] = ACTIONS(1937), + [anon_sym_macro_rules_BANG] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_LBRACE] = ACTIONS(1937), + [anon_sym_RBRACE] = ACTIONS(1937), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1937), + [anon_sym_u8] = ACTIONS(1939), + [anon_sym_i8] = ACTIONS(1939), + [anon_sym_u16] = ACTIONS(1939), + [anon_sym_i16] = ACTIONS(1939), + [anon_sym_u32] = ACTIONS(1939), + [anon_sym_i32] = ACTIONS(1939), + [anon_sym_u64] = ACTIONS(1939), + [anon_sym_i64] = ACTIONS(1939), + [anon_sym_u128] = ACTIONS(1939), + [anon_sym_i128] = ACTIONS(1939), + [anon_sym_isize] = ACTIONS(1939), + [anon_sym_usize] = ACTIONS(1939), + [anon_sym_f32] = ACTIONS(1939), + [anon_sym_f64] = ACTIONS(1939), + [anon_sym_bool] = ACTIONS(1939), + [anon_sym_str] = ACTIONS(1939), + [anon_sym_char] = ACTIONS(1939), + [anon_sym_SQUOTE] = ACTIONS(1939), + [anon_sym_async] = ACTIONS(1939), + [anon_sym_break] = ACTIONS(1939), + [anon_sym_const] = ACTIONS(1939), + [anon_sym_continue] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(1939), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_fn] = ACTIONS(1939), + [anon_sym_for] = ACTIONS(1939), + [anon_sym_if] = ACTIONS(1939), + [anon_sym_impl] = ACTIONS(1939), + [anon_sym_let] = ACTIONS(1939), + [anon_sym_loop] = ACTIONS(1939), + [anon_sym_match] = ACTIONS(1939), + [anon_sym_mod] = ACTIONS(1939), + [anon_sym_pub] = ACTIONS(1939), + [anon_sym_return] = ACTIONS(1939), + [anon_sym_static] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(1939), + [anon_sym_trait] = ACTIONS(1939), + [anon_sym_type] = ACTIONS(1939), + [anon_sym_union] = ACTIONS(1939), + [anon_sym_unsafe] = ACTIONS(1939), + [anon_sym_use] = ACTIONS(1939), + [anon_sym_while] = ACTIONS(1939), + [anon_sym_POUND] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1937), + [anon_sym_extern] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(1937), + [anon_sym_COLON_COLON] = ACTIONS(1937), + [anon_sym_AMP] = ACTIONS(1937), + [anon_sym_DOT_DOT] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_PIPE] = ACTIONS(1937), + [anon_sym_move] = ACTIONS(1939), + [sym_integer_literal] = ACTIONS(1937), + [aux_sym_string_literal_token1] = ACTIONS(1937), + [sym_char_literal] = ACTIONS(1937), + [anon_sym_true] = ACTIONS(1939), + [anon_sym_false] = ACTIONS(1939), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1939), + [sym_super] = ACTIONS(1939), + [sym_crate] = ACTIONS(1939), + [sym_metavariable] = ACTIONS(1937), + [sym_raw_string_literal] = ACTIONS(1937), + [sym_float_literal] = ACTIONS(1937), [sym_block_comment] = ACTIONS(3), }, [461] = { - [sym_attribute_item] = STATE(496), - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_macro_invocation] = STATE(2288), - [sym_scoped_identifier] = STATE(1493), - [sym_scoped_type_identifier] = STATE(1824), - [sym_match_arm] = STATE(461), - [sym_match_pattern] = STATE(2288), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1839), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_enum_variant_list_repeat1] = STATE(496), - [aux_sym_match_block_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1945), - [anon_sym_u8] = ACTIONS(1948), - [anon_sym_i8] = ACTIONS(1948), - [anon_sym_u16] = ACTIONS(1948), - [anon_sym_i16] = ACTIONS(1948), - [anon_sym_u32] = ACTIONS(1948), - [anon_sym_i32] = ACTIONS(1948), - [anon_sym_u64] = ACTIONS(1948), - [anon_sym_i64] = ACTIONS(1948), - [anon_sym_u128] = ACTIONS(1948), - [anon_sym_i128] = ACTIONS(1948), - [anon_sym_isize] = ACTIONS(1948), - [anon_sym_usize] = ACTIONS(1948), - [anon_sym_f32] = ACTIONS(1948), - [anon_sym_f64] = ACTIONS(1948), - [anon_sym_bool] = ACTIONS(1948), - [anon_sym_str] = ACTIONS(1948), - [anon_sym_char] = ACTIONS(1948), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_default] = ACTIONS(1954), - [anon_sym_union] = ACTIONS(1954), - [anon_sym_POUND] = ACTIONS(1957), - [anon_sym_ref] = ACTIONS(1960), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_COLON_COLON] = ACTIONS(1966), - [anon_sym__] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(1972), - [sym_mutable_specifier] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1978), - [anon_sym_DASH] = ACTIONS(1981), - [sym_integer_literal] = ACTIONS(1984), - [aux_sym_string_literal_token1] = ACTIONS(1987), - [sym_char_literal] = ACTIONS(1984), - [anon_sym_true] = ACTIONS(1990), - [anon_sym_false] = ACTIONS(1990), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1993), - [sym_super] = ACTIONS(1993), - [sym_crate] = ACTIONS(1993), - [sym_metavariable] = ACTIONS(1996), - [sym_raw_string_literal] = ACTIONS(1984), - [sym_float_literal] = ACTIONS(1984), + [sym__token_pattern] = STATE(243), + [sym_token_tree_pattern] = STATE(243), + [sym_token_binding_pattern] = STATE(243), + [sym_token_repetition_pattern] = STATE(243), + [sym__literal] = STATE(243), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_pattern_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1941), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1200), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [aux_sym__non_special_token_token1] = ACTIONS(1190), + [anon_sym_SQUOTE] = ACTIONS(1190), + [anon_sym_as] = ACTIONS(1190), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_await] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_fn] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_impl] = ACTIONS(1190), + [anon_sym_let] = ACTIONS(1190), + [anon_sym_loop] = ACTIONS(1190), + [anon_sym_match] = ACTIONS(1190), + [anon_sym_mod] = ACTIONS(1190), + [anon_sym_pub] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_trait] = ACTIONS(1190), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_unsafe] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1190), + [anon_sym_where] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [sym_mutable_specifier] = ACTIONS(1190), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(1190), + [sym_super] = ACTIONS(1190), + [sym_crate] = ACTIONS(1190), + [sym_metavariable] = ACTIONS(1208), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, [462] = { - [sym_token_tree] = STATE(492), - [sym_token_repetition] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(1999), - [anon_sym_SQUOTE] = ACTIONS(1999), - [anon_sym_as] = ACTIONS(1999), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_enum] = ACTIONS(1999), - [anon_sym_fn] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_impl] = ACTIONS(1999), - [anon_sym_let] = ACTIONS(1999), - [anon_sym_loop] = ACTIONS(1999), - [anon_sym_match] = ACTIONS(1999), - [anon_sym_mod] = ACTIONS(1999), - [anon_sym_pub] = ACTIONS(1999), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_struct] = ACTIONS(1999), - [anon_sym_trait] = ACTIONS(1999), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_union] = ACTIONS(1999), - [anon_sym_unsafe] = ACTIONS(1999), - [anon_sym_use] = ACTIONS(1999), - [anon_sym_where] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [sym_mutable_specifier] = ACTIONS(1999), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(1999), - [sym_super] = ACTIONS(1999), - [sym_crate] = ACTIONS(1999), - [sym_metavariable] = ACTIONS(2011), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [ts_builtin_sym_end] = ACTIONS(1943), + [sym_identifier] = ACTIONS(1945), + [anon_sym_SEMI] = ACTIONS(1943), + [anon_sym_macro_rules_BANG] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_RBRACE] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1943), + [anon_sym_u8] = ACTIONS(1945), + [anon_sym_i8] = ACTIONS(1945), + [anon_sym_u16] = ACTIONS(1945), + [anon_sym_i16] = ACTIONS(1945), + [anon_sym_u32] = ACTIONS(1945), + [anon_sym_i32] = ACTIONS(1945), + [anon_sym_u64] = ACTIONS(1945), + [anon_sym_i64] = ACTIONS(1945), + [anon_sym_u128] = ACTIONS(1945), + [anon_sym_i128] = ACTIONS(1945), + [anon_sym_isize] = ACTIONS(1945), + [anon_sym_usize] = ACTIONS(1945), + [anon_sym_f32] = ACTIONS(1945), + [anon_sym_f64] = ACTIONS(1945), + [anon_sym_bool] = ACTIONS(1945), + [anon_sym_str] = ACTIONS(1945), + [anon_sym_char] = ACTIONS(1945), + [anon_sym_SQUOTE] = ACTIONS(1945), + [anon_sym_async] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(1945), + [anon_sym_enum] = ACTIONS(1945), + [anon_sym_fn] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_impl] = ACTIONS(1945), + [anon_sym_let] = ACTIONS(1945), + [anon_sym_loop] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_mod] = ACTIONS(1945), + [anon_sym_pub] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_static] = ACTIONS(1945), + [anon_sym_struct] = ACTIONS(1945), + [anon_sym_trait] = ACTIONS(1945), + [anon_sym_type] = ACTIONS(1945), + [anon_sym_union] = ACTIONS(1945), + [anon_sym_unsafe] = ACTIONS(1945), + [anon_sym_use] = ACTIONS(1945), + [anon_sym_while] = ACTIONS(1945), + [anon_sym_POUND] = ACTIONS(1943), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_extern] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(1943), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_move] = ACTIONS(1945), + [sym_integer_literal] = ACTIONS(1943), + [aux_sym_string_literal_token1] = ACTIONS(1943), + [sym_char_literal] = ACTIONS(1943), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1945), + [sym_super] = ACTIONS(1945), + [sym_crate] = ACTIONS(1945), + [sym_metavariable] = ACTIONS(1943), + [sym_raw_string_literal] = ACTIONS(1943), + [sym_float_literal] = ACTIONS(1943), [sym_block_comment] = ACTIONS(3), }, [463] = { - [sym_token_tree] = STATE(473), - [sym_token_repetition] = STATE(473), - [sym__literal] = STATE(473), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(473), - [sym_identifier] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_RPAREN] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2013), - [anon_sym_SQUOTE] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_await] = 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_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_where] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [sym_mutable_specifier] = ACTIONS(2013), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [ts_builtin_sym_end] = ACTIONS(1947), + [sym_identifier] = ACTIONS(1949), + [anon_sym_SEMI] = ACTIONS(1947), + [anon_sym_macro_rules_BANG] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_u8] = ACTIONS(1949), + [anon_sym_i8] = ACTIONS(1949), + [anon_sym_u16] = ACTIONS(1949), + [anon_sym_i16] = ACTIONS(1949), + [anon_sym_u32] = ACTIONS(1949), + [anon_sym_i32] = ACTIONS(1949), + [anon_sym_u64] = ACTIONS(1949), + [anon_sym_i64] = ACTIONS(1949), + [anon_sym_u128] = ACTIONS(1949), + [anon_sym_i128] = ACTIONS(1949), + [anon_sym_isize] = ACTIONS(1949), + [anon_sym_usize] = ACTIONS(1949), + [anon_sym_f32] = ACTIONS(1949), + [anon_sym_f64] = ACTIONS(1949), + [anon_sym_bool] = ACTIONS(1949), + [anon_sym_str] = ACTIONS(1949), + [anon_sym_char] = ACTIONS(1949), + [anon_sym_SQUOTE] = ACTIONS(1949), + [anon_sym_async] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_default] = ACTIONS(1949), + [anon_sym_enum] = ACTIONS(1949), + [anon_sym_fn] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_impl] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_mod] = ACTIONS(1949), + [anon_sym_pub] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_static] = ACTIONS(1949), + [anon_sym_struct] = ACTIONS(1949), + [anon_sym_trait] = ACTIONS(1949), + [anon_sym_type] = ACTIONS(1949), + [anon_sym_union] = ACTIONS(1949), + [anon_sym_unsafe] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_POUND] = ACTIONS(1947), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_COLON_COLON] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_move] = ACTIONS(1949), + [sym_integer_literal] = ACTIONS(1947), + [aux_sym_string_literal_token1] = ACTIONS(1947), + [sym_char_literal] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1949), + [sym_super] = ACTIONS(1949), + [sym_crate] = ACTIONS(1949), + [sym_metavariable] = ACTIONS(1947), + [sym_raw_string_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1947), + [sym_block_comment] = ACTIONS(3), + }, + [464] = { + [ts_builtin_sym_end] = ACTIONS(1951), + [sym_identifier] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1951), + [anon_sym_macro_rules_BANG] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1951), + [anon_sym_RBRACE] = ACTIONS(1951), + [anon_sym_LBRACK] = ACTIONS(1951), + [anon_sym_STAR] = ACTIONS(1951), + [anon_sym_u8] = ACTIONS(1953), + [anon_sym_i8] = ACTIONS(1953), + [anon_sym_u16] = ACTIONS(1953), + [anon_sym_i16] = ACTIONS(1953), + [anon_sym_u32] = ACTIONS(1953), + [anon_sym_i32] = ACTIONS(1953), + [anon_sym_u64] = ACTIONS(1953), + [anon_sym_i64] = ACTIONS(1953), + [anon_sym_u128] = ACTIONS(1953), + [anon_sym_i128] = ACTIONS(1953), + [anon_sym_isize] = ACTIONS(1953), + [anon_sym_usize] = ACTIONS(1953), + [anon_sym_f32] = ACTIONS(1953), + [anon_sym_f64] = ACTIONS(1953), + [anon_sym_bool] = ACTIONS(1953), + [anon_sym_str] = ACTIONS(1953), + [anon_sym_char] = ACTIONS(1953), + [anon_sym_SQUOTE] = ACTIONS(1953), + [anon_sym_async] = ACTIONS(1953), + [anon_sym_break] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [anon_sym_continue] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1953), + [anon_sym_fn] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_impl] = ACTIONS(1953), + [anon_sym_let] = ACTIONS(1953), + [anon_sym_loop] = ACTIONS(1953), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_mod] = ACTIONS(1953), + [anon_sym_pub] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_static] = ACTIONS(1953), + [anon_sym_struct] = ACTIONS(1953), + [anon_sym_trait] = ACTIONS(1953), + [anon_sym_type] = ACTIONS(1953), + [anon_sym_union] = ACTIONS(1953), + [anon_sym_unsafe] = ACTIONS(1953), + [anon_sym_use] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_POUND] = ACTIONS(1951), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1951), + [anon_sym_COLON_COLON] = ACTIONS(1951), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_PIPE] = ACTIONS(1951), + [anon_sym_move] = ACTIONS(1953), + [sym_integer_literal] = ACTIONS(1951), + [aux_sym_string_literal_token1] = ACTIONS(1951), + [sym_char_literal] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1953), + [sym_super] = ACTIONS(1953), + [sym_crate] = ACTIONS(1953), + [sym_metavariable] = ACTIONS(1951), + [sym_raw_string_literal] = ACTIONS(1951), + [sym_float_literal] = ACTIONS(1951), + [sym_block_comment] = ACTIONS(3), + }, + [465] = { + [ts_builtin_sym_end] = ACTIONS(1955), + [sym_identifier] = ACTIONS(1957), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_macro_rules_BANG] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_u8] = ACTIONS(1957), + [anon_sym_i8] = ACTIONS(1957), + [anon_sym_u16] = ACTIONS(1957), + [anon_sym_i16] = ACTIONS(1957), + [anon_sym_u32] = ACTIONS(1957), + [anon_sym_i32] = ACTIONS(1957), + [anon_sym_u64] = ACTIONS(1957), + [anon_sym_i64] = ACTIONS(1957), + [anon_sym_u128] = ACTIONS(1957), + [anon_sym_i128] = ACTIONS(1957), + [anon_sym_isize] = ACTIONS(1957), + [anon_sym_usize] = ACTIONS(1957), + [anon_sym_f32] = ACTIONS(1957), + [anon_sym_f64] = ACTIONS(1957), + [anon_sym_bool] = ACTIONS(1957), + [anon_sym_str] = ACTIONS(1957), + [anon_sym_char] = ACTIONS(1957), + [anon_sym_SQUOTE] = ACTIONS(1957), + [anon_sym_async] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_default] = ACTIONS(1957), + [anon_sym_enum] = ACTIONS(1957), + [anon_sym_fn] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_impl] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_mod] = ACTIONS(1957), + [anon_sym_pub] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_static] = ACTIONS(1957), + [anon_sym_struct] = ACTIONS(1957), + [anon_sym_trait] = ACTIONS(1957), + [anon_sym_type] = ACTIONS(1957), + [anon_sym_union] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(1955), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1955), + [anon_sym_COLON_COLON] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_move] = ACTIONS(1957), + [sym_integer_literal] = ACTIONS(1955), + [aux_sym_string_literal_token1] = ACTIONS(1955), + [sym_char_literal] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1957), + [anon_sym_false] = ACTIONS(1957), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1957), + [sym_super] = ACTIONS(1957), + [sym_crate] = ACTIONS(1957), + [sym_metavariable] = ACTIONS(1955), + [sym_raw_string_literal] = ACTIONS(1955), + [sym_float_literal] = ACTIONS(1955), + [sym_block_comment] = ACTIONS(3), + }, + [466] = { + [sym_attribute_item] = STATE(499), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_macro_invocation] = STATE(2317), + [sym_scoped_identifier] = STATE(1472), + [sym_scoped_type_identifier] = STATE(1899), + [sym_match_arm] = STATE(466), + [sym_match_pattern] = STATE(2317), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1855), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_enum_variant_list_repeat1] = STATE(499), + [aux_sym_match_block_repeat1] = STATE(466), + [sym_identifier] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1965), + [anon_sym_u8] = ACTIONS(1968), + [anon_sym_i8] = ACTIONS(1968), + [anon_sym_u16] = ACTIONS(1968), + [anon_sym_i16] = ACTIONS(1968), + [anon_sym_u32] = ACTIONS(1968), + [anon_sym_i32] = ACTIONS(1968), + [anon_sym_u64] = ACTIONS(1968), + [anon_sym_i64] = ACTIONS(1968), + [anon_sym_u128] = ACTIONS(1968), + [anon_sym_i128] = ACTIONS(1968), + [anon_sym_isize] = ACTIONS(1968), + [anon_sym_usize] = ACTIONS(1968), + [anon_sym_f32] = ACTIONS(1968), + [anon_sym_f64] = ACTIONS(1968), + [anon_sym_bool] = ACTIONS(1968), + [anon_sym_str] = ACTIONS(1968), + [anon_sym_char] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1971), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_POUND] = ACTIONS(1977), + [anon_sym_ref] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_COLON_COLON] = ACTIONS(1986), + [anon_sym__] = ACTIONS(1989), + [anon_sym_AMP] = ACTIONS(1992), + [sym_mutable_specifier] = ACTIONS(1995), + [anon_sym_DOT_DOT] = ACTIONS(1998), + [anon_sym_DASH] = ACTIONS(2001), + [sym_integer_literal] = ACTIONS(2004), + [aux_sym_string_literal_token1] = ACTIONS(2007), + [sym_char_literal] = ACTIONS(2004), + [anon_sym_true] = ACTIONS(2010), + [anon_sym_false] = ACTIONS(2010), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2013), [sym_super] = ACTIONS(2013), [sym_crate] = ACTIONS(2013), - [sym_metavariable] = ACTIONS(2017), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(2016), + [sym_raw_string_literal] = ACTIONS(2004), + [sym_float_literal] = ACTIONS(2004), [sym_block_comment] = ACTIONS(3), }, - [464] = { - [sym_token_tree] = STATE(401), - [sym_token_repetition] = STATE(401), - [sym__literal] = STATE(401), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(401), + [467] = { + [sym_token_tree] = STATE(287), + [sym_token_repetition] = STATE(287), + [sym__literal] = STATE(287), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(287), [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_RBRACK] = ACTIONS(2021), - [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_RBRACK] = ACTIONS(2027), + [anon_sym_DOLLAR] = ACTIONS(2029), [anon_sym_u8] = ACTIONS(2019), [anon_sym_i8] = ACTIONS(2019), [anon_sym_u16] = ACTIONS(2019), @@ -56077,33 +56391,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2019), [anon_sym_while] = ACTIONS(2019), [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2019), [sym_super] = ACTIONS(2019), [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2023), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(2031), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [465] = { - [sym_token_tree] = STATE(401), - [sym_token_repetition] = STATE(401), - [sym__literal] = STATE(401), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(401), + [468] = { + [sym_token_tree] = STATE(287), + [sym_token_repetition] = STATE(287), + [sym__literal] = STATE(287), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(287), [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_RPAREN] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2033), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), [anon_sym_u8] = ACTIONS(2019), [anon_sym_i8] = ACTIONS(2019), [anon_sym_u16] = ACTIONS(2019), @@ -56151,181 +56465,181 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2019), [anon_sym_while] = ACTIONS(2019), [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2019), [sym_super] = ACTIONS(2019), [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2023), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(2031), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [466] = { - [sym_token_tree] = STATE(485), - [sym_token_repetition] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2027), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_RPAREN] = ACTIONS(2029), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2027), - [anon_sym_SQUOTE] = ACTIONS(2027), - [anon_sym_as] = ACTIONS(2027), - [anon_sym_async] = ACTIONS(2027), - [anon_sym_await] = 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_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_where] = ACTIONS(2027), - [anon_sym_while] = ACTIONS(2027), - [sym_mutable_specifier] = ACTIONS(2027), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2027), - [sym_super] = ACTIONS(2027), - [sym_crate] = ACTIONS(2027), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [469] = { + [sym_token_tree] = STATE(494), + [sym_token_repetition] = STATE(494), + [sym__literal] = STATE(494), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(494), + [sym_identifier] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_RBRACK] = ACTIONS(2037), + [anon_sym_DOLLAR] = ACTIONS(2029), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2035), + [anon_sym_SQUOTE] = ACTIONS(2035), + [anon_sym_as] = ACTIONS(2035), + [anon_sym_async] = ACTIONS(2035), + [anon_sym_await] = 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_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_where] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [sym_mutable_specifier] = ACTIONS(2035), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2035), + [sym_super] = ACTIONS(2035), + [sym_crate] = ACTIONS(2035), + [sym_metavariable] = ACTIONS(2039), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [467] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_RPAREN] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2033), - [anon_sym_SQUOTE] = ACTIONS(2033), - [anon_sym_as] = ACTIONS(2033), - [anon_sym_async] = ACTIONS(2033), - [anon_sym_await] = 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_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_where] = ACTIONS(2033), - [anon_sym_while] = ACTIONS(2033), - [sym_mutable_specifier] = ACTIONS(2033), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2033), - [sym_super] = ACTIONS(2033), - [sym_crate] = ACTIONS(2033), - [sym_metavariable] = ACTIONS(2035), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [470] = { + [sym_token_tree] = STATE(475), + [sym_token_repetition] = STATE(475), + [sym__literal] = STATE(475), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(475), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2041), + [anon_sym_SQUOTE] = ACTIONS(2041), + [anon_sym_as] = ACTIONS(2041), + [anon_sym_async] = ACTIONS(2041), + [anon_sym_await] = 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_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_where] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2041), + [sym_mutable_specifier] = ACTIONS(2041), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2041), + [sym_super] = ACTIONS(2041), + [sym_crate] = ACTIONS(2041), + [sym_metavariable] = ACTIONS(2045), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [468] = { - [sym_token_tree] = STATE(401), - [sym_token_repetition] = STATE(401), - [sym__literal] = STATE(401), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(401), + [471] = { + [sym_token_tree] = STATE(287), + [sym_token_repetition] = STATE(287), + [sym__literal] = STATE(287), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(287), [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_RBRACK] = ACTIONS(2047), + [anon_sym_DOLLAR] = ACTIONS(2029), [anon_sym_u8] = ACTIONS(2019), [anon_sym_i8] = ACTIONS(2019), [anon_sym_u16] = ACTIONS(2019), @@ -56373,33 +56687,255 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2019), [anon_sym_while] = ACTIONS(2019), [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2019), [sym_super] = ACTIONS(2019), [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2023), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(2031), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [469] = { - [sym_token_tree] = STATE(401), - [sym_token_repetition] = STATE(401), - [sym__literal] = STATE(401), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(401), + [472] = { + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2049), + [anon_sym_SQUOTE] = ACTIONS(2049), + [anon_sym_as] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_await] = 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_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_where] = ACTIONS(2049), + [anon_sym_while] = ACTIONS(2049), + [sym_mutable_specifier] = ACTIONS(2049), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2049), + [sym_super] = ACTIONS(2049), + [sym_crate] = ACTIONS(2049), + [sym_metavariable] = ACTIONS(2051), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), + [sym_block_comment] = ACTIONS(3), + }, + [473] = { + [sym_token_tree] = STATE(497), + [sym_token_repetition] = STATE(497), + [sym__literal] = STATE(497), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(497), + [sym_identifier] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_await] = 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_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_where] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [sym_mutable_specifier] = ACTIONS(2053), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2053), + [sym_super] = ACTIONS(2053), + [sym_crate] = ACTIONS(2053), + [sym_metavariable] = ACTIONS(2055), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), + [sym_block_comment] = ACTIONS(3), + }, + [474] = { + [sym_token_tree] = STATE(480), + [sym_token_repetition] = STATE(480), + [sym__literal] = STATE(480), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(480), + [sym_identifier] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_await] = 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_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_where] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [sym_mutable_specifier] = ACTIONS(2057), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_crate] = ACTIONS(2057), + [sym_metavariable] = ACTIONS(2061), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), + [sym_block_comment] = ACTIONS(3), + }, + [475] = { + [sym_token_tree] = STATE(287), + [sym_token_repetition] = STATE(287), + [sym__literal] = STATE(287), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(287), [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_RBRACK] = ACTIONS(2037), - [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), [anon_sym_u8] = ACTIONS(2019), [anon_sym_i8] = ACTIONS(2019), [anon_sym_u16] = ACTIONS(2019), @@ -56447,107 +56983,107 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2019), [anon_sym_while] = ACTIONS(2019), [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2019), [sym_super] = ACTIONS(2019), [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2023), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(2031), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [470] = { - [sym_token_tree] = STATE(493), - [sym_token_repetition] = STATE(493), - [sym__literal] = STATE(493), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(2039), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_RBRACK] = ACTIONS(2005), - [anon_sym_DOLLAR] = ACTIONS(2009), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2039), - [anon_sym_SQUOTE] = ACTIONS(2039), - [anon_sym_as] = ACTIONS(2039), - [anon_sym_async] = ACTIONS(2039), - [anon_sym_await] = 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_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_where] = ACTIONS(2039), - [anon_sym_while] = ACTIONS(2039), - [sym_mutable_specifier] = ACTIONS(2039), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2039), - [sym_super] = ACTIONS(2039), - [sym_crate] = ACTIONS(2039), - [sym_metavariable] = ACTIONS(2041), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [476] = { + [sym_token_tree] = STATE(482), + [sym_token_repetition] = STATE(482), + [sym__literal] = STATE(482), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(482), + [sym_identifier] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [anon_sym_as] = ACTIONS(2063), + [anon_sym_async] = ACTIONS(2063), + [anon_sym_await] = 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_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_where] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2063), + [sym_mutable_specifier] = ACTIONS(2063), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2063), + [sym_super] = ACTIONS(2063), + [sym_crate] = ACTIONS(2063), + [sym_metavariable] = ACTIONS(2065), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [471] = { - [sym_token_tree] = STATE(401), - [sym_token_repetition] = STATE(401), - [sym__literal] = STATE(401), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(401), + [477] = { + [sym_token_tree] = STATE(287), + [sym_token_repetition] = STATE(287), + [sym__literal] = STATE(287), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(287), [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_RBRACK] = ACTIONS(2033), + [anon_sym_DOLLAR] = ACTIONS(2029), [anon_sym_u8] = ACTIONS(2019), [anon_sym_i8] = ACTIONS(2019), [anon_sym_u16] = ACTIONS(2019), @@ -56595,107 +57131,107 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2019), [anon_sym_while] = ACTIONS(2019), [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2019), [sym_super] = ACTIONS(2019), [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2023), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(2031), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [472] = { - [sym_token_tree] = STATE(487), - [sym_token_repetition] = STATE(487), - [sym__literal] = STATE(487), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(487), - [sym_identifier] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_RBRACK] = ACTIONS(2029), - [anon_sym_DOLLAR] = ACTIONS(2009), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2043), - [anon_sym_SQUOTE] = ACTIONS(2043), - [anon_sym_as] = ACTIONS(2043), - [anon_sym_async] = ACTIONS(2043), - [anon_sym_await] = 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_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_where] = ACTIONS(2043), - [anon_sym_while] = ACTIONS(2043), - [sym_mutable_specifier] = ACTIONS(2043), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2043), - [sym_super] = ACTIONS(2043), - [sym_crate] = ACTIONS(2043), - [sym_metavariable] = ACTIONS(2045), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [478] = { + [sym_token_tree] = STATE(495), + [sym_token_repetition] = STATE(495), + [sym__literal] = STATE(495), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(495), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_await] = 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_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_where] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [sym_mutable_specifier] = ACTIONS(2067), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_crate] = ACTIONS(2067), + [sym_metavariable] = ACTIONS(2071), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [473] = { - [sym_token_tree] = STATE(401), - [sym_token_repetition] = STATE(401), - [sym__literal] = STATE(401), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(401), + [479] = { + [sym_token_tree] = STATE(287), + [sym_token_repetition] = STATE(287), + [sym__literal] = STATE(287), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(287), [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_RPAREN] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2033), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), [anon_sym_u8] = ACTIONS(2019), [anon_sym_i8] = ACTIONS(2019), [anon_sym_u16] = ACTIONS(2019), @@ -56743,33 +57279,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2019), [anon_sym_while] = ACTIONS(2019), [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2019), [sym_super] = ACTIONS(2019), [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2023), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(2031), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [474] = { - [sym_token_tree] = STATE(401), - [sym_token_repetition] = STATE(401), - [sym__literal] = STATE(401), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(401), + [480] = { + [sym_token_tree] = STATE(287), + [sym_token_repetition] = STATE(287), + [sym__literal] = STATE(287), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(287), [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_RPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), [anon_sym_u8] = ACTIONS(2019), [anon_sym_i8] = ACTIONS(2019), [anon_sym_u16] = ACTIONS(2019), @@ -56817,181 +57353,107 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2019), [anon_sym_while] = ACTIONS(2019), [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2019), [sym_super] = ACTIONS(2019), [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2023), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), - [sym_block_comment] = ACTIONS(3), - }, - [475] = { - [sym_token_tree] = STATE(464), - [sym_token_repetition] = STATE(464), - [sym__literal] = STATE(464), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(464), - [sym_identifier] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_RBRACK] = ACTIONS(2049), - [anon_sym_DOLLAR] = ACTIONS(2009), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2047), - [anon_sym_SQUOTE] = ACTIONS(2047), - [anon_sym_as] = ACTIONS(2047), - [anon_sym_async] = ACTIONS(2047), - [anon_sym_await] = 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_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_where] = ACTIONS(2047), - [anon_sym_while] = ACTIONS(2047), - [sym_mutable_specifier] = ACTIONS(2047), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2047), - [sym_super] = ACTIONS(2047), - [sym_crate] = ACTIONS(2047), - [sym_metavariable] = ACTIONS(2051), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(2031), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [476] = { - [sym_token_tree] = STATE(468), - [sym_token_repetition] = STATE(468), - [sym__literal] = STATE(468), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(468), - [sym_identifier] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2053), - [anon_sym_SQUOTE] = ACTIONS(2053), - [anon_sym_as] = ACTIONS(2053), - [anon_sym_async] = ACTIONS(2053), - [anon_sym_await] = 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_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_where] = ACTIONS(2053), - [anon_sym_while] = ACTIONS(2053), - [sym_mutable_specifier] = ACTIONS(2053), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2053), - [sym_super] = ACTIONS(2053), - [sym_crate] = ACTIONS(2053), - [sym_metavariable] = ACTIONS(2055), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [481] = { + [sym_token_tree] = STATE(477), + [sym_token_repetition] = STATE(477), + [sym__literal] = STATE(477), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(477), + [sym_identifier] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_RBRACK] = ACTIONS(2077), + [anon_sym_DOLLAR] = ACTIONS(2029), + [anon_sym_u8] = ACTIONS(2075), + [anon_sym_i8] = ACTIONS(2075), + [anon_sym_u16] = ACTIONS(2075), + [anon_sym_i16] = ACTIONS(2075), + [anon_sym_u32] = ACTIONS(2075), + [anon_sym_i32] = ACTIONS(2075), + [anon_sym_u64] = ACTIONS(2075), + [anon_sym_i64] = ACTIONS(2075), + [anon_sym_u128] = ACTIONS(2075), + [anon_sym_i128] = ACTIONS(2075), + [anon_sym_isize] = ACTIONS(2075), + [anon_sym_usize] = ACTIONS(2075), + [anon_sym_f32] = ACTIONS(2075), + [anon_sym_f64] = ACTIONS(2075), + [anon_sym_bool] = ACTIONS(2075), + [anon_sym_str] = ACTIONS(2075), + [anon_sym_char] = ACTIONS(2075), + [aux_sym__non_special_token_token1] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(2075), + [anon_sym_as] = ACTIONS(2075), + [anon_sym_async] = ACTIONS(2075), + [anon_sym_await] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2075), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_continue] = ACTIONS(2075), + [anon_sym_default] = ACTIONS(2075), + [anon_sym_enum] = ACTIONS(2075), + [anon_sym_fn] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_impl] = ACTIONS(2075), + [anon_sym_let] = ACTIONS(2075), + [anon_sym_loop] = ACTIONS(2075), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_mod] = ACTIONS(2075), + [anon_sym_pub] = ACTIONS(2075), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_static] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(2075), + [anon_sym_trait] = ACTIONS(2075), + [anon_sym_type] = ACTIONS(2075), + [anon_sym_union] = ACTIONS(2075), + [anon_sym_unsafe] = ACTIONS(2075), + [anon_sym_use] = ACTIONS(2075), + [anon_sym_where] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2075), + [sym_mutable_specifier] = ACTIONS(2075), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2075), + [sym_super] = ACTIONS(2075), + [sym_crate] = ACTIONS(2075), + [sym_metavariable] = ACTIONS(2079), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [477] = { - [sym_token_tree] = STATE(401), - [sym_token_repetition] = STATE(401), - [sym__literal] = STATE(401), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(401), + [482] = { + [sym_token_tree] = STATE(287), + [sym_token_repetition] = STATE(287), + [sym__literal] = STATE(287), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(287), [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2081), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), [anon_sym_u8] = ACTIONS(2019), [anon_sym_i8] = ACTIONS(2019), [anon_sym_u16] = ACTIONS(2019), @@ -57039,403 +57501,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2019), [anon_sym_while] = ACTIONS(2019), [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2019), [sym_super] = ACTIONS(2019), [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2023), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), - [sym_block_comment] = ACTIONS(3), - }, - [478] = { - [sym_token_tree] = STATE(474), - [sym_token_repetition] = STATE(474), - [sym__literal] = STATE(474), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(474), - [sym_identifier] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_RPAREN] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2059), - [anon_sym_SQUOTE] = ACTIONS(2059), - [anon_sym_as] = ACTIONS(2059), - [anon_sym_async] = ACTIONS(2059), - [anon_sym_await] = 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_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_where] = ACTIONS(2059), - [anon_sym_while] = ACTIONS(2059), - [sym_mutable_specifier] = ACTIONS(2059), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2059), - [sym_super] = ACTIONS(2059), - [sym_crate] = ACTIONS(2059), - [sym_metavariable] = ACTIONS(2061), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), - [sym_block_comment] = ACTIONS(3), - }, - [479] = { - [sym_token_tree] = STATE(465), - [sym_token_repetition] = STATE(465), - [sym__literal] = STATE(465), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(465), - [sym_identifier] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_RPAREN] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2063), - [anon_sym_SQUOTE] = ACTIONS(2063), - [anon_sym_as] = ACTIONS(2063), - [anon_sym_async] = ACTIONS(2063), - [anon_sym_await] = 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_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_where] = ACTIONS(2063), - [anon_sym_while] = ACTIONS(2063), - [sym_mutable_specifier] = ACTIONS(2063), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2063), - [sym_super] = ACTIONS(2063), - [sym_crate] = ACTIONS(2063), - [sym_metavariable] = ACTIONS(2067), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), - [sym_block_comment] = ACTIONS(3), - }, - [480] = { - [sym_token_tree] = STATE(477), - [sym_token_repetition] = STATE(477), - [sym__literal] = STATE(477), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(477), - [sym_identifier] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2029), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), - [anon_sym_u8] = ACTIONS(2069), - [anon_sym_i8] = ACTIONS(2069), - [anon_sym_u16] = ACTIONS(2069), - [anon_sym_i16] = ACTIONS(2069), - [anon_sym_u32] = ACTIONS(2069), - [anon_sym_i32] = ACTIONS(2069), - [anon_sym_u64] = ACTIONS(2069), - [anon_sym_i64] = ACTIONS(2069), - [anon_sym_u128] = ACTIONS(2069), - [anon_sym_i128] = ACTIONS(2069), - [anon_sym_isize] = ACTIONS(2069), - [anon_sym_usize] = ACTIONS(2069), - [anon_sym_f32] = ACTIONS(2069), - [anon_sym_f64] = ACTIONS(2069), - [anon_sym_bool] = ACTIONS(2069), - [anon_sym_str] = ACTIONS(2069), - [anon_sym_char] = ACTIONS(2069), - [aux_sym__non_special_token_token1] = ACTIONS(2069), - [anon_sym_SQUOTE] = ACTIONS(2069), - [anon_sym_as] = ACTIONS(2069), - [anon_sym_async] = ACTIONS(2069), - [anon_sym_await] = ACTIONS(2069), - [anon_sym_break] = ACTIONS(2069), - [anon_sym_const] = ACTIONS(2069), - [anon_sym_continue] = ACTIONS(2069), - [anon_sym_default] = ACTIONS(2069), - [anon_sym_enum] = ACTIONS(2069), - [anon_sym_fn] = ACTIONS(2069), - [anon_sym_for] = ACTIONS(2069), - [anon_sym_if] = ACTIONS(2069), - [anon_sym_impl] = ACTIONS(2069), - [anon_sym_let] = ACTIONS(2069), - [anon_sym_loop] = ACTIONS(2069), - [anon_sym_match] = ACTIONS(2069), - [anon_sym_mod] = ACTIONS(2069), - [anon_sym_pub] = ACTIONS(2069), - [anon_sym_return] = ACTIONS(2069), - [anon_sym_static] = ACTIONS(2069), - [anon_sym_struct] = ACTIONS(2069), - [anon_sym_trait] = ACTIONS(2069), - [anon_sym_type] = ACTIONS(2069), - [anon_sym_union] = ACTIONS(2069), - [anon_sym_unsafe] = ACTIONS(2069), - [anon_sym_use] = ACTIONS(2069), - [anon_sym_where] = ACTIONS(2069), - [anon_sym_while] = ACTIONS(2069), - [sym_mutable_specifier] = ACTIONS(2069), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2069), - [sym_super] = ACTIONS(2069), - [sym_crate] = ACTIONS(2069), - [sym_metavariable] = ACTIONS(2071), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), - [sym_block_comment] = ACTIONS(3), - }, - [481] = { - [sym_token_tree] = STATE(484), - [sym_token_repetition] = STATE(484), - [sym__literal] = STATE(484), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(484), - [sym_identifier] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_RPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), - [anon_sym_u8] = ACTIONS(2073), - [anon_sym_i8] = ACTIONS(2073), - [anon_sym_u16] = ACTIONS(2073), - [anon_sym_i16] = ACTIONS(2073), - [anon_sym_u32] = ACTIONS(2073), - [anon_sym_i32] = ACTIONS(2073), - [anon_sym_u64] = ACTIONS(2073), - [anon_sym_i64] = ACTIONS(2073), - [anon_sym_u128] = ACTIONS(2073), - [anon_sym_i128] = ACTIONS(2073), - [anon_sym_isize] = ACTIONS(2073), - [anon_sym_usize] = ACTIONS(2073), - [anon_sym_f32] = ACTIONS(2073), - [anon_sym_f64] = ACTIONS(2073), - [anon_sym_bool] = ACTIONS(2073), - [anon_sym_str] = ACTIONS(2073), - [anon_sym_char] = ACTIONS(2073), - [aux_sym__non_special_token_token1] = ACTIONS(2073), - [anon_sym_SQUOTE] = ACTIONS(2073), - [anon_sym_as] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2073), - [anon_sym_await] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_default] = ACTIONS(2073), - [anon_sym_enum] = ACTIONS(2073), - [anon_sym_fn] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_impl] = ACTIONS(2073), - [anon_sym_let] = ACTIONS(2073), - [anon_sym_loop] = ACTIONS(2073), - [anon_sym_match] = ACTIONS(2073), - [anon_sym_mod] = ACTIONS(2073), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_static] = ACTIONS(2073), - [anon_sym_struct] = ACTIONS(2073), - [anon_sym_trait] = ACTIONS(2073), - [anon_sym_type] = ACTIONS(2073), - [anon_sym_union] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(2073), - [anon_sym_use] = ACTIONS(2073), - [anon_sym_where] = ACTIONS(2073), - [anon_sym_while] = ACTIONS(2073), - [sym_mutable_specifier] = ACTIONS(2073), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2073), - [sym_super] = ACTIONS(2073), - [sym_crate] = ACTIONS(2073), - [sym_metavariable] = ACTIONS(2077), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(2031), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [482] = { + [483] = { [sym_token_tree] = STATE(488), [sym_token_repetition] = STATE(488), [sym__literal] = STATE(488), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), [aux_sym_token_tree_repeat1] = STATE(488), - [sym_identifier] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), - [anon_sym_u8] = ACTIONS(2079), - [anon_sym_i8] = ACTIONS(2079), - [anon_sym_u16] = ACTIONS(2079), - [anon_sym_i16] = ACTIONS(2079), - [anon_sym_u32] = ACTIONS(2079), - [anon_sym_i32] = ACTIONS(2079), - [anon_sym_u64] = ACTIONS(2079), - [anon_sym_i64] = ACTIONS(2079), - [anon_sym_u128] = ACTIONS(2079), - [anon_sym_i128] = ACTIONS(2079), - [anon_sym_isize] = ACTIONS(2079), - [anon_sym_usize] = ACTIONS(2079), - [anon_sym_f32] = ACTIONS(2079), - [anon_sym_f64] = ACTIONS(2079), - [anon_sym_bool] = ACTIONS(2079), - [anon_sym_str] = ACTIONS(2079), - [anon_sym_char] = ACTIONS(2079), - [aux_sym__non_special_token_token1] = ACTIONS(2079), - [anon_sym_SQUOTE] = ACTIONS(2079), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_async] = ACTIONS(2079), - [anon_sym_await] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_default] = ACTIONS(2079), - [anon_sym_enum] = ACTIONS(2079), - [anon_sym_fn] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_impl] = ACTIONS(2079), - [anon_sym_let] = ACTIONS(2079), - [anon_sym_loop] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_mod] = ACTIONS(2079), - [anon_sym_pub] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_static] = ACTIONS(2079), - [anon_sym_struct] = ACTIONS(2079), - [anon_sym_trait] = ACTIONS(2079), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_union] = ACTIONS(2079), - [anon_sym_unsafe] = ACTIONS(2079), - [anon_sym_use] = ACTIONS(2079), - [anon_sym_where] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [sym_mutable_specifier] = ACTIONS(2079), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2079), - [sym_super] = ACTIONS(2079), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(2081), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), - [sym_block_comment] = ACTIONS(3), - }, - [483] = { - [sym_token_tree] = STATE(489), - [sym_token_repetition] = STATE(489), - [sym__literal] = STATE(489), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(489), [sym_identifier] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_RBRACK] = ACTIONS(2075), - [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), [anon_sym_u8] = ACTIONS(2083), [anon_sym_i8] = ACTIONS(2083), [anon_sym_u16] = ACTIONS(2083), @@ -57483,33 +57575,329 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2083), [anon_sym_while] = ACTIONS(2083), [sym_mutable_specifier] = ACTIONS(2083), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2083), [sym_super] = ACTIONS(2083), [sym_crate] = ACTIONS(2083), - [sym_metavariable] = ACTIONS(2085), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(2087), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, [484] = { - [sym_token_tree] = STATE(401), - [sym_token_repetition] = STATE(401), - [sym__literal] = STATE(401), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(401), + [sym_token_tree] = STATE(468), + [sym_token_repetition] = STATE(468), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(468), + [sym_identifier] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_as] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_await] = 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_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_where] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [sym_mutable_specifier] = ACTIONS(2089), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2089), + [sym_super] = ACTIONS(2089), + [sym_crate] = ACTIONS(2089), + [sym_metavariable] = ACTIONS(2091), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), + [sym_block_comment] = ACTIONS(3), + }, + [485] = { + [sym_token_tree] = STATE(491), + [sym_token_repetition] = STATE(491), + [sym__literal] = STATE(491), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(491), + [sym_identifier] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), + [anon_sym_u8] = ACTIONS(2093), + [anon_sym_i8] = ACTIONS(2093), + [anon_sym_u16] = ACTIONS(2093), + [anon_sym_i16] = ACTIONS(2093), + [anon_sym_u32] = ACTIONS(2093), + [anon_sym_i32] = ACTIONS(2093), + [anon_sym_u64] = ACTIONS(2093), + [anon_sym_i64] = ACTIONS(2093), + [anon_sym_u128] = ACTIONS(2093), + [anon_sym_i128] = ACTIONS(2093), + [anon_sym_isize] = ACTIONS(2093), + [anon_sym_usize] = ACTIONS(2093), + [anon_sym_f32] = ACTIONS(2093), + [anon_sym_f64] = ACTIONS(2093), + [anon_sym_bool] = ACTIONS(2093), + [anon_sym_str] = ACTIONS(2093), + [anon_sym_char] = ACTIONS(2093), + [aux_sym__non_special_token_token1] = ACTIONS(2093), + [anon_sym_SQUOTE] = ACTIONS(2093), + [anon_sym_as] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_impl] = ACTIONS(2093), + [anon_sym_let] = ACTIONS(2093), + [anon_sym_loop] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_mod] = ACTIONS(2093), + [anon_sym_pub] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_union] = ACTIONS(2093), + [anon_sym_unsafe] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_where] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [sym_mutable_specifier] = ACTIONS(2093), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2093), + [sym_super] = ACTIONS(2093), + [sym_crate] = ACTIONS(2093), + [sym_metavariable] = ACTIONS(2095), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), + [sym_block_comment] = ACTIONS(3), + }, + [486] = { + [sym_token_tree] = STATE(479), + [sym_token_repetition] = STATE(479), + [sym__literal] = STATE(479), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(479), + [sym_identifier] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2077), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_as] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_await] = 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_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_where] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [sym_mutable_specifier] = ACTIONS(2097), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2097), + [sym_super] = ACTIONS(2097), + [sym_crate] = ACTIONS(2097), + [sym_metavariable] = ACTIONS(2099), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), + [sym_block_comment] = ACTIONS(3), + }, + [487] = { + [sym_token_tree] = STATE(467), + [sym_token_repetition] = STATE(467), + [sym__literal] = STATE(467), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(467), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_RBRACK] = ACTIONS(2085), + [anon_sym_DOLLAR] = ACTIONS(2029), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2101), + [anon_sym_as] = ACTIONS(2101), + [anon_sym_async] = ACTIONS(2101), + [anon_sym_await] = 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_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_where] = ACTIONS(2101), + [anon_sym_while] = ACTIONS(2101), + [sym_mutable_specifier] = ACTIONS(2101), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2101), + [sym_super] = ACTIONS(2101), + [sym_crate] = ACTIONS(2101), + [sym_metavariable] = ACTIONS(2103), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), + [sym_block_comment] = ACTIONS(3), + }, + [488] = { + [sym_token_tree] = STATE(287), + [sym_token_repetition] = STATE(287), + [sym__literal] = STATE(287), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(287), [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_RPAREN] = ACTIONS(2087), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2027), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), [anon_sym_u8] = ACTIONS(2019), [anon_sym_i8] = ACTIONS(2019), [anon_sym_u16] = ACTIONS(2019), @@ -57557,33 +57945,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2019), [anon_sym_while] = ACTIONS(2019), [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2019), [sym_super] = ACTIONS(2019), [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2023), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(2031), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [485] = { - [sym_token_tree] = STATE(401), - [sym_token_repetition] = STATE(401), - [sym__literal] = STATE(401), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(401), + [489] = { + [sym_token_tree] = STATE(287), + [sym_token_repetition] = STATE(287), + [sym__literal] = STATE(287), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(287), [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_RPAREN] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_RBRACK] = ACTIONS(2105), + [anon_sym_DOLLAR] = ACTIONS(2029), [anon_sym_u8] = ACTIONS(2019), [anon_sym_i8] = ACTIONS(2019), [anon_sym_u16] = ACTIONS(2019), @@ -57631,107 +58019,107 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2019), [anon_sym_while] = ACTIONS(2019), [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2019), [sym_super] = ACTIONS(2019), [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2023), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(2031), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [486] = { + [490] = { [sym_token_tree] = STATE(471), [sym_token_repetition] = STATE(471), [sym__literal] = STATE(471), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), [aux_sym_token_tree_repeat1] = STATE(471), - [sym_identifier] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_await] = 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_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_where] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [sym_mutable_specifier] = ACTIONS(2089), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2089), - [sym_super] = ACTIONS(2089), - [sym_crate] = ACTIONS(2089), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_RBRACK] = ACTIONS(2043), + [anon_sym_DOLLAR] = ACTIONS(2029), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2107), + [anon_sym_SQUOTE] = ACTIONS(2107), + [anon_sym_as] = ACTIONS(2107), + [anon_sym_async] = ACTIONS(2107), + [anon_sym_await] = 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_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_where] = ACTIONS(2107), + [anon_sym_while] = ACTIONS(2107), + [sym_mutable_specifier] = ACTIONS(2107), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2107), + [sym_super] = ACTIONS(2107), + [sym_crate] = ACTIONS(2107), + [sym_metavariable] = ACTIONS(2109), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [487] = { - [sym_token_tree] = STATE(401), - [sym_token_repetition] = STATE(401), - [sym__literal] = STATE(401), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(401), + [491] = { + [sym_token_tree] = STATE(287), + [sym_token_repetition] = STATE(287), + [sym__literal] = STATE(287), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(287), [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_RBRACK] = ACTIONS(2057), - [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), [anon_sym_u8] = ACTIONS(2019), [anon_sym_i8] = ACTIONS(2019), [anon_sym_u16] = ACTIONS(2019), @@ -57779,33 +58167,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2019), [anon_sym_while] = ACTIONS(2019), [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2019), [sym_super] = ACTIONS(2019), [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2023), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(2031), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [488] = { - [sym_token_tree] = STATE(401), - [sym_token_repetition] = STATE(401), - [sym__literal] = STATE(401), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(401), + [492] = { + [sym_token_tree] = STATE(287), + [sym_token_repetition] = STATE(287), + [sym__literal] = STATE(287), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(287), [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2087), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), [anon_sym_u8] = ACTIONS(2019), [anon_sym_i8] = ACTIONS(2019), [anon_sym_u16] = ACTIONS(2019), @@ -57853,33 +58241,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2019), [anon_sym_while] = ACTIONS(2019), [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2019), [sym_super] = ACTIONS(2019), [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2023), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(2031), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [489] = { - [sym_token_tree] = STATE(401), - [sym_token_repetition] = STATE(401), - [sym__literal] = STATE(401), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(401), + [493] = { + [sym_token_tree] = STATE(287), + [sym_token_repetition] = STATE(287), + [sym__literal] = STATE(287), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(287), [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_RBRACK] = ACTIONS(2087), - [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), [anon_sym_u8] = ACTIONS(2019), [anon_sym_i8] = ACTIONS(2019), [anon_sym_u16] = ACTIONS(2019), @@ -57927,33 +58315,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2019), [anon_sym_while] = ACTIONS(2019), [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2019), [sym_super] = ACTIONS(2019), [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2023), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(2031), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [490] = { - [sym_token_tree] = STATE(401), - [sym_token_repetition] = STATE(401), - [sym__literal] = STATE(401), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(401), + [494] = { + [sym_token_tree] = STATE(287), + [sym_token_repetition] = STATE(287), + [sym__literal] = STATE(287), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(287), [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_RPAREN] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_RBRACK] = ACTIONS(2081), + [anon_sym_DOLLAR] = ACTIONS(2029), [anon_sym_u8] = ACTIONS(2019), [anon_sym_i8] = ACTIONS(2019), [anon_sym_u16] = ACTIONS(2019), @@ -58001,107 +58389,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2019), [anon_sym_while] = ACTIONS(2019), [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2019), [sym_super] = ACTIONS(2019), [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2023), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), - [sym_block_comment] = ACTIONS(3), - }, - [491] = { - [sym_token_tree] = STATE(469), - [sym_token_repetition] = STATE(469), - [sym__literal] = STATE(469), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(469), - [sym_identifier] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_RBRACK] = ACTIONS(2015), - [anon_sym_DOLLAR] = ACTIONS(2009), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), - [anon_sym_as] = ACTIONS(2095), - [anon_sym_async] = ACTIONS(2095), - [anon_sym_await] = 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_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_where] = ACTIONS(2095), - [anon_sym_while] = ACTIONS(2095), - [sym_mutable_specifier] = ACTIONS(2095), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2095), - [sym_super] = ACTIONS(2095), - [sym_crate] = ACTIONS(2095), - [sym_metavariable] = ACTIONS(2097), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(2031), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [492] = { - [sym_token_tree] = STATE(401), - [sym_token_repetition] = STATE(401), - [sym__literal] = STATE(401), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(401), + [495] = { + [sym_token_tree] = STATE(287), + [sym_token_repetition] = STATE(287), + [sym__literal] = STATE(287), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(287), [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), [anon_sym_u8] = ACTIONS(2019), [anon_sym_i8] = ACTIONS(2019), [anon_sym_u16] = ACTIONS(2019), @@ -58149,33 +58463,107 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2019), [anon_sym_while] = ACTIONS(2019), [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2019), [sym_super] = ACTIONS(2019), [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2023), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(2031), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [493] = { - [sym_token_tree] = STATE(401), - [sym_token_repetition] = STATE(401), - [sym__literal] = STATE(401), - [sym_string_literal] = STATE(514), - [sym_boolean_literal] = STATE(514), - [aux_sym_token_tree_repeat1] = STATE(401), + [496] = { + [sym_token_tree] = STATE(492), + [sym_token_repetition] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_await] = 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_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_where] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [sym_mutable_specifier] = ACTIONS(2111), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_crate] = ACTIONS(2111), + [sym_metavariable] = ACTIONS(2113), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), + [sym_block_comment] = ACTIONS(3), + }, + [497] = { + [sym_token_tree] = STATE(287), + [sym_token_repetition] = STATE(287), + [sym__literal] = STATE(287), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(287), [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_RBRACK] = ACTIONS(2093), - [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2029), [anon_sym_u8] = ACTIONS(2019), [anon_sym_i8] = ACTIONS(2019), [anon_sym_u16] = ACTIONS(2019), @@ -58223,1726 +58611,1310 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2019), [anon_sym_while] = ACTIONS(2019), [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2019), [sym_super] = ACTIONS(2019), [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2023), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), - [sym_block_comment] = ACTIONS(3), - }, - [494] = { - [sym_attribute_item] = STATE(582), - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_macro_invocation] = STATE(2404), - [sym_scoped_identifier] = STATE(1493), - [sym_scoped_type_identifier] = STATE(1824), - [sym_match_pattern] = STATE(2400), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1839), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_enum_variant_list_repeat1] = STATE(582), - [sym_identifier] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), - [sym_block_comment] = ACTIONS(3), - }, - [495] = { - [sym_attribute_item] = STATE(503), - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym_visibility_modifier] = STATE(663), - [sym__type] = STATE(1673), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_enum_variant_list_repeat1] = STATE(503), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_pub] = ACTIONS(2105), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(2111), - [sym_metavariable] = ACTIONS(890), - [sym_block_comment] = ACTIONS(3), - }, - [496] = { - [sym_attribute_item] = STATE(582), - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_macro_invocation] = STATE(2404), - [sym_scoped_identifier] = STATE(1493), - [sym_scoped_type_identifier] = STATE(1824), - [sym_match_pattern] = STATE(2404), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1839), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [aux_sym_enum_variant_list_repeat1] = STATE(582), - [sym_identifier] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), - [sym_block_comment] = ACTIONS(3), - }, - [497] = { - [sym_attribute_item] = STATE(505), - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym_visibility_modifier] = STATE(612), - [sym__type] = STATE(1837), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_enum_variant_list_repeat1] = STATE(505), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_pub] = ACTIONS(2105), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(2111), - [sym_metavariable] = ACTIONS(890), + [sym_metavariable] = ACTIONS(2031), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, [498] = { - [sym_attribute_item] = STATE(505), - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym_visibility_modifier] = STATE(612), - [sym__type] = STATE(1837), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_enum_variant_list_repeat1] = STATE(505), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_pub] = ACTIONS(2105), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(2111), - [sym_metavariable] = ACTIONS(890), + [sym_token_tree] = STATE(489), + [sym_token_repetition] = STATE(489), + [sym__literal] = STATE(489), + [sym_string_literal] = STATE(513), + [sym_boolean_literal] = STATE(513), + [aux_sym_token_tree_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_RBRACK] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2029), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [anon_sym_as] = ACTIONS(2115), + [anon_sym_async] = ACTIONS(2115), + [anon_sym_await] = 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_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_where] = ACTIONS(2115), + [anon_sym_while] = ACTIONS(2115), + [sym_mutable_specifier] = ACTIONS(2115), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2115), + [sym_super] = ACTIONS(2115), + [sym_crate] = ACTIONS(2115), + [sym_metavariable] = ACTIONS(2117), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, [499] = { - [sym_attribute_item] = STATE(505), - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym_visibility_modifier] = STATE(612), - [sym__type] = STATE(1837), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_enum_variant_list_repeat1] = STATE(505), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_pub] = ACTIONS(2105), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_attribute_item] = STATE(592), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_macro_invocation] = STATE(2261), + [sym_scoped_identifier] = STATE(1472), + [sym_scoped_type_identifier] = STATE(1899), + [sym_match_pattern] = STATE(2261), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1855), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_enum_variant_list_repeat1] = STATE(592), + [sym_identifier] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(2111), - [sym_metavariable] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [500] = { - [sym_attribute_item] = STATE(505), - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym_visibility_modifier] = STATE(612), - [sym__type] = STATE(1837), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_enum_variant_list_repeat1] = STATE(505), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(2119), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_pub] = ACTIONS(2105), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_attribute_item] = STATE(592), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_macro_invocation] = STATE(2261), + [sym_scoped_identifier] = STATE(1472), + [sym_scoped_type_identifier] = STATE(1899), + [sym_match_pattern] = STATE(2260), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1855), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [aux_sym_enum_variant_list_repeat1] = STATE(592), + [sym_identifier] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_POUND] = ACTIONS(359), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(2111), - [sym_metavariable] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [501] = { - [sym_attribute_item] = STATE(505), - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym_visibility_modifier] = STATE(612), - [sym__type] = STATE(1837), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_enum_variant_list_repeat1] = STATE(505), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), + [sym_attribute_item] = STATE(510), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym_visibility_modifier] = STATE(683), + [sym__type] = STATE(1720), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_enum_variant_list_repeat1] = STATE(510), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), [anon_sym_RPAREN] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_pub] = ACTIONS(2105), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(2129), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(2111), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2131), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [502] = { - [sym_attribute_item] = STATE(505), - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym_visibility_modifier] = STATE(612), - [sym__type] = STATE(1837), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_enum_variant_list_repeat1] = STATE(505), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(2123), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_pub] = ACTIONS(2105), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_attribute_item] = STATE(511), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym_visibility_modifier] = STATE(691), + [sym__type] = STATE(1791), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_enum_variant_list_repeat1] = STATE(511), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(2111), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2131), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [503] = { - [sym_attribute_item] = STATE(1055), - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym_visibility_modifier] = STATE(599), - [sym__type] = STATE(1756), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_enum_variant_list_repeat1] = STATE(1055), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_pub] = ACTIONS(2105), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_attribute_item] = STATE(511), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym_visibility_modifier] = STATE(691), + [sym__type] = STATE(1791), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_enum_variant_list_repeat1] = STATE(511), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2135), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(2111), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2131), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [504] = { - [sym_attribute_item] = STATE(505), - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym_visibility_modifier] = STATE(612), - [sym__type] = STATE(1837), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_enum_variant_list_repeat1] = STATE(505), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_pub] = ACTIONS(2105), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_attribute_item] = STATE(511), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym_visibility_modifier] = STATE(691), + [sym__type] = STATE(1791), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_enum_variant_list_repeat1] = STATE(511), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(2111), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2131), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [505] = { - [sym_attribute_item] = STATE(1055), - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym_visibility_modifier] = STATE(635), - [sym__type] = STATE(1782), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_enum_variant_list_repeat1] = STATE(1055), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_pub] = ACTIONS(2105), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_attribute_item] = STATE(511), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym_visibility_modifier] = STATE(691), + [sym__type] = STATE(1791), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_enum_variant_list_repeat1] = STATE(511), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(2111), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2131), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [506] = { - [sym_identifier] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_RPAREN] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_RBRACK] = ACTIONS(2127), - [anon_sym_COLON] = ACTIONS(2129), - [anon_sym_DOLLAR] = ACTIONS(2125), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_await] = 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_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), + [sym_attribute_item] = STATE(511), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym_visibility_modifier] = STATE(691), + [sym__type] = STATE(1791), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_enum_variant_list_repeat1] = STATE(511), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), [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_where] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2127), - [aux_sym_string_literal_token1] = ACTIONS(2127), - [sym_char_literal] = ACTIONS(2127), - [anon_sym_true] = ACTIONS(2125), - [anon_sym_false] = ACTIONS(2125), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_metavariable] = ACTIONS(2127), - [sym_raw_string_literal] = ACTIONS(2127), - [sym_float_literal] = ACTIONS(2127), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2131), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [507] = { - [sym_function_modifiers] = STATE(2292), - [sym_const_parameter] = STATE(1980), - [sym_constrained_type_parameter] = STATE(1731), - [sym_optional_type_parameter] = STATE(1980), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1862), - [sym_bracketed_type] = STATE(2252), - [sym_qualified_type] = STATE(2235), - [sym_lifetime] = STATE(1551), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(2133), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_attribute_item] = STATE(511), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym_visibility_modifier] = STATE(691), + [sym__type] = STATE(1791), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_enum_variant_list_repeat1] = STATE(511), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(2135), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2131), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [508] = { - [sym_identifier] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_RPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_RBRACK] = ACTIONS(2139), - [anon_sym_DOLLAR] = ACTIONS(2137), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_await] = 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_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_where] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [sym_mutable_specifier] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2139), - [aux_sym_string_literal_token1] = ACTIONS(2139), - [sym_char_literal] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2137), - [anon_sym_false] = ACTIONS(2137), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_crate] = ACTIONS(2137), - [sym_metavariable] = ACTIONS(2139), - [sym_raw_string_literal] = ACTIONS(2139), - [sym_float_literal] = ACTIONS(2139), + [sym_attribute_item] = STATE(511), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym_visibility_modifier] = STATE(691), + [sym__type] = STATE(1791), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_enum_variant_list_repeat1] = STATE(511), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2131), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [509] = { - [sym_identifier] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_RPAREN] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_RBRACK] = ACTIONS(582), - [anon_sym_DOLLAR] = ACTIONS(584), - [anon_sym_u8] = ACTIONS(584), - [anon_sym_i8] = ACTIONS(584), - [anon_sym_u16] = ACTIONS(584), - [anon_sym_i16] = ACTIONS(584), - [anon_sym_u32] = ACTIONS(584), - [anon_sym_i32] = ACTIONS(584), - [anon_sym_u64] = ACTIONS(584), - [anon_sym_i64] = ACTIONS(584), - [anon_sym_u128] = ACTIONS(584), - [anon_sym_i128] = ACTIONS(584), - [anon_sym_isize] = ACTIONS(584), - [anon_sym_usize] = ACTIONS(584), - [anon_sym_f32] = ACTIONS(584), - [anon_sym_f64] = ACTIONS(584), - [anon_sym_bool] = ACTIONS(584), - [anon_sym_str] = ACTIONS(584), - [anon_sym_char] = ACTIONS(584), - [aux_sym__non_special_token_token1] = ACTIONS(584), - [anon_sym_SQUOTE] = ACTIONS(584), - [anon_sym_as] = ACTIONS(584), - [anon_sym_async] = ACTIONS(584), - [anon_sym_await] = ACTIONS(584), - [anon_sym_break] = ACTIONS(584), - [anon_sym_const] = ACTIONS(584), - [anon_sym_continue] = ACTIONS(584), - [anon_sym_default] = ACTIONS(584), - [anon_sym_enum] = ACTIONS(584), - [anon_sym_fn] = ACTIONS(584), - [anon_sym_for] = ACTIONS(584), - [anon_sym_if] = ACTIONS(584), - [anon_sym_impl] = ACTIONS(584), - [anon_sym_let] = ACTIONS(584), - [anon_sym_loop] = ACTIONS(584), - [anon_sym_match] = ACTIONS(584), - [anon_sym_mod] = ACTIONS(584), - [anon_sym_pub] = ACTIONS(584), - [anon_sym_return] = ACTIONS(584), - [anon_sym_static] = ACTIONS(584), - [anon_sym_struct] = ACTIONS(584), - [anon_sym_trait] = ACTIONS(584), - [anon_sym_type] = ACTIONS(584), - [anon_sym_union] = ACTIONS(584), - [anon_sym_unsafe] = ACTIONS(584), - [anon_sym_use] = ACTIONS(584), - [anon_sym_where] = ACTIONS(584), - [anon_sym_while] = ACTIONS(584), - [sym_mutable_specifier] = ACTIONS(584), - [sym_integer_literal] = ACTIONS(582), - [aux_sym_string_literal_token1] = ACTIONS(582), - [sym_char_literal] = ACTIONS(582), - [anon_sym_true] = ACTIONS(584), - [anon_sym_false] = ACTIONS(584), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(584), - [sym_super] = ACTIONS(584), - [sym_crate] = ACTIONS(584), - [sym_metavariable] = ACTIONS(582), - [sym_raw_string_literal] = ACTIONS(582), - [sym_float_literal] = ACTIONS(582), + [sym_identifier] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_RPAREN] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_RBRACK] = ACTIONS(2147), + [anon_sym_COLON] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2145), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_as] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_await] = 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_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_where] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [sym_mutable_specifier] = ACTIONS(2145), + [sym_integer_literal] = ACTIONS(2147), + [aux_sym_string_literal_token1] = ACTIONS(2147), + [sym_char_literal] = ACTIONS(2147), + [anon_sym_true] = ACTIONS(2145), + [anon_sym_false] = ACTIONS(2145), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2145), + [sym_super] = ACTIONS(2145), + [sym_crate] = ACTIONS(2145), + [sym_metavariable] = ACTIONS(2147), + [sym_raw_string_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), [sym_block_comment] = ACTIONS(3), }, [510] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1670), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_RBRACK] = ACTIONS(788), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_COMMA] = ACTIONS(796), - [anon_sym_ref] = ACTIONS(694), + [sym_attribute_item] = STATE(1077), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym_visibility_modifier] = STATE(614), + [sym__type] = STATE(1748), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_enum_variant_list_repeat1] = STATE(1077), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2131), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [511] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1701), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_RPAREN] = ACTIONS(2143), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_ref] = ACTIONS(694), + [sym_attribute_item] = STATE(1077), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym_visibility_modifier] = STATE(689), + [sym__type] = STATE(1902), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_enum_variant_list_repeat1] = STATE(1077), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2131), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [512] = { - [sym_parameter] = STATE(1866), - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1672), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(2145), - [anon_sym_union] = ACTIONS(2145), - [anon_sym_ref] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(2147), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_PIPE] = ACTIONS(2149), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_RPAREN] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_RBRACK] = ACTIONS(2153), + [anon_sym_DOLLAR] = ACTIONS(2151), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_as] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_await] = 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_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_where] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [sym_mutable_specifier] = ACTIONS(2151), + [sym_integer_literal] = ACTIONS(2153), + [aux_sym_string_literal_token1] = ACTIONS(2153), + [sym_char_literal] = ACTIONS(2153), + [anon_sym_true] = ACTIONS(2151), + [anon_sym_false] = ACTIONS(2151), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2151), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [sym_super] = ACTIONS(2151), + [sym_crate] = ACTIONS(2151), + [sym_metavariable] = ACTIONS(2153), + [sym_raw_string_literal] = ACTIONS(2153), + [sym_float_literal] = ACTIONS(2153), [sym_block_comment] = ACTIONS(3), }, [513] = { - [sym_identifier] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_RPAREN] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_RBRACE] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_RBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2153), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2153), - [anon_sym_SQUOTE] = ACTIONS(2153), - [anon_sym_as] = ACTIONS(2153), - [anon_sym_async] = ACTIONS(2153), - [anon_sym_await] = 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_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_where] = ACTIONS(2153), - [anon_sym_while] = ACTIONS(2153), - [sym_mutable_specifier] = ACTIONS(2153), - [sym_integer_literal] = ACTIONS(2155), - [aux_sym_string_literal_token1] = ACTIONS(2155), - [sym_char_literal] = ACTIONS(2155), - [anon_sym_true] = ACTIONS(2153), - [anon_sym_false] = ACTIONS(2153), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2153), - [sym_super] = ACTIONS(2153), - [sym_crate] = ACTIONS(2153), - [sym_metavariable] = ACTIONS(2155), - [sym_raw_string_literal] = ACTIONS(2155), - [sym_float_literal] = ACTIONS(2155), + [sym_identifier] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_RPAREN] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_RBRACK] = ACTIONS(2157), + [anon_sym_DOLLAR] = ACTIONS(2155), + [anon_sym_u8] = ACTIONS(2155), + [anon_sym_i8] = ACTIONS(2155), + [anon_sym_u16] = ACTIONS(2155), + [anon_sym_i16] = ACTIONS(2155), + [anon_sym_u32] = ACTIONS(2155), + [anon_sym_i32] = ACTIONS(2155), + [anon_sym_u64] = ACTIONS(2155), + [anon_sym_i64] = ACTIONS(2155), + [anon_sym_u128] = ACTIONS(2155), + [anon_sym_i128] = ACTIONS(2155), + [anon_sym_isize] = ACTIONS(2155), + [anon_sym_usize] = ACTIONS(2155), + [anon_sym_f32] = ACTIONS(2155), + [anon_sym_f64] = ACTIONS(2155), + [anon_sym_bool] = ACTIONS(2155), + [anon_sym_str] = ACTIONS(2155), + [anon_sym_char] = ACTIONS(2155), + [aux_sym__non_special_token_token1] = ACTIONS(2155), + [anon_sym_SQUOTE] = ACTIONS(2155), + [anon_sym_as] = ACTIONS(2155), + [anon_sym_async] = ACTIONS(2155), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_default] = ACTIONS(2155), + [anon_sym_enum] = ACTIONS(2155), + [anon_sym_fn] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_impl] = ACTIONS(2155), + [anon_sym_let] = ACTIONS(2155), + [anon_sym_loop] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_mod] = ACTIONS(2155), + [anon_sym_pub] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_static] = ACTIONS(2155), + [anon_sym_struct] = ACTIONS(2155), + [anon_sym_trait] = ACTIONS(2155), + [anon_sym_type] = ACTIONS(2155), + [anon_sym_union] = ACTIONS(2155), + [anon_sym_unsafe] = ACTIONS(2155), + [anon_sym_use] = ACTIONS(2155), + [anon_sym_where] = ACTIONS(2155), + [anon_sym_while] = ACTIONS(2155), + [sym_mutable_specifier] = ACTIONS(2155), + [sym_integer_literal] = ACTIONS(2157), + [aux_sym_string_literal_token1] = ACTIONS(2157), + [sym_char_literal] = ACTIONS(2157), + [anon_sym_true] = ACTIONS(2155), + [anon_sym_false] = ACTIONS(2155), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2155), + [sym_super] = ACTIONS(2155), + [sym_crate] = ACTIONS(2155), + [sym_metavariable] = ACTIONS(2157), + [sym_raw_string_literal] = ACTIONS(2157), + [sym_float_literal] = ACTIONS(2157), [sym_block_comment] = ACTIONS(3), }, [514] = { - [sym_identifier] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_RPAREN] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_RBRACK] = ACTIONS(2159), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2157), - [anon_sym_i8] = ACTIONS(2157), - [anon_sym_u16] = ACTIONS(2157), - [anon_sym_i16] = ACTIONS(2157), - [anon_sym_u32] = ACTIONS(2157), - [anon_sym_i32] = ACTIONS(2157), - [anon_sym_u64] = ACTIONS(2157), - [anon_sym_i64] = ACTIONS(2157), - [anon_sym_u128] = ACTIONS(2157), - [anon_sym_i128] = ACTIONS(2157), - [anon_sym_isize] = ACTIONS(2157), - [anon_sym_usize] = ACTIONS(2157), - [anon_sym_f32] = ACTIONS(2157), - [anon_sym_f64] = ACTIONS(2157), - [anon_sym_bool] = ACTIONS(2157), - [anon_sym_str] = ACTIONS(2157), - [anon_sym_char] = ACTIONS(2157), - [aux_sym__non_special_token_token1] = ACTIONS(2157), - [anon_sym_SQUOTE] = ACTIONS(2157), - [anon_sym_as] = ACTIONS(2157), - [anon_sym_async] = ACTIONS(2157), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_break] = ACTIONS(2157), - [anon_sym_const] = ACTIONS(2157), - [anon_sym_continue] = ACTIONS(2157), - [anon_sym_default] = ACTIONS(2157), - [anon_sym_enum] = ACTIONS(2157), - [anon_sym_fn] = ACTIONS(2157), - [anon_sym_for] = ACTIONS(2157), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_impl] = ACTIONS(2157), - [anon_sym_let] = ACTIONS(2157), - [anon_sym_loop] = ACTIONS(2157), - [anon_sym_match] = ACTIONS(2157), - [anon_sym_mod] = ACTIONS(2157), - [anon_sym_pub] = ACTIONS(2157), - [anon_sym_return] = ACTIONS(2157), - [anon_sym_static] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2157), - [anon_sym_trait] = ACTIONS(2157), - [anon_sym_type] = ACTIONS(2157), - [anon_sym_union] = ACTIONS(2157), - [anon_sym_unsafe] = ACTIONS(2157), - [anon_sym_use] = ACTIONS(2157), - [anon_sym_where] = ACTIONS(2157), - [anon_sym_while] = ACTIONS(2157), - [sym_mutable_specifier] = ACTIONS(2157), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2159), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2157), - [anon_sym_false] = ACTIONS(2157), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2157), - [sym_super] = ACTIONS(2157), - [sym_crate] = ACTIONS(2157), - [sym_metavariable] = ACTIONS(2159), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_RBRACE] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_RBRACK] = ACTIONS(2161), + [anon_sym_DOLLAR] = ACTIONS(2159), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_as] = ACTIONS(2159), + [anon_sym_async] = ACTIONS(2159), + [anon_sym_await] = 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_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_where] = ACTIONS(2159), + [anon_sym_while] = ACTIONS(2159), + [sym_mutable_specifier] = ACTIONS(2159), + [sym_integer_literal] = ACTIONS(2161), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(2159), + [anon_sym_false] = ACTIONS(2159), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2159), + [sym_super] = ACTIONS(2159), + [sym_crate] = ACTIONS(2159), + [sym_metavariable] = ACTIONS(2161), + [sym_raw_string_literal] = ACTIONS(2161), + [sym_float_literal] = ACTIONS(2161), [sym_block_comment] = ACTIONS(3), }, [515] = { - [sym_identifier] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_RBRACK] = ACTIONS(2163), - [anon_sym_DOLLAR] = ACTIONS(2161), - [anon_sym_u8] = ACTIONS(2161), - [anon_sym_i8] = ACTIONS(2161), - [anon_sym_u16] = ACTIONS(2161), - [anon_sym_i16] = ACTIONS(2161), - [anon_sym_u32] = ACTIONS(2161), - [anon_sym_i32] = ACTIONS(2161), - [anon_sym_u64] = ACTIONS(2161), - [anon_sym_i64] = ACTIONS(2161), - [anon_sym_u128] = ACTIONS(2161), - [anon_sym_i128] = ACTIONS(2161), - [anon_sym_isize] = ACTIONS(2161), - [anon_sym_usize] = ACTIONS(2161), - [anon_sym_f32] = ACTIONS(2161), - [anon_sym_f64] = ACTIONS(2161), - [anon_sym_bool] = ACTIONS(2161), - [anon_sym_str] = ACTIONS(2161), - [anon_sym_char] = ACTIONS(2161), - [aux_sym__non_special_token_token1] = ACTIONS(2161), - [anon_sym_SQUOTE] = ACTIONS(2161), - [anon_sym_as] = ACTIONS(2161), - [anon_sym_async] = ACTIONS(2161), - [anon_sym_await] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_default] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [anon_sym_fn] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_impl] = ACTIONS(2161), - [anon_sym_let] = ACTIONS(2161), - [anon_sym_loop] = ACTIONS(2161), - [anon_sym_match] = ACTIONS(2161), - [anon_sym_mod] = ACTIONS(2161), - [anon_sym_pub] = ACTIONS(2161), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_struct] = ACTIONS(2161), - [anon_sym_trait] = ACTIONS(2161), - [anon_sym_type] = ACTIONS(2161), - [anon_sym_union] = ACTIONS(2161), - [anon_sym_unsafe] = ACTIONS(2161), - [anon_sym_use] = ACTIONS(2161), - [anon_sym_where] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [sym_mutable_specifier] = ACTIONS(2161), - [sym_integer_literal] = ACTIONS(2163), - [aux_sym_string_literal_token1] = ACTIONS(2163), - [sym_char_literal] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2161), - [anon_sym_false] = ACTIONS(2161), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_metavariable] = ACTIONS(2163), - [sym_raw_string_literal] = ACTIONS(2163), - [sym_float_literal] = ACTIONS(2163), - [sym_block_comment] = ACTIONS(3), - }, - [516] = { - [sym_identifier] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_RPAREN] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_RBRACK] = ACTIONS(2167), - [anon_sym_DOLLAR] = ACTIONS(2165), - [anon_sym_u8] = ACTIONS(2165), - [anon_sym_i8] = ACTIONS(2165), - [anon_sym_u16] = ACTIONS(2165), - [anon_sym_i16] = ACTIONS(2165), - [anon_sym_u32] = ACTIONS(2165), - [anon_sym_i32] = ACTIONS(2165), - [anon_sym_u64] = ACTIONS(2165), - [anon_sym_i64] = ACTIONS(2165), - [anon_sym_u128] = ACTIONS(2165), - [anon_sym_i128] = ACTIONS(2165), - [anon_sym_isize] = ACTIONS(2165), - [anon_sym_usize] = ACTIONS(2165), - [anon_sym_f32] = ACTIONS(2165), - [anon_sym_f64] = ACTIONS(2165), - [anon_sym_bool] = ACTIONS(2165), - [anon_sym_str] = ACTIONS(2165), - [anon_sym_char] = ACTIONS(2165), - [aux_sym__non_special_token_token1] = ACTIONS(2165), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_as] = ACTIONS(2165), - [anon_sym_async] = ACTIONS(2165), - [anon_sym_await] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), + [sym_function_modifiers] = STATE(2308), + [sym_const_parameter] = STATE(1830), + [sym_constrained_type_parameter] = STATE(1728), + [sym_optional_type_parameter] = STATE(1830), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1943), + [sym_bracketed_type] = STATE(2289), + [sym_qualified_type] = STATE(2357), + [sym_lifetime] = STATE(1596), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), [anon_sym_const] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_default] = ACTIONS(2165), - [anon_sym_enum] = ACTIONS(2165), - [anon_sym_fn] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_impl] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2165), - [anon_sym_loop] = ACTIONS(2165), - [anon_sym_match] = ACTIONS(2165), - [anon_sym_mod] = ACTIONS(2165), - [anon_sym_pub] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(2165), - [anon_sym_struct] = ACTIONS(2165), - [anon_sym_trait] = ACTIONS(2165), - [anon_sym_type] = ACTIONS(2165), - [anon_sym_union] = ACTIONS(2165), - [anon_sym_unsafe] = ACTIONS(2165), - [anon_sym_use] = ACTIONS(2165), - [anon_sym_where] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [sym_mutable_specifier] = ACTIONS(2165), - [sym_integer_literal] = ACTIONS(2167), - [aux_sym_string_literal_token1] = ACTIONS(2167), - [sym_char_literal] = ACTIONS(2167), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2165), - [sym_super] = ACTIONS(2165), - [sym_crate] = ACTIONS(2165), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), [sym_metavariable] = ACTIONS(2167), - [sym_raw_string_literal] = ACTIONS(2167), - [sym_float_literal] = ACTIONS(2167), [sym_block_comment] = ACTIONS(3), }, - [517] = { - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(457), - [anon_sym_RPAREN] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(457), - [anon_sym_RBRACE] = ACTIONS(457), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(457), - [anon_sym_DOLLAR] = ACTIONS(459), - [anon_sym_u8] = ACTIONS(459), - [anon_sym_i8] = ACTIONS(459), - [anon_sym_u16] = ACTIONS(459), - [anon_sym_i16] = ACTIONS(459), - [anon_sym_u32] = ACTIONS(459), - [anon_sym_i32] = ACTIONS(459), - [anon_sym_u64] = ACTIONS(459), - [anon_sym_i64] = ACTIONS(459), - [anon_sym_u128] = ACTIONS(459), - [anon_sym_i128] = ACTIONS(459), - [anon_sym_isize] = ACTIONS(459), - [anon_sym_usize] = ACTIONS(459), - [anon_sym_f32] = ACTIONS(459), - [anon_sym_f64] = ACTIONS(459), - [anon_sym_bool] = ACTIONS(459), - [anon_sym_str] = ACTIONS(459), - [anon_sym_char] = ACTIONS(459), - [aux_sym__non_special_token_token1] = ACTIONS(459), - [anon_sym_SQUOTE] = ACTIONS(459), - [anon_sym_as] = ACTIONS(459), - [anon_sym_async] = ACTIONS(459), - [anon_sym_await] = ACTIONS(459), - [anon_sym_break] = ACTIONS(459), - [anon_sym_const] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(459), - [anon_sym_default] = ACTIONS(459), - [anon_sym_enum] = ACTIONS(459), - [anon_sym_fn] = ACTIONS(459), - [anon_sym_for] = ACTIONS(459), - [anon_sym_if] = ACTIONS(459), - [anon_sym_impl] = ACTIONS(459), - [anon_sym_let] = ACTIONS(459), - [anon_sym_loop] = ACTIONS(459), - [anon_sym_match] = ACTIONS(459), - [anon_sym_mod] = ACTIONS(459), - [anon_sym_pub] = ACTIONS(459), - [anon_sym_return] = ACTIONS(459), - [anon_sym_static] = ACTIONS(459), - [anon_sym_struct] = ACTIONS(459), - [anon_sym_trait] = ACTIONS(459), - [anon_sym_type] = ACTIONS(459), - [anon_sym_union] = ACTIONS(459), - [anon_sym_unsafe] = ACTIONS(459), - [anon_sym_use] = ACTIONS(459), - [anon_sym_where] = ACTIONS(459), - [anon_sym_while] = ACTIONS(459), - [sym_mutable_specifier] = ACTIONS(459), - [sym_integer_literal] = ACTIONS(457), - [aux_sym_string_literal_token1] = ACTIONS(457), - [sym_char_literal] = ACTIONS(457), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(459), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(457), - [sym_raw_string_literal] = ACTIONS(457), - [sym_float_literal] = ACTIONS(457), - [sym_block_comment] = ACTIONS(3), - }, - [518] = { + [516] = { [sym_identifier] = ACTIONS(2169), [anon_sym_LPAREN] = ACTIONS(2171), [anon_sym_RPAREN] = ACTIONS(2171), @@ -60003,7 +59975,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2171), [anon_sym_true] = ACTIONS(2169), [anon_sym_false] = ACTIONS(2169), - [sym_line_comment] = ACTIONS(928), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2169), [sym_super] = ACTIONS(2169), [sym_crate] = ACTIONS(2169), @@ -60012,7 +59984,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2171), [sym_block_comment] = ACTIONS(3), }, - [519] = { + [517] = { + [sym_identifier] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_RBRACK] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(429), + [anon_sym_u8] = ACTIONS(429), + [anon_sym_i8] = ACTIONS(429), + [anon_sym_u16] = ACTIONS(429), + [anon_sym_i16] = ACTIONS(429), + [anon_sym_u32] = ACTIONS(429), + [anon_sym_i32] = ACTIONS(429), + [anon_sym_u64] = ACTIONS(429), + [anon_sym_i64] = ACTIONS(429), + [anon_sym_u128] = ACTIONS(429), + [anon_sym_i128] = ACTIONS(429), + [anon_sym_isize] = ACTIONS(429), + [anon_sym_usize] = ACTIONS(429), + [anon_sym_f32] = ACTIONS(429), + [anon_sym_f64] = ACTIONS(429), + [anon_sym_bool] = ACTIONS(429), + [anon_sym_str] = ACTIONS(429), + [anon_sym_char] = ACTIONS(429), + [aux_sym__non_special_token_token1] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(429), + [anon_sym_as] = ACTIONS(429), + [anon_sym_async] = ACTIONS(429), + [anon_sym_await] = ACTIONS(429), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(429), + [anon_sym_continue] = ACTIONS(429), + [anon_sym_default] = ACTIONS(429), + [anon_sym_enum] = ACTIONS(429), + [anon_sym_fn] = ACTIONS(429), + [anon_sym_for] = ACTIONS(429), + [anon_sym_if] = ACTIONS(429), + [anon_sym_impl] = ACTIONS(429), + [anon_sym_let] = ACTIONS(429), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(429), + [anon_sym_mod] = ACTIONS(429), + [anon_sym_pub] = ACTIONS(429), + [anon_sym_return] = ACTIONS(429), + [anon_sym_static] = ACTIONS(429), + [anon_sym_struct] = ACTIONS(429), + [anon_sym_trait] = ACTIONS(429), + [anon_sym_type] = ACTIONS(429), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(429), + [anon_sym_use] = ACTIONS(429), + [anon_sym_where] = ACTIONS(429), + [anon_sym_while] = ACTIONS(429), + [sym_mutable_specifier] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(427), + [aux_sym_string_literal_token1] = ACTIONS(427), + [sym_char_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(429), + [sym_super] = ACTIONS(429), + [sym_crate] = ACTIONS(429), + [sym_metavariable] = ACTIONS(427), + [sym_raw_string_literal] = ACTIONS(427), + [sym_float_literal] = ACTIONS(427), + [sym_block_comment] = ACTIONS(3), + }, + [518] = { [sym_identifier] = ACTIONS(2173), [anon_sym_LPAREN] = ACTIONS(2175), [anon_sym_RPAREN] = ACTIONS(2175), @@ -60073,7 +60115,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2175), [anon_sym_true] = ACTIONS(2173), [anon_sym_false] = ACTIONS(2173), - [sym_line_comment] = ACTIONS(928), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2173), [sym_super] = ACTIONS(2173), [sym_crate] = ACTIONS(2173), @@ -60082,7 +60124,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2175), [sym_block_comment] = ACTIONS(3), }, - [520] = { + [519] = { [sym_identifier] = ACTIONS(2177), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_RPAREN] = ACTIONS(2179), @@ -60143,7 +60185,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2179), [anon_sym_true] = ACTIONS(2177), [anon_sym_false] = ACTIONS(2177), - [sym_line_comment] = ACTIONS(928), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2177), [sym_super] = ACTIONS(2177), [sym_crate] = ACTIONS(2177), @@ -60152,7 +60194,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [521] = { + [520] = { [sym_identifier] = ACTIONS(2181), [anon_sym_LPAREN] = ACTIONS(2183), [anon_sym_RPAREN] = ACTIONS(2183), @@ -60213,7 +60255,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2183), [anon_sym_true] = ACTIONS(2181), [anon_sym_false] = ACTIONS(2181), - [sym_line_comment] = ACTIONS(928), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2181), [sym_super] = ACTIONS(2181), [sym_crate] = ACTIONS(2181), @@ -60222,4568 +60264,4988 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2183), [sym_block_comment] = ACTIONS(3), }, + [521] = { + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1750), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_COMMA] = ACTIONS(794), + [anon_sym_ref] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), + [sym_block_comment] = ACTIONS(3), + }, [522] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1722), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_RPAREN] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_COMMA] = ACTIONS(2187), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1755), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_RBRACK] = ACTIONS(810), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [523] = { - [sym_identifier] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2191), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1786), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), [anon_sym_RPAREN] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2191), - [anon_sym_LBRACK] = ACTIONS(2191), - [anon_sym_RBRACK] = ACTIONS(2191), - [anon_sym_DOLLAR] = ACTIONS(2189), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_as] = ACTIONS(2189), - [anon_sym_async] = ACTIONS(2189), - [anon_sym_await] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), [anon_sym_default] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [anon_sym_fn] = ACTIONS(2189), - [anon_sym_for] = 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_where] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [sym_mutable_specifier] = ACTIONS(2189), - [sym_integer_literal] = ACTIONS(2191), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2191), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2189), - [sym_super] = ACTIONS(2189), - [sym_crate] = ACTIONS(2189), - [sym_metavariable] = ACTIONS(2191), - [sym_raw_string_literal] = ACTIONS(2191), - [sym_float_literal] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2193), + [anon_sym_ref] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [524] = { - [sym_identifier] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_RPAREN] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_RBRACK] = ACTIONS(2195), - [anon_sym_DOLLAR] = ACTIONS(2193), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_as] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_await] = 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_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_where] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [sym_mutable_specifier] = ACTIONS(2193), - [sym_integer_literal] = ACTIONS(2195), - [aux_sym_string_literal_token1] = ACTIONS(2195), - [sym_char_literal] = ACTIONS(2195), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2193), - [sym_super] = ACTIONS(2193), - [sym_crate] = ACTIONS(2193), - [sym_metavariable] = ACTIONS(2195), - [sym_raw_string_literal] = ACTIONS(2195), - [sym_float_literal] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_RPAREN] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_RBRACK] = ACTIONS(2197), + [anon_sym_DOLLAR] = ACTIONS(2195), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [aux_sym__non_special_token_token1] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_where] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [sym_mutable_specifier] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2197), + [aux_sym_string_literal_token1] = ACTIONS(2197), + [sym_char_literal] = ACTIONS(2197), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_metavariable] = ACTIONS(2197), + [sym_raw_string_literal] = ACTIONS(2197), + [sym_float_literal] = ACTIONS(2197), [sym_block_comment] = ACTIONS(3), }, [525] = { - [sym_identifier] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_RPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_RBRACK] = ACTIONS(2199), - [anon_sym_DOLLAR] = ACTIONS(2197), - [anon_sym_u8] = ACTIONS(2197), - [anon_sym_i8] = ACTIONS(2197), - [anon_sym_u16] = ACTIONS(2197), - [anon_sym_i16] = ACTIONS(2197), - [anon_sym_u32] = ACTIONS(2197), - [anon_sym_i32] = ACTIONS(2197), - [anon_sym_u64] = ACTIONS(2197), - [anon_sym_i64] = ACTIONS(2197), - [anon_sym_u128] = ACTIONS(2197), - [anon_sym_i128] = ACTIONS(2197), - [anon_sym_isize] = ACTIONS(2197), - [anon_sym_usize] = ACTIONS(2197), - [anon_sym_f32] = ACTIONS(2197), - [anon_sym_f64] = ACTIONS(2197), - [anon_sym_bool] = ACTIONS(2197), - [anon_sym_str] = ACTIONS(2197), - [anon_sym_char] = ACTIONS(2197), - [aux_sym__non_special_token_token1] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_default] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [anon_sym_fn] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_impl] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_loop] = ACTIONS(2197), - [anon_sym_match] = ACTIONS(2197), - [anon_sym_mod] = ACTIONS(2197), - [anon_sym_pub] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(2197), - [anon_sym_trait] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_union] = ACTIONS(2197), - [anon_sym_unsafe] = ACTIONS(2197), - [anon_sym_use] = ACTIONS(2197), - [anon_sym_where] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [sym_mutable_specifier] = ACTIONS(2197), - [sym_integer_literal] = ACTIONS(2199), - [aux_sym_string_literal_token1] = ACTIONS(2199), - [sym_char_literal] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(2197), - [anon_sym_false] = ACTIONS(2197), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_crate] = ACTIONS(2197), - [sym_metavariable] = ACTIONS(2199), - [sym_raw_string_literal] = ACTIONS(2199), - [sym_float_literal] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2201), + [anon_sym_RPAREN] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_RBRACE] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2201), + [anon_sym_RBRACK] = ACTIONS(2201), + [anon_sym_DOLLAR] = ACTIONS(2199), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_await] = 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_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_where] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [sym_mutable_specifier] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2201), + [aux_sym_string_literal_token1] = ACTIONS(2201), + [sym_char_literal] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2199), + [anon_sym_false] = ACTIONS(2199), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_metavariable] = ACTIONS(2201), + [sym_raw_string_literal] = ACTIONS(2201), + [sym_float_literal] = ACTIONS(2201), [sym_block_comment] = ACTIONS(3), }, [526] = { - [sym_identifier] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_RBRACK] = ACTIONS(2203), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_u8] = ACTIONS(2201), - [anon_sym_i8] = ACTIONS(2201), - [anon_sym_u16] = ACTIONS(2201), - [anon_sym_i16] = ACTIONS(2201), - [anon_sym_u32] = ACTIONS(2201), - [anon_sym_i32] = ACTIONS(2201), - [anon_sym_u64] = ACTIONS(2201), - [anon_sym_i64] = ACTIONS(2201), - [anon_sym_u128] = ACTIONS(2201), - [anon_sym_i128] = ACTIONS(2201), - [anon_sym_isize] = ACTIONS(2201), - [anon_sym_usize] = ACTIONS(2201), - [anon_sym_f32] = ACTIONS(2201), - [anon_sym_f64] = ACTIONS(2201), - [anon_sym_bool] = ACTIONS(2201), - [anon_sym_str] = ACTIONS(2201), - [anon_sym_char] = ACTIONS(2201), - [aux_sym__non_special_token_token1] = ACTIONS(2201), - [anon_sym_SQUOTE] = ACTIONS(2201), - [anon_sym_as] = ACTIONS(2201), - [anon_sym_async] = ACTIONS(2201), - [anon_sym_await] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_default] = ACTIONS(2201), - [anon_sym_enum] = ACTIONS(2201), - [anon_sym_fn] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_impl] = ACTIONS(2201), - [anon_sym_let] = ACTIONS(2201), - [anon_sym_loop] = ACTIONS(2201), - [anon_sym_match] = ACTIONS(2201), - [anon_sym_mod] = ACTIONS(2201), - [anon_sym_pub] = ACTIONS(2201), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_static] = ACTIONS(2201), - [anon_sym_struct] = ACTIONS(2201), - [anon_sym_trait] = ACTIONS(2201), - [anon_sym_type] = ACTIONS(2201), - [anon_sym_union] = ACTIONS(2201), - [anon_sym_unsafe] = ACTIONS(2201), - [anon_sym_use] = ACTIONS(2201), - [anon_sym_where] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [sym_mutable_specifier] = ACTIONS(2201), - [sym_integer_literal] = ACTIONS(2203), - [aux_sym_string_literal_token1] = ACTIONS(2203), - [sym_char_literal] = ACTIONS(2203), - [anon_sym_true] = ACTIONS(2201), - [anon_sym_false] = ACTIONS(2201), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_metavariable] = ACTIONS(2203), - [sym_raw_string_literal] = ACTIONS(2203), - [sym_float_literal] = ACTIONS(2203), + [sym_parameter] = STATE(1914), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1768), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2203), + [anon_sym_union] = ACTIONS(2203), + [anon_sym_ref] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(2205), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_PIPE] = ACTIONS(2207), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [527] = { - [sym_identifier] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_RPAREN] = ACTIONS(2207), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2207), - [anon_sym_RBRACK] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2205), - [anon_sym_i8] = ACTIONS(2205), - [anon_sym_u16] = ACTIONS(2205), - [anon_sym_i16] = ACTIONS(2205), - [anon_sym_u32] = ACTIONS(2205), - [anon_sym_i32] = ACTIONS(2205), - [anon_sym_u64] = ACTIONS(2205), - [anon_sym_i64] = ACTIONS(2205), - [anon_sym_u128] = ACTIONS(2205), - [anon_sym_i128] = ACTIONS(2205), - [anon_sym_isize] = ACTIONS(2205), - [anon_sym_usize] = ACTIONS(2205), - [anon_sym_f32] = ACTIONS(2205), - [anon_sym_f64] = ACTIONS(2205), - [anon_sym_bool] = ACTIONS(2205), - [anon_sym_str] = ACTIONS(2205), - [anon_sym_char] = ACTIONS(2205), - [aux_sym__non_special_token_token1] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_default] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [anon_sym_fn] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_impl] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_loop] = ACTIONS(2205), - [anon_sym_match] = ACTIONS(2205), - [anon_sym_mod] = ACTIONS(2205), - [anon_sym_pub] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_struct] = ACTIONS(2205), - [anon_sym_trait] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_union] = ACTIONS(2205), - [anon_sym_unsafe] = ACTIONS(2205), - [anon_sym_use] = ACTIONS(2205), - [anon_sym_where] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [sym_mutable_specifier] = ACTIONS(2205), - [sym_integer_literal] = ACTIONS(2207), - [aux_sym_string_literal_token1] = ACTIONS(2207), - [sym_char_literal] = ACTIONS(2207), - [anon_sym_true] = ACTIONS(2205), - [anon_sym_false] = ACTIONS(2205), - [sym_line_comment] = ACTIONS(928), - [sym_self] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_crate] = ACTIONS(2205), - [sym_metavariable] = ACTIONS(2207), - [sym_raw_string_literal] = ACTIONS(2207), - [sym_float_literal] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_RBRACK] = ACTIONS(2213), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2211), + [anon_sym_i8] = ACTIONS(2211), + [anon_sym_u16] = ACTIONS(2211), + [anon_sym_i16] = ACTIONS(2211), + [anon_sym_u32] = ACTIONS(2211), + [anon_sym_i32] = ACTIONS(2211), + [anon_sym_u64] = ACTIONS(2211), + [anon_sym_i64] = ACTIONS(2211), + [anon_sym_u128] = ACTIONS(2211), + [anon_sym_i128] = ACTIONS(2211), + [anon_sym_isize] = ACTIONS(2211), + [anon_sym_usize] = ACTIONS(2211), + [anon_sym_f32] = ACTIONS(2211), + [anon_sym_f64] = ACTIONS(2211), + [anon_sym_bool] = ACTIONS(2211), + [anon_sym_str] = ACTIONS(2211), + [anon_sym_char] = ACTIONS(2211), + [aux_sym__non_special_token_token1] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2211), + [anon_sym_as] = ACTIONS(2211), + [anon_sym_async] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(2211), + [anon_sym_break] = ACTIONS(2211), + [anon_sym_const] = ACTIONS(2211), + [anon_sym_continue] = ACTIONS(2211), + [anon_sym_default] = ACTIONS(2211), + [anon_sym_enum] = ACTIONS(2211), + [anon_sym_fn] = ACTIONS(2211), + [anon_sym_for] = ACTIONS(2211), + [anon_sym_if] = ACTIONS(2211), + [anon_sym_impl] = ACTIONS(2211), + [anon_sym_let] = ACTIONS(2211), + [anon_sym_loop] = ACTIONS(2211), + [anon_sym_match] = ACTIONS(2211), + [anon_sym_mod] = ACTIONS(2211), + [anon_sym_pub] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2211), + [anon_sym_static] = ACTIONS(2211), + [anon_sym_struct] = ACTIONS(2211), + [anon_sym_trait] = ACTIONS(2211), + [anon_sym_type] = ACTIONS(2211), + [anon_sym_union] = ACTIONS(2211), + [anon_sym_unsafe] = ACTIONS(2211), + [anon_sym_use] = ACTIONS(2211), + [anon_sym_where] = ACTIONS(2211), + [anon_sym_while] = ACTIONS(2211), + [sym_mutable_specifier] = ACTIONS(2211), + [sym_integer_literal] = ACTIONS(2213), + [aux_sym_string_literal_token1] = ACTIONS(2213), + [sym_char_literal] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2211), + [anon_sym_false] = ACTIONS(2211), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2211), + [sym_super] = ACTIONS(2211), + [sym_crate] = ACTIONS(2211), + [sym_metavariable] = ACTIONS(2213), + [sym_raw_string_literal] = ACTIONS(2213), + [sym_float_literal] = ACTIONS(2213), [sym_block_comment] = ACTIONS(3), }, [528] = { - [sym_parameter] = STATE(2115), - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1929), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(2145), - [anon_sym_union] = ACTIONS(2145), - [anon_sym_ref] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(2147), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2151), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_RPAREN] = ACTIONS(2217), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_RBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2215), + [anon_sym_u8] = ACTIONS(2215), + [anon_sym_i8] = ACTIONS(2215), + [anon_sym_u16] = ACTIONS(2215), + [anon_sym_i16] = ACTIONS(2215), + [anon_sym_u32] = ACTIONS(2215), + [anon_sym_i32] = ACTIONS(2215), + [anon_sym_u64] = ACTIONS(2215), + [anon_sym_i64] = ACTIONS(2215), + [anon_sym_u128] = ACTIONS(2215), + [anon_sym_i128] = ACTIONS(2215), + [anon_sym_isize] = ACTIONS(2215), + [anon_sym_usize] = ACTIONS(2215), + [anon_sym_f32] = ACTIONS(2215), + [anon_sym_f64] = ACTIONS(2215), + [anon_sym_bool] = ACTIONS(2215), + [anon_sym_str] = ACTIONS(2215), + [anon_sym_char] = ACTIONS(2215), + [aux_sym__non_special_token_token1] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_default] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), + [anon_sym_fn] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_impl] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_loop] = ACTIONS(2215), + [anon_sym_match] = ACTIONS(2215), + [anon_sym_mod] = ACTIONS(2215), + [anon_sym_pub] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_struct] = ACTIONS(2215), + [anon_sym_trait] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_union] = ACTIONS(2215), + [anon_sym_unsafe] = ACTIONS(2215), + [anon_sym_use] = ACTIONS(2215), + [anon_sym_where] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [sym_mutable_specifier] = ACTIONS(2215), + [sym_integer_literal] = ACTIONS(2217), + [aux_sym_string_literal_token1] = ACTIONS(2217), + [sym_char_literal] = ACTIONS(2217), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_crate] = ACTIONS(2215), + [sym_metavariable] = ACTIONS(2217), + [sym_raw_string_literal] = ACTIONS(2217), + [sym_float_literal] = ACTIONS(2217), [sym_block_comment] = ACTIONS(3), }, [529] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1709), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_RPAREN] = ACTIONS(2209), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [sym_identifier] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_RPAREN] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_RBRACK] = ACTIONS(2221), + [anon_sym_DOLLAR] = ACTIONS(2219), + [anon_sym_u8] = ACTIONS(2219), + [anon_sym_i8] = ACTIONS(2219), + [anon_sym_u16] = ACTIONS(2219), + [anon_sym_i16] = ACTIONS(2219), + [anon_sym_u32] = ACTIONS(2219), + [anon_sym_i32] = ACTIONS(2219), + [anon_sym_u64] = ACTIONS(2219), + [anon_sym_i64] = ACTIONS(2219), + [anon_sym_u128] = ACTIONS(2219), + [anon_sym_i128] = ACTIONS(2219), + [anon_sym_isize] = ACTIONS(2219), + [anon_sym_usize] = ACTIONS(2219), + [anon_sym_f32] = ACTIONS(2219), + [anon_sym_f64] = ACTIONS(2219), + [anon_sym_bool] = ACTIONS(2219), + [anon_sym_str] = ACTIONS(2219), + [anon_sym_char] = ACTIONS(2219), + [aux_sym__non_special_token_token1] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_impl] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_loop] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_mod] = ACTIONS(2219), + [anon_sym_pub] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_struct] = ACTIONS(2219), + [anon_sym_trait] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_union] = ACTIONS(2219), + [anon_sym_unsafe] = ACTIONS(2219), + [anon_sym_use] = ACTIONS(2219), + [anon_sym_where] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [sym_mutable_specifier] = ACTIONS(2219), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2221), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2219), + [anon_sym_false] = ACTIONS(2219), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_crate] = ACTIONS(2219), + [sym_metavariable] = ACTIONS(2221), + [sym_raw_string_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), [sym_block_comment] = ACTIONS(3), }, [530] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1709), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_RBRACK] = ACTIONS(2211), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [sym_identifier] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_RPAREN] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_RBRACK] = ACTIONS(2225), + [anon_sym_DOLLAR] = ACTIONS(2223), + [anon_sym_u8] = ACTIONS(2223), + [anon_sym_i8] = ACTIONS(2223), + [anon_sym_u16] = ACTIONS(2223), + [anon_sym_i16] = ACTIONS(2223), + [anon_sym_u32] = ACTIONS(2223), + [anon_sym_i32] = ACTIONS(2223), + [anon_sym_u64] = ACTIONS(2223), + [anon_sym_i64] = ACTIONS(2223), + [anon_sym_u128] = ACTIONS(2223), + [anon_sym_i128] = ACTIONS(2223), + [anon_sym_isize] = ACTIONS(2223), + [anon_sym_usize] = ACTIONS(2223), + [anon_sym_f32] = ACTIONS(2223), + [anon_sym_f64] = ACTIONS(2223), + [anon_sym_bool] = ACTIONS(2223), + [anon_sym_str] = ACTIONS(2223), + [anon_sym_char] = ACTIONS(2223), + [aux_sym__non_special_token_token1] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2223), + [anon_sym_as] = ACTIONS(2223), + [anon_sym_async] = ACTIONS(2223), + [anon_sym_await] = ACTIONS(2223), + [anon_sym_break] = ACTIONS(2223), + [anon_sym_const] = ACTIONS(2223), + [anon_sym_continue] = ACTIONS(2223), + [anon_sym_default] = ACTIONS(2223), + [anon_sym_enum] = ACTIONS(2223), + [anon_sym_fn] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_impl] = ACTIONS(2223), + [anon_sym_let] = ACTIONS(2223), + [anon_sym_loop] = ACTIONS(2223), + [anon_sym_match] = ACTIONS(2223), + [anon_sym_mod] = ACTIONS(2223), + [anon_sym_pub] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_static] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2223), + [anon_sym_trait] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2223), + [anon_sym_union] = ACTIONS(2223), + [anon_sym_unsafe] = ACTIONS(2223), + [anon_sym_use] = ACTIONS(2223), + [anon_sym_where] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [sym_mutable_specifier] = ACTIONS(2223), + [sym_integer_literal] = ACTIONS(2225), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(2223), + [anon_sym_false] = ACTIONS(2223), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2223), + [sym_super] = ACTIONS(2223), + [sym_crate] = ACTIONS(2223), + [sym_metavariable] = ACTIONS(2225), + [sym_raw_string_literal] = ACTIONS(2225), + [sym_float_literal] = ACTIONS(2225), [sym_block_comment] = ACTIONS(3), }, [531] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1709), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_RBRACK] = ACTIONS(2213), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [sym_identifier] = ACTIONS(598), + [anon_sym_LPAREN] = ACTIONS(596), + [anon_sym_RPAREN] = ACTIONS(596), + [anon_sym_LBRACE] = ACTIONS(596), + [anon_sym_RBRACE] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_RBRACK] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_u8] = ACTIONS(598), + [anon_sym_i8] = ACTIONS(598), + [anon_sym_u16] = ACTIONS(598), + [anon_sym_i16] = ACTIONS(598), + [anon_sym_u32] = ACTIONS(598), + [anon_sym_i32] = ACTIONS(598), + [anon_sym_u64] = ACTIONS(598), + [anon_sym_i64] = ACTIONS(598), + [anon_sym_u128] = ACTIONS(598), + [anon_sym_i128] = ACTIONS(598), + [anon_sym_isize] = ACTIONS(598), + [anon_sym_usize] = ACTIONS(598), + [anon_sym_f32] = ACTIONS(598), + [anon_sym_f64] = ACTIONS(598), + [anon_sym_bool] = ACTIONS(598), + [anon_sym_str] = ACTIONS(598), + [anon_sym_char] = ACTIONS(598), + [aux_sym__non_special_token_token1] = ACTIONS(598), + [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_as] = ACTIONS(598), + [anon_sym_async] = ACTIONS(598), + [anon_sym_await] = ACTIONS(598), + [anon_sym_break] = ACTIONS(598), + [anon_sym_const] = ACTIONS(598), + [anon_sym_continue] = ACTIONS(598), + [anon_sym_default] = ACTIONS(598), + [anon_sym_enum] = ACTIONS(598), + [anon_sym_fn] = ACTIONS(598), + [anon_sym_for] = ACTIONS(598), + [anon_sym_if] = ACTIONS(598), + [anon_sym_impl] = ACTIONS(598), + [anon_sym_let] = ACTIONS(598), + [anon_sym_loop] = ACTIONS(598), + [anon_sym_match] = ACTIONS(598), + [anon_sym_mod] = ACTIONS(598), + [anon_sym_pub] = ACTIONS(598), + [anon_sym_return] = ACTIONS(598), + [anon_sym_static] = ACTIONS(598), + [anon_sym_struct] = ACTIONS(598), + [anon_sym_trait] = ACTIONS(598), + [anon_sym_type] = ACTIONS(598), + [anon_sym_union] = ACTIONS(598), + [anon_sym_unsafe] = ACTIONS(598), + [anon_sym_use] = ACTIONS(598), + [anon_sym_where] = ACTIONS(598), + [anon_sym_while] = ACTIONS(598), + [sym_mutable_specifier] = ACTIONS(598), + [sym_integer_literal] = ACTIONS(596), + [aux_sym_string_literal_token1] = ACTIONS(596), + [sym_char_literal] = ACTIONS(596), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(598), + [sym_super] = ACTIONS(598), + [sym_crate] = ACTIONS(598), + [sym_metavariable] = ACTIONS(596), + [sym_raw_string_literal] = ACTIONS(596), + [sym_float_literal] = ACTIONS(596), [sym_block_comment] = ACTIONS(3), }, [532] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1709), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_RPAREN] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [sym_identifier] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_RBRACK] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2227), + [anon_sym_u8] = ACTIONS(2227), + [anon_sym_i8] = ACTIONS(2227), + [anon_sym_u16] = ACTIONS(2227), + [anon_sym_i16] = ACTIONS(2227), + [anon_sym_u32] = ACTIONS(2227), + [anon_sym_i32] = ACTIONS(2227), + [anon_sym_u64] = ACTIONS(2227), + [anon_sym_i64] = ACTIONS(2227), + [anon_sym_u128] = ACTIONS(2227), + [anon_sym_i128] = ACTIONS(2227), + [anon_sym_isize] = ACTIONS(2227), + [anon_sym_usize] = ACTIONS(2227), + [anon_sym_f32] = ACTIONS(2227), + [anon_sym_f64] = ACTIONS(2227), + [anon_sym_bool] = ACTIONS(2227), + [anon_sym_str] = ACTIONS(2227), + [anon_sym_char] = ACTIONS(2227), + [aux_sym__non_special_token_token1] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(2227), + [anon_sym_as] = ACTIONS(2227), + [anon_sym_async] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_default] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2227), + [anon_sym_fn] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_impl] = ACTIONS(2227), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_loop] = ACTIONS(2227), + [anon_sym_match] = ACTIONS(2227), + [anon_sym_mod] = ACTIONS(2227), + [anon_sym_pub] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_static] = ACTIONS(2227), + [anon_sym_struct] = ACTIONS(2227), + [anon_sym_trait] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), + [anon_sym_union] = ACTIONS(2227), + [anon_sym_unsafe] = ACTIONS(2227), + [anon_sym_use] = ACTIONS(2227), + [anon_sym_where] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2227), + [sym_mutable_specifier] = ACTIONS(2227), + [sym_integer_literal] = ACTIONS(2229), + [aux_sym_string_literal_token1] = ACTIONS(2229), + [sym_char_literal] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2227), + [sym_super] = ACTIONS(2227), + [sym_crate] = ACTIONS(2227), + [sym_metavariable] = ACTIONS(2229), + [sym_raw_string_literal] = ACTIONS(2229), + [sym_float_literal] = ACTIONS(2229), [sym_block_comment] = ACTIONS(3), }, [533] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1709), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_RPAREN] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1698), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [534] = { - [sym_function_modifiers] = STATE(2292), - [sym_higher_ranked_trait_bound] = STATE(1454), - [sym_removed_trait_bound] = STATE(1454), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1459), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(1460), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(2219), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1698), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [535] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1709), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_RPAREN] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1698), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [536] = { - [sym_function_modifiers] = STATE(2292), - [sym_higher_ranked_trait_bound] = STATE(1505), - [sym_removed_trait_bound] = STATE(1505), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1512), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(1509), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(2219), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1698), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_RBRACK] = ACTIONS(2237), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [537] = { - [sym_function_modifiers] = STATE(2292), - [sym_higher_ranked_trait_bound] = STATE(1505), - [sym_removed_trait_bound] = STATE(1505), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1507), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(1509), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(2219), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_function_modifiers] = STATE(2308), + [sym_higher_ranked_trait_bound] = STATE(1487), + [sym_removed_trait_bound] = STATE(1487), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1485), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(1483), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(2239), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [538] = { - [sym_function_modifiers] = STATE(2292), - [sym_higher_ranked_trait_bound] = STATE(1505), - [sym_removed_trait_bound] = STATE(1505), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1512), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(1513), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(2219), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_function_modifiers] = STATE(2308), + [sym_higher_ranked_trait_bound] = STATE(1539), + [sym_removed_trait_bound] = STATE(1539), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1538), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(1537), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(2239), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [539] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1692), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1698), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [540] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1857), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1698), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_RBRACK] = ACTIONS(2245), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [541] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2045), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_function_modifiers] = STATE(2308), + [sym_higher_ranked_trait_bound] = STATE(1539), + [sym_removed_trait_bound] = STATE(1539), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1535), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(1534), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(2239), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [542] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1784), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_function_modifiers] = STATE(2308), + [sym_higher_ranked_trait_bound] = STATE(1539), + [sym_removed_trait_bound] = STATE(1539), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1535), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(1537), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(2239), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [543] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1366), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_parameter] = STATE(2102), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1824), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2203), + [anon_sym_union] = ACTIONS(2203), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(2205), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [544] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1709), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1383), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [545] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1792), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1858), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [546] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1728), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1698), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [547] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2047), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2099), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [548] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2048), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1325), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(2247), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(2249), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2251), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [549] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2049), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1708), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [550] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1377), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2114), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [551] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(2109), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_PLUS] = ACTIONS(2227), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2133), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(2229), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [552] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1690), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(2231), - [anon_sym_union] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2079), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2233), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [553] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2163), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2217), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [554] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1669), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2080), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(2235), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [555] = { - [sym_function_modifiers] = STATE(2255), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(999), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(2226), - [sym_array_type] = STATE(1010), - [sym_for_lifetimes] = STATE(1220), - [sym_function_type] = STATE(1010), - [sym_tuple_type] = STATE(1010), - [sym_unit_type] = STATE(1010), - [sym_generic_type] = STATE(759), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1010), - [sym_reference_type] = STATE(1010), - [sym_pointer_type] = STATE(1010), - [sym_empty_type] = STATE(1010), - [sym_abstract_type] = STATE(1010), - [sym_dynamic_type] = STATE(1010), - [sym_macro_invocation] = STATE(1010), - [sym_scoped_identifier] = STATE(2195), - [sym_scoped_type_identifier] = STATE(714), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_PLUS] = ACTIONS(2243), - [anon_sym_STAR] = ACTIONS(2245), - [anon_sym_u8] = ACTIONS(2247), - [anon_sym_i8] = ACTIONS(2247), - [anon_sym_u16] = ACTIONS(2247), - [anon_sym_i16] = ACTIONS(2247), - [anon_sym_u32] = ACTIONS(2247), - [anon_sym_i32] = ACTIONS(2247), - [anon_sym_u64] = ACTIONS(2247), - [anon_sym_i64] = ACTIONS(2247), - [anon_sym_u128] = ACTIONS(2247), - [anon_sym_i128] = ACTIONS(2247), - [anon_sym_isize] = ACTIONS(2247), - [anon_sym_usize] = ACTIONS(2247), - [anon_sym_f32] = ACTIONS(2247), - [anon_sym_f64] = ACTIONS(2247), - [anon_sym_bool] = ACTIONS(2247), - [anon_sym_str] = ACTIONS(2247), - [anon_sym_char] = ACTIONS(2247), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_fn] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(2253), - [anon_sym_union] = ACTIONS(2255), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(2257), - [anon_sym_extern] = ACTIONS(692), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(2092), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(2247), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2261), - [anon_sym_dyn] = ACTIONS(2263), - [sym_mutable_specifier] = ACTIONS(2265), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(2253), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2267), - [sym_super] = ACTIONS(2267), - [sym_crate] = ACTIONS(2267), - [sym_metavariable] = ACTIONS(2269), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [556] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1389), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_function_modifiers] = STATE(2292), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1015), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(2247), + [sym_array_type] = STATE(1060), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1060), + [sym_tuple_type] = STATE(1060), + [sym_unit_type] = STATE(1060), + [sym_generic_type] = STATE(799), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1060), + [sym_reference_type] = STATE(1060), + [sym_pointer_type] = STATE(1060), + [sym_empty_type] = STATE(1060), + [sym_abstract_type] = STATE(1060), + [sym_dynamic_type] = STATE(1060), + [sym_macro_invocation] = STATE(1060), + [sym_scoped_identifier] = STATE(2222), + [sym_scoped_type_identifier] = STATE(715), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_PLUS] = ACTIONS(2261), + [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_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(2267), + [anon_sym_fn] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(2271), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(2277), + [anon_sym_AMP] = ACTIONS(2279), + [anon_sym_dyn] = ACTIONS(2281), + [sym_mutable_specifier] = ACTIONS(2283), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_crate] = ACTIONS(2285), + [sym_metavariable] = ACTIONS(2287), [sym_block_comment] = ACTIONS(3), }, [557] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1385), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1775), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(2289), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [558] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2091), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2077), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [559] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1690), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(2231), - [anon_sym_union] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2148), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2271), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [560] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2064), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2019), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [561] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2051), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1763), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2291), + [anon_sym_union] = ACTIONS(2291), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2293), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [562] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1368), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2082), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(2273), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [563] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2052), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2219), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [564] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2153), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2088), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [565] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1374), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1753), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [566] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2057), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2097), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [567] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1329), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_PLUS] = ACTIONS(2227), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1404), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(2275), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [568] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2063), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1325), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(2247), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(2297), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [569] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2078), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1909), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [570] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1329), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_PLUS] = ACTIONS(2227), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2083), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(2277), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2279), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [571] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2090), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2072), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [572] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(2194), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1376), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [573] = { - [sym_bracketed_type] = STATE(2311), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(2294), - [sym_scoped_identifier] = STATE(1269), - [sym_scoped_type_identifier] = STATE(1824), - [sym_const_block] = STATE(1384), - [sym__pattern] = STATE(1760), - [sym_tuple_pattern] = STATE(1384), - [sym_slice_pattern] = STATE(1384), - [sym_tuple_struct_pattern] = STATE(1384), - [sym_struct_pattern] = STATE(1384), - [sym_remaining_field_pattern] = STATE(1384), - [sym_mut_pattern] = STATE(1384), - [sym_range_pattern] = STATE(1384), - [sym_ref_pattern] = STATE(1384), - [sym_captured_pattern] = STATE(1384), - [sym_reference_pattern] = STATE(1384), - [sym_or_pattern] = STATE(1384), - [sym__literal_pattern] = STATE(1320), - [sym_negative_literal] = STATE(1322), - [sym_string_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1080), - [anon_sym_i8] = ACTIONS(1080), - [anon_sym_u16] = ACTIONS(1080), - [anon_sym_i16] = ACTIONS(1080), - [anon_sym_u32] = ACTIONS(1080), - [anon_sym_i32] = ACTIONS(1080), - [anon_sym_u64] = ACTIONS(1080), - [anon_sym_i64] = ACTIONS(1080), - [anon_sym_u128] = ACTIONS(1080), - [anon_sym_i128] = ACTIONS(1080), - [anon_sym_isize] = ACTIONS(1080), - [anon_sym_usize] = ACTIONS(1080), - [anon_sym_f32] = ACTIONS(1080), - [anon_sym_f64] = ACTIONS(1080), - [anon_sym_bool] = ACTIONS(1080), - [anon_sym_str] = ACTIONS(1080), - [anon_sym_char] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_ref] = ACTIONS(694), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1392), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(1088), - [sym_mutable_specifier] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(710), - [sym_integer_literal] = ACTIONS(712), - [aux_sym_string_literal_token1] = ACTIONS(714), - [sym_char_literal] = ACTIONS(712), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1090), - [sym_super] = ACTIONS(1090), - [sym_crate] = ACTIONS(1090), - [sym_metavariable] = ACTIONS(1092), - [sym_raw_string_literal] = ACTIONS(712), - [sym_float_literal] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [574] = { - [sym_function_modifiers] = STATE(2292), - [sym_type_parameters] = STATE(675), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1643), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1653), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1490), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(2283), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1763), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2291), + [anon_sym_union] = ACTIONS(2291), + [anon_sym_ref] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2301), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [575] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1395), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [576] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1393), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [577] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1313), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(567), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(1700), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(2291), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [578] = { - [sym_function_modifiers] = STATE(2292), - [sym_type_parameters] = STATE(688), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1662), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1622), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1492), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(2283), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_bracketed_type] = STATE(2279), + [sym_generic_type] = STATE(2278), + [sym_generic_type_with_turbofish] = STATE(2277), + [sym_scoped_identifier] = STATE(1283), + [sym_scoped_type_identifier] = STATE(1899), + [sym_const_block] = STATE(1377), + [sym__pattern] = STATE(2084), + [sym_tuple_pattern] = STATE(1377), + [sym_slice_pattern] = STATE(1377), + [sym_tuple_struct_pattern] = STATE(1377), + [sym_struct_pattern] = STATE(1377), + [sym_remaining_field_pattern] = STATE(1377), + [sym_mut_pattern] = STATE(1377), + [sym_range_pattern] = STATE(1377), + [sym_ref_pattern] = STATE(1377), + [sym_captured_pattern] = STATE(1377), + [sym_reference_pattern] = STATE(1377), + [sym_or_pattern] = STATE(1377), + [sym__literal_pattern] = STATE(1326), + [sym_negative_literal] = STATE(1331), + [sym_string_literal] = STATE(1331), + [sym_boolean_literal] = STATE(1331), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_ref] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym__] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(714), + [sym_integer_literal] = ACTIONS(716), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_char_literal] = ACTIONS(716), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(716), + [sym_float_literal] = ACTIONS(716), [sym_block_comment] = ACTIONS(3), }, [579] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(2295), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_function_modifiers] = STATE(2308), + [sym_type_parameters] = STATE(680), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1639), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1638), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1498), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(2305), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [580] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1717), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(2063), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(555), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(2309), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [581] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(2299), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_function_modifiers] = STATE(2308), + [sym_type_parameters] = STATE(656), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1680), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1673), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1468), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(2305), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [582] = { - [sym_attribute_item] = STATE(582), - [aux_sym_enum_variant_list_repeat1] = STATE(582), - [sym_identifier] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2303), - [anon_sym_RBRACK] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2303), - [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_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_for] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2301), - [anon_sym_loop] = ACTIONS(2301), - [anon_sym_match] = ACTIONS(2301), - [anon_sym_return] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(2301), - [anon_sym_unsafe] = ACTIONS(2301), - [anon_sym_while] = ACTIONS(2301), - [anon_sym_POUND] = ACTIONS(2305), - [anon_sym_BANG] = ACTIONS(2303), - [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_ref] = ACTIONS(2301), - [anon_sym_LT] = ACTIONS(2303), - [anon_sym_COLON_COLON] = ACTIONS(2303), - [anon_sym__] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2303), - [sym_mutable_specifier] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2303), - [anon_sym_DASH] = ACTIONS(2303), - [anon_sym_PIPE] = ACTIONS(2303), - [anon_sym_move] = ACTIONS(2301), - [sym_integer_literal] = ACTIONS(2303), - [aux_sym_string_literal_token1] = ACTIONS(2303), - [sym_char_literal] = ACTIONS(2303), - [anon_sym_true] = ACTIONS(2301), - [anon_sym_false] = ACTIONS(2301), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1718), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2301), - [sym_super] = ACTIONS(2301), - [sym_crate] = ACTIONS(2301), - [sym_metavariable] = ACTIONS(2303), - [sym_raw_string_literal] = ACTIONS(2303), - [sym_float_literal] = ACTIONS(2303), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [583] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(2062), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(551), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1875), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2315), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_mutable_specifier] = ACTIONS(2308), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [584] = { - [sym_function_modifiers] = STATE(2255), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1018), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(555), - [sym_array_type] = STATE(1010), - [sym_for_lifetimes] = STATE(1220), - [sym_function_type] = STATE(1010), - [sym_tuple_type] = STATE(1010), - [sym_unit_type] = STATE(1010), - [sym_generic_type] = STATE(759), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1010), - [sym_reference_type] = STATE(1010), - [sym_pointer_type] = STATE(1010), - [sym_empty_type] = STATE(1010), - [sym_abstract_type] = STATE(1010), - [sym_dynamic_type] = STATE(1010), - [sym_macro_invocation] = STATE(1010), - [sym_scoped_identifier] = STATE(2195), - [sym_scoped_type_identifier] = STATE(714), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_STAR] = ACTIONS(2245), - [anon_sym_u8] = ACTIONS(2247), - [anon_sym_i8] = ACTIONS(2247), - [anon_sym_u16] = ACTIONS(2247), - [anon_sym_i16] = ACTIONS(2247), - [anon_sym_u32] = ACTIONS(2247), - [anon_sym_i32] = ACTIONS(2247), - [anon_sym_u64] = ACTIONS(2247), - [anon_sym_i64] = ACTIONS(2247), - [anon_sym_u128] = ACTIONS(2247), - [anon_sym_i128] = ACTIONS(2247), - [anon_sym_isize] = ACTIONS(2247), - [anon_sym_usize] = ACTIONS(2247), - [anon_sym_f32] = ACTIONS(2247), - [anon_sym_f64] = ACTIONS(2247), - [anon_sym_bool] = ACTIONS(2247), - [anon_sym_str] = ACTIONS(2247), - [anon_sym_char] = ACTIONS(2247), - [anon_sym_SQUOTE] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_fn] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(2253), - [anon_sym_union] = ACTIONS(2255), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(2257), - [anon_sym_extern] = ACTIONS(692), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1875), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2261), - [anon_sym_dyn] = ACTIONS(2263), - [sym_mutable_specifier] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2267), - [sym_super] = ACTIONS(2267), - [sym_crate] = ACTIONS(2267), - [sym_metavariable] = ACTIONS(2269), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [585] = { - [sym_function_modifiers] = STATE(2292), - [sym_type_parameters] = STATE(596), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1636), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1640), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1463), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2312), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(2283), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_function_modifiers] = STATE(2308), + [sym_type_parameters] = STATE(685), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1648), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1656), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1471), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(2305), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [586] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1759), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(2314), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1875), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [587] = { - [sym_function_modifiers] = STATE(2292), - [sym_type_parameters] = STATE(666), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1621), - [sym_bracketed_type] = STATE(2252), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1609), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1494), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2316), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(2283), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_function_modifiers] = STATE(2308), + [sym_type_parameters] = STATE(687), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1660), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1667), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1495), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(2305), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [588] = { [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1466), - [sym__type] = STATE(1862), - [sym_bracketed_type] = STATE(2252), - [sym_qualified_type] = STATE(2235), - [sym_lifetime] = STATE(2281), - [sym_array_type] = STATE(1305), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1305), - [sym_tuple_type] = STATE(1305), - [sym_unit_type] = STATE(1305), - [sym_generic_type] = STATE(1301), - [sym_generic_type_with_turbofish] = STATE(2253), - [sym_bounded_type] = STATE(1305), - [sym_reference_type] = STATE(1305), - [sym_pointer_type] = STATE(1305), - [sym_empty_type] = STATE(1305), - [sym_abstract_type] = STATE(1305), - [sym_dynamic_type] = STATE(1305), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(2176), - [sym_scoped_type_identifier] = STATE(1262), - [aux_sym_function_modifiers_repeat1] = STATE(1466), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(672), - [anon_sym_const] = ACTIONS(672), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_impl] = ACTIONS(682), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(692), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1059), + [sym_bracketed_type] = STATE(2391), + [sym_lifetime] = STATE(556), + [sym_array_type] = STATE(1060), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1060), + [sym_tuple_type] = STATE(1060), + [sym_unit_type] = STATE(1060), + [sym_generic_type] = STATE(799), + [sym_generic_type_with_turbofish] = STATE(2392), + [sym_bounded_type] = STATE(1060), + [sym_reference_type] = STATE(1060), + [sym_pointer_type] = STATE(1060), + [sym_empty_type] = STATE(1060), + [sym_abstract_type] = STATE(1060), + [sym_dynamic_type] = STATE(1060), + [sym_macro_invocation] = STATE(1060), + [sym_scoped_identifier] = STATE(2222), + [sym_scoped_type_identifier] = STATE(715), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2259), + [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_SQUOTE] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(2267), + [anon_sym_fn] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(2271), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2277), + [anon_sym_AMP] = ACTIONS(2279), + [anon_sym_dyn] = ACTIONS(2281), + [sym_mutable_specifier] = ACTIONS(2325), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_crate] = ACTIONS(2285), + [sym_metavariable] = ACTIONS(2287), + [sym_block_comment] = ACTIONS(3), + }, + [589] = { + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1733), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_block_comment] = ACTIONS(3), + }, + [590] = { + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1340), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(568), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(2329), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_block_comment] = ACTIONS(3), + }, + [591] = { + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1943), + [sym_bracketed_type] = STATE(2289), + [sym_qualified_type] = STATE(2357), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_block_comment] = ACTIONS(3), + }, + [592] = { + [sym_attribute_item] = STATE(592), + [aux_sym_enum_variant_list_repeat1] = STATE(592), + [sym_identifier] = ACTIONS(2331), + [anon_sym_LPAREN] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_RBRACK] = ACTIONS(2333), + [anon_sym_STAR] = ACTIONS(2333), + [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_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_for] = ACTIONS(2331), + [anon_sym_if] = ACTIONS(2331), + [anon_sym_loop] = ACTIONS(2331), + [anon_sym_match] = ACTIONS(2331), + [anon_sym_return] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(2331), + [anon_sym_unsafe] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2331), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2333), + [anon_sym_COMMA] = ACTIONS(2333), + [anon_sym_ref] = ACTIONS(2331), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym__] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2333), + [sym_mutable_specifier] = ACTIONS(2331), + [anon_sym_DOT_DOT] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_PIPE] = ACTIONS(2333), + [anon_sym_move] = ACTIONS(2331), + [sym_integer_literal] = ACTIONS(2333), + [aux_sym_string_literal_token1] = ACTIONS(2333), + [sym_char_literal] = ACTIONS(2333), + [anon_sym_true] = ACTIONS(2331), + [anon_sym_false] = ACTIONS(2331), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2331), + [sym_super] = ACTIONS(2331), + [sym_crate] = ACTIONS(2331), + [sym_metavariable] = ACTIONS(2333), + [sym_raw_string_literal] = ACTIONS(2333), + [sym_float_literal] = ACTIONS(2333), + [sym_block_comment] = ACTIONS(3), + }, + [593] = { + [sym_function_modifiers] = STATE(2308), + [sym_extern_modifier] = STATE(1491), + [sym__type] = STATE(1875), + [sym_bracketed_type] = STATE(2289), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(1333), + [sym_for_lifetimes] = STATE(1179), + [sym_function_type] = STATE(1333), + [sym_tuple_type] = STATE(1333), + [sym_unit_type] = STATE(1333), + [sym_generic_type] = STATE(1305), + [sym_generic_type_with_turbofish] = STATE(2290), + [sym_bounded_type] = STATE(1333), + [sym_reference_type] = STATE(1333), + [sym_pointer_type] = STATE(1333), + [sym_empty_type] = STATE(1333), + [sym_abstract_type] = STATE(1333), + [sym_dynamic_type] = STATE(1333), + [sym_macro_invocation] = STATE(1333), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1269), + [aux_sym_function_modifiers_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, }; @@ -64792,71 +65254,71 @@ static uint16_t ts_small_parse_table[] = { [0] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1309), 1, + STATE(1691), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -64868,7 +65330,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64889,71 +65351,71 @@ static uint16_t ts_small_parse_table[] = { [129] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1954), 1, + STATE(1591), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -64965,7 +65427,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64986,71 +65448,71 @@ static uint16_t ts_small_parse_table[] = { [258] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1541), 1, + STATE(1981), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65062,7 +65524,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65083,71 +65545,71 @@ static uint16_t ts_small_parse_table[] = { [387] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1639), 1, + STATE(2092), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65159,7 +65621,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65180,71 +65642,71 @@ static uint16_t ts_small_parse_table[] = { [516] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1641), 1, + STATE(1784), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65256,7 +65718,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65277,71 +65739,71 @@ static uint16_t ts_small_parse_table[] = { [645] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1537), 1, + STATE(1334), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65353,7 +65815,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65374,71 +65836,71 @@ static uint16_t ts_small_parse_table[] = { [774] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(2146), 1, + STATE(1672), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65450,7 +65912,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65471,71 +65933,71 @@ static uint16_t ts_small_parse_table[] = { [903] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(2318), 1, + ACTIONS(2119), 1, sym_identifier, - STATE(1200), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, sym_for_lifetimes, - STATE(1467), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1644), 1, + STATE(1305), 1, sym_generic_type, - STATE(1645), 1, + STATE(2089), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65547,7 +66009,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65568,71 +66030,71 @@ static uint16_t ts_small_parse_table[] = { [1032] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1835), 1, + STATE(1783), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65644,7 +66106,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65665,71 +66127,71 @@ static uint16_t ts_small_parse_table[] = { [1161] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(2100), 1, + STATE(1823), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65741,7 +66203,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65762,71 +66224,71 @@ static uint16_t ts_small_parse_table[] = { [1290] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1703), 1, + STATE(1573), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65838,7 +66300,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65859,71 +66321,71 @@ static uint16_t ts_small_parse_table[] = { [1419] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(2109), 1, + STATE(1574), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65935,7 +66397,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65956,71 +66418,71 @@ static uint16_t ts_small_parse_table[] = { [1548] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1840), 1, + STATE(2113), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66032,7 +66494,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66053,71 +66515,71 @@ static uint16_t ts_small_parse_table[] = { [1677] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(2102), 1, + STATE(1325), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66129,7 +66591,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66150,71 +66612,71 @@ static uint16_t ts_small_parse_table[] = { [1806] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1600), 1, + STATE(2162), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66226,7 +66688,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66247,71 +66709,71 @@ static uint16_t ts_small_parse_table[] = { [1935] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(2175), 1, + STATE(1520), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66323,7 +66785,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66344,71 +66806,71 @@ static uint16_t ts_small_parse_table[] = { [2064] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1599), 1, + STATE(1645), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66420,7 +66882,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66441,71 +66903,71 @@ static uint16_t ts_small_parse_table[] = { [2193] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1625), 1, + STATE(1880), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66517,7 +66979,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66538,71 +67000,71 @@ static uint16_t ts_small_parse_table[] = { [2322] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1978), 1, + STATE(1996), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66614,7 +67076,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66635,71 +67097,71 @@ static uint16_t ts_small_parse_table[] = { [2451] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1586), 1, + STATE(1567), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66711,7 +67173,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66732,71 +67194,71 @@ static uint16_t ts_small_parse_table[] = { [2580] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1856), 1, + STATE(1765), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66808,7 +67270,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66829,71 +67291,71 @@ static uint16_t ts_small_parse_table[] = { [2709] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1616), 1, + STATE(1336), 1, sym__type, - STATE(2176), 1, + STATE(1342), 1, + sym_lifetime, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66905,7 +67367,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66926,71 +67388,71 @@ static uint16_t ts_small_parse_table[] = { [2838] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1612), 1, + STATE(1675), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67002,7 +67464,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67023,71 +67485,71 @@ static uint16_t ts_small_parse_table[] = { [2967] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1782), 1, + STATE(1683), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67099,7 +67561,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67120,71 +67582,71 @@ static uint16_t ts_small_parse_table[] = { [3096] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1314), 1, + STATE(2003), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67196,7 +67658,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67217,71 +67679,71 @@ static uint16_t ts_small_parse_table[] = { [3225] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1325), 1, + STATE(1599), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67293,7 +67755,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67314,168 +67776,71 @@ static uint16_t ts_small_parse_table[] = { [3354] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_fn, - ACTIONS(680), 1, - anon_sym_for, ACTIONS(682), 1, - anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, - ACTIONS(692), 1, - anon_sym_extern, - ACTIONS(704), 1, - anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, - ACTIONS(872), 1, - anon_sym_LBRACK, - ACTIONS(876), 1, - anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, - ACTIONS(882), 1, - anon_sym_COLON_COLON, - ACTIONS(884), 1, - anon_sym_AMP, - ACTIONS(890), 1, - sym_metavariable, - ACTIONS(2099), 1, - sym_identifier, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1262), 1, - sym_scoped_type_identifier, - STATE(1301), 1, - sym_generic_type, - STATE(1323), 1, - sym__type, - STATE(2176), 1, - sym_scoped_identifier, - STATE(2252), 1, - sym_bracketed_type, - STATE(2253), 1, - sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1466), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(888), 3, - sym_self, - sym_super, - sym_crate, - STATE(1305), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(874), 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, - [3483] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(666), 1, - anon_sym_STAR, - ACTIONS(678), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1982), 1, + STATE(2091), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67487,7 +67852,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67505,74 +67870,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3612] = 32, + [3483] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1327), 1, + STATE(1973), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67584,7 +67949,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67602,74 +67967,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3741] = 32, + [3612] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(680), 1, + ACTIONS(670), 1, + anon_sym_STAR, + ACTIONS(682), 1, + anon_sym_fn, + ACTIONS(684), 1, anon_sym_for, + ACTIONS(686), 1, + anon_sym_impl, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2239), 1, + ACTIONS(708), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2241), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2245), 1, - anon_sym_STAR, - ACTIONS(2249), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2251), 1, - anon_sym_fn, - ACTIONS(2253), 1, - anon_sym_impl, - ACTIONS(2255), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2257), 1, - anon_sym_BANG, - ACTIONS(2259), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2261), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2263), 1, - anon_sym_dyn, - ACTIONS(2269), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(714), 1, + ACTIONS(2119), 1, + sym_identifier, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(759), 1, + STATE(1305), 1, sym_generic_type, - STATE(1051), 1, + STATE(1659), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2195), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_lifetime, - STATE(2255), 1, - sym_function_modifiers, - STATE(2345), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2346), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, + STATE(2308), 1, + sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2267), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1010), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67681,7 +68046,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2247), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67699,74 +68064,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3870] = 32, + [3741] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(680), 1, + ACTIONS(670), 1, + anon_sym_STAR, + ACTIONS(682), 1, + anon_sym_fn, + ACTIONS(684), 1, anon_sym_for, + ACTIONS(686), 1, + anon_sym_impl, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2239), 1, + ACTIONS(708), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2241), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2245), 1, - anon_sym_STAR, - ACTIONS(2249), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2251), 1, - anon_sym_fn, - ACTIONS(2253), 1, - anon_sym_impl, - ACTIONS(2255), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2257), 1, - anon_sym_BANG, - ACTIONS(2259), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2261), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2263), 1, - anon_sym_dyn, - ACTIONS(2269), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(714), 1, + ACTIONS(2119), 1, + sym_identifier, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(759), 1, + STATE(1305), 1, sym_generic_type, - STATE(1054), 1, + STATE(1992), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2195), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_lifetime, - STATE(2255), 1, - sym_function_modifiers, - STATE(2345), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2346), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, + STATE(2308), 1, + sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2267), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1010), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67778,7 +68143,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2247), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67796,74 +68161,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3999] = 32, + [3870] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(680), 1, + ACTIONS(670), 1, + anon_sym_STAR, + ACTIONS(682), 1, + anon_sym_fn, + ACTIONS(684), 1, anon_sym_for, + ACTIONS(686), 1, + anon_sym_impl, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2239), 1, + ACTIONS(708), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2241), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2245), 1, - anon_sym_STAR, - ACTIONS(2249), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2251), 1, - anon_sym_fn, - ACTIONS(2253), 1, - anon_sym_impl, - ACTIONS(2255), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2257), 1, - anon_sym_BANG, - ACTIONS(2259), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2261), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2263), 1, - anon_sym_dyn, - ACTIONS(2269), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(714), 1, + ACTIONS(2119), 1, + sym_identifier, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(759), 1, + STATE(1305), 1, sym_generic_type, - STATE(1061), 1, + STATE(1663), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2195), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_lifetime, - STATE(2255), 1, - sym_function_modifiers, - STATE(2345), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2346), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, + STATE(2308), 1, + sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2267), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1010), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67875,7 +68240,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2247), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67893,74 +68258,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4128] = 32, + [3999] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1834), 1, + STATE(1579), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67972,7 +68337,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67990,74 +68355,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4257] = 32, + [4128] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1973), 1, + STATE(2140), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68069,7 +68434,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68087,74 +68452,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4386] = 32, + [4257] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(680), 1, + ACTIONS(670), 1, + anon_sym_STAR, + ACTIONS(682), 1, + anon_sym_fn, + ACTIONS(684), 1, anon_sym_for, + ACTIONS(686), 1, + anon_sym_impl, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2239), 1, + ACTIONS(708), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2241), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2245), 1, - anon_sym_STAR, - ACTIONS(2249), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2251), 1, - anon_sym_fn, - ACTIONS(2253), 1, - anon_sym_impl, - ACTIONS(2255), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2257), 1, - anon_sym_BANG, - ACTIONS(2259), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2261), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2263), 1, - anon_sym_dyn, - ACTIONS(2269), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(714), 1, + ACTIONS(2119), 1, + sym_identifier, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(759), 1, + STATE(1305), 1, sym_generic_type, - STATE(1063), 1, + STATE(1589), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2195), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_lifetime, - STATE(2255), 1, - sym_function_modifiers, - STATE(2345), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2346), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, + STATE(2308), 1, + sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2267), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1010), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68166,7 +68531,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2247), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68184,74 +68549,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4515] = 32, + [4386] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1306), 1, + STATE(1335), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68263,7 +68628,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68281,74 +68646,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4644] = 32, + [4515] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1307), 1, + STATE(1661), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68360,7 +68725,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68378,74 +68743,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4773] = 32, + [4644] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1833), 1, + STATE(1954), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68457,7 +68822,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68475,74 +68840,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4902] = 32, + [4773] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1651), 1, + STATE(1881), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68554,7 +68919,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68572,171 +68937,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5031] = 32, + [4902] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, - anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, - anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, - ACTIONS(692), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, - anon_sym_dyn, - ACTIONS(868), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(872), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(876), 1, - anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, - ACTIONS(882), 1, - anon_sym_COLON_COLON, - ACTIONS(884), 1, - anon_sym_AMP, - ACTIONS(890), 1, - sym_metavariable, - ACTIONS(2099), 1, - sym_identifier, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1262), 1, - sym_scoped_type_identifier, - STATE(1301), 1, - sym_generic_type, - STATE(2114), 1, - sym__type, - STATE(2176), 1, - sym_scoped_identifier, - STATE(2252), 1, - sym_bracketed_type, - STATE(2253), 1, - sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1466), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(888), 3, - sym_self, - sym_super, - sym_crate, - STATE(1305), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(874), 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, - [5160] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(2263), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(2267), 1, + anon_sym_default, + ACTIONS(2269), 1, anon_sym_fn, - ACTIONS(680), 1, - anon_sym_for, - ACTIONS(682), 1, + ACTIONS(2271), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, - ACTIONS(692), 1, - anon_sym_extern, - ACTIONS(704), 1, - anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, - ACTIONS(872), 1, - anon_sym_LBRACK, - ACTIONS(876), 1, - anon_sym_default, - ACTIONS(878), 1, + ACTIONS(2273), 1, anon_sym_union, - ACTIONS(882), 1, + ACTIONS(2275), 1, + anon_sym_BANG, + ACTIONS(2277), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2099), 1, - sym_identifier, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1262), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(799), 1, sym_generic_type, - STATE(1901), 1, + STATE(1016), 1, sym__type, - STATE(2176), 1, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2252), 1, - sym_bracketed_type, - STATE(2253), 1, - sym_generic_type_with_turbofish, - STATE(2281), 1, + STATE(2247), 1, sym_lifetime, STATE(2292), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2285), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68748,7 +69016,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68766,74 +69034,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5289] = 32, + [5031] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1623), 1, + STATE(1948), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68845,7 +69113,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68863,74 +69131,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5418] = 32, + [5160] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1942), 1, + STATE(1315), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68942,7 +69210,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68960,74 +69228,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5547] = 32, + [5289] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1850), 1, + STATE(1322), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69039,7 +69307,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69057,74 +69325,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5676] = 32, + [5418] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1660), 1, + STATE(2107), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69136,7 +69404,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69154,74 +69422,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5805] = 32, + [5547] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1759), 1, + STATE(1318), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69233,7 +69501,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69251,74 +69519,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5934] = 32, + [5676] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1798), 1, + STATE(1336), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69330,7 +69598,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69348,74 +69616,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6063] = 32, + [5805] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1584), 1, + STATE(1888), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69427,7 +69695,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69445,171 +69713,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6192] = 32, + [5934] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_fn, - ACTIONS(680), 1, - anon_sym_for, ACTIONS(682), 1, - anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, - ACTIONS(692), 1, - anon_sym_extern, - ACTIONS(704), 1, - anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, - ACTIONS(872), 1, - anon_sym_LBRACK, - ACTIONS(876), 1, - anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, - ACTIONS(882), 1, - anon_sym_COLON_COLON, - ACTIONS(884), 1, - anon_sym_AMP, - ACTIONS(890), 1, - sym_metavariable, - ACTIONS(2099), 1, - sym_identifier, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1262), 1, - sym_scoped_type_identifier, - STATE(1301), 1, - sym_generic_type, - STATE(1583), 1, - sym__type, - STATE(2176), 1, - sym_scoped_identifier, - STATE(2252), 1, - sym_bracketed_type, - STATE(2253), 1, - sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1466), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(888), 3, - sym_self, - sym_super, - sym_crate, - STATE(1305), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(874), 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, - [6321] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(666), 1, - anon_sym_STAR, - ACTIONS(678), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1308), 1, + STATE(2033), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69621,7 +69792,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69639,74 +69810,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6450] = 32, + [6063] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1557), 1, + STATE(1679), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69718,7 +69889,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69736,74 +69907,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6579] = 32, + [6192] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1963), 1, + STATE(1343), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69815,7 +69986,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69833,74 +70004,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6708] = 32, + [6321] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(2070), 1, + STATE(1597), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69912,7 +70083,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69930,74 +70101,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6837] = 32, + [6450] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1326), 1, + STATE(1319), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70009,7 +70180,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70027,74 +70198,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6966] = 32, + [6579] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1553), 1, + STATE(1562), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70106,7 +70277,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70124,74 +70295,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7095] = 32, + [6708] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1324), 1, - sym_lifetime, - STATE(1326), 1, + STATE(1634), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70203,7 +70374,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70221,74 +70392,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7224] = 32, + [6837] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1328), 1, + STATE(1570), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70300,7 +70471,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70318,74 +70489,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7353] = 32, + [6966] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1777), 1, + STATE(1999), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70397,7 +70568,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70415,74 +70586,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7482] = 32, + [7095] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1565), 1, + STATE(1633), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70494,7 +70665,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70512,74 +70683,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7611] = 32, + [7224] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1529), 1, + STATE(2024), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70591,7 +70762,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70609,74 +70780,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7740] = 32, + [7353] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1556), 1, + STATE(1622), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70688,7 +70859,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70706,74 +70877,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7869] = 32, + [7482] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, - anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, - anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, - ACTIONS(692), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, - anon_sym_dyn, - ACTIONS(868), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(872), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(876), 1, + ACTIONS(2263), 1, + anon_sym_STAR, + ACTIONS(2267), 1, anon_sym_default, - ACTIONS(878), 1, + ACTIONS(2269), 1, + anon_sym_fn, + ACTIONS(2271), 1, + anon_sym_impl, + ACTIONS(2273), 1, anon_sym_union, - ACTIONS(882), 1, + ACTIONS(2275), 1, + anon_sym_BANG, + ACTIONS(2277), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2099), 1, - sym_identifier, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1262), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(799), 1, sym_generic_type, - STATE(1956), 1, + STATE(1015), 1, sym__type, - STATE(2176), 1, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2252), 1, - sym_bracketed_type, - STATE(2253), 1, - sym_generic_type_with_turbofish, - STATE(2281), 1, + STATE(2247), 1, sym_lifetime, STATE(2292), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2285), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70785,7 +70956,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70803,74 +70974,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7998] = 32, + [7611] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1619), 1, + STATE(1864), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70882,7 +71053,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70900,74 +71071,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8127] = 32, + [7740] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(2118), 1, + STATE(1685), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70979,7 +71150,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70997,74 +71168,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8256] = 32, + [7869] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1561), 1, + STATE(1601), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71076,7 +71247,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71094,74 +71265,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8385] = 32, + [7998] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, - sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + ACTIONS(2340), 1, + sym_identifier, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1467), 1, sym_scoped_type_identifier, - STATE(1301), 1, - sym_generic_type, - STATE(1657), 1, + STATE(1643), 1, sym__type, - STATE(2176), 1, + STATE(1678), 1, + sym_generic_type, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71173,7 +71344,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71191,74 +71362,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8514] = 32, + [8127] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1736), 1, + STATE(1324), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71270,7 +71441,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71288,74 +71459,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8643] = 32, + [8256] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(692), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - ACTIONS(2237), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2239), 1, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2241), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(2245), 1, + ACTIONS(2263), 1, anon_sym_STAR, - ACTIONS(2249), 1, + ACTIONS(2267), 1, anon_sym_default, - ACTIONS(2251), 1, + ACTIONS(2269), 1, anon_sym_fn, - ACTIONS(2253), 1, + ACTIONS(2271), 1, anon_sym_impl, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_union, - ACTIONS(2257), 1, + ACTIONS(2275), 1, anon_sym_BANG, - ACTIONS(2259), 1, + ACTIONS(2277), 1, anon_sym_COLON_COLON, - ACTIONS(2261), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(2263), 1, + ACTIONS(2281), 1, anon_sym_dyn, - ACTIONS(2269), 1, + ACTIONS(2287), 1, sym_metavariable, - STATE(714), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(759), 1, + STATE(799), 1, sym_generic_type, - STATE(998), 1, + STATE(987), 1, sym__type, - STATE(1220), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(2195), 1, + STATE(2222), 1, sym_scoped_identifier, - STATE(2226), 1, + STATE(2247), 1, sym_lifetime, - STATE(2255), 1, + STATE(2292), 1, sym_function_modifiers, - STATE(2345), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2346), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2267), 3, + ACTIONS(2285), 3, sym_self, sym_super, sym_crate, - STATE(1010), 11, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71367,7 +71538,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2247), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71385,74 +71556,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8772] = 32, + [8385] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1985), 1, + STATE(1903), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71464,7 +71635,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71482,74 +71653,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8901] = 32, + [8514] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(680), 1, + ACTIONS(670), 1, + anon_sym_STAR, + ACTIONS(682), 1, + anon_sym_fn, + ACTIONS(684), 1, anon_sym_for, + ACTIONS(686), 1, + anon_sym_impl, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2239), 1, + ACTIONS(708), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2241), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2245), 1, - anon_sym_STAR, - ACTIONS(2249), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2251), 1, - anon_sym_fn, - ACTIONS(2253), 1, - anon_sym_impl, - ACTIONS(2255), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2257), 1, - anon_sym_BANG, - ACTIONS(2259), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2261), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2263), 1, - anon_sym_dyn, - ACTIONS(2269), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(714), 1, + ACTIONS(2119), 1, + sym_identifier, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(759), 1, + STATE(1305), 1, sym_generic_type, - STATE(1022), 1, + STATE(2051), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2195), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_lifetime, - STATE(2255), 1, - sym_function_modifiers, - STATE(2345), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2346), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, + STATE(2308), 1, + sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2267), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1010), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71561,7 +71732,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2247), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71579,74 +71750,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9030] = 32, + [8643] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1730), 1, + STATE(2023), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71658,7 +71829,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71676,74 +71847,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9159] = 32, + [8772] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(2176), 1, - sym_scoped_identifier, - STATE(2203), 1, + STATE(1657), 1, sym__type, - STATE(2252), 1, + STATE(2194), 1, + sym_scoped_identifier, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71755,7 +71926,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71773,74 +71944,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9288] = 32, + [8901] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, - anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, - anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, - ACTIONS(692), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, - anon_sym_dyn, - ACTIONS(868), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(872), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(876), 1, + ACTIONS(2263), 1, + anon_sym_STAR, + ACTIONS(2267), 1, anon_sym_default, - ACTIONS(878), 1, + ACTIONS(2269), 1, + anon_sym_fn, + ACTIONS(2271), 1, + anon_sym_impl, + ACTIONS(2273), 1, anon_sym_union, - ACTIONS(882), 1, + ACTIONS(2275), 1, + anon_sym_BANG, + ACTIONS(2277), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2099), 1, - sym_identifier, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1262), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(799), 1, sym_generic_type, - STATE(1733), 1, + STATE(1012), 1, sym__type, - STATE(2176), 1, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2252), 1, - sym_bracketed_type, - STATE(2253), 1, - sym_generic_type_with_turbofish, - STATE(2281), 1, + STATE(2247), 1, sym_lifetime, STATE(2292), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2285), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71852,7 +72023,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71870,74 +72041,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9417] = 32, + [9030] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1624), 1, + STATE(1958), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71949,7 +72120,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71967,74 +72138,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9546] = 32, + [9159] = 33, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + ACTIONS(2342), 1, + sym_self, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1756), 1, + STATE(1343), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + ACTIONS(892), 2, + sym_super, + sym_crate, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, - sym_self, - sym_super, - sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72046,7 +72218,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72064,74 +72236,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9675] = 32, + [9290] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1329), 1, + STATE(2015), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72143,7 +72315,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72161,74 +72333,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9804] = 32, + [9419] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(2026), 1, + STATE(1665), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72240,7 +72412,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72258,74 +72430,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9933] = 32, + [9548] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(2320), 1, + ACTIONS(2119), 1, sym_identifier, - STATE(1200), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, sym_for_lifetimes, - STATE(1471), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1598), 1, + STATE(1305), 1, sym_generic_type, - STATE(1649), 1, + STATE(1689), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72337,7 +72509,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72355,74 +72527,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10062] = 32, + [9677] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(680), 1, + ACTIONS(670), 1, + anon_sym_STAR, + ACTIONS(682), 1, + anon_sym_fn, + ACTIONS(684), 1, anon_sym_for, + ACTIONS(686), 1, + anon_sym_impl, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2239), 1, + ACTIONS(708), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2241), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2245), 1, - anon_sym_STAR, - ACTIONS(2249), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2251), 1, - anon_sym_fn, - ACTIONS(2253), 1, - anon_sym_impl, - ACTIONS(2255), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2257), 1, - anon_sym_BANG, - ACTIONS(2259), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2261), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2263), 1, - anon_sym_dyn, - ACTIONS(2269), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(714), 1, + ACTIONS(2119), 1, + sym_identifier, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(759), 1, + STATE(1305), 1, sym_generic_type, - STATE(1002), 1, + STATE(1846), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2195), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_lifetime, - STATE(2255), 1, - sym_function_modifiers, - STATE(2345), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2346), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, + STATE(2308), 1, + sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2267), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1010), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72434,7 +72606,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2247), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72452,74 +72624,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10191] = 32, + [9806] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1620), 1, + STATE(1875), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72531,7 +72703,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72549,74 +72721,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10320] = 32, + [9935] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, - anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, - anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, - ACTIONS(692), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, - anon_sym_dyn, - ACTIONS(868), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(872), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(876), 1, + ACTIONS(2263), 1, + anon_sym_STAR, + ACTIONS(2267), 1, anon_sym_default, - ACTIONS(878), 1, + ACTIONS(2269), 1, + anon_sym_fn, + ACTIONS(2271), 1, + anon_sym_impl, + ACTIONS(2273), 1, anon_sym_union, - ACTIONS(882), 1, + ACTIONS(2275), 1, + anon_sym_BANG, + ACTIONS(2277), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2099), 1, - sym_identifier, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1262), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(799), 1, sym_generic_type, - STATE(1740), 1, + STATE(982), 1, sym__type, - STATE(2176), 1, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2252), 1, - sym_bracketed_type, - STATE(2253), 1, - sym_generic_type_with_turbofish, - STATE(2281), 1, + STATE(2247), 1, sym_lifetime, STATE(2292), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2285), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72628,7 +72800,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72646,74 +72818,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10449] = 32, + [10064] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(680), 1, + ACTIONS(670), 1, + anon_sym_STAR, + ACTIONS(682), 1, + anon_sym_fn, + ACTIONS(684), 1, anon_sym_for, + ACTIONS(686), 1, + anon_sym_impl, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2239), 1, + ACTIONS(708), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2241), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2245), 1, - anon_sym_STAR, - ACTIONS(2249), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2251), 1, - anon_sym_fn, - ACTIONS(2253), 1, - anon_sym_impl, - ACTIONS(2255), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2257), 1, - anon_sym_BANG, - ACTIONS(2259), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2261), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2263), 1, - anon_sym_dyn, - ACTIONS(2269), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(714), 1, + ACTIONS(2119), 1, + sym_identifier, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(759), 1, + STATE(1305), 1, sym_generic_type, - STATE(1024), 1, + STATE(1733), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2195), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_lifetime, - STATE(2255), 1, - sym_function_modifiers, - STATE(2345), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2346), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, + STATE(2308), 1, + sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2267), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1010), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72725,7 +72897,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2247), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72743,74 +72915,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10578] = 32, + [10193] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, - anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, - anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, - ACTIONS(692), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, - anon_sym_dyn, - ACTIONS(868), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(872), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(876), 1, + ACTIONS(2263), 1, + anon_sym_STAR, + ACTIONS(2267), 1, anon_sym_default, - ACTIONS(878), 1, + ACTIONS(2269), 1, + anon_sym_fn, + ACTIONS(2271), 1, + anon_sym_impl, + ACTIONS(2273), 1, anon_sym_union, - ACTIONS(882), 1, + ACTIONS(2275), 1, + anon_sym_BANG, + ACTIONS(2277), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2099), 1, - sym_identifier, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1262), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(799), 1, sym_generic_type, - STATE(1781), 1, + STATE(988), 1, sym__type, - STATE(2176), 1, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2252), 1, - sym_bracketed_type, - STATE(2253), 1, - sym_generic_type_with_turbofish, - STATE(2281), 1, + STATE(2247), 1, sym_lifetime, STATE(2292), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2285), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72822,7 +72994,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72840,74 +73012,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10707] = 32, + [10322] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(680), 1, + ACTIONS(670), 1, + anon_sym_STAR, + ACTIONS(682), 1, + anon_sym_fn, + ACTIONS(684), 1, anon_sym_for, + ACTIONS(686), 1, + anon_sym_impl, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2239), 1, + ACTIONS(708), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2241), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2245), 1, - anon_sym_STAR, - ACTIONS(2249), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2251), 1, - anon_sym_fn, - ACTIONS(2253), 1, - anon_sym_impl, - ACTIONS(2255), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2257), 1, - anon_sym_BANG, - ACTIONS(2259), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2261), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2263), 1, - anon_sym_dyn, - ACTIONS(2269), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(714), 1, + ACTIONS(2119), 1, + sym_identifier, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(759), 1, + STATE(1305), 1, sym_generic_type, - STATE(985), 1, + STATE(2061), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2195), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_lifetime, - STATE(2255), 1, - sym_function_modifiers, - STATE(2345), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2346), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, + STATE(2308), 1, + sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2267), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1010), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72919,7 +73091,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2247), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72937,74 +73109,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10836] = 32, + [10451] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1934), 1, + STATE(1332), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73016,7 +73188,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73034,74 +73206,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10965] = 32, + [10580] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, - anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, - anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, - ACTIONS(692), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, - anon_sym_dyn, - ACTIONS(868), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(872), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(876), 1, + ACTIONS(2263), 1, + anon_sym_STAR, + ACTIONS(2267), 1, anon_sym_default, - ACTIONS(878), 1, + ACTIONS(2269), 1, + anon_sym_fn, + ACTIONS(2271), 1, + anon_sym_impl, + ACTIONS(2273), 1, anon_sym_union, - ACTIONS(882), 1, + ACTIONS(2275), 1, + anon_sym_BANG, + ACTIONS(2277), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2099), 1, - sym_identifier, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1262), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(799), 1, sym_generic_type, - STATE(1775), 1, + STATE(989), 1, sym__type, - STATE(2176), 1, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2252), 1, - sym_bracketed_type, - STATE(2253), 1, - sym_generic_type_with_turbofish, - STATE(2281), 1, + STATE(2247), 1, sym_lifetime, STATE(2292), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2285), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73113,7 +73285,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73131,74 +73303,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11094] = 32, + [10709] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, - anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, - anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, - ACTIONS(692), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, - anon_sym_dyn, - ACTIONS(868), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(872), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(876), 1, + ACTIONS(2263), 1, + anon_sym_STAR, + ACTIONS(2267), 1, anon_sym_default, - ACTIONS(878), 1, + ACTIONS(2269), 1, + anon_sym_fn, + ACTIONS(2271), 1, + anon_sym_impl, + ACTIONS(2273), 1, anon_sym_union, - ACTIONS(882), 1, + ACTIONS(2275), 1, + anon_sym_BANG, + ACTIONS(2277), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(2322), 1, - sym_identifier, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1469), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1634), 1, - sym__type, - STATE(1635), 1, + STATE(799), 1, sym_generic_type, - STATE(2176), 1, + STATE(993), 1, + sym__type, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2252), 1, - sym_bracketed_type, - STATE(2253), 1, - sym_generic_type_with_turbofish, - STATE(2281), 1, + STATE(2247), 1, sym_lifetime, STATE(2292), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2285), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73210,7 +73382,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73228,74 +73400,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11223] = 32, + [10838] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(2054), 1, + STATE(1913), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73307,7 +73479,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73325,74 +73497,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11352] = 32, + [10967] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1971), 1, + STATE(2137), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73404,7 +73576,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73422,74 +73594,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11481] = 32, + [11096] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, - sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + ACTIONS(2344), 1, + sym_identifier, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1477), 1, sym_scoped_type_identifier, - STATE(1301), 1, - sym_generic_type, - STATE(1595), 1, + STATE(1647), 1, sym__type, - STATE(2176), 1, + STATE(1650), 1, + sym_generic_type, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73501,7 +73673,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73519,74 +73691,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11610] = 32, + [11225] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1503), 1, + STATE(1982), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73598,7 +73770,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73616,74 +73788,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11739] = 32, + [11354] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1946), 1, - sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2210), 1, + sym__type, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73695,7 +73867,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73713,74 +73885,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11868] = 32, + [11483] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1969), 1, + STATE(1748), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73792,7 +73964,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73810,74 +73982,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11997] = 32, + [11612] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1948), 1, + STATE(2156), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73889,7 +74061,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73907,74 +74079,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12126] = 32, + [11741] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(680), 1, + ACTIONS(670), 1, + anon_sym_STAR, + ACTIONS(682), 1, + anon_sym_fn, + ACTIONS(684), 1, anon_sym_for, + ACTIONS(686), 1, + anon_sym_impl, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2239), 1, + ACTIONS(708), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2241), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2245), 1, - anon_sym_STAR, - ACTIONS(2249), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2251), 1, - anon_sym_fn, - ACTIONS(2253), 1, - anon_sym_impl, - ACTIONS(2255), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2257), 1, - anon_sym_BANG, - ACTIONS(2259), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2261), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2263), 1, - anon_sym_dyn, - ACTIONS(2269), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(714), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2346), 1, + sym_identifier, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1469), 1, sym_scoped_type_identifier, - STATE(759), 1, - sym_generic_type, - STATE(1028), 1, + STATE(1619), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2195), 1, + STATE(1670), 1, + sym_generic_type, + STATE(2194), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_lifetime, - STATE(2255), 1, - sym_function_modifiers, - STATE(2345), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2346), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, + STATE(2308), 1, + sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2267), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1010), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73986,7 +74158,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2247), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74004,74 +74176,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12255] = 32, + [11870] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1786), 1, + STATE(2006), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74083,7 +74255,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74101,74 +74273,171 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12384] = 32, + [11999] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, + ACTIONS(882), 1, anon_sym_union, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(888), 1, + anon_sym_AMP, + ACTIONS(894), 1, + sym_metavariable, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2348), 1, + sym_identifier, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1463), 1, + sym_scoped_type_identifier, + STATE(1658), 1, + sym__type, + STATE(1682), 1, + sym_generic_type, + STATE(2194), 1, + sym_scoped_identifier, + STATE(2289), 1, + sym_bracketed_type, + STATE(2290), 1, + sym_generic_type_with_turbofish, + STATE(2308), 1, + sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1491), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(676), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(878), 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, + [12128] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(670), 1, + anon_sym_STAR, + ACTIONS(682), 1, + anon_sym_fn, + ACTIONS(684), 1, + anon_sym_for, + ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, + anon_sym_extern, + ACTIONS(708), 1, + anon_sym_dyn, + ACTIONS(872), 1, + anon_sym_LPAREN, + ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, + anon_sym_default, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(2129), 1, + STATE(1938), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74180,7 +74449,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74198,75 +74467,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12513] = 33, + [12257] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - ACTIONS(2324), 1, - sym_self, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1306), 1, + STATE(1841), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(888), 2, - sym_super, - sym_crate, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - STATE(1305), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74278,7 +74546,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74296,74 +74564,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12644] = 32, + [12386] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1904), 1, + STATE(1826), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74375,7 +74643,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74393,74 +74661,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12773] = 32, + [12515] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(2326), 1, + ACTIONS(2119), 1, sym_identifier, - STATE(1200), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, sym_for_lifetimes, - STATE(1475), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1613), 1, + STATE(1305), 1, sym_generic_type, - STATE(1631), 1, + STATE(1902), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74472,7 +74740,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74490,74 +74758,171 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12902] = 32, + [12644] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(684), 1, + anon_sym_for, + ACTIONS(696), 1, + anon_sym_extern, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_LBRACK, + ACTIONS(2263), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(2267), 1, + anon_sym_default, + ACTIONS(2269), 1, anon_sym_fn, - ACTIONS(680), 1, - anon_sym_for, - ACTIONS(682), 1, + ACTIONS(2271), 1, anon_sym_impl, - ACTIONS(688), 1, + ACTIONS(2273), 1, + anon_sym_union, + ACTIONS(2275), 1, anon_sym_BANG, - ACTIONS(692), 1, - anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(2277), 1, + anon_sym_COLON_COLON, + ACTIONS(2279), 1, + anon_sym_AMP, + ACTIONS(2281), 1, anon_sym_dyn, - ACTIONS(868), 1, + ACTIONS(2287), 1, + sym_metavariable, + STATE(715), 1, + sym_scoped_type_identifier, + STATE(799), 1, + sym_generic_type, + STATE(1030), 1, + sym__type, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, + sym_scoped_identifier, + STATE(2247), 1, + sym_lifetime, + STATE(2292), 1, + sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1491), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(676), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2285), 3, + sym_self, + sym_super, + sym_crate, + STATE(1060), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2265), 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, + [12773] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(684), 1, + anon_sym_for, + ACTIONS(696), 1, + anon_sym_extern, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(872), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(876), 1, + ACTIONS(2263), 1, + anon_sym_STAR, + ACTIONS(2267), 1, anon_sym_default, - ACTIONS(878), 1, + ACTIONS(2269), 1, + anon_sym_fn, + ACTIONS(2271), 1, + anon_sym_impl, + ACTIONS(2273), 1, anon_sym_union, - ACTIONS(882), 1, + ACTIONS(2275), 1, + anon_sym_BANG, + ACTIONS(2277), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2099), 1, - sym_identifier, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1262), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(799), 1, sym_generic_type, - STATE(1536), 1, + STATE(1031), 1, sym__type, - STATE(2176), 1, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2252), 1, - sym_bracketed_type, - STATE(2253), 1, - sym_generic_type_with_turbofish, - STATE(2281), 1, + STATE(2247), 1, sym_lifetime, STATE(2292), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2285), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74569,7 +74934,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74587,74 +74952,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13031] = 32, + [12902] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(692), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - ACTIONS(2237), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2239), 1, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2241), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(2245), 1, + ACTIONS(2263), 1, anon_sym_STAR, - ACTIONS(2249), 1, + ACTIONS(2267), 1, anon_sym_default, - ACTIONS(2251), 1, + ACTIONS(2269), 1, anon_sym_fn, - ACTIONS(2253), 1, + ACTIONS(2271), 1, anon_sym_impl, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_union, - ACTIONS(2257), 1, + ACTIONS(2275), 1, anon_sym_BANG, - ACTIONS(2259), 1, + ACTIONS(2277), 1, anon_sym_COLON_COLON, - ACTIONS(2261), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(2263), 1, + ACTIONS(2281), 1, anon_sym_dyn, - ACTIONS(2269), 1, + ACTIONS(2287), 1, sym_metavariable, - STATE(714), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(759), 1, + STATE(799), 1, sym_generic_type, - STATE(999), 1, + STATE(1034), 1, sym__type, - STATE(1220), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(2195), 1, + STATE(2222), 1, sym_scoped_identifier, - STATE(2226), 1, + STATE(2247), 1, sym_lifetime, - STATE(2255), 1, + STATE(2292), 1, sym_function_modifiers, - STATE(2345), 1, + STATE(2391), 1, sym_bracketed_type, - STATE(2346), 1, + STATE(2392), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2267), 3, + ACTIONS(2285), 3, sym_self, sym_super, sym_crate, - STATE(1010), 11, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74666,7 +75031,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2247), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74684,74 +75049,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13160] = 32, + [13031] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1578), 1, + STATE(1770), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74763,7 +75128,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74781,74 +75146,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13289] = 32, + [13160] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(2089), 1, + STATE(1575), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74860,7 +75225,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74878,74 +75243,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13418] = 32, + [13289] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(680), 1, + ACTIONS(670), 1, + anon_sym_STAR, + ACTIONS(682), 1, + anon_sym_fn, + ACTIONS(684), 1, anon_sym_for, + ACTIONS(686), 1, + anon_sym_impl, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(2237), 1, - sym_identifier, - ACTIONS(2239), 1, + ACTIONS(708), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2241), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2245), 1, - anon_sym_STAR, - ACTIONS(2249), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2251), 1, - anon_sym_fn, - ACTIONS(2253), 1, - anon_sym_impl, - ACTIONS(2255), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2257), 1, - anon_sym_BANG, - ACTIONS(2259), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2261), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2263), 1, - anon_sym_dyn, - ACTIONS(2269), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(714), 1, + ACTIONS(2119), 1, + sym_identifier, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(759), 1, + STATE(1305), 1, sym_generic_type, - STATE(1050), 1, + STATE(1771), 1, sym__type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2195), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_lifetime, - STATE(2255), 1, - sym_function_modifiers, - STATE(2345), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2346), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, + STATE(2308), 1, + sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2267), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1010), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74957,7 +75322,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2247), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74975,74 +75340,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13547] = 32, + [13418] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, - anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, - anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, - ACTIONS(692), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, - anon_sym_dyn, - ACTIONS(868), 1, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(872), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - ACTIONS(876), 1, + ACTIONS(2263), 1, + anon_sym_STAR, + ACTIONS(2267), 1, anon_sym_default, - ACTIONS(878), 1, + ACTIONS(2269), 1, + anon_sym_fn, + ACTIONS(2271), 1, + anon_sym_impl, + ACTIONS(2273), 1, anon_sym_union, - ACTIONS(882), 1, + ACTIONS(2275), 1, + anon_sym_BANG, + ACTIONS(2277), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(2281), 1, + anon_sym_dyn, + ACTIONS(2287), 1, sym_metavariable, - ACTIONS(2099), 1, - sym_identifier, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1262), 1, + STATE(715), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(799), 1, sym_generic_type, - STATE(1924), 1, + STATE(1081), 1, sym__type, - STATE(2176), 1, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2222), 1, sym_scoped_identifier, - STATE(2252), 1, - sym_bracketed_type, - STATE(2253), 1, - sym_generic_type_with_turbofish, - STATE(2281), 1, + STATE(2247), 1, sym_lifetime, STATE(2292), 1, sym_function_modifiers, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2285), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1060), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75054,7 +75419,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(2265), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75072,74 +75437,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13676] = 32, + [13547] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1990), 1, + STATE(1544), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75151,7 +75516,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75169,74 +75534,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13805] = 32, + [13676] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(666), 1, + ACTIONS(670), 1, anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(682), 1, anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(682), 1, + ACTIONS(686), 1, anon_sym_impl, - ACTIONS(688), 1, - anon_sym_BANG, ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(704), 1, + ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2099), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1179), 1, sym_for_lifetimes, - STATE(1262), 1, + STATE(1269), 1, sym_scoped_type_identifier, - STATE(1301), 1, + STATE(1305), 1, sym_generic_type, - STATE(1603), 1, + STATE(1896), 1, sym__type, - STATE(2176), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2281), 1, - sym_lifetime, - STATE(2292), 1, + STATE(2308), 1, sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1305), 11, + STATE(1333), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75248,7 +75613,104 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 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, + [13805] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(670), 1, + anon_sym_STAR, + ACTIONS(682), 1, + anon_sym_fn, + ACTIONS(684), 1, + anon_sym_for, + ACTIONS(686), 1, + anon_sym_impl, + ACTIONS(692), 1, + anon_sym_BANG, + ACTIONS(696), 1, + anon_sym_extern, + ACTIONS(708), 1, + anon_sym_dyn, + ACTIONS(872), 1, + anon_sym_LPAREN, + ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(888), 1, + anon_sym_AMP, + ACTIONS(894), 1, + sym_metavariable, + ACTIONS(2119), 1, + sym_identifier, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1269), 1, + sym_scoped_type_identifier, + STATE(1305), 1, + sym_generic_type, + STATE(2100), 1, + sym__type, + STATE(2194), 1, + sym_scoped_identifier, + STATE(2289), 1, + sym_bracketed_type, + STATE(2290), 1, + sym_generic_type_with_turbofish, + STATE(2308), 1, + sym_function_modifiers, + STATE(2332), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1491), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(676), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1333), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75270,7 +75732,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1138), 20, + ACTIONS(1118), 20, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -75291,7 +75753,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1140), 41, + ACTIONS(1120), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75337,7 +75799,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(858), 17, + ACTIONS(2352), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -75355,7 +75817,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(856), 39, + ACTIONS(2350), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75399,7 +75861,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2330), 17, + ACTIONS(862), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -75417,7 +75879,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2328), 39, + ACTIONS(860), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75461,25 +75923,26 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2334), 17, + ACTIONS(491), 18, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, - anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2332), 39, + ACTIONS(2354), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75511,7 +75974,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, - anon_sym_DASH, anon_sym_move, anon_sym_true, anon_sym_false, @@ -75523,26 +75985,25 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(467), 18, + ACTIONS(2358), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, + anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2336), 38, + ACTIONS(2356), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75574,6 +76035,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, + anon_sym_DASH, anon_sym_move, anon_sym_true, anon_sym_false, @@ -75585,7 +76047,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1138), 15, + ACTIONS(1118), 15, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -75601,7 +76063,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1140), 38, + ACTIONS(1120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75641,22 +76103,22 @@ static uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [14326] = 9, - ACTIONS(2340), 1, + ACTIONS(2362), 1, anon_sym_LPAREN, - ACTIONS(2344), 1, + ACTIONS(2366), 1, anon_sym_BANG, - ACTIONS(2346), 1, + ACTIONS(2368), 1, anon_sym_COLON_COLON, - ACTIONS(2348), 1, + ACTIONS(2370), 1, anon_sym_LT2, - STATE(781), 1, + STATE(809), 1, sym_type_arguments, - STATE(878), 1, + STATE(826), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2342), 17, + ACTIONS(2364), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -75674,7 +76136,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2338), 26, + ACTIONS(2360), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -75702,20 +76164,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, [14396] = 8, - ACTIONS(2340), 1, + ACTIONS(2362), 1, anon_sym_LPAREN, - ACTIONS(2346), 1, + ACTIONS(2368), 1, anon_sym_COLON_COLON, - ACTIONS(2348), 1, + ACTIONS(2370), 1, anon_sym_LT2, - STATE(781), 1, + STATE(809), 1, sym_type_arguments, - STATE(878), 1, + STATE(826), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2352), 17, + ACTIONS(2374), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -75733,7 +76195,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2350), 26, + ACTIONS(2372), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -75761,20 +76223,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, [14463] = 8, - ACTIONS(2340), 1, + ACTIONS(2362), 1, anon_sym_LPAREN, - ACTIONS(2346), 1, + ACTIONS(2368), 1, anon_sym_COLON_COLON, - ACTIONS(2348), 1, + ACTIONS(2370), 1, anon_sym_LT2, - STATE(781), 1, + STATE(809), 1, sym_type_arguments, - STATE(878), 1, + STATE(826), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 17, + ACTIONS(2378), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -75792,7 +76254,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2354), 26, + ACTIONS(2376), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -75819,70 +76281,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14530] = 5, + [14530] = 7, ACTIONS(2362), 1, - anon_sym_BANG, - ACTIONS(2364), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2360), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2358), 28, - anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14590] = 5, ACTIONS(2370), 1, - anon_sym_BANG, - ACTIONS(2372), 1, - anon_sym_COLON_COLON, + anon_sym_LT2, + STATE(819), 1, + sym_type_arguments, + STATE(829), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2368), 17, + ACTIONS(2382), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -75900,9 +76311,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2366), 28, + ACTIONS(2380), 26, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -75913,7 +76323,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -75929,17 +76338,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14650] = 5, - ACTIONS(2378), 1, + [14594] = 6, + ACTIONS(2390), 1, anon_sym_BANG, - ACTIONS(2380), 1, + ACTIONS(2392), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2376), 17, + ACTIONS(2388), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(2386), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -75948,32 +76365,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2374), 28, + ACTIONS(2384), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -75983,67 +76392,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14710] = 5, - ACTIONS(2386), 1, - anon_sym_BANG, - ACTIONS(2388), 1, - anon_sym_COLON_COLON, + [14656] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2384), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2382), 28, + ACTIONS(1789), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14770] = 3, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1791), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14712] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1588), 9, + ACTIONS(1649), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76053,7 +76461,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1590), 38, + ACTIONS(1651), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76092,72 +76500,72 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14826] = 3, + [14768] = 7, + ACTIONS(2362), 1, + anon_sym_LPAREN, + ACTIONS(2370), 1, + anon_sym_LT2, + STATE(819), 1, + sym_type_arguments, + STATE(829), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1931), 9, + ACTIONS(2396), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2394), 26, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1933), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14882] = 7, - ACTIONS(2344), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14832] = 5, + ACTIONS(2402), 1, anon_sym_BANG, - ACTIONS(2390), 1, - anon_sym_LBRACE, - ACTIONS(2392), 1, + ACTIONS(2404), 1, anon_sym_COLON_COLON, - STATE(966), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2400), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -76168,15 +76576,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(453), 28, + ACTIONS(2398), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -76185,12 +76596,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -76200,13 +76611,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14946] = 3, + [14892] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1414), 9, + ACTIONS(1343), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76216,7 +76626,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1416), 38, + ACTIONS(1345), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76255,19 +76665,70 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15002] = 7, - ACTIONS(2340), 1, + [14948] = 5, + ACTIONS(2410), 1, + anon_sym_BANG, + ACTIONS(2412), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2408), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2406), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2348), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LT2, - STATE(784), 1, - sym_type_arguments, - STATE(889), 1, - sym_parameters, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [15008] = 5, + ACTIONS(2418), 1, + anon_sym_BANG, + ACTIONS(2420), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 17, + ACTIONS(2416), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -76285,8 +76746,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2394), 26, + ACTIONS(2414), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -76297,6 +76759,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -76312,19 +76775,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15066] = 7, - ACTIONS(2340), 1, + [15068] = 7, + ACTIONS(2366), 1, + anon_sym_BANG, + ACTIONS(2422), 1, + anon_sym_LBRACE, + ACTIONS(2424), 1, + anon_sym_COLON_COLON, + STATE(1048), 1, + sym_field_initializer_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(461), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(459), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2348), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15132] = 7, + ACTIONS(2362), 1, + anon_sym_LPAREN, + ACTIONS(2370), 1, anon_sym_LT2, - STATE(784), 1, + STATE(819), 1, sym_type_arguments, - STATE(889), 1, + STATE(829), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2400), 17, + ACTIONS(2428), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -76342,7 +76862,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2398), 26, + ACTIONS(2426), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -76369,11 +76889,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15130] = 3, + [15196] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1394), 9, + ACTIONS(1242), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76383,7 +76903,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1396), 38, + ACTIONS(1244), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76422,11 +76942,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15186] = 3, + [15252] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1418), 9, + ACTIONS(1689), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76436,7 +76956,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1420), 38, + ACTIONS(1691), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76475,19 +76995,15 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15242] = 7, - ACTIONS(2340), 1, - anon_sym_LPAREN, - ACTIONS(2348), 1, - anon_sym_LT2, - STATE(784), 1, - sym_type_arguments, - STATE(889), 1, - sym_parameters, + [15308] = 5, + ACTIONS(2434), 1, + anon_sym_BANG, + ACTIONS(2436), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2404), 17, + ACTIONS(2432), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -76505,8 +77021,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2402), 26, + ACTIONS(2430), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -76517,6 +77034,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -76532,15 +77050,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15306] = 5, - ACTIONS(2406), 1, + [15368] = 5, + ACTIONS(2438), 1, anon_sym_else, - STATE(992), 1, + STATE(1019), 1, sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(385), 15, + ACTIONS(377), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -76556,7 +77074,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(383), 29, + ACTIONS(375), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -76586,23 +77104,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15365] = 5, - ACTIONS(2414), 1, - anon_sym_COLON_COLON, + [15427] = 5, + ACTIONS(2444), 1, + anon_sym_SQUOTE, + STATE(1041), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2412), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(2410), 16, + ACTIONS(2442), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -76616,12 +77128,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2408), 23, + ACTIONS(2440), 29, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -76640,17 +77158,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15424] = 5, - ACTIONS(2420), 1, - anon_sym_SQUOTE, - STATE(1003), 1, - sym_loop_label, + [15486] = 4, + ACTIONS(2446), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2418), 15, + ACTIONS(2434), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -76664,11 +77181,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2416), 29, + ACTIONS(2436), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -76676,6 +77192,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -76694,13 +77211,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15483] = 4, - ACTIONS(2422), 1, + [15543] = 4, + ACTIONS(2448), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2378), 16, + ACTIONS(2402), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -76717,7 +77234,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2380), 29, + ACTIONS(2404), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -76747,13 +77264,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15540] = 4, - ACTIONS(2424), 1, + [15600] = 4, + ACTIONS(2450), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2362), 16, + ACTIONS(2410), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -76770,7 +77287,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2364), 29, + ACTIONS(2412), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -76800,13 +77317,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15597] = 4, - ACTIONS(2426), 1, + [15657] = 4, + ACTIONS(2452), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 16, + ACTIONS(2418), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -76823,7 +77340,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2388), 29, + ACTIONS(2420), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -76853,11 +77370,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15654] = 3, + [15714] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 16, + ACTIONS(2402), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -76874,7 +77391,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2388), 30, + ACTIONS(2404), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -76905,68 +77422,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15709] = 4, - ACTIONS(2428), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2370), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2372), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15766] = 5, - ACTIONS(2406), 1, + [15769] = 5, + ACTIONS(2438), 1, anon_sym_else, - STATE(968), 1, + STATE(1073), 1, sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(373), 15, + ACTIONS(385), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -76982,7 +77446,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(371), 29, + ACTIONS(383), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -77012,11 +77476,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15825] = 3, + [15828] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1584), 7, + ACTIONS(427), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77024,7 +77488,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1586), 38, + ACTIONS(429), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77063,11 +77527,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15879] = 3, + [15882] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1775), 7, + ACTIONS(1283), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77075,7 +77539,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1777), 38, + ACTIONS(1285), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77114,11 +77578,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15933] = 3, + [15936] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1799), 7, + ACTIONS(2456), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2454), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15990] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1457), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77126,7 +77641,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1801), 38, + ACTIONS(1459), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77165,62 +77680,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15987] = 3, + [16044] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(395), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(393), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_else, - [16041] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1783), 7, + ACTIONS(1465), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77228,7 +77692,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1785), 38, + ACTIONS(1467), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77267,11 +77731,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16095] = 3, + [16098] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1771), 7, + ACTIONS(1469), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77279,7 +77743,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1773), 38, + ACTIONS(1471), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77318,11 +77782,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16149] = 3, + [16152] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1767), 7, + ACTIONS(1477), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77330,7 +77794,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1769), 38, + ACTIONS(1479), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77369,11 +77833,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16203] = 3, + [16206] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1138), 7, + ACTIONS(1481), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77381,7 +77845,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1140), 38, + ACTIONS(1483), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77420,11 +77884,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16257] = 3, + [16260] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1763), 7, + ACTIONS(1485), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77432,7 +77896,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1765), 38, + ACTIONS(1487), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77471,11 +77935,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16311] = 3, + [16314] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1755), 7, + ACTIONS(1497), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77483,7 +77947,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1757), 38, + ACTIONS(1499), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77522,11 +77986,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16365] = 3, + [16368] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1751), 7, + ACTIONS(1505), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77534,7 +77998,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1753), 38, + ACTIONS(1507), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77573,11 +78037,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16419] = 3, + [16422] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1747), 7, + ACTIONS(1509), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77585,7 +78049,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1749), 38, + ACTIONS(1511), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77624,11 +78088,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16473] = 3, + [16476] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 7, + ACTIONS(1513), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77636,7 +78100,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(588), 38, + ACTIONS(1515), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77675,14 +78139,65 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16527] = 4, + [16530] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2460), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2458), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16584] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2432), 2, + ACTIONS(2464), 2, anon_sym_LBRACE, anon_sym_COLON_COLON, - ACTIONS(2434), 15, + ACTIONS(2466), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -77698,7 +78213,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2430), 28, + ACTIONS(2462), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -77727,11 +78242,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16583] = 3, + [16640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1731), 7, + ACTIONS(1557), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77739,7 +78254,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1733), 38, + ACTIONS(1559), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77778,11 +78293,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16637] = 3, + [16694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1723), 7, + ACTIONS(1561), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77790,7 +78305,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1725), 38, + ACTIONS(1563), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77829,63 +78344,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16691] = 4, - ACTIONS(2436), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2396), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2394), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16747] = 3, + [16748] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1684), 7, + ACTIONS(1565), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77893,7 +78356,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1686), 38, + ACTIONS(1567), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77932,11 +78395,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16801] = 3, + [16802] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1668), 7, + ACTIONS(1581), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77944,7 +78407,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1670), 38, + ACTIONS(1583), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77983,11 +78446,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16855] = 3, + [16856] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(1589), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77995,7 +78458,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1654), 38, + ACTIONS(1591), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78034,11 +78497,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16909] = 3, + [16910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1648), 7, + ACTIONS(1597), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78046,7 +78509,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1650), 38, + ACTIONS(1599), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78085,11 +78548,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16963] = 3, + [16964] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1644), 7, + ACTIONS(1609), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78097,7 +78560,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1646), 38, + ACTIONS(1611), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78136,11 +78599,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17017] = 3, + [17018] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1640), 7, + ACTIONS(1613), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78148,7 +78611,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1642), 38, + ACTIONS(1615), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78187,11 +78650,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17071] = 3, + [17072] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1636), 7, + ACTIONS(1617), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78199,7 +78662,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1638), 38, + ACTIONS(1619), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78238,11 +78701,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17125] = 3, + [17126] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1632), 7, + ACTIONS(1629), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78250,7 +78713,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1634), 38, + ACTIONS(1631), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78289,11 +78752,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17179] = 3, + [17180] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1616), 7, + ACTIONS(1633), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78301,7 +78764,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1618), 38, + ACTIONS(1635), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78340,11 +78803,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17233] = 3, + [17234] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1612), 7, + ACTIONS(1641), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78352,7 +78815,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1614), 38, + ACTIONS(1643), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78391,11 +78854,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17287] = 3, + [17288] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1608), 7, + ACTIONS(1645), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78403,7 +78866,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1610), 38, + ACTIONS(1647), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78442,62 +78905,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17341] = 3, + [17342] = 4, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1600), 7, + ACTIONS(2470), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2468), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1602), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17395] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17398] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1596), 7, + ACTIONS(1661), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78505,7 +78969,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1598), 38, + ACTIONS(1663), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78544,65 +79008,14 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17449] = 4, - ACTIONS(2438), 1, - anon_sym_COLON_COLON, + [17452] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2394), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2472), 2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17505] = 4, - ACTIONS(2440), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2396), 15, + ACTIONS(2466), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -78618,11 +79031,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2394), 29, + ACTIONS(2462), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -78648,11 +79060,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17561] = 3, + [17508] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1592), 7, + ACTIONS(389), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78660,7 +79072,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1594), 38, + ACTIONS(391), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78699,11 +79111,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17615] = 3, + [17562] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1580), 7, + ACTIONS(1665), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78711,7 +79123,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1582), 38, + ACTIONS(1667), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78750,11 +79162,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17669] = 3, + [17616] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1500), 7, + ACTIONS(1669), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78762,7 +79174,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1502), 38, + ACTIONS(1671), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78801,11 +79213,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17723] = 3, + [17670] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1496), 7, + ACTIONS(1673), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78813,7 +79225,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1498), 38, + ACTIONS(1675), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78852,13 +79264,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17777] = 4, - STATE(962), 1, - sym_arguments, + [17724] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2444), 15, + ACTIONS(2476), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -78874,7 +79284,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2442), 29, + ACTIONS(2474), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -78886,6 +79296,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -78904,11 +79315,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17833] = 3, + [17778] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1532), 7, + ACTIONS(1677), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78916,7 +79327,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1534), 38, + ACTIONS(1679), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78955,11 +79366,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17887] = 3, + [17832] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1520), 7, + ACTIONS(397), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78967,7 +79378,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1522), 38, + ACTIONS(399), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79006,62 +79417,113 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17941] = 3, + [17886] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2448), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1693), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2446), 30, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1695), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17940] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(393), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17995] = 3, + sym_metavariable, + ACTIONS(395), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17994] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1516), 7, + ACTIONS(1697), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79069,7 +79531,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1518), 38, + ACTIONS(1699), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79108,63 +79570,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18049] = 4, - ACTIONS(2454), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2452), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2450), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [18105] = 3, + [18048] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1118), 7, + ACTIONS(1701), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79172,7 +79582,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1120), 38, + ACTIONS(1703), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79211,11 +79621,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18159] = 3, + [18102] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1807), 7, + ACTIONS(1709), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79223,7 +79633,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1809), 38, + ACTIONS(1711), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79262,11 +79672,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18213] = 3, + [18156] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1492), 7, + ACTIONS(1717), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79274,7 +79684,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1494), 38, + ACTIONS(1719), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79313,114 +79723,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18267] = 3, + [18210] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2458), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2456), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [18321] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2460), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2434), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2430), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [18377] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1843), 7, + ACTIONS(1721), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79428,7 +79735,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1845), 38, + ACTIONS(1723), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79467,11 +79774,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18431] = 3, + [18264] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1488), 7, + ACTIONS(1725), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79479,7 +79786,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1490), 38, + ACTIONS(1727), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79518,62 +79825,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18485] = 3, + [18318] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(391), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(389), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_else, - [18539] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1512), 7, + ACTIONS(1733), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79581,7 +79837,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1514), 38, + ACTIONS(1735), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79620,11 +79876,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18593] = 3, + [18372] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1859), 7, + ACTIONS(1737), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79632,7 +79888,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1861), 38, + ACTIONS(1739), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79671,11 +79927,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18647] = 3, + [18426] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1190), 7, + ACTIONS(1741), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79683,7 +79939,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1192), 38, + ACTIONS(1743), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79722,62 +79978,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18701] = 3, + [18480] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2464), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2462), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [18755] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1468), 7, + ACTIONS(1745), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79785,7 +79990,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1470), 38, + ACTIONS(1747), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79824,11 +80029,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18809] = 3, + [18534] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1604), 7, + ACTIONS(1749), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79836,7 +80041,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1606), 38, + ACTIONS(1751), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79875,113 +80080,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18863] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2468), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2466), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [18917] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2472), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2470), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [18971] = 3, + [18588] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1911), 7, + ACTIONS(596), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79989,7 +80092,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1913), 38, + ACTIONS(598), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80028,11 +80131,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19025] = 3, + [18642] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1422), 7, + ACTIONS(1753), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80040,7 +80143,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1424), 38, + ACTIONS(1755), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80079,11 +80182,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19079] = 3, + [18696] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1390), 7, + ACTIONS(1757), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80091,7 +80194,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1392), 38, + ACTIONS(1759), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80130,11 +80233,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19133] = 3, + [18750] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1382), 7, + ACTIONS(1761), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80142,7 +80245,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1384), 38, + ACTIONS(1763), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80181,11 +80284,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19187] = 3, + [18804] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1915), 7, + ACTIONS(1769), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80193,7 +80296,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1917), 38, + ACTIONS(1771), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80232,11 +80335,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19241] = 3, + [18858] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1927), 7, + ACTIONS(1773), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80244,7 +80347,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1929), 38, + ACTIONS(1775), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80283,11 +80386,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19295] = 3, + [18912] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1194), 7, + ACTIONS(1781), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80295,7 +80398,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1196), 38, + ACTIONS(1783), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80334,62 +80437,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19349] = 3, + [18966] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2476), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2474), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19403] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1378), 7, + ACTIONS(1118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80397,7 +80449,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1380), 38, + ACTIONS(1120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80436,62 +80488,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19457] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2480), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2478), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19511] = 3, + [19020] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1452), 7, + ACTIONS(1785), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80499,7 +80500,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1454), 38, + ACTIONS(1787), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80538,11 +80539,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19565] = 3, + [19074] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1444), 7, + ACTIONS(467), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80550,7 +80551,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1446), 38, + ACTIONS(469), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80589,11 +80590,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19619] = 3, + [19128] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1434), 7, + ACTIONS(413), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80601,7 +80602,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1436), 38, + ACTIONS(415), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80640,11 +80641,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19673] = 3, + [19182] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1430), 7, + ACTIONS(1110), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80652,7 +80653,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1432), 38, + ACTIONS(1112), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80691,11 +80692,218 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19727] = 3, + [19236] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(395), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(393), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [19290] = 4, + ACTIONS(2478), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2396), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2394), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19346] = 4, + ACTIONS(2480), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2396), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2394), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19402] = 4, + ACTIONS(2482), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2396), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2394), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19458] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1370), 7, + ACTIONS(1825), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80703,7 +80911,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1372), 38, + ACTIONS(1827), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80742,11 +80950,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19781] = 3, + [19512] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1358), 7, + ACTIONS(1833), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80754,7 +80962,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1360), 38, + ACTIONS(1835), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80793,11 +81001,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19835] = 3, + [19566] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1787), 7, + ACTIONS(1291), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80805,7 +81013,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1789), 38, + ACTIONS(1293), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80844,63 +81052,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19889] = 4, - ACTIONS(2486), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2484), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2482), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19945] = 3, + [19620] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1346), 7, + ACTIONS(1845), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80908,7 +81064,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1348), 38, + ACTIONS(1847), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80947,11 +81103,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19999] = 3, + [19674] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1743), 7, + ACTIONS(1234), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80959,7 +81115,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1745), 38, + ACTIONS(1236), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80998,11 +81154,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20053] = 3, + [19728] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1330), 7, + ACTIONS(1849), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81010,7 +81166,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1332), 38, + ACTIONS(1851), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81049,11 +81205,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20107] = 3, + [19782] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1318), 7, + ACTIONS(1861), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81061,7 +81217,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1320), 38, + ACTIONS(1863), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81100,11 +81256,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20161] = 3, + [19836] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1739), 7, + ACTIONS(399), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(397), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [19890] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1214), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81112,7 +81319,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1741), 38, + ACTIONS(1216), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81151,13 +81358,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20215] = 4, - ACTIONS(2488), 1, - anon_sym_COLON_COLON, + [19944] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81173,7 +81378,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 29, + ACTIONS(2484), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81185,6 +81390,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -81203,64 +81409,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20271] = 3, + [19998] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(582), 7, + ACTIONS(2490), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2488), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(584), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20325] = 4, - ACTIONS(2440), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20052] = 4, + ACTIONS(2492), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2404), 15, + ACTIONS(461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81276,7 +81482,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2402), 29, + ACTIONS(459), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81306,11 +81512,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20381] = 3, + [20108] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1690), 7, + ACTIONS(1881), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81318,7 +81524,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1692), 38, + ACTIONS(1883), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81357,11 +81563,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20435] = 3, + [20162] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1680), 7, + ACTIONS(1885), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81369,7 +81575,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1682), 38, + ACTIONS(1887), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81408,11 +81614,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20489] = 3, + [20216] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(1889), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81420,7 +81626,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1666), 38, + ACTIONS(1891), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81459,62 +81665,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20543] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2492), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2490), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20597] = 3, + [20270] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(457), 7, + ACTIONS(1893), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81522,7 +81677,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(459), 38, + ACTIONS(1895), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81561,62 +81716,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20651] = 3, + [20324] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1402), 7, + ACTIONS(2496), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2494), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1404), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20705] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20378] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1398), 7, + ACTIONS(1913), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81624,7 +81779,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1400), 38, + ACTIONS(1915), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81663,11 +81818,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20759] = 3, + [20432] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1386), 7, + ACTIONS(1921), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81675,7 +81830,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1388), 38, + ACTIONS(1923), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81714,11 +81869,114 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20813] = 3, + [20486] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1326), 7, + ACTIONS(2500), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2498), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20540] = 4, + ACTIONS(2506), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2504), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2502), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20596] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1925), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81726,7 +81984,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1328), 38, + ACTIONS(1927), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81765,11 +82023,116 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20867] = 3, + [20650] = 4, + ACTIONS(2482), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2428), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2426), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20706] = 5, + ACTIONS(2392), 1, + anon_sym_COLON_COLON, + ACTIONS(2508), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2386), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2384), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20764] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1298), 7, + ACTIONS(1929), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81777,7 +82140,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1300), 38, + ACTIONS(1931), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81816,11 +82179,115 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20921] = 3, + [20818] = 4, + ACTIONS(2482), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2382), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2380), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20874] = 4, + ACTIONS(2514), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2512), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2510), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20930] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1628), 7, + ACTIONS(1493), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81828,7 +82295,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1630), 38, + ACTIONS(1495), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81867,11 +82334,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20975] = 3, + [20984] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1294), 7, + ACTIONS(1947), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81879,7 +82346,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1296), 38, + ACTIONS(1949), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81918,11 +82385,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21029] = 3, + [21038] = 4, + ACTIONS(2520), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1266), 7, + ACTIONS(2518), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2516), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [21094] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1943), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81930,7 +82449,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1268), 38, + ACTIONS(1945), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81969,11 +82488,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21083] = 3, + [21148] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1366), 7, + ACTIONS(1525), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81981,7 +82500,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1368), 38, + ACTIONS(1527), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82020,11 +82539,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21137] = 3, + [21202] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1214), 7, + ACTIONS(1545), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82032,7 +82551,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1216), 38, + ACTIONS(1547), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82071,11 +82590,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21191] = 3, + [21256] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1198), 7, + ACTIONS(1937), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82083,7 +82602,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1200), 38, + ACTIONS(1939), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82122,11 +82641,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21245] = 3, + [21310] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1242), 7, + ACTIONS(1549), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82134,7 +82653,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1244), 38, + ACTIONS(1551), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82173,11 +82692,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21299] = 3, + [21364] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1234), 7, + ACTIONS(1573), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82185,7 +82704,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1236), 38, + ACTIONS(1575), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82224,11 +82743,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21353] = 3, + [21418] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1314), 7, + ACTIONS(1933), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82236,7 +82755,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1316), 38, + ACTIONS(1935), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82275,11 +82794,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21407] = 3, + [21472] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1158), 7, + ACTIONS(1585), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82287,7 +82806,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1160), 38, + ACTIONS(1587), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82326,11 +82845,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21461] = 3, + [21526] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1310), 7, + ACTIONS(1917), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82338,7 +82857,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1312), 38, + ACTIONS(1919), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82377,11 +82896,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21515] = 3, + [21580] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1174), 7, + ACTIONS(1909), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82389,7 +82908,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1176), 38, + ACTIONS(1911), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82428,11 +82947,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21569] = 3, + [21634] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1302), 7, + ACTIONS(1905), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82440,7 +82959,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1304), 38, + ACTIONS(1907), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82479,11 +82998,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21623] = 3, + [21688] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1186), 7, + ACTIONS(1901), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82491,7 +83010,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1188), 38, + ACTIONS(1903), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82530,11 +83049,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21677] = 3, + [21742] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1282), 7, + ACTIONS(1897), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82542,7 +83061,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1284), 38, + ACTIONS(1899), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82581,11 +83100,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21731] = 3, + [21796] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1146), 7, + ACTIONS(1877), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82593,7 +83112,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1148), 38, + ACTIONS(1879), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82632,11 +83151,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21785] = 3, + [21850] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1162), 7, + ACTIONS(1873), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82644,7 +83163,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1164), 38, + ACTIONS(1875), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82683,11 +83202,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21839] = 3, + [21904] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1170), 7, + ACTIONS(1605), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82695,7 +83214,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1172), 38, + ACTIONS(1607), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82734,11 +83253,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21893] = 3, + [21958] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1226), 7, + ACTIONS(1865), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82746,7 +83265,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1228), 38, + ACTIONS(1867), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82785,11 +83304,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21947] = 3, + [22012] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1178), 7, + ACTIONS(1857), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82797,7 +83316,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1180), 38, + ACTIONS(1859), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82836,11 +83355,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22001] = 3, + [22066] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1274), 7, + ACTIONS(1853), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82848,7 +83367,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1276), 38, + ACTIONS(1855), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82887,11 +83406,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22055] = 3, + [22120] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1262), 7, + ACTIONS(1841), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82899,7 +83418,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1264), 38, + ACTIONS(1843), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82938,11 +83457,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22109] = 3, + [22174] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1250), 7, + ACTIONS(1837), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82950,7 +83469,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1252), 38, + ACTIONS(1839), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82989,11 +83508,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22163] = 3, + [22228] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1246), 7, + ACTIONS(1106), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83001,7 +83520,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1248), 38, + ACTIONS(1108), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83040,11 +83559,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22217] = 3, + [22282] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1206), 7, + ACTIONS(1621), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83052,7 +83571,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1208), 38, + ACTIONS(1623), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83091,11 +83610,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22271] = 3, + [22336] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(393), 7, + ACTIONS(836), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(838), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22390] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1829), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83103,7 +83673,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(395), 38, + ACTIONS(1831), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83142,11 +83712,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22325] = 3, + [22444] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1222), 7, + ACTIONS(1819), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83154,7 +83724,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1224), 38, + ACTIONS(1821), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83193,11 +83763,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22379] = 3, + [22498] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1210), 7, + ACTIONS(1809), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83205,7 +83775,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1212), 38, + ACTIONS(1811), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83244,11 +83814,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22433] = 3, + [22552] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1218), 7, + ACTIONS(1805), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83256,7 +83826,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1220), 38, + ACTIONS(1807), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83295,11 +83865,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22487] = 3, + [22606] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1903), 7, + ACTIONS(1637), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83307,7 +83877,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1905), 38, + ACTIONS(1639), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83346,11 +83916,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22541] = 3, + [22660] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, + ACTIONS(1801), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83358,7 +83928,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1256), 38, + ACTIONS(1803), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83397,11 +83967,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22595] = 3, + [22714] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1258), 7, + ACTIONS(1793), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83409,7 +83979,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1260), 38, + ACTIONS(1795), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83448,11 +84018,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22649] = 3, + [22768] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1150), 7, + ACTIONS(1777), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83460,7 +84030,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1152), 38, + ACTIONS(1779), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83499,11 +84069,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22703] = 3, + [22822] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1290), 7, + ACTIONS(1713), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83511,7 +84081,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1292), 38, + ACTIONS(1715), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83550,63 +84120,164 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22757] = 4, - ACTIONS(2440), 1, + [22876] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1765), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1767), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22930] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2400), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1729), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2398), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1731), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22984] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1685), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22813] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1687), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23038] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1334), 7, + ACTIONS(1869), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83614,7 +84285,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1336), 38, + ACTIONS(1871), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83653,11 +84324,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22867] = 3, + [23092] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1338), 7, + ACTIONS(1657), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83665,7 +84336,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1340), 38, + ACTIONS(1659), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83704,11 +84375,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22921] = 3, + [23146] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1350), 7, + ACTIONS(1653), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83716,7 +84387,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1352), 38, + ACTIONS(1655), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83755,11 +84426,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22975] = 3, + [23200] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1354), 7, + ACTIONS(1625), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83767,7 +84438,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1356), 38, + ACTIONS(1627), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83806,11 +84477,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23029] = 3, + [23254] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1142), 7, + ACTIONS(1951), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83818,7 +84489,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1144), 38, + ACTIONS(1953), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83857,11 +84528,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23083] = 3, + [23308] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1362), 7, + ACTIONS(1955), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83869,7 +84540,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1364), 38, + ACTIONS(1957), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83908,11 +84579,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23137] = 3, + [23362] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1374), 7, + ACTIONS(1797), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83920,7 +84591,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1376), 38, + ACTIONS(1799), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83959,11 +84630,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23191] = 3, + [23416] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1182), 7, + ACTIONS(1601), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83971,7 +84642,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1184), 38, + ACTIONS(1603), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84010,11 +84681,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23245] = 3, + [23470] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1130), 7, + ACTIONS(1593), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84022,7 +84693,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1132), 38, + ACTIONS(1595), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84061,11 +84732,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23299] = 3, + [23524] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1134), 7, + ACTIONS(1705), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84073,7 +84744,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1136), 38, + ACTIONS(1707), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84112,11 +84783,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23353] = 3, + [23578] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1126), 7, + ACTIONS(1577), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84124,7 +84795,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1128), 38, + ACTIONS(1579), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84163,11 +84834,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23407] = 3, + [23632] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1238), 7, + ACTIONS(391), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(389), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [23686] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1681), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84175,7 +84897,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1240), 38, + ACTIONS(1683), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84214,11 +84936,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23461] = 3, + [23740] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1620), 7, + ACTIONS(1553), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84226,7 +84948,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1622), 38, + ACTIONS(1555), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84265,11 +84987,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23515] = 3, + [23794] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2524), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2522), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23848] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1460), 7, + ACTIONS(1569), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84277,7 +85050,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1462), 38, + ACTIONS(1571), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84316,11 +85089,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23569] = 3, + [23902] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1122), 7, + ACTIONS(1541), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84328,7 +85101,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1124), 38, + ACTIONS(1543), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84367,11 +85140,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23623] = 3, + [23956] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1803), 7, + ACTIONS(1537), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84379,7 +85152,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1805), 38, + ACTIONS(1539), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84418,62 +85191,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23677] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(850), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(852), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23731] = 3, + [24010] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1564), 7, + ACTIONS(1533), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84481,7 +85203,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1566), 38, + ACTIONS(1535), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84520,13 +85242,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23785] = 4, - ACTIONS(2498), 1, - anon_sym_DASH_GT, + [24064] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2496), 15, + ACTIONS(2528), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84542,7 +85262,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2494), 29, + ACTIONS(2526), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84554,6 +85274,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -84572,11 +85293,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23841] = 3, + [24118] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1202), 7, + ACTIONS(1529), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84584,7 +85305,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1204), 38, + ACTIONS(1531), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84623,115 +85344,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23895] = 4, - ACTIONS(2504), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2502), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2500), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23951] = 4, - ACTIONS(2510), 1, - anon_sym_DASH_GT, + [24172] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2508), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2506), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24007] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1464), 7, + ACTIONS(1521), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84739,7 +85356,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1466), 38, + ACTIONS(1523), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84778,11 +85395,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24061] = 3, + [24226] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1676), 7, + ACTIONS(1517), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84790,7 +85407,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1678), 38, + ACTIONS(1519), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84829,11 +85446,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24115] = 3, + [24280] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1448), 7, + ACTIONS(1102), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84841,7 +85458,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1450), 38, + ACTIONS(1104), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84880,11 +85497,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24169] = 3, + [24334] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1779), 7, + ACTIONS(1473), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84892,7 +85509,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1781), 38, + ACTIONS(1475), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84931,11 +85548,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24223] = 3, + [24388] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1230), 7, + ACTIONS(1453), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84943,7 +85560,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1232), 38, + ACTIONS(1455), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84982,11 +85599,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24277] = 3, + [24442] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1476), 7, + ACTIONS(1449), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84994,7 +85611,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1478), 38, + ACTIONS(1451), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85033,11 +85650,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24331] = 3, + [24496] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1811), 7, + ACTIONS(1445), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85045,7 +85662,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1813), 38, + ACTIONS(1447), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85084,13 +85701,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24385] = 4, - ACTIONS(2516), 1, - anon_sym_DASH_GT, + [24550] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2514), 15, + ACTIONS(2532), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85106,7 +85721,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2512), 29, + ACTIONS(2530), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85118,6 +85733,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85136,11 +85752,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24441] = 3, + [24604] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1278), 7, + ACTIONS(1441), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85148,7 +85764,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1280), 38, + ACTIONS(1443), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85187,114 +85803,113 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24495] = 3, + [24658] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2520), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2518), 30, + ACTIONS(1437), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24549] = 4, - ACTIONS(2526), 1, - anon_sym_DASH_GT, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1439), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24712] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2524), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2522), 29, + ACTIONS(1431), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24605] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1433), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24766] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1306), 7, + ACTIONS(1427), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85302,7 +85917,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1308), 38, + ACTIONS(1429), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85341,11 +85956,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24659] = 3, + [24820] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1851), 7, + ACTIONS(1423), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85353,7 +85968,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1853), 38, + ACTIONS(1425), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85392,11 +86007,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24713] = 3, + [24874] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1484), 7, + ACTIONS(1419), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85404,7 +86019,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1486), 38, + ACTIONS(1421), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85443,11 +86058,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24767] = 3, + [24928] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1935), 7, + ACTIONS(1415), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85455,7 +86070,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1937), 38, + ACTIONS(1417), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85494,11 +86109,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24821] = 3, + [24982] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1899), 7, + ACTIONS(1411), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85506,7 +86121,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1901), 38, + ACTIONS(1413), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85545,11 +86160,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24875] = 3, + [25036] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(389), 7, + ACTIONS(1407), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85557,7 +86172,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(391), 38, + ACTIONS(1409), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85596,11 +86211,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24929] = 3, + [25090] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1322), 7, + ACTIONS(1403), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85608,7 +86223,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1324), 38, + ACTIONS(1405), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85647,11 +86262,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24983] = 3, + [25144] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1879), 7, + ACTIONS(1399), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85659,7 +86274,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1881), 38, + ACTIONS(1401), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85698,62 +86313,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25037] = 3, + [25198] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2384), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2382), 28, + ACTIONS(1387), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [25091] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1389), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25252] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1342), 7, + ACTIONS(1489), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85761,7 +86376,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1344), 38, + ACTIONS(1491), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85800,11 +86415,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25145] = 3, + [25306] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1871), 7, + ACTIONS(1383), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85812,7 +86427,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1873), 38, + ACTIONS(1385), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85851,11 +86466,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25199] = 3, + [25360] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1504), 7, + ACTIONS(1461), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85863,7 +86478,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1506), 38, + ACTIONS(1463), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85902,11 +86517,64 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25253] = 3, + [25414] = 5, + ACTIONS(2366), 1, + anon_sym_BANG, + ACTIONS(2534), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1508), 7, + ACTIONS(461), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(459), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25472] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1379), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85914,7 +86582,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1510), 38, + ACTIONS(1381), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85953,11 +86621,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25307] = 3, + [25526] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1406), 7, + ACTIONS(1375), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85965,7 +86633,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1408), 38, + ACTIONS(1377), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86004,11 +86672,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25361] = 3, + [25580] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1528), 7, + ACTIONS(1371), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86016,7 +86684,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1530), 38, + ACTIONS(1373), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86055,11 +86723,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25415] = 3, + [25634] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1548), 7, + ACTIONS(2400), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2398), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [25688] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1367), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86067,7 +86786,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1550), 38, + ACTIONS(1369), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86106,11 +86825,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25469] = 3, + [25742] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1624), 7, + ACTIONS(1363), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86118,7 +86837,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1626), 38, + ACTIONS(1365), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86157,11 +86876,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25523] = 3, + [25796] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1727), 7, + ACTIONS(1359), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86169,7 +86888,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1729), 38, + ACTIONS(1361), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86208,11 +86927,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25577] = 3, + [25850] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1735), 7, + ACTIONS(1355), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86220,7 +86939,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1737), 38, + ACTIONS(1357), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86259,11 +86978,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25631] = 3, + [25904] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(397), 7, + ACTIONS(1351), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86271,7 +86990,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(399), 38, + ACTIONS(1353), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86310,15 +87029,115 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25685] = 5, - ACTIONS(2344), 1, - anon_sym_BANG, - ACTIONS(2528), 1, + [25958] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1347), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1349), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26012] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1339), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1341), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26066] = 4, + ACTIONS(2540), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2538), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86334,10 +87153,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 28, + ACTIONS(2536), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -86363,11 +87183,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25743] = 3, + [26122] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1656), 7, + ACTIONS(1315), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86375,7 +87195,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1658), 38, + ACTIONS(1317), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86414,11 +87234,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25797] = 3, + [26176] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1759), 7, + ACTIONS(1311), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86426,7 +87246,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1761), 38, + ACTIONS(1313), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86465,11 +87285,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25851] = 3, + [26230] = 4, + ACTIONS(2546), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2544), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2542), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26286] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1538), 7, + ACTIONS(1335), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86477,7 +87349,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1540), 38, + ACTIONS(1337), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86516,11 +87388,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25905] = 3, + [26340] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1791), 7, + ACTIONS(1331), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86528,7 +87400,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1793), 38, + ACTIONS(1333), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86567,11 +87439,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25959] = 3, + [26394] = 4, + ACTIONS(2552), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 15, + ACTIONS(2550), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86587,7 +87461,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2530), 30, + ACTIONS(2548), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86599,7 +87473,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -86618,11 +87491,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26013] = 3, + [26450] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1556), 7, + ACTIONS(1303), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86630,7 +87503,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1558), 38, + ACTIONS(1305), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86669,11 +87542,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26067] = 3, + [26504] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1887), 7, + ACTIONS(1230), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86681,7 +87554,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1889), 38, + ACTIONS(1232), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86720,11 +87593,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26121] = 3, + [26558] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1895), 7, + ACTIONS(1327), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86732,7 +87605,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1897), 38, + ACTIONS(1329), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86771,11 +87644,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26175] = 3, + [26612] = 4, + ACTIONS(2558), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2536), 15, + ACTIONS(2556), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86791,7 +87666,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2534), 30, + ACTIONS(2554), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86803,7 +87678,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -86822,11 +87696,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26229] = 3, + [26668] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1815), 7, + ACTIONS(1226), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86834,7 +87708,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1817), 38, + ACTIONS(1228), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86873,11 +87747,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26283] = 3, + [26722] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1426), 7, + ACTIONS(1323), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86885,7 +87759,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1428), 38, + ACTIONS(1325), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86924,11 +87798,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26337] = 3, + [26776] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1572), 7, + ACTIONS(1222), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86936,7 +87810,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1574), 38, + ACTIONS(1224), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86975,11 +87849,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26391] = 3, + [26830] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1863), 7, + ACTIONS(1218), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86987,7 +87861,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1865), 38, + ACTIONS(1220), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87026,11 +87900,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26445] = 3, + [26884] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1907), 7, + ACTIONS(1186), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87038,7 +87912,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1909), 38, + ACTIONS(1188), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87077,11 +87951,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26499] = 3, + [26938] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1819), 7, + ACTIONS(1319), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87089,7 +87963,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1821), 38, + ACTIONS(1321), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87128,11 +88002,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26553] = 3, + [26992] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1831), 7, + ACTIONS(1182), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87140,7 +88014,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1833), 38, + ACTIONS(1184), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87179,11 +88053,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26607] = 3, + [27046] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1660), 7, + ACTIONS(1178), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87191,7 +88065,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1662), 38, + ACTIONS(1180), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87230,11 +88104,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26661] = 3, + [27100] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1867), 7, + ACTIONS(1162), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87242,7 +88116,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1869), 38, + ACTIONS(1164), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87281,62 +88155,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26715] = 3, + [27154] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(399), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(397), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_else, - [26769] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1875), 7, + ACTIONS(1158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87344,7 +88167,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1877), 38, + ACTIONS(1160), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87383,58 +88206,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26823] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2540), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2538), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26877] = 3, + [27208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -87485,11 +88257,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26931] = 3, + [27262] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1847), 7, + ACTIONS(1130), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87497,7 +88269,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1849), 38, + ACTIONS(1132), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87536,11 +88308,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26985] = 3, + [27316] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1855), 7, + ACTIONS(1126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87548,7 +88320,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1857), 38, + ACTIONS(1128), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87587,11 +88359,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27039] = 3, + [27370] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1839), 7, + ACTIONS(1114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87599,7 +88371,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1841), 38, + ACTIONS(1116), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87638,11 +88410,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27093] = 3, + [27424] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1672), 7, + ACTIONS(1122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87650,7 +88422,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1674), 38, + ACTIONS(1124), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87689,113 +88461,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27147] = 3, + [27478] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1919), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2562), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1921), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27201] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1576), 7, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2560), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1578), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27255] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27532] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1166), 7, + ACTIONS(1134), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87803,7 +88524,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1168), 38, + ACTIONS(1136), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87842,11 +88563,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27309] = 3, + [27586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1923), 7, + ACTIONS(1307), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87854,7 +88575,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1925), 38, + ACTIONS(1309), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87893,11 +88614,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27363] = 3, + [27640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1827), 7, + ACTIONS(1299), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87905,7 +88626,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1829), 38, + ACTIONS(1301), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87944,11 +88665,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27417] = 3, + [27694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1410), 7, + ACTIONS(1295), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87956,7 +88677,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1412), 38, + ACTIONS(1297), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87995,11 +88716,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27471] = 3, + [27748] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1823), 7, + ACTIONS(1287), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88007,7 +88728,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1825), 38, + ACTIONS(1289), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88046,11 +88767,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27525] = 3, + [27802] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1440), 7, + ACTIONS(1138), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88058,7 +88779,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1442), 38, + ACTIONS(1140), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88097,11 +88818,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27579] = 3, + [27856] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1456), 7, + ACTIONS(2566), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2564), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27910] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1142), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88109,7 +88881,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1458), 38, + ACTIONS(1144), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88148,11 +88920,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27633] = 3, + [27964] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1795), 7, + ACTIONS(1146), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88160,7 +88932,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1797), 38, + ACTIONS(1148), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88199,11 +88971,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27687] = 3, + [28018] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1472), 7, + ACTIONS(1279), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88211,7 +88983,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1474), 38, + ACTIONS(1281), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88250,11 +89022,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27741] = 3, + [28072] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1568), 7, + ACTIONS(1150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88262,7 +89034,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1570), 38, + ACTIONS(1152), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88301,11 +89073,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27795] = 3, + [28126] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1560), 7, + ACTIONS(1246), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88313,7 +89085,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1562), 38, + ACTIONS(1248), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88352,11 +89124,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27849] = 3, + [28180] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1480), 7, + ACTIONS(1238), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88364,7 +89136,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1482), 38, + ACTIONS(1240), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88403,11 +89175,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27903] = 3, + [28234] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1552), 7, + ACTIONS(1210), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88415,7 +89187,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1554), 38, + ACTIONS(1212), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88454,11 +89226,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27957] = 3, + [28288] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1544), 7, + ACTIONS(1170), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88466,7 +89238,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1546), 38, + ACTIONS(1172), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88505,11 +89277,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28011] = 3, + [28342] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1524), 7, + ACTIONS(1174), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88517,7 +89289,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1526), 38, + ACTIONS(1176), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88556,212 +89328,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28065] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2544), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2542), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28118] = 4, - ACTIONS(2550), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2548), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2546), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28173] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2554), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2552), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28226] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2558), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2556), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28279] = 3, + [28396] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2562), 15, + ACTIONS(2155), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88777,7 +89348,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2560), 29, + ACTIONS(2157), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88807,11 +89378,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28332] = 3, + [28449] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2570), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88827,7 +89398,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 29, + ACTIONS(2568), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88857,11 +89428,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28385] = 3, + [28502] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2566), 15, + ACTIONS(429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88877,7 +89448,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2564), 29, + ACTIONS(427), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88907,15 +89478,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28438] = 22, - ACTIONS(2570), 1, + [28555] = 18, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, ACTIONS(2582), 1, anon_sym_EQ, ACTIONS(2586), 1, @@ -88925,19 +89492,17 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -88946,26 +89511,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2568), 6, + ACTIONS(2572), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - ACTIONS(2604), 10, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -88976,40 +89543,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28529] = 3, + [28638] = 14, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2596), 1, + anon_sym_CARET, + ACTIONS(2602), 1, + anon_sym_DOT, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 15, + ACTIONS(2578), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2580), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2608), 29, + ACTIONS(2582), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(2572), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -89026,40 +89604,114 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28582] = 3, + [28713] = 17, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2582), 1, + anon_sym_EQ, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2594), 1, + anon_sym_PIPE, + ACTIONS(2596), 1, + anon_sym_CARET, + ACTIONS(2602), 1, + anon_sym_DOT, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 15, + ACTIONS(2578), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2600), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2580), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2598), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2572), 20, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28794] = 13, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2586), 1, anon_sym_AMP, + ACTIONS(2590), 1, anon_sym_DOT_DOT, + ACTIONS(2602), 1, + anon_sym_DOT, + STATE(1078), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2580), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2612), 29, + ACTIONS(2582), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(2572), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -89076,40 +89728,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28635] = 3, + [28867] = 11, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2602), 1, + anon_sym_DOT, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 15, + ACTIONS(2578), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2580), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2582), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2616), 29, + ACTIONS(2572), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -89126,11 +89786,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28688] = 3, + [28936] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 15, + ACTIONS(2606), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89146,7 +89806,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2620), 29, + ACTIONS(2604), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89176,11 +89836,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28741] = 3, + [28989] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 15, + ACTIONS(407), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89196,7 +89856,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2624), 29, + ACTIONS(405), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89226,11 +89886,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28794] = 3, + [29042] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2161), 15, + ACTIONS(2610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89246,7 +89906,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2163), 29, + ACTIONS(2608), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89276,11 +89936,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28847] = 3, + [29095] = 19, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE, + ACTIONS(2596), 1, + anon_sym_CARET, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2614), 1, + anon_sym_EQ, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(429), 15, + ACTIONS(2578), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2600), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2580), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2598), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2612), 18, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29180] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2620), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89296,7 +90022,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(427), 29, + ACTIONS(2618), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89326,11 +90052,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28900] = 3, + [29233] = 19, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE, + ACTIONS(2596), 1, + anon_sym_CARET, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2624), 1, + anon_sym_EQ, + STATE(1078), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2600), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2580), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2598), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2622), 18, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29318] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 15, + ACTIONS(403), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89346,7 +90138,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2628), 29, + ACTIONS(401), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89376,13 +90168,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28953] = 4, - ACTIONS(2414), 1, - anon_sym_COLON_COLON, + [29371] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2410), 15, + ACTIONS(2628), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89398,10 +90188,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2408), 28, + ACTIONS(2626), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -89427,11 +90218,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29008] = 3, + [29424] = 4, + ACTIONS(2392), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(588), 15, + ACTIONS(2386), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89447,11 +90240,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(586), 29, + ACTIONS(2384), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -89477,11 +90269,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29061] = 3, + [29479] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(433), 15, + ACTIONS(2632), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89497,7 +90289,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(431), 29, + ACTIONS(2630), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89527,40 +90319,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29114] = 3, + [29532] = 10, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2602), 1, + anon_sym_DOT, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2153), 15, - anon_sym_PLUS, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2580), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2582), 10, + anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2155), 29, + ACTIONS(2572), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -89577,62 +90376,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29167] = 4, - ACTIONS(2636), 1, - anon_sym_RBRACE, + [29599] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2632), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29222] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(411), 15, + ACTIONS(2636), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89648,7 +90396,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(409), 29, + ACTIONS(2634), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89678,18 +90426,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29275] = 3, + [29652] = 9, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2602), 1, + anon_sym_DOT, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(459), 15, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2582), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -89697,21 +90457,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(457), 29, + ACTIONS(2572), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -89728,11 +90482,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29328] = 3, + [29717] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(437), 15, + ACTIONS(441), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89748,7 +90502,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(435), 29, + ACTIONS(439), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89778,7 +90532,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29381] = 3, + [29770] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -89828,7 +90582,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29434] = 3, + [29823] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -89878,24 +90632,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29487] = 6, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - STATE(962), 1, - sym_arguments, + [29876] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(317), 14, + ACTIONS(2648), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -89904,10 +90652,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(315), 26, + ACTIONS(2646), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -89915,6 +90664,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -89931,30 +90682,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29546] = 9, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2606), 1, - anon_sym_DOT, - STATE(962), 1, - sym_arguments, + [29929] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2648), 13, + ACTIONS(2652), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -89962,15 +90701,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2646), 24, + anon_sym_DOT, + ACTIONS(2650), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -89987,11 +90732,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29611] = 3, + [29982] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2652), 15, + ACTIONS(2656), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90007,7 +90752,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2650), 29, + ACTIONS(2654), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90037,11 +90782,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29664] = 3, + [30035] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2660), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2658), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30088] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2189), 15, + ACTIONS(2664), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90057,7 +90852,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2191), 29, + ACTIONS(2662), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90087,40 +90882,118 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29717] = 3, + [30141] = 19, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE, + ACTIONS(2596), 1, + anon_sym_CARET, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2668), 1, + anon_sym_EQ, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2656), 15, + ACTIONS(2578), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2600), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2580), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2598), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2666), 18, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30226] = 15, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2586), 1, anon_sym_AMP, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - anon_sym_DASH, + ACTIONS(2594), 1, anon_sym_PIPE, + ACTIONS(2596), 1, anon_sym_CARET, + ACTIONS(2602), 1, + anon_sym_DOT, + STATE(1078), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2580), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2654), 29, + ACTIONS(2582), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2572), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -90137,11 +91010,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29770] = 3, + [30303] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2660), 15, + ACTIONS(2672), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90157,7 +91030,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2658), 29, + ACTIONS(2670), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90187,11 +91060,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29823] = 3, + [30356] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2664), 15, + ACTIONS(2466), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90207,7 +91080,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2662), 29, + ACTIONS(2462), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90237,77 +91110,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29876] = 19, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, - anon_sym_PIPE, - ACTIONS(2598), 1, - anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2668), 1, - anon_sym_EQ, - STATE(962), 1, - sym_arguments, + [30409] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2576), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2600), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2666), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29961] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2672), 15, + ACTIONS(465), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90323,7 +91130,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2670), 29, + ACTIONS(463), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90353,90 +91160,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30014] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2676), 12, - anon_sym_SEMI, + [30462] = 12, + ACTIONS(2574), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(2576), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2674), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30067] = 3, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2602), 1, + anon_sym_DOT, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2157), 15, + ACTIONS(2578), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2600), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2580), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2582), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2159), 29, + ACTIONS(2572), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -90453,11 +91219,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30120] = 3, + [30533] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2680), 15, + ACTIONS(2676), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90473,7 +91239,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2678), 29, + ACTIONS(2674), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90503,11 +91269,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30173] = 3, + [30586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(403), 15, + ACTIONS(2680), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90523,7 +91289,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(401), 29, + ACTIONS(2678), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90553,18 +91319,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30226] = 3, + [30639] = 9, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2602), 1, + anon_sym_DOT, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2684), 15, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2684), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -90572,21 +91350,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2682), 29, + ACTIONS(2682), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -90603,18 +91375,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30279] = 3, + [30704] = 6, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(592), 15, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(313), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -90623,11 +91401,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(590), 29, + ACTIONS(311), 26, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -90635,8 +91412,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -90653,11 +91428,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30332] = 3, + [30763] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 15, + ACTIONS(2688), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2686), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30816] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(425), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90673,7 +91498,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2686), 29, + ACTIONS(423), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90703,11 +91528,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30385] = 3, + [30869] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(600), 15, + ACTIONS(2692), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90723,7 +91548,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(598), 29, + ACTIONS(2690), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90753,11 +91578,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30438] = 3, + [30922] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2692), 12, + ACTIONS(2696), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -90770,7 +91595,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2690), 32, + ACTIONS(2694), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90803,57 +91628,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30491] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2696), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2694), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30544] = 3, + [30975] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -90903,111 +91678,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30597] = 3, + [31028] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2704), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2702), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30650] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2708), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2706), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30703] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2712), 15, + ACTIONS(2704), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91023,7 +91698,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2710), 29, + ACTIONS(2702), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91053,11 +91728,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30756] = 3, + [31081] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2716), 15, + ACTIONS(2708), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91073,7 +91748,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2714), 29, + ACTIONS(2706), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91103,7 +91778,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30809] = 3, + [31134] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -91153,62 +91828,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30862] = 19, - ACTIONS(283), 1, - anon_sym_EQ, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, - anon_sym_PIPE, - ACTIONS(2598), 1, - anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - STATE(962), 1, - sym_arguments, + [31187] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2712), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(277), 18, + anon_sym_DOT, + ACTIONS(2710), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91219,11 +91878,112 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30947] = 3, + [31240] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2716), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2714), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31293] = 4, + ACTIONS(2722), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(596), 15, + ACTIONS(2720), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2718), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31348] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2726), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91239,7 +91999,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(594), 29, + ACTIONS(2724), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91269,30 +92029,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31000] = 9, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2606), 1, - anon_sym_DOT, - STATE(962), 1, - sym_arguments, + [31401] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2720), 13, + ACTIONS(2730), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -91300,15 +92048,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2718), 24, + anon_sym_DOT, + ACTIONS(2728), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -91325,11 +92079,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31065] = 3, + [31454] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2724), 15, + ACTIONS(2734), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91345,7 +92099,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2722), 29, + ACTIONS(2732), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91375,11 +92129,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31118] = 3, + [31507] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2728), 15, + ACTIONS(2738), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91395,7 +92149,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2726), 29, + ACTIONS(2736), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91425,11 +92179,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31171] = 3, + [31560] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 15, + ACTIONS(453), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91445,7 +92199,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2394), 29, + ACTIONS(451), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91475,61 +92229,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31224] = 3, + [31613] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2400), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2398), 29, + ACTIONS(2742), 12, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31277] = 3, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2740), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31666] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(2746), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91545,7 +92299,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 29, + ACTIONS(2744), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91575,11 +92329,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31330] = 3, + [31719] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(447), 15, + ACTIONS(2159), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91595,7 +92349,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(445), 29, + ACTIONS(2161), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91625,11 +92379,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31383] = 3, + [31772] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2750), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2748), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31825] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(584), 15, + ACTIONS(461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91645,7 +92449,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(582), 29, + ACTIONS(459), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91675,11 +92479,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31436] = 3, + [31878] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(602), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91695,7 +92499,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 29, + ACTIONS(600), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91725,13 +92529,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31489] = 4, - ACTIONS(2414), 1, - anon_sym_COLON_COLON, + [31931] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2410), 15, + ACTIONS(2754), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91747,10 +92549,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2408), 28, + ACTIONS(2752), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -91776,11 +92579,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31544] = 3, + [31984] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(443), 15, + ACTIONS(2758), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91796,7 +92599,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(441), 29, + ACTIONS(2756), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91826,11 +92629,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31597] = 3, + [32037] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2732), 15, + ACTIONS(598), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91846,7 +92649,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2730), 29, + ACTIONS(596), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91876,164 +92679,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31650] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(882), 1, - anon_sym_COLON_COLON, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(2734), 1, - sym_identifier, - ACTIONS(2738), 1, + [32090] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2740), 1, - anon_sym_STAR, - ACTIONS(2744), 1, - anon_sym_for, - ACTIONS(2746), 1, - anon_sym_AMP, - ACTIONS(2748), 1, - sym_metavariable, - STATE(1755), 1, - sym_scoped_type_identifier, - STATE(1769), 1, - sym_generic_type, - STATE(1871), 1, - sym_where_predicate, - STATE(2252), 1, - sym_bracketed_type, - STATE(2253), 1, - sym_generic_type_with_turbofish, - STATE(2364), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(878), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(2736), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(888), 3, - sym_self, - sym_super, - sym_crate, - STATE(2030), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2742), 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, - [31739] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(417), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2586), 1, anon_sym_AMP, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - anon_sym_DASH, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, anon_sym_PIPE, + ACTIONS(2596), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(415), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, + ACTIONS(2764), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31792] = 3, + ACTIONS(2766), 1, + anon_sym_EQ, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2752), 15, + ACTIONS(2578), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2580), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2750), 29, + ACTIONS(2598), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2760), 6, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92044,11 +92748,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31845] = 3, + [32181] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2756), 15, + ACTIONS(2772), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92064,7 +92768,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2754), 29, + ACTIONS(2770), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92094,11 +92798,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31898] = 3, + [32234] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2404), 15, + ACTIONS(2776), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92114,7 +92818,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2402), 29, + ACTIONS(2774), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92144,11 +92848,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31951] = 3, + [32287] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2760), 15, + ACTIONS(582), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92164,7 +92868,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2758), 29, + ACTIONS(580), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92194,11 +92898,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32004] = 3, + [32340] = 9, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2602), 1, + anon_sym_DOT, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(580), 15, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2780), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2778), 24, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32405] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2784), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92214,7 +92974,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(578), 29, + ACTIONS(2782), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92244,10 +93004,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32057] = 19, - ACTIONS(2570), 1, + [32458] = 19, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, ACTIONS(2586), 1, anon_sym_AMP, @@ -92256,21 +93016,21 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2764), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2788), 1, anon_sym_EQ, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -92279,19 +93039,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2762), 18, + ACTIONS(2786), 18, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -92310,11 +93070,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32142] = 3, + [32543] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2768), 15, + ACTIONS(590), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92330,7 +93090,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2766), 29, + ACTIONS(588), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92360,11 +93120,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32195] = 3, + [32596] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2772), 15, + ACTIONS(2211), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92380,7 +93140,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2770), 29, + ACTIONS(2213), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92410,68 +93170,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32248] = 10, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2606), 1, - anon_sym_DOT, - STATE(962), 1, - sym_arguments, + [32649] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2576), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2776), 10, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2774), 24, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32315] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(576), 15, + ACTIONS(469), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92487,7 +93190,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(574), 29, + ACTIONS(467), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92517,11 +93220,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32368] = 3, + [32702] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2780), 15, + ACTIONS(449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92537,7 +93240,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2778), 29, + ACTIONS(447), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92567,11 +93270,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32421] = 3, + [32755] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2784), 15, + ACTIONS(2792), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92587,7 +93290,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2782), 29, + ACTIONS(2790), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92617,11 +93320,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32474] = 3, + [32808] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2788), 15, + ACTIONS(2796), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92637,7 +93340,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2786), 29, + ACTIONS(2794), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92667,38 +93370,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32527] = 9, - ACTIONS(2570), 1, + [32861] = 19, + ACTIONS(283), 1, + anon_sym_EQ, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, + ACTIONS(2586), 1, + anon_sym_AMP, ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2606), 1, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE, + ACTIONS(2596), 1, + anon_sym_CARET, + ACTIONS(2602), 1, anon_sym_DOT, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2792), 13, + ACTIONS(2578), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2580), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2790), 24, + ACTIONS(2598), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(277), 18, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -92707,12 +93426,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92723,11 +93436,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32592] = 3, + [32946] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2796), 15, + ACTIONS(2800), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92743,7 +93456,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2794), 29, + ACTIONS(2798), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92773,11 +93486,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32645] = 3, + [32999] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(572), 15, + ACTIONS(445), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92793,7 +93506,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(570), 29, + ACTIONS(443), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92823,11 +93536,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32698] = 3, + [33052] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(564), 15, + ACTIONS(594), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92843,7 +93556,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(562), 29, + ACTIONS(592), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92873,68 +93586,98 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32751] = 3, + [33105] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2802), 1, + sym_identifier, + ACTIONS(2806), 1, + anon_sym_LPAREN, + ACTIONS(2808), 1, + anon_sym_STAR, + ACTIONS(2814), 1, + anon_sym_for, + ACTIONS(2816), 1, + anon_sym_AMP, + ACTIONS(2818), 1, + sym_metavariable, + STATE(1773), 1, + sym_scoped_type_identifier, + STATE(1989), 1, + sym_where_predicate, + STATE(2036), 1, + sym_generic_type, + STATE(2289), 1, + sym_bracketed_type, + STATE(2290), 1, + sym_generic_type_with_turbofish, + STATE(2415), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2800), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2798), 29, + ACTIONS(2804), 2, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(2812), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(2048), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2810), 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, + [33194] = 9, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32804] = 3, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2602), 1, + anon_sym_DOT, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2822), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -92942,21 +93685,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(453), 29, + ACTIONS(2820), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -92973,11 +93710,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32857] = 3, + [33259] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2804), 15, + ACTIONS(2826), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92993,7 +93730,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2802), 29, + ACTIONS(2824), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93023,11 +93760,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32910] = 3, + [33312] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2808), 15, + ACTIONS(2830), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93043,7 +93780,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2806), 29, + ACTIONS(2828), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93073,65 +93810,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32963] = 22, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, - anon_sym_PIPE, - ACTIONS(2598), 1, - anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - STATE(962), 1, - sym_arguments, + [33365] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2834), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2810), 6, + anon_sym_DOT, + ACTIONS(2832), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - ACTIONS(2604), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93142,30 +93860,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33054] = 9, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2606), 1, - anon_sym_DOT, - STATE(962), 1, - sym_arguments, + [33418] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2776), 13, + ACTIONS(437), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -93173,15 +93879,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2774), 24, + anon_sym_DOT, + ACTIONS(435), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -93198,11 +93910,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33119] = 3, + [33471] = 4, + ACTIONS(2840), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2814), 15, + ACTIONS(2838), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2836), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33526] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93218,7 +93981,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2812), 29, + ACTIONS(459), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93248,11 +94011,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33172] = 3, + [33579] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2818), 15, + ACTIONS(2199), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93268,7 +94031,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2816), 29, + ACTIONS(2201), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93298,11 +94061,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33225] = 3, + [33632] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2844), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93318,7 +94081,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 29, + ACTIONS(2842), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93348,61 +94111,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33278] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2822), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2820), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33331] = 3, + [33685] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2826), 15, + ACTIONS(2848), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93418,7 +94131,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2824), 29, + ACTIONS(2846), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93448,11 +94161,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33384] = 3, + [33738] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2830), 15, + ACTIONS(2382), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93468,7 +94181,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2828), 29, + ACTIONS(2380), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93498,11 +94211,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33437] = 3, + [33791] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2834), 15, + ACTIONS(2852), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93518,7 +94231,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2832), 29, + ACTIONS(2850), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93548,11 +94261,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33490] = 3, + [33844] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2838), 15, + ACTIONS(2856), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93568,7 +94281,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2836), 29, + ACTIONS(2854), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93598,11 +94311,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33543] = 3, + [33897] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2842), 15, + ACTIONS(2396), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93618,7 +94331,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2840), 29, + ACTIONS(2394), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93648,11 +94361,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33596] = 3, + [33950] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(425), 15, + ACTIONS(2428), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93668,7 +94381,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(423), 29, + ACTIONS(2426), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93698,11 +94411,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33649] = 3, + [34003] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2846), 15, + ACTIONS(2860), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93718,7 +94431,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2844), 29, + ACTIONS(2858), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93748,131 +94461,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33702] = 5, - ACTIONS(2848), 1, - anon_sym_POUND, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1055), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2303), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2301), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33759] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(882), 1, - anon_sym_COLON_COLON, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(2734), 1, - sym_identifier, - ACTIONS(2738), 1, - anon_sym_LPAREN, - ACTIONS(2740), 1, - anon_sym_STAR, - ACTIONS(2744), 1, - anon_sym_for, - ACTIONS(2746), 1, - anon_sym_AMP, - ACTIONS(2748), 1, - sym_metavariable, - STATE(1755), 1, - sym_scoped_type_identifier, - STATE(1769), 1, - sym_generic_type, - STATE(1871), 1, - sym_where_predicate, - STATE(2252), 1, - sym_bracketed_type, - STATE(2253), 1, - sym_generic_type_with_turbofish, - STATE(2364), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(878), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(2851), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(888), 3, - sym_self, - sym_super, - sym_crate, - STATE(2030), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2742), 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, - [33848] = 3, + [34056] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2855), 15, + ACTIONS(2864), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93888,7 +94481,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2853), 29, + ACTIONS(2862), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93918,11 +94511,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33901] = 3, + [34109] = 4, + ACTIONS(2866), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2859), 15, + ACTIONS(461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93938,11 +94533,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2857), 29, + ACTIONS(459), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -93968,77 +94562,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33954] = 19, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, - anon_sym_PIPE, - ACTIONS(2598), 1, - anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2863), 1, - anon_sym_EQ, - STATE(962), 1, - sym_arguments, + [34164] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2576), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2600), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2861), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34039] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2434), 15, + ACTIONS(2870), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94054,7 +94582,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2430), 29, + ACTIONS(2868), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94084,11 +94612,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34092] = 3, + [34217] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2867), 15, + ACTIONS(2874), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94104,7 +94632,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2865), 29, + ACTIONS(2872), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94134,11 +94662,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34145] = 3, + [34270] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(407), 15, + ACTIONS(2878), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94154,7 +94682,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(405), 29, + ACTIONS(2876), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94184,11 +94712,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34198] = 3, + [34323] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2871), 15, + ACTIONS(461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94204,7 +94732,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2869), 29, + ACTIONS(459), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94234,11 +94762,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34251] = 3, + [34376] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2875), 15, + ACTIONS(2882), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94254,7 +94782,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2873), 29, + ACTIONS(2880), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94284,10 +94812,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34304] = 19, - ACTIONS(2570), 1, + [34429] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, ACTIONS(2586), 1, anon_sym_AMP, @@ -94296,21 +94824,25 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, anon_sym_EQ, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -94319,27 +94851,26 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2877), 18, + ACTIONS(2884), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94350,48 +94881,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34389] = 11, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2606), 1, - anon_sym_DOT, - STATE(962), 1, - sym_arguments, + [34520] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(477), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2576), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2776), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2774), 24, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(475), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -94408,50 +94931,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34458] = 13, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2606), 1, - anon_sym_DOT, - STATE(962), 1, - sym_arguments, + [34573] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(419), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2576), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2776), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2774), 24, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(417), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -94468,186 +94981,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34531] = 14, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2598), 1, - anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - STATE(962), 1, - sym_arguments, + [34626] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(481), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2576), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2776), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - ACTIONS(2774), 24, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34606] = 18, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2596), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2776), 1, - anon_sym_EQ, - STATE(962), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2574), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2774), 19, + anon_sym_DOT, + ACTIONS(479), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34689] = 17, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2596), 1, - anon_sym_PIPE, - ACTIONS(2598), 1, - anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2776), 1, - anon_sym_EQ, - STATE(962), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2574), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2576), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2600), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2774), 20, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94658,11 +95031,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34770] = 3, + [34679] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(421), 15, + ACTIONS(415), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94678,7 +95051,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(419), 29, + ACTIONS(413), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94708,49 +95081,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34823] = 12, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2606), 1, - anon_sym_DOT, - STATE(962), 1, - sym_arguments, + [34732] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(586), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2576), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2776), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2774), 24, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(584), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -94767,13 +95131,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34894] = 4, - ACTIONS(2881), 1, - anon_sym_COLON_COLON, + [34785] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94789,10 +95151,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 28, + ACTIONS(459), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -94818,52 +95181,460 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34949] = 15, - ACTIONS(2570), 1, + [34838] = 5, + ACTIONS(2886), 1, + anon_sym_POUND, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1077), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2333), 9, anon_sym_LPAREN, - ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2331), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34895] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2891), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2596), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2606), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DOT, - STATE(962), 1, - sym_arguments, + ACTIONS(2889), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34948] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2802), 1, + sym_identifier, + ACTIONS(2806), 1, + anon_sym_LPAREN, + ACTIONS(2808), 1, + anon_sym_STAR, + ACTIONS(2814), 1, + anon_sym_for, + ACTIONS(2816), 1, + anon_sym_AMP, + ACTIONS(2818), 1, + sym_metavariable, + STATE(1773), 1, + sym_scoped_type_identifier, + STATE(1989), 1, + sym_where_predicate, + STATE(2036), 1, + sym_generic_type, + STATE(2289), 1, + sym_bracketed_type, + STATE(2290), 1, + sym_generic_type_with_turbofish, + STATE(2415), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2812), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(2893), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(2048), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2810), 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, + [35037] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2897), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, - ACTIONS(2588), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2895), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35090] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2901), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2899), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35143] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2905), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2903), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35196] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2909), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2907), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35249] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(411), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2776), 3, + anon_sym_DOT, + ACTIONS(409), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35302] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(433), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2774), 24, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(431), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -94880,19 +95651,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35026] = 7, - ACTIONS(2390), 1, + [35355] = 7, + ACTIONS(2422), 1, anon_sym_LBRACE, - ACTIONS(2392), 1, + ACTIONS(2424), 1, anon_sym_COLON_COLON, - ACTIONS(2883), 1, + ACTIONS(2911), 1, anon_sym_BANG, - STATE(966), 1, + STATE(1048), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94908,7 +95679,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 24, + ACTIONS(459), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -94933,11 +95704,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35086] = 3, + [35415] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2548), 14, + ACTIONS(2838), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -94952,7 +95723,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2546), 29, + ACTIONS(2836), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94982,11 +95753,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35138] = 3, + [35467] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 14, + ACTIONS(2720), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -95001,7 +95772,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2632), 29, + ACTIONS(2718), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95031,54 +95802,54 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35190] = 21, + [35519] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(678), 1, - anon_sym_fn, - ACTIONS(680), 1, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(692), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(876), 1, - anon_sym_default, - ACTIONS(882), 1, + ACTIONS(2269), 1, + anon_sym_fn, + ACTIONS(2277), 1, anon_sym_COLON_COLON, - ACTIONS(2748), 1, - sym_metavariable, - ACTIONS(2885), 1, + ACTIONS(2913), 1, sym_identifier, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1258), 1, + ACTIONS(2917), 1, + anon_sym_default, + ACTIONS(2919), 1, + sym_metavariable, + STATE(711), 1, sym_scoped_type_identifier, - STATE(1297), 1, + STATE(825), 1, sym_generic_type, - STATE(1312), 1, + STATE(1057), 1, sym_function_type, - STATE(2252), 1, - sym_bracketed_type, - STATE(2253), 1, - sym_generic_type_with_turbofish, + STATE(1211), 1, + sym_for_lifetimes, STATE(2292), 1, sym_function_modifiers, - STATE(2364), 1, + STATE(2313), 1, sym_scoped_identifier, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2285), 3, sym_self, sym_super, sym_crate, - ACTIONS(878), 18, + ACTIONS(2915), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95097,84 +95868,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [35277] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(882), 1, - anon_sym_COLON_COLON, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(2734), 1, - sym_identifier, - ACTIONS(2738), 1, - anon_sym_LPAREN, - ACTIONS(2740), 1, - anon_sym_STAR, - ACTIONS(2744), 1, - anon_sym_for, - ACTIONS(2746), 1, - anon_sym_AMP, - ACTIONS(2748), 1, - sym_metavariable, - STATE(1755), 1, - sym_scoped_type_identifier, - STATE(1769), 1, - sym_generic_type, - STATE(1871), 1, - sym_where_predicate, - STATE(2252), 1, - sym_bracketed_type, - STATE(2253), 1, - sym_generic_type_with_turbofish, - STATE(2364), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(878), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(888), 3, - sym_self, - sym_super, - sym_crate, - STATE(2030), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2742), 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, - [35362] = 25, + [35606] = 25, ACTIONS(363), 1, anon_sym_RBRACK, - ACTIONS(2570), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -95182,25 +95882,31 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2887), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2921), 1, anon_sym_SEMI, - ACTIONS(2889), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - STATE(962), 1, + STATE(1078), 1, sym_arguments, - STATE(1892), 1, + STATE(1794), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -95209,19 +95915,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95232,84 +95938,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35457] = 17, + [35701] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(975), 1, + ACTIONS(682), 1, + anon_sym_fn, + ACTIONS(684), 1, + anon_sym_for, + ACTIONS(696), 1, + anon_sym_extern, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2891), 1, - sym_identifier, - ACTIONS(2893), 1, - anon_sym_RPAREN, - ACTIONS(2897), 1, - anon_sym_COMMA, - ACTIONS(2901), 1, + ACTIONS(2818), 1, sym_metavariable, - STATE(1518), 1, - sym_scoped_identifier, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2341), 1, + ACTIONS(2925), 1, + sym_identifier, + ACTIONS(2927), 1, + anon_sym_default, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1271), 1, + sym_scoped_type_identifier, + STATE(1308), 1, + sym_generic_type, + STATE(1341), 1, + sym_function_type, + STATE(2289), 1, sym_bracketed_type, + STATE(2290), 1, + sym_generic_type_with_turbofish, + STATE(2308), 1, + sym_function_modifiers, + STATE(2415), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(990), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1927), 2, - sym_meta_item, - sym__literal, - ACTIONS(2899), 3, + STATE(1491), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(676), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2895), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [35536] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1138), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_POUND, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(1140), 32, + ACTIONS(2812), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95327,26 +96003,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [35587] = 3, + [35788] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2778), 10, + ACTIONS(2876), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PLUS, @@ -95357,7 +96019,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2780), 32, + ACTIONS(2878), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95390,54 +96052,54 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35638] = 21, + [35839] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(680), 1, + ACTIONS(682), 1, + anon_sym_fn, + ACTIONS(684), 1, anon_sym_for, - ACTIONS(692), 1, + ACTIONS(696), 1, anon_sym_extern, - ACTIONS(2249), 1, - anon_sym_default, - ACTIONS(2251), 1, - anon_sym_fn, - ACTIONS(2259), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2903), 1, - sym_identifier, - ACTIONS(2905), 1, + ACTIONS(2818), 1, sym_metavariable, - STATE(718), 1, + ACTIONS(2927), 1, + anon_sym_default, + ACTIONS(2929), 1, + sym_identifier, + STATE(1179), 1, + sym_for_lifetimes, + STATE(1272), 1, sym_scoped_type_identifier, - STATE(811), 1, + STATE(1312), 1, sym_generic_type, - STATE(1023), 1, + STATE(1323), 1, sym_function_type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2255), 1, - sym_function_modifiers, - STATE(2271), 1, - sym_scoped_identifier, - STATE(2345), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2346), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, + STATE(2308), 1, + sym_function_modifiers, + STATE(2415), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, + STATE(1491), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, + ACTIONS(676), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2267), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - ACTIONS(2255), 18, + ACTIONS(2812), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95456,54 +96118,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [35725] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(680), 1, - anon_sym_for, - ACTIONS(692), 1, - anon_sym_extern, - ACTIONS(2249), 1, - anon_sym_default, - ACTIONS(2251), 1, - anon_sym_fn, - ACTIONS(2259), 1, - anon_sym_COLON_COLON, - ACTIONS(2905), 1, - sym_metavariable, - ACTIONS(2907), 1, - sym_identifier, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(856), 1, - sym_generic_type, - STATE(1011), 1, - sym_function_type, - STATE(1220), 1, - sym_for_lifetimes, - STATE(2255), 1, - sym_function_modifiers, - STATE(2271), 1, - sym_scoped_identifier, - STATE(2345), 1, - sym_bracketed_type, - STATE(2346), 1, - sym_generic_type_with_turbofish, + [35926] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2267), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2255), 18, + ACTIONS(1118), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(1120), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95521,55 +96151,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_union, - [35812] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(678), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, anon_sym_fn, - ACTIONS(680), 1, anon_sym_for, - ACTIONS(692), 1, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, anon_sym_extern, - ACTIONS(876), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35977] = 17, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2748), 1, - sym_metavariable, - ACTIONS(2909), 1, + ACTIONS(2931), 1, sym_identifier, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1261), 1, - sym_scoped_type_identifier, - STATE(1286), 1, - sym_generic_type, - STATE(1315), 1, - sym_function_type, - STATE(2252), 1, + ACTIONS(2933), 1, + anon_sym_RPAREN, + ACTIONS(2937), 1, + anon_sym_COMMA, + ACTIONS(2941), 1, + sym_metavariable, + STATE(1553), 1, + sym_scoped_identifier, + STATE(2370), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, - STATE(2292), 1, - sym_function_modifiers, - STATE(2364), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(965), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1937), 2, + sym_meta_item, + sym__literal, + ACTIONS(2939), 3, sym_self, sym_super, sym_crate, - ACTIONS(878), 18, + ACTIONS(89), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(2935), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95587,20 +96226,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_default, anon_sym_union, - [35899] = 25, - ACTIONS(638), 1, + [36056] = 25, + ACTIONS(628), 1, anon_sym_RBRACK, - ACTIONS(2570), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -95608,25 +96242,31 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2911), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2943), 1, anon_sym_SEMI, - ACTIONS(2913), 1, + ACTIONS(2945), 1, anon_sym_COMMA, - STATE(962), 1, + STATE(1078), 1, sym_arguments, - STATE(1778), 1, + STATE(2004), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -95635,19 +96275,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95658,54 +96298,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35994] = 20, + [36151] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(882), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2103), 1, + ACTIONS(2123), 1, anon_sym_SQUOTE, - ACTIONS(2734), 1, + ACTIONS(2802), 1, sym_identifier, - ACTIONS(2738), 1, + ACTIONS(2806), 1, anon_sym_LPAREN, - ACTIONS(2740), 1, + ACTIONS(2808), 1, anon_sym_STAR, - ACTIONS(2744), 1, + ACTIONS(2814), 1, anon_sym_for, - ACTIONS(2746), 1, + ACTIONS(2816), 1, anon_sym_AMP, - ACTIONS(2748), 1, + ACTIONS(2818), 1, sym_metavariable, - STATE(1755), 1, + STATE(1773), 1, sym_scoped_type_identifier, - STATE(1758), 1, + STATE(1989), 1, sym_where_predicate, - STATE(1769), 1, + STATE(2036), 1, sym_generic_type, - STATE(2252), 1, + STATE(2289), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2290), 1, sym_generic_type_with_turbofish, - STATE(2364), 1, + STATE(2415), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(878), 2, + ACTIONS(2812), 2, anon_sym_default, anon_sym_union, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(2030), 5, + STATE(2048), 5, sym_higher_ranked_trait_bound, sym_lifetime, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(2742), 17, + ACTIONS(2810), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95723,19 +96363,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [36079] = 6, - ACTIONS(2344), 1, + [36236] = 20, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(2802), 1, + sym_identifier, + ACTIONS(2806), 1, + anon_sym_LPAREN, + ACTIONS(2808), 1, + anon_sym_STAR, + ACTIONS(2814), 1, + anon_sym_for, + ACTIONS(2816), 1, + anon_sym_AMP, + ACTIONS(2818), 1, + sym_metavariable, + STATE(1715), 1, + sym_where_predicate, + STATE(1773), 1, + sym_scoped_type_identifier, + STATE(2036), 1, + sym_generic_type, + STATE(2289), 1, + sym_bracketed_type, + STATE(2290), 1, + sym_generic_type_with_turbofish, + STATE(2415), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2812), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(2048), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2810), 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, + [36321] = 6, + ACTIONS(2390), 1, anon_sym_BANG, - ACTIONS(2915), 1, + ACTIONS(2392), 1, anon_sym_COLON_COLON, - STATE(966), 1, - sym_field_initializer_list, + ACTIONS(2947), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2386), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95749,12 +96455,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 23, + ACTIONS(2384), 23, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -95773,15 +96479,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36135] = 5, - ACTIONS(2528), 1, + [36378] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(684), 1, + anon_sym_for, + ACTIONS(696), 1, + anon_sym_extern, + ACTIONS(2269), 1, + anon_sym_fn, + ACTIONS(2277), 1, + anon_sym_COLON_COLON, + ACTIONS(2917), 1, + anon_sym_default, + ACTIONS(2919), 1, + sym_metavariable, + ACTIONS(2949), 1, + sym_identifier, + STATE(721), 1, + sym_scoped_type_identifier, + STATE(822), 1, + sym_generic_type, + STATE(1061), 1, + sym_function_type, + STATE(1211), 1, + sym_for_lifetimes, + STATE(2292), 1, + sym_function_modifiers, + STATE(2313), 1, + sym_scoped_identifier, + STATE(2391), 1, + sym_bracketed_type, + STATE(2392), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1491), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(676), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2285), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2915), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [36465] = 5, + ACTIONS(2534), 1, anon_sym_COLON_COLON, - ACTIONS(2883), 1, + ACTIONS(2911), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95797,7 +96569,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(453), 24, + ACTIONS(459), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -95822,17 +96594,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36189] = 24, - ACTIONS(2570), 1, + [36519] = 24, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE, + ACTIONS(2596), 1, + anon_sym_CARET, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2582), 1, + ACTIONS(2766), 1, anon_sym_EQ, + ACTIONS(2951), 1, + anon_sym_RPAREN, + ACTIONS(2953), 1, + anon_sym_COMMA, + STATE(1078), 1, + sym_arguments, + STATE(1837), 1, + aux_sym_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2600), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2580), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2598), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36611] = 24, + ACTIONS(371), 1, + anon_sym_RPAREN, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -95840,25 +96676,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2917), 1, - anon_sym_RPAREN, - ACTIONS(2919), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2955), 1, anon_sym_COMMA, - STATE(962), 1, + STATE(1078), 1, sym_arguments, - STATE(1959), 1, + STATE(1969), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -95867,19 +96707,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95890,47 +96730,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36281] = 16, - ACTIONS(77), 1, + [36703] = 6, + ACTIONS(2366), 1, + anon_sym_BANG, + ACTIONS(2957), 1, + anon_sym_COLON_COLON, + STATE(1048), 1, + sym_field_initializer_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(461), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - ACTIONS(710), 1, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, - ACTIONS(714), 1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(459), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36759] = 16, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(975), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2921), 1, + ACTIONS(2931), 1, sym_identifier, - ACTIONS(2927), 1, + ACTIONS(2941), 1, sym_metavariable, - STATE(1355), 1, + ACTIONS(2959), 1, + anon_sym_RPAREN, + STATE(1553), 1, sym_scoped_identifier, - STATE(1376), 1, - sym__literal_pattern, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2246), 1, + STATE(2370), 1, sym_bracketed_type, + STATE(2431), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(716), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(2925), 3, + STATE(965), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2230), 2, + sym_meta_item, + sym__literal, + ACTIONS(2939), 3, sym_self, sym_super, sym_crate, - STATE(1322), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(712), 4, + ACTIONS(89), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(2923), 19, + ACTIONS(2935), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95950,47 +96840,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [36357] = 16, + [36835] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, + ACTIONS(714), 1, + anon_sym_DASH, + ACTIONS(718), 1, aux_sym_string_literal_token1, - ACTIONS(975), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2891), 1, + ACTIONS(2961), 1, sym_identifier, - ACTIONS(2901), 1, + ACTIONS(2967), 1, sym_metavariable, - ACTIONS(2929), 1, - anon_sym_RPAREN, - STATE(1518), 1, + STATE(1346), 1, sym_scoped_identifier, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2341), 1, + STATE(1386), 1, + sym__literal_pattern, + STATE(2287), 1, sym_bracketed_type, + STATE(2431), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, + ACTIONS(720), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2009), 2, - sym_meta_item, - sym__literal, - ACTIONS(2899), 3, + ACTIONS(2965), 3, sym_self, sym_super, sym_crate, - ACTIONS(89), 4, + STATE(1331), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(716), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(2895), 19, + ACTIONS(2963), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96010,47 +96900,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [36433] = 16, + [36911] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(710), 1, - anon_sym_DASH, ACTIONS(714), 1, + anon_sym_DASH, + ACTIONS(718), 1, aux_sym_string_literal_token1, - ACTIONS(975), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, + ACTIONS(2969), 1, sym_identifier, - ACTIONS(2937), 1, + ACTIONS(2975), 1, sym_metavariable, - STATE(1356), 1, + STATE(1350), 1, sym_scoped_identifier, - STATE(1390), 1, + STATE(1396), 1, sym__literal_pattern, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2246), 1, + STATE(2287), 1, sym_bracketed_type, + STATE(2431), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(716), 2, + ACTIONS(720), 2, anon_sym_true, anon_sym_false, - ACTIONS(2935), 3, + ACTIONS(2973), 3, sym_self, sym_super, sym_crate, - STATE(1322), 3, + STATE(1331), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(712), 4, + ACTIONS(716), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(2933), 19, + ACTIONS(2971), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96070,68 +96960,119 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [36509] = 5, - ACTIONS(2414), 1, + [36987] = 16, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2939), 1, + ACTIONS(2931), 1, sym_identifier, + ACTIONS(2941), 1, + sym_metavariable, + ACTIONS(2977), 1, + anon_sym_RPAREN, + STATE(1553), 1, + sym_scoped_identifier, + STATE(2370), 1, + sym_bracketed_type, + STATE(2431), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2410), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2408), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36563] = 24, - ACTIONS(381), 1, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(965), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2230), 2, + sym_meta_item, + sym__literal, + ACTIONS(2939), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(89), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(2935), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [37063] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2981), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2979), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [37112] = 23, + ACTIONS(483), 1, anon_sym_RPAREN, - ACTIONS(2570), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -96139,23 +97080,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2941), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2983), 1, anon_sym_COMMA, - STATE(962), 1, + STATE(1078), 1, sym_arguments, - STATE(1893), 1, - aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -96164,19 +97109,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96187,38 +97132,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36655] = 16, + [37201] = 15, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(975), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2891), 1, + ACTIONS(2931), 1, sym_identifier, - ACTIONS(2901), 1, + ACTIONS(2941), 1, sym_metavariable, - ACTIONS(2943), 1, - anon_sym_RPAREN, - STATE(1518), 1, + STATE(1553), 1, sym_scoped_identifier, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2341), 1, + STATE(2370), 1, sym_bracketed_type, + STATE(2431), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(965), 2, sym_string_literal, sym_boolean_literal, - STATE(2009), 2, + STATE(2230), 2, sym_meta_item, sym__literal, - ACTIONS(2899), 3, + ACTIONS(2939), 3, sym_self, sym_super, sym_crate, @@ -96227,7 +97170,7 @@ static uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(2895), 19, + ACTIONS(2935), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96247,148 +97190,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [36731] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, - anon_sym_EQ, - ACTIONS(2953), 1, - anon_sym_AMP, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_AMP_AMP, - ACTIONS(2961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, - anon_sym_PIPE, - ACTIONS(2965), 1, - anon_sym_CARET, - STATE(30), 1, - sym_block, - STATE(962), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2945), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2951), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2947), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2967), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2971), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36820] = 22, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, - anon_sym_PIPE, - ACTIONS(2598), 1, - anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - STATE(962), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2574), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2973), 2, + [37274] = 23, + ACTIONS(119), 1, anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2576), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2600), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2604), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36907] = 22, - ACTIONS(2570), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -96396,88 +97204,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - STATE(962), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2574), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2975), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2576), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2600), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2604), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36994] = 23, - ACTIONS(439), 1, - anon_sym_RPAREN, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2582), 1, + ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, - anon_sym_PIPE, - ACTIONS(2598), 1, - anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2977), 1, - anon_sym_COMMA, - STATE(962), 1, + ACTIONS(2985), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -96486,19 +97233,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96509,11 +97256,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37083] = 3, + [37363] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2981), 9, + ACTIONS(2742), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -96523,7 +97270,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2979), 31, + ACTIONS(2740), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96555,42 +97302,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37132] = 3, + [37412] = 23, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE, + ACTIONS(2596), 1, + anon_sym_CARET, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + anon_sym_RPAREN, + ACTIONS(2989), 1, + anon_sym_COMMA, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2378), 16, + ACTIONS(2578), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2580), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2380), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96601,21 +97368,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37181] = 3, + [37501] = 4, + ACTIONS(2995), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2985), 9, + ACTIONS(2993), 8, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, anon_sym_BANG, anon_sym_LT, - anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2983), 31, + ACTIONS(2991), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96647,62 +97415,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37230] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, + [37552] = 23, + ACTIONS(105), 1, + anon_sym_RBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, - anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(44), 1, - sym_block, - STATE(962), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2985), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96713,90 +97481,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37319] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2362), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + [37641] = 22, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2586), 1, anon_sym_AMP, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - anon_sym_DASH, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, anon_sym_PIPE, + ACTIONS(2596), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2364), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, + ACTIONS(2764), 1, anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37368] = 5, - ACTIONS(2344), 1, - anon_sym_BANG, - ACTIONS(2987), 1, - anon_sym_COLON_COLON, + ACTIONS(2766), 1, + anon_sym_EQ, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, + ACTIONS(2578), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2997), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2580), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(453), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96807,65 +97546,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37421] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2704), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2702), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37470] = 23, - ACTIONS(560), 1, - anon_sym_RPAREN, - ACTIONS(2570), 1, + [37728] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -96873,21 +97558,25 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2977), 1, - anon_sym_COMMA, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -96896,19 +97585,22 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2999), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96919,62 +97611,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37559] = 23, - ACTIONS(2570), 1, + [37815] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2989), 1, - anon_sym_LBRACE, - STATE(962), 1, + STATE(53), 1, + sym_block, + STATE(1078), 1, sym_arguments, - STATE(994), 1, - sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96985,64 +97677,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37648] = 4, - ACTIONS(2995), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2993), 8, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2991), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37699] = 23, - ACTIONS(2570), 1, + [37904] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -97050,23 +97689,25 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2997), 1, - anon_sym_RPAREN, - ACTIONS(2999), 1, - anon_sym_COMMA, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -97075,19 +97716,22 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3029), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97098,17 +97742,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37788] = 22, - ACTIONS(2570), 1, + [37991] = 23, + ACTIONS(117), 1, + anon_sym_RBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -97116,19 +97756,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2985), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -97137,22 +97785,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3001), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97163,62 +97808,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37875] = 23, - ACTIONS(2570), 1, + [38080] = 23, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2582), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2586), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_RBRACE, - ACTIONS(3005), 1, - anon_sym_COMMA, - STATE(962), 1, + STATE(725), 1, + sym_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97229,62 +97874,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37964] = 23, - ACTIONS(263), 1, - anon_sym_RBRACE, - ACTIONS(2570), 1, + [38169] = 23, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2582), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2586), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(3007), 1, - anon_sym_SEMI, - STATE(962), 1, + STATE(1044), 1, + sym_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97295,61 +97940,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38053] = 22, - ACTIONS(2570), 1, + [38258] = 23, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2582), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2586), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - STATE(962), 1, + STATE(1025), 1, + sym_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3009), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2576), 3, + ACTIONS(3003), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3027), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38347] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2402), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + anon_sym_DOT, + ACTIONS(2404), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97360,11 +98052,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38140] = 3, + [38396] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3013), 9, + ACTIONS(2716), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -97374,7 +98066,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3011), 31, + ACTIONS(2714), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97406,62 +98098,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38189] = 23, - ACTIONS(2570), 1, + [38445] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2582), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2586), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2977), 1, - anon_sym_COMMA, - ACTIONS(3015), 1, - anon_sym_RPAREN, - STATE(962), 1, + ACTIONS(3031), 1, + anon_sym_LBRACE, + STATE(1051), 1, + sym_match_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97472,62 +98164,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38278] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, + [38534] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2410), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2412), 24, anon_sym_LPAREN, - ACTIONS(2572), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, - anon_sym_EQ, - ACTIONS(2953), 1, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38583] = 23, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(34), 1, - sym_block, - STATE(962), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2985), 1, + anon_sym_SEMI, + ACTIONS(3033), 1, + anon_sym_RBRACE, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97538,62 +98276,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38367] = 23, - ACTIONS(2570), 1, + [38672] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(3017), 1, - anon_sym_LBRACE, - STATE(69), 1, - sym_match_block, - STATE(962), 1, + STATE(34), 1, + sym_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97604,62 +98342,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38456] = 23, - ACTIONS(15), 1, + [38761] = 23, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(65), 1, + STATE(986), 1, sym_block, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97670,17 +98408,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38545] = 22, - ACTIONS(2570), 1, + [38850] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -97688,19 +98420,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3035), 1, + anon_sym_RBRACE, + ACTIONS(3037), 1, + anon_sym_COMMA, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -97709,22 +98451,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3019), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97735,61 +98474,90 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38632] = 22, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, + [38939] = 5, + ACTIONS(2508), 1, + anon_sym_BANG, + ACTIONS(3039), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2386), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2586), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2598), 1, anon_sym_CARET, - ACTIONS(2606), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DOT, - STATE(962), 1, - sym_arguments, + ACTIONS(2384), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38992] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2418), 16, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3021), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2576), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + anon_sym_DOT, + ACTIONS(2420), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97800,17 +98568,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38719] = 22, - ACTIONS(2570), 1, + [39041] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3043), 9, anon_sym_LPAREN, - ACTIONS(2572), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3041), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [39090] = 23, + ACTIONS(123), 1, + anon_sym_RBRACE, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -97818,19 +98628,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2985), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -97839,22 +98657,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3023), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97865,62 +98680,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38806] = 23, - ACTIONS(15), 1, + [39179] = 23, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(64), 1, + STATE(1039), 1, sym_block, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97931,17 +98746,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38895] = 22, - ACTIONS(2570), 1, + [39268] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -97949,19 +98758,25 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -97970,22 +98785,22 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3025), 2, + ACTIONS(3045), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97996,19 +98811,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38982] = 23, - ACTIONS(111), 1, - anon_sym_RBRACE, - ACTIONS(2570), 1, + [39355] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -98016,21 +98823,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3007), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2985), 1, anon_sym_SEMI, - STATE(962), 1, + ACTIONS(3047), 1, + anon_sym_RBRACE, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -98039,19 +98854,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98062,62 +98877,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39071] = 23, - ACTIONS(15), 1, + [39444] = 23, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(52), 1, + STATE(1045), 1, sym_block, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98128,62 +98943,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39160] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, + [39533] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, - anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(71), 1, - sym_block, - STATE(962), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3049), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98194,17 +99008,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39249] = 22, - ACTIONS(2570), 1, + [39620] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -98212,19 +99020,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2985), 1, + anon_sym_SEMI, + ACTIONS(3051), 1, + anon_sym_RBRACE, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -98233,22 +99051,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3027), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98259,17 +99074,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39336] = 23, - ACTIONS(2570), 1, + [39709] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -98277,23 +99086,25 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3007), 1, - anon_sym_SEMI, - ACTIONS(3029), 1, - anon_sym_RBRACE, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -98302,19 +99113,22 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3053), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98325,62 +99139,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39425] = 23, - ACTIONS(2570), 1, + [39796] = 23, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2582), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2586), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(3031), 1, - anon_sym_RBRACE, - ACTIONS(3033), 1, - anon_sym_COMMA, - STATE(962), 1, + STATE(732), 1, + sym_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98391,62 +99205,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39514] = 23, - ACTIONS(109), 1, - anon_sym_RBRACE, - ACTIONS(2570), 1, + [39885] = 23, + ACTIONS(644), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2582), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2586), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(3007), 1, - anon_sym_SEMI, - STATE(962), 1, + STATE(208), 1, + sym_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98457,62 +99271,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39603] = 23, - ACTIONS(279), 1, + [39974] = 23, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(719), 1, + STATE(54), 1, sym_block, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98523,61 +99337,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39692] = 22, - ACTIONS(2570), 1, + [40063] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2582), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2586), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - STATE(962), 1, + ACTIONS(3055), 1, + anon_sym_LBRACE, + STATE(219), 1, + sym_match_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3035), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2576), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98588,17 +99403,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39779] = 23, - ACTIONS(2570), 1, + [40152] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -98606,23 +99415,25 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3007), 1, - anon_sym_SEMI, - ACTIONS(3037), 1, - anon_sym_RBRACE, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -98631,19 +99442,22 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3057), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98654,19 +99468,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39868] = 23, - ACTIONS(265), 1, - anon_sym_RBRACE, - ACTIONS(2570), 1, + [40239] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -98674,21 +99480,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3007), 1, - anon_sym_SEMI, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_COMMA, + ACTIONS(3059), 1, + anon_sym_RPAREN, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -98697,19 +99511,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98720,64 +99534,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39957] = 4, - ACTIONS(3039), 1, + [40328] = 23, + ACTIONS(644), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(3005), 1, + anon_sym_EQ, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3013), 1, + anon_sym_DOT_DOT, + ACTIONS(3015), 1, + anon_sym_AMP_AMP, + ACTIONS(3017), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3019), 1, + anon_sym_PIPE, + ACTIONS(3021), 1, + anon_sym_CARET, + STATE(220), 1, + sym_block, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2993), 8, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + ACTIONS(3001), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3007), 2, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2991), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [40008] = 23, - ACTIONS(2570), 1, + anon_sym_GT, + ACTIONS(3011), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3025), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3003), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3027), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [40417] = 23, + ACTIONS(111), 1, + anon_sym_RBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -98785,23 +99614,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3007), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2985), 1, anon_sym_SEMI, - ACTIONS(3041), 1, - anon_sym_RBRACE, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -98810,19 +99643,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98833,65 +99666,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40097] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2692), 9, + [40506] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, + ACTIONS(2576), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(2586), 1, anon_sym_AMP, - sym_metavariable, - ACTIONS(2690), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [40146] = 23, - ACTIONS(105), 1, - anon_sym_RBRACE, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE, + ACTIONS(2596), 1, + anon_sym_CARET, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2582), 1, + ACTIONS(2766), 1, anon_sym_EQ, + ACTIONS(2985), 1, + anon_sym_SEMI, + ACTIONS(3061), 1, + anon_sym_RBRACE, + STATE(1078), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2600), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2580), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2598), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [40595] = 22, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -98899,21 +99744,25 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3007), 1, - anon_sym_SEMI, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -98922,19 +99771,22 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3063), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98945,62 +99797,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40235] = 23, - ACTIONS(279), 1, + [40682] = 23, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(962), 1, - sym_arguments, - STATE(977), 1, + STATE(68), 1, sym_block, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99011,62 +99863,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40324] = 23, - ACTIONS(640), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, + [40771] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, - anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(216), 1, - sym_block, - STATE(962), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3065), 1, + anon_sym_RBRACE, + ACTIONS(3067), 1, + anon_sym_COMMA, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99077,62 +99929,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40413] = 23, - ACTIONS(640), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, + [40860] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(219), 1, - sym_block, - STATE(962), 1, + ACTIONS(3069), 1, + anon_sym_LBRACE, + STATE(52), 1, + sym_match_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99143,62 +99995,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40502] = 23, - ACTIONS(640), 1, + [40949] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3073), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3071), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [40998] = 23, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(222), 1, + STATE(32), 1, sym_block, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99209,17 +100107,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40591] = 23, - ACTIONS(2570), 1, + [41087] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -99227,23 +100119,25 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3007), 1, - anon_sym_SEMI, - ACTIONS(3043), 1, - anon_sym_RBRACE, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -99252,19 +100146,22 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3075), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99275,62 +100172,109 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40680] = 23, + [41174] = 4, + ACTIONS(3077), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2993), 8, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2991), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [41225] = 23, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(962), 1, - sym_arguments, - STATE(1036), 1, + STATE(974), 1, sym_block, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99341,62 +100285,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40769] = 23, - ACTIONS(640), 1, + [41314] = 23, + ACTIONS(644), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(207), 1, + STATE(218), 1, sym_block, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99407,17 +100351,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40858] = 23, - ACTIONS(2570), 1, + [41403] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -99425,23 +100363,25 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3007), 1, - anon_sym_SEMI, - ACTIONS(3045), 1, - anon_sym_RBRACE, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -99450,19 +100390,22 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3079), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99473,19 +100416,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40947] = 23, - ACTIONS(267), 1, - anon_sym_RBRACE, - ACTIONS(2570), 1, + [41490] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2582), 1, + ACTIONS(3005), 1, anon_sym_EQ, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3013), 1, + anon_sym_DOT_DOT, + ACTIONS(3015), 1, + anon_sym_AMP_AMP, + ACTIONS(3017), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3019), 1, + anon_sym_PIPE, + ACTIONS(3021), 1, + anon_sym_CARET, + STATE(55), 1, + sym_block, + STATE(1078), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3001), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3007), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3011), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3025), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3003), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3027), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [41579] = 23, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -99493,21 +100494,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3007), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2985), 1, anon_sym_SEMI, - STATE(962), 1, + ACTIONS(3081), 1, + anon_sym_RBRACE, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -99516,19 +100525,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99539,62 +100548,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41036] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, + [41668] = 23, + ACTIONS(113), 1, + anon_sym_RBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, - anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(962), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2985), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, - STATE(1062), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99605,14 +100614,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41125] = 3, + [41757] = 5, + ACTIONS(2366), 1, + anon_sym_BANG, + ACTIONS(3083), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2370), 16, + ACTIONS(461), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -99626,13 +100638,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2372), 24, + ACTIONS(459), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -99651,62 +100662,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41174] = 23, - ACTIONS(640), 1, + [41810] = 23, + ACTIONS(644), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(227), 1, + STATE(215), 1, sym_block, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99717,62 +100728,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41263] = 23, - ACTIONS(640), 1, + [41899] = 23, + ACTIONS(644), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(206), 1, + STATE(212), 1, sym_block, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99783,62 +100794,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41352] = 23, - ACTIONS(279), 1, + [41988] = 23, + ACTIONS(644), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(962), 1, - sym_arguments, - STATE(996), 1, + STATE(207), 1, sym_block, + STATE(1078), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99849,62 +100860,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41441] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, + [42077] = 23, + ACTIONS(604), 1, + anon_sym_RPAREN, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, - anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(727), 1, - sym_block, - STATE(962), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_COMMA, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99915,62 +100926,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41530] = 23, - ACTIONS(2570), 1, + [42166] = 23, + ACTIONS(644), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(3047), 1, - anon_sym_LBRACE, - STATE(212), 1, - sym_match_block, - STATE(962), 1, + STATE(222), 1, + sym_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99981,11 +100992,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41619] = 3, + [42255] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 16, + ACTIONS(2434), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -100002,7 +101013,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2388), 24, + ACTIONS(2436), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -100027,62 +101038,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41668] = 23, - ACTIONS(640), 1, + [42304] = 23, + ACTIONS(644), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(231), 1, + STATE(232), 1, sym_block, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100093,62 +101104,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41757] = 23, + [42393] = 23, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(55), 1, + STATE(44), 1, sym_block, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100159,62 +101170,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41846] = 23, - ACTIONS(2570), 1, + [42482] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2582), 1, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2586), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(3007), 1, - anon_sym_SEMI, - ACTIONS(3049), 1, - anon_sym_RBRACE, - STATE(962), 1, + STATE(70), 1, + sym_block, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100225,62 +101236,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41935] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, + [42571] = 23, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, - anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(962), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2985), 1, + anon_sym_SEMI, + ACTIONS(3085), 1, + anon_sym_RBRACE, + STATE(1078), 1, sym_arguments, - STATE(1030), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100291,62 +101302,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42024] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, + [42660] = 18, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, + ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(962), 1, + STATE(1078), 1, sym_arguments, - STATE(1013), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(2572), 14, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100357,45 +101362,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42113] = 15, + [42738] = 18, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(975), 1, + ACTIONS(696), 1, + anon_sym_extern, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2891), 1, - sym_identifier, - ACTIONS(2901), 1, + ACTIONS(2818), 1, sym_metavariable, - STATE(1518), 1, - sym_scoped_identifier, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2341), 1, + ACTIONS(2927), 1, + anon_sym_default, + ACTIONS(3087), 1, + sym_identifier, + ACTIONS(3089), 1, + anon_sym_fn, + STATE(1694), 1, + sym_scoped_type_identifier, + STATE(2278), 1, + sym_generic_type, + STATE(2289), 1, sym_bracketed_type, + STATE(2290), 1, + sym_generic_type_with_turbofish, + STATE(2396), 1, + sym_function_modifiers, + STATE(2415), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(990), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2009), 2, - sym_meta_item, - sym__literal, - ACTIONS(2899), 3, + STATE(1491), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(676), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2895), 19, + ACTIONS(2812), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100413,64 +101421,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_default, anon_sym_union, - [42186] = 23, - ACTIONS(640), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, + [42816] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, - anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(230), 1, - sym_block, - STATE(962), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3091), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100481,17 +101486,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42275] = 22, - ACTIONS(2570), 1, + [42902] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE, + ACTIONS(2596), 1, + anon_sym_CARET, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2582), 1, + ACTIONS(2766), 1, anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_COMMA, + STATE(1078), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2600), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2580), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2598), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [42988] = 22, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -100499,21 +101562,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3051), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3093), 1, anon_sym_SEMI, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -100522,19 +101591,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100545,17 +101614,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42361] = 22, - ACTIONS(2570), 1, + [43074] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -100563,21 +101626,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2977), 1, - anon_sym_COMMA, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3095), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -100586,19 +101655,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100609,57 +101678,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42447] = 19, - ACTIONS(2570), 1, + [43160] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2764), 1, - anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(962), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3097), 1, + anon_sym_COMMA, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2762), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100670,60 +101742,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42527] = 22, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, + [43246] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2949), 1, - anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(962), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3099), 1, + anon_sym_RBRACK, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100734,17 +101806,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42613] = 22, - ACTIONS(2570), 1, + [43332] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -100752,21 +101818,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3053), 1, - anon_sym_SEMI, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3101), 1, + anon_sym_EQ_GT, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -100775,19 +101847,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100798,60 +101870,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42699] = 22, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, - anon_sym_PIPE, - ACTIONS(2598), 1, - anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(3055), 1, - anon_sym_RBRACK, - STATE(962), 1, - sym_arguments, + [43418] = 4, + ACTIONS(3039), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2386), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + anon_sym_DOT, + ACTIONS(2384), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100862,60 +101916,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42785] = 22, - ACTIONS(2570), 1, + [43468] = 19, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2624), 1, anon_sym_EQ, - ACTIONS(2586), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(3057), 1, - anon_sym_RBRACK, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2622), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100926,60 +101977,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42871] = 22, - ACTIONS(2570), 1, + [43548] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2762), 1, anon_sym_QMARK, - ACTIONS(2580), 1, + ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2582), 1, + ACTIONS(2884), 1, + anon_sym_LBRACE, + ACTIONS(3005), 1, anon_sym_EQ, - ACTIONS(2586), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(3007), 1, - anon_sym_SEMI, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100990,17 +102041,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42957] = 22, - ACTIONS(2570), 1, + [43634] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -101008,21 +102053,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3059), 1, - anon_sym_SEMI, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3103), 1, + anon_sym_COMMA, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -101031,19 +102082,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101054,17 +102105,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43043] = 22, - ACTIONS(2570), 1, + [43720] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -101072,21 +102117,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_RBRACK, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3105), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -101095,19 +102146,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101118,17 +102169,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43129] = 22, - ACTIONS(2570), 1, + [43806] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -101136,21 +102181,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3063), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3107), 1, anon_sym_SEMI, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -101159,19 +102210,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101182,17 +102233,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43215] = 22, - ACTIONS(2570), 1, + [43892] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -101200,21 +102245,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3065), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3109), 1, anon_sym_SEMI, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -101223,19 +102274,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101246,17 +102297,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43301] = 22, - ACTIONS(2570), 1, + [43978] = 4, + ACTIONS(3111), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(461), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(459), 23, anon_sym_LPAREN, - ACTIONS(2572), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(2578), 1, anon_sym_QMARK, - ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44028] = 22, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -101264,21 +102355,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3067), 1, - anon_sym_SEMI, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3113), 1, + anon_sym_RBRACK, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -101287,19 +102384,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101310,17 +102407,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43387] = 22, - ACTIONS(2570), 1, + [44114] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -101328,21 +102419,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3069), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3115), 1, anon_sym_SEMI, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -101351,19 +102448,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101374,17 +102471,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43473] = 22, - ACTIONS(2570), 1, + [44200] = 9, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(3013), 1, + anon_sym_DOT_DOT, + STATE(1078), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3011), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2684), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2682), 19, + anon_sym_LBRACE, anon_sym_QMARK, - ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44260] = 22, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -101392,21 +102534,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3071), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3117), 1, anon_sym_SEMI, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -101415,19 +102563,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101438,17 +102586,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43559] = 22, - ACTIONS(2570), 1, + [44346] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -101456,21 +102598,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3073), 1, - anon_sym_COMMA, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3119), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -101479,19 +102627,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101502,17 +102650,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43645] = 22, - ACTIONS(2570), 1, + [44432] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -101520,21 +102662,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3075), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3121), 1, anon_sym_SEMI, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -101543,19 +102691,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101566,60 +102714,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43731] = 22, - ACTIONS(2570), 1, + [44518] = 19, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2788), 1, anon_sym_EQ, - ACTIONS(2586), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(3077), 1, - anon_sym_SEMI, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2786), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101630,60 +102775,159 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43817] = 22, - ACTIONS(2570), 1, + [44598] = 9, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(3013), 1, + anon_sym_DOT_DOT, + STATE(1078), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3011), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2780), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2778), 19, + anon_sym_LBRACE, anon_sym_QMARK, - ACTIONS(2580), 1, anon_sym_as, - ACTIONS(2582), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44658] = 6, + ACTIONS(3013), 1, + anon_sym_DOT_DOT, + STATE(1078), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3011), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(313), 14, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2586), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2590), 1, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(311), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44712] = 22, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2760), 1, + anon_sym_LBRACE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(3005), 1, + anon_sym_EQ, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(3079), 1, - anon_sym_SEMI, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(3027), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101694,17 +102938,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43903] = 22, - ACTIONS(2570), 1, + [44798] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -101712,21 +102950,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3081), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3123), 1, anon_sym_SEMI, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -101735,19 +102979,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101758,17 +103002,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43989] = 22, - ACTIONS(2570), 1, + [44884] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -101776,21 +103014,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3125), 1, anon_sym_SEMI, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -101799,19 +103043,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101822,17 +103066,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44075] = 22, - ACTIONS(2570), 1, + [44970] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -101840,21 +103078,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3127), 1, anon_sym_SEMI, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -101863,19 +103107,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101886,17 +103130,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44161] = 22, - ACTIONS(2570), 1, + [45056] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -101904,21 +103142,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3087), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3129), 1, anon_sym_RBRACK, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -101927,19 +103171,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101950,13 +103194,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44247] = 4, - ACTIONS(2432), 1, + [45142] = 4, + ACTIONS(2472), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2434), 15, + ACTIONS(2466), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101972,7 +103216,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2430), 23, + ACTIONS(2462), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -101996,17 +103240,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44297] = 22, - ACTIONS(2570), 1, + [45192] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -102014,21 +103252,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3089), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3131), 1, anon_sym_SEMI, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -102037,19 +103281,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102060,42 +103304,120 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44383] = 4, - ACTIONS(3091), 1, + [45278] = 18, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(696), 1, + anon_sym_extern, + ACTIONS(886), 1, anon_sym_COLON_COLON, + ACTIONS(2818), 1, + sym_metavariable, + ACTIONS(2927), 1, + anon_sym_default, + ACTIONS(3133), 1, + sym_identifier, + ACTIONS(3135), 1, + anon_sym_fn, + STATE(1692), 1, + sym_scoped_type_identifier, + STATE(2278), 1, + sym_generic_type, + STATE(2289), 1, + sym_bracketed_type, + STATE(2290), 1, + sym_generic_type_with_turbofish, + STATE(2315), 1, + sym_function_modifiers, + STATE(2415), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(455), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + STATE(1491), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(676), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2812), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [45356] = 22, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2586), 1, anon_sym_AMP, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - anon_sym_DASH, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, anon_sym_PIPE, + ACTIONS(2596), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(453), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, + ACTIONS(2764), 1, anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2985), 1, + anon_sym_SEMI, + STATE(1078), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2600), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2580), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102106,47 +103428,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44433] = 9, - ACTIONS(2570), 1, + [45442] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2957), 1, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - STATE(962), 1, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, + anon_sym_PIPE, + ACTIONS(2596), 1, + anon_sym_CARET, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3137), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2720), 13, + ACTIONS(2578), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2588), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2580), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2718), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102157,17 +103492,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44493] = 22, - ACTIONS(2570), 1, + [45528] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -102175,21 +103504,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_COMMA, - STATE(962), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3139), 1, + anon_sym_RBRACK, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -102198,19 +103533,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102221,28 +103556,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44579] = 10, - ACTIONS(2570), 1, + [45614] = 10, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2776), 10, + ACTIONS(2582), 10, anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, @@ -102253,7 +103588,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2774), 19, + ACTIONS(2572), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -102273,24 +103608,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44641] = 9, - ACTIONS(2570), 1, + [45676] = 9, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2776), 13, + ACTIONS(2582), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102304,7 +103639,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2774), 19, + ACTIONS(2572), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -102324,54 +103659,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44701] = 19, - ACTIONS(2570), 1, + [45736] = 19, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2863), 1, + ACTIONS(2668), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(3021), 1, anon_sym_CARET, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2861), 13, + ACTIONS(2666), 13, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -102385,60 +103720,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44781] = 22, - ACTIONS(2570), 1, + [45816] = 15, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, - ACTIONS(2586), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(3095), 1, - anon_sym_RBRACK, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2582), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2572), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102449,60 +103777,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44867] = 22, - ACTIONS(2570), 1, + [45888] = 12, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, - anon_sym_PIPE, - ACTIONS(2598), 1, - anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3097), 1, - anon_sym_COMMA, - STATE(962), 1, + ACTIONS(3013), 1, + anon_sym_DOT_DOT, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2582), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(2572), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102513,166 +103831,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44953] = 22, - ACTIONS(2570), 1, + [45954] = 17, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, ACTIONS(2582), 1, anon_sym_EQ, - ACTIONS(2586), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(3099), 1, - anon_sym_SEMI, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [45039] = 18, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(692), 1, - anon_sym_extern, - ACTIONS(876), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_COLON_COLON, - ACTIONS(2748), 1, - sym_metavariable, - ACTIONS(3101), 1, - sym_identifier, - ACTIONS(3103), 1, - anon_sym_fn, - STATE(1677), 1, - sym_scoped_type_identifier, - STATE(2252), 1, - sym_bracketed_type, - STATE(2253), 1, - sym_generic_type_with_turbofish, - STATE(2310), 1, - sym_generic_type, - STATE(2336), 1, - sym_function_modifiers, - STATE(2364), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1466), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(888), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(878), 18, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_union, - [45117] = 4, - ACTIONS(3105), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2410), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2408), 23, - anon_sym_LPAREN, + ACTIONS(2572), 15, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102683,60 +103890,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45167] = 22, - ACTIONS(2570), 1, + [46030] = 19, + ACTIONS(283), 1, + anon_sym_EQ, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, - ACTIONS(2586), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(3107), 1, - anon_sym_SEMI, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(277), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102747,18 +103951,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45253] = 6, - ACTIONS(2957), 1, + [46110] = 9, + ACTIONS(2574), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_LBRACK, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(317), 14, + ACTIONS(2822), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102772,11 +103982,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(315), 21, - anon_sym_LPAREN, + ACTIONS(2820), 19, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_AMP_AMP, @@ -102795,60 +104002,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45307] = 22, - ACTIONS(2570), 1, + [46170] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2810), 1, - anon_sym_LBRACE, - ACTIONS(2949), 1, - anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(962), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3141), 1, + anon_sym_RBRACK, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2971), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102859,53 +104066,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45393] = 15, - ACTIONS(2570), 1, + [46256] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2953), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2963), 1, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(962), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3143), 1, + anon_sym_COMMA, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2955), 2, + ACTIONS(2584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2776), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2947), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2774), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102916,41 +104130,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45465] = 12, - ACTIONS(2570), 1, + [46342] = 14, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2957), 1, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - STATE(962), 1, + ACTIONS(3021), 1, + anon_sym_CARET, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2776), 6, + ACTIONS(2582), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2774), 19, + ACTIONS(2572), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -102970,55 +104186,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45531] = 17, - ACTIONS(2570), 1, + [46412] = 13, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2776), 1, - anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2963), 1, - anon_sym_PIPE, - ACTIONS(2965), 1, - anon_sym_CARET, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2774), 15, + ACTIONS(2582), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(2572), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103029,38 +104241,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45607] = 9, - ACTIONS(2570), 1, + [46480] = 11, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(2957), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2955), 2, + ACTIONS(3001), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2648), 13, - anon_sym_PLUS, + ACTIONS(3003), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2582), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2646), 19, + ACTIONS(2572), 19, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, @@ -103080,56 +104294,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45667] = 18, - ACTIONS(2570), 1, + [46544] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2776), 1, - anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2963), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(962), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3145), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2774), 14, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_PIPE_PIPE, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103140,60 +104358,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45745] = 22, - ACTIONS(2570), 1, + [46630] = 19, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2614), 1, anon_sym_EQ, - ACTIONS(2586), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(2590), 1, + ACTIONS(3013), 1, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3015), 1, anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3017), 1, anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, + ACTIONS(3019), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(3021), 1, anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(3109), 1, - anon_sym_SEMI, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(3001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3011), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(3025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(3003), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(3023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2612), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103204,174 +104419,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45831] = 14, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2953), 1, - anon_sym_AMP, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2965), 1, - anon_sym_CARET, - STATE(962), 1, - sym_arguments, + [46710] = 4, + ACTIONS(2464), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(2466), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2947), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2776), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - ACTIONS(2774), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [45901] = 19, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2668), 1, - anon_sym_EQ, - ACTIONS(2953), 1, anon_sym_AMP, - ACTIONS(2957), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_AMP_AMP, - ACTIONS(2961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2965), 1, anon_sym_CARET, - STATE(962), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2945), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2951), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2666), 13, + anon_sym_DOT, + ACTIONS(2462), 23, + anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [45981] = 19, - ACTIONS(283), 1, - anon_sym_EQ, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2953), 1, - anon_sym_AMP, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_AMP_AMP, - ACTIONS(2961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, - anon_sym_PIPE, - ACTIONS(2965), 1, - anon_sym_CARET, - STATE(962), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2945), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2951), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2947), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2967), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(277), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103382,17 +104465,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46061] = 22, - ACTIONS(2570), 1, + [46760] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -103400,21 +104477,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3111), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3147), 1, anon_sym_SEMI, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -103423,19 +104506,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103446,155 +104529,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46147] = 9, - ACTIONS(2570), 1, + [46846] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - STATE(962), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2792), 13, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2586), 1, anon_sym_AMP, - anon_sym_DASH, + ACTIONS(2590), 1, + anon_sym_DOT_DOT, + ACTIONS(2592), 1, + anon_sym_AMP_AMP, + ACTIONS(2594), 1, anon_sym_PIPE, + ACTIONS(2596), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2790), 19, - anon_sym_LBRACE, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, anon_sym_QMARK, + ACTIONS(2764), 1, anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [46207] = 13, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2953), 1, - anon_sym_AMP, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - STATE(962), 1, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3149), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2947), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2776), 5, - anon_sym_EQ, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2774), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [46275] = 11, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - STATE(962), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2945), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2955), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2947), 3, + ACTIONS(2600), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2776), 8, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2774), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103605,17 +104593,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46339] = 22, - ACTIONS(2570), 1, + [46932] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, ACTIONS(2586), 1, anon_sym_AMP, ACTIONS(2590), 1, @@ -103623,21 +104605,27 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2592), 1, anon_sym_AMP_AMP, ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, anon_sym_PIPE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, anon_sym_CARET, - ACTIONS(2606), 1, + ACTIONS(2602), 1, anon_sym_DOT, - ACTIONS(3113), 1, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3151), 1, anon_sym_SEMI, - STATE(962), 1, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2584), 2, @@ -103646,19 +104634,19 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2576), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2604), 10, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103669,57 +104657,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46425] = 19, - ACTIONS(2570), 1, + [47018] = 22, + ACTIONS(2574), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2957), 1, + ACTIONS(2590), 1, anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(2592), 1, anon_sym_AMP_AMP, - ACTIONS(2961), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2963), 1, + ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2965), 1, + ACTIONS(2596), 1, anon_sym_CARET, - STATE(962), 1, + ACTIONS(2602), 1, + anon_sym_DOT, + ACTIONS(2616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2762), 1, + anon_sym_QMARK, + ACTIONS(2764), 1, + anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(3153), 1, + anon_sym_SEMI, + STATE(1078), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 2, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2951), 2, + ACTIONS(2584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2955), 2, + ACTIONS(2588), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2969), 2, + ACTIONS(2600), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 3, + ACTIONS(2580), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2967), 4, + ACTIONS(2598), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2877), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103730,48 +104721,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46505] = 18, + [47104] = 15, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(692), 1, - anon_sym_extern, - ACTIONS(876), 1, - anon_sym_default, - ACTIONS(882), 1, + ACTIONS(3155), 1, + sym_identifier, + ACTIONS(3157), 1, + anon_sym_LBRACE, + ACTIONS(3159), 1, + anon_sym_RBRACE, + ACTIONS(3161), 1, + anon_sym_STAR, + ACTIONS(3165), 1, + anon_sym_COMMA, + ACTIONS(3167), 1, anon_sym_COLON_COLON, - ACTIONS(2748), 1, + ACTIONS(3171), 1, sym_metavariable, - ACTIONS(3115), 1, - sym_identifier, - ACTIONS(3117), 1, - anon_sym_fn, - STATE(1727), 1, - sym_scoped_type_identifier, - STATE(2252), 1, + STATE(1629), 1, + sym_scoped_identifier, + STATE(2370), 1, sym_bracketed_type, - STATE(2253), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, - STATE(2273), 1, - sym_function_modifiers, - STATE(2310), 1, - sym_generic_type, - STATE(2364), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(672), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(3169), 3, sym_self, sym_super, sym_crate, - ACTIONS(878), 18, + STATE(1862), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3163), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103789,200 +104775,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_default, anon_sym_union, - [46583] = 22, - ACTIONS(2570), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_LBRACK, - ACTIONS(2578), 1, - anon_sym_QMARK, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2582), 1, - anon_sym_EQ, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 1, - anon_sym_PIPE, - ACTIONS(2598), 1, - anon_sym_CARET, - ACTIONS(2606), 1, - anon_sym_DOT, - ACTIONS(3119), 1, - anon_sym_EQ_GT, - STATE(962), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2574), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2602), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2576), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2600), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2604), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [46669] = 4, - ACTIONS(2460), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2434), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2430), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [46719] = 4, - ACTIONS(3105), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2410), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2408), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [46769] = 15, + [47175] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3121), 1, + ACTIONS(3155), 1, sym_identifier, - ACTIONS(3123), 1, + ACTIONS(3157), 1, anon_sym_LBRACE, - ACTIONS(3125), 1, - anon_sym_RBRACE, - ACTIONS(3127), 1, + ACTIONS(3161), 1, anon_sym_STAR, - ACTIONS(3131), 1, - anon_sym_COMMA, - ACTIONS(3133), 1, + ACTIONS(3167), 1, anon_sym_COLON_COLON, - ACTIONS(3137), 1, + ACTIONS(3171), 1, sym_metavariable, - STATE(1661), 1, + ACTIONS(3173), 1, + anon_sym_RBRACE, + STATE(1629), 1, sym_scoped_identifier, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2341), 1, + STATE(2370), 1, sym_bracketed_type, + STATE(2431), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3135), 3, + ACTIONS(3169), 3, sym_self, sym_super, sym_crate, - STATE(1877), 5, + STATE(2188), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3129), 19, + ACTIONS(3163), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104002,41 +104831,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [46840] = 14, + [47243] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3121), 1, + ACTIONS(3155), 1, sym_identifier, - ACTIONS(3123), 1, + ACTIONS(3157), 1, anon_sym_LBRACE, - ACTIONS(3127), 1, + ACTIONS(3161), 1, anon_sym_STAR, - ACTIONS(3133), 1, + ACTIONS(3167), 1, anon_sym_COLON_COLON, - ACTIONS(3137), 1, + ACTIONS(3171), 1, sym_metavariable, - ACTIONS(3139), 1, + ACTIONS(3175), 1, anon_sym_RBRACE, - STATE(1661), 1, + STATE(1629), 1, sym_scoped_identifier, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2341), 1, + STATE(2370), 1, sym_bracketed_type, + STATE(2431), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3135), 3, + ACTIONS(3169), 3, sym_self, sym_super, sym_crate, - STATE(2105), 5, + STATE(2188), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3129), 19, + ACTIONS(3163), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104056,41 +104885,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [46908] = 14, + [47311] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3121), 1, + ACTIONS(3155), 1, sym_identifier, - ACTIONS(3123), 1, + ACTIONS(3157), 1, anon_sym_LBRACE, - ACTIONS(3127), 1, + ACTIONS(3161), 1, anon_sym_STAR, - ACTIONS(3133), 1, + ACTIONS(3167), 1, anon_sym_COLON_COLON, - ACTIONS(3137), 1, + ACTIONS(3171), 1, sym_metavariable, - ACTIONS(3141), 1, - anon_sym_RBRACE, - STATE(1661), 1, + STATE(1629), 1, sym_scoped_identifier, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2341), 1, + STATE(2370), 1, sym_bracketed_type, + STATE(2431), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3135), 3, + ACTIONS(3169), 3, sym_self, sym_super, sym_crate, - STATE(2105), 5, + STATE(2354), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3129), 19, + ACTIONS(3163), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104110,39 +104937,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [46976] = 13, + [47376] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3121), 1, + ACTIONS(3155), 1, sym_identifier, - ACTIONS(3123), 1, + ACTIONS(3157), 1, anon_sym_LBRACE, - ACTIONS(3127), 1, + ACTIONS(3161), 1, anon_sym_STAR, - ACTIONS(3133), 1, + ACTIONS(3167), 1, anon_sym_COLON_COLON, - ACTIONS(3137), 1, + ACTIONS(3171), 1, sym_metavariable, - STATE(1661), 1, + STATE(1629), 1, sym_scoped_identifier, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2341), 1, + STATE(2370), 1, sym_bracketed_type, + STATE(2431), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3135), 3, + ACTIONS(3169), 3, sym_self, sym_super, sym_crate, - STATE(2360), 5, + STATE(2388), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3129), 19, + ACTIONS(3163), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104162,39 +104989,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47041] = 13, + [47441] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3121), 1, + ACTIONS(3155), 1, sym_identifier, - ACTIONS(3123), 1, + ACTIONS(3157), 1, anon_sym_LBRACE, - ACTIONS(3127), 1, + ACTIONS(3161), 1, anon_sym_STAR, - ACTIONS(3133), 1, + ACTIONS(3167), 1, anon_sym_COLON_COLON, - ACTIONS(3137), 1, + ACTIONS(3171), 1, sym_metavariable, - STATE(1661), 1, + STATE(1629), 1, sym_scoped_identifier, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2341), 1, + STATE(2370), 1, sym_bracketed_type, + STATE(2431), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3135), 3, + ACTIONS(3169), 3, sym_self, sym_super, sym_crate, - STATE(2377), 5, + STATE(2188), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3129), 19, + ACTIONS(3163), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104214,39 +105041,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47106] = 13, + [47506] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3121), 1, + ACTIONS(3155), 1, sym_identifier, - ACTIONS(3123), 1, + ACTIONS(3157), 1, anon_sym_LBRACE, - ACTIONS(3127), 1, + ACTIONS(3161), 1, anon_sym_STAR, - ACTIONS(3133), 1, + ACTIONS(3167), 1, anon_sym_COLON_COLON, - ACTIONS(3137), 1, + ACTIONS(3171), 1, sym_metavariable, - STATE(1661), 1, + STATE(1629), 1, sym_scoped_identifier, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2341), 1, + STATE(2370), 1, sym_bracketed_type, + STATE(2431), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3135), 3, + ACTIONS(3169), 3, sym_self, sym_super, sym_crate, - STATE(2105), 5, + STATE(2270), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3129), 19, + ACTIONS(3163), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104266,91 +105093,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47171] = 13, + [47571] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3121), 1, + ACTIONS(3155), 1, sym_identifier, - ACTIONS(3123), 1, + ACTIONS(3157), 1, anon_sym_LBRACE, - ACTIONS(3127), 1, + ACTIONS(3161), 1, anon_sym_STAR, - ACTIONS(3133), 1, + ACTIONS(3167), 1, anon_sym_COLON_COLON, - ACTIONS(3137), 1, + ACTIONS(3171), 1, sym_metavariable, - STATE(1661), 1, + STATE(1629), 1, sym_scoped_identifier, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2341), 1, + STATE(2370), 1, sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3135), 3, - sym_self, - sym_super, - sym_crate, - STATE(2245), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3129), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [47236] = 13, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3121), 1, - sym_identifier, - ACTIONS(3123), 1, - anon_sym_LBRACE, - ACTIONS(3127), 1, - anon_sym_STAR, - ACTIONS(3133), 1, - anon_sym_COLON_COLON, - ACTIONS(3137), 1, - sym_metavariable, - STATE(1661), 1, - sym_scoped_identifier, - STATE(2243), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, - STATE(2341), 1, - sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3135), 3, + ACTIONS(3169), 3, sym_self, sym_super, sym_crate, - STATE(2216), 5, + STATE(2443), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3129), 19, + ACTIONS(3163), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104370,15 +105145,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47301] = 3, + [47636] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3145), 3, + ACTIONS(3179), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3143), 28, + ACTIONS(3177), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104407,15 +105182,15 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [47341] = 3, + [47676] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3149), 3, + ACTIONS(3183), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3147), 28, + ACTIONS(3181), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104444,15 +105219,15 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [47381] = 3, + [47716] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3153), 3, + ACTIONS(3187), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3151), 28, + ACTIONS(3185), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104481,31 +105256,31 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [47421] = 11, + [47756] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(975), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2891), 1, + ACTIONS(2931), 1, sym_identifier, - ACTIONS(2901), 1, + ACTIONS(2941), 1, sym_metavariable, - STATE(1518), 1, + STATE(1553), 1, sym_scoped_identifier, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2290), 1, + STATE(2255), 1, sym_meta_item, - STATE(2341), 1, + STATE(2370), 1, sym_bracketed_type, + STATE(2431), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2899), 3, + ACTIONS(2939), 3, sym_self, sym_super, sym_crate, - ACTIONS(2895), 19, + ACTIONS(2935), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104525,31 +105300,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47476] = 11, + [47811] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(975), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2891), 1, + ACTIONS(2931), 1, sym_identifier, - ACTIONS(2901), 1, + ACTIONS(2941), 1, sym_metavariable, - STATE(1518), 1, + STATE(1553), 1, sym_scoped_identifier, - STATE(2219), 1, + STATE(2370), 1, + sym_bracketed_type, + STATE(2383), 1, sym_meta_item, - STATE(2243), 1, + STATE(2431), 1, sym_generic_type_with_turbofish, - STATE(2341), 1, - sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2899), 3, + ACTIONS(2939), 3, sym_self, sym_super, sym_crate, - ACTIONS(2895), 19, + ACTIONS(2935), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104569,31 +105344,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47531] = 11, + [47866] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(975), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2891), 1, + ACTIONS(2931), 1, sym_identifier, - ACTIONS(2901), 1, + ACTIONS(2941), 1, sym_metavariable, - STATE(1518), 1, + STATE(1553), 1, sym_scoped_identifier, - STATE(2243), 1, + STATE(2370), 1, + sym_bracketed_type, + STATE(2431), 1, sym_generic_type_with_turbofish, - STATE(2275), 1, + STATE(2433), 1, sym_meta_item, - STATE(2341), 1, - sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2899), 3, + ACTIONS(2939), 3, sym_self, sym_super, sym_crate, - ACTIONS(2895), 19, + ACTIONS(2935), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104613,31 +105388,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47586] = 11, + [47921] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(975), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2891), 1, + ACTIONS(2931), 1, sym_identifier, - ACTIONS(2901), 1, + ACTIONS(2941), 1, sym_metavariable, - STATE(1518), 1, + STATE(1553), 1, sym_scoped_identifier, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2266), 1, + STATE(2363), 1, sym_meta_item, - STATE(2341), 1, + STATE(2370), 1, sym_bracketed_type, + STATE(2431), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2899), 3, + ACTIONS(2939), 3, sym_self, sym_super, sym_crate, - ACTIONS(2895), 19, + ACTIONS(2935), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104657,31 +105432,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47641] = 11, + [47976] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(975), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2891), 1, + ACTIONS(2931), 1, sym_identifier, - ACTIONS(2901), 1, + ACTIONS(2941), 1, sym_metavariable, - STATE(1518), 1, + STATE(1553), 1, sym_scoped_identifier, - STATE(2234), 1, + STATE(2293), 1, sym_meta_item, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2341), 1, + STATE(2370), 1, sym_bracketed_type, + STATE(2431), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2899), 3, + ACTIONS(2939), 3, sym_self, sym_super, sym_crate, - ACTIONS(2895), 19, + ACTIONS(2935), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104701,31 +105476,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47696] = 11, + [48031] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(975), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2891), 1, + ACTIONS(2931), 1, sym_identifier, - ACTIONS(2901), 1, + ACTIONS(2941), 1, sym_metavariable, - STATE(1518), 1, + STATE(1553), 1, sym_scoped_identifier, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2306), 1, + STATE(2335), 1, sym_meta_item, - STATE(2341), 1, + STATE(2370), 1, sym_bracketed_type, + STATE(2431), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2899), 3, + ACTIONS(2939), 3, sym_self, sym_super, sym_crate, - ACTIONS(2895), 19, + ACTIONS(2935), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104745,31 +105520,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47751] = 11, + [48086] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(975), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(2891), 1, + ACTIONS(2931), 1, sym_identifier, - ACTIONS(2901), 1, + ACTIONS(2941), 1, sym_metavariable, - STATE(1518), 1, + STATE(1553), 1, sym_scoped_identifier, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2341), 1, - sym_bracketed_type, - STATE(2359), 1, + STATE(2268), 1, sym_meta_item, + STATE(2370), 1, + sym_bracketed_type, + STATE(2431), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2899), 3, + ACTIONS(2939), 3, sym_self, sym_super, sym_crate, - ACTIONS(2895), 19, + ACTIONS(2935), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104789,29 +105564,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47806] = 10, + [48141] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(975), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(3155), 1, + ACTIONS(3189), 1, sym_identifier, - ACTIONS(3161), 1, + ACTIONS(3195), 1, sym_metavariable, - STATE(2198), 1, + STATE(2065), 1, sym_scoped_identifier, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2341), 1, + STATE(2370), 1, sym_bracketed_type, + STATE(2431), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3159), 3, + ACTIONS(3193), 3, sym_self, sym_super, sym_crate, - ACTIONS(3157), 19, + ACTIONS(3191), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104831,29 +105606,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47858] = 10, + [48193] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(975), 1, + ACTIONS(948), 1, anon_sym_COLON_COLON, - ACTIONS(3163), 1, + ACTIONS(3197), 1, sym_identifier, - ACTIONS(3169), 1, + ACTIONS(3203), 1, sym_metavariable, - STATE(2033), 1, + STATE(2193), 1, sym_scoped_identifier, - STATE(2243), 1, - sym_generic_type_with_turbofish, - STATE(2341), 1, + STATE(2370), 1, sym_bracketed_type, + STATE(2431), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3167), 3, + ACTIONS(3201), 3, sym_self, sym_super, sym_crate, - ACTIONS(3165), 19, + ACTIONS(3199), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104873,13 +105648,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47910] = 3, - ACTIONS(2189), 1, + [48245] = 3, + ACTIONS(2211), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2191), 20, + ACTIONS(2213), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -104900,13 +105675,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [47940] = 3, - ACTIONS(2161), 1, + [48275] = 3, + ACTIONS(2159), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2163), 20, + ACTIONS(2161), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -104927,29 +105702,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [47970] = 10, - ACTIONS(3173), 1, + [48305] = 9, + ACTIONS(2364), 1, + anon_sym_COLON, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3175), 1, - anon_sym_LBRACE, - ACTIONS(3179), 1, + ACTIONS(3207), 1, + anon_sym_BANG, + ACTIONS(3209), 1, anon_sym_COLON_COLON, - ACTIONS(3183), 1, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(3185), 1, + STATE(1285), 1, + sym_type_arguments, + STATE(1307), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2360), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [48345] = 10, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3215), 1, + anon_sym_LPAREN, + ACTIONS(3217), 1, + anon_sym_LBRACE, + ACTIONS(3221), 1, + anon_sym_COLON_COLON, + ACTIONS(3225), 1, anon_sym_AT, - STATE(1276), 1, + STATE(1285), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3177), 2, + ACTIONS(3219), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3181), 2, + ACTIONS(3223), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3171), 9, + ACTIONS(3213), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -104959,48 +105765,117 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [48012] = 9, - ACTIONS(2342), 1, - anon_sym_COLON, - ACTIONS(3183), 1, + [48387] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2406), 2, + anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(3187), 1, + ACTIONS(2410), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2412), 14, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3189), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_BANG, - ACTIONS(3191), 1, + anon_sym_COMMA, anon_sym_COLON_COLON, - STATE(1276), 1, - sym_type_arguments, - STATE(1303), 1, - sym_parameters, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [48416] = 4, + ACTIONS(2408), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2412), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2406), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LT2, + anon_sym_PIPE, + [48445] = 4, + ACTIONS(2432), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2338), 12, + ACTIONS(2436), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2430), 15, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [48052] = 4, + [48474] = 4, + ACTIONS(2400), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2374), 2, + ACTIONS(2404), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2398), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, anon_sym_LT2, - ACTIONS(2378), 2, + anon_sym_PIPE, + [48503] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2430), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2434), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2380), 14, + ACTIONS(2436), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105015,23 +105890,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48081] = 8, - ACTIONS(2356), 1, + [48532] = 8, + ACTIONS(2374), 1, anon_sym_COLON, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3191), 1, + ACTIONS(3209), 1, anon_sym_COLON_COLON, - STATE(1276), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + STATE(1285), 1, sym_type_arguments, - STATE(1303), 1, + STATE(1307), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2354), 12, + ACTIONS(2372), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105044,42 +105919,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [48118] = 4, - ACTIONS(2360), 1, - anon_sym_COLON, + [48569] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2358), 15, + ACTIONS(2414), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2418), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2420), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, - anon_sym_LT2, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48147] = 4, + [48598] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2366), 2, + ACTIONS(2398), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2370), 2, + ACTIONS(2402), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2372), 14, + ACTIONS(2404), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105094,16 +105969,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48176] = 4, - ACTIONS(2376), 1, + [48627] = 4, + ACTIONS(2416), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2380), 2, + ACTIONS(2420), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2374), 15, + ACTIONS(2414), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105119,78 +105994,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [48205] = 4, - ACTIONS(2384), 1, + [48656] = 8, + ACTIONS(2378), 1, anon_sym_COLON, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3209), 1, + anon_sym_COLON_COLON, + ACTIONS(3211), 1, + anon_sym_LT2, + STATE(1285), 1, + sym_type_arguments, + STATE(1307), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2382), 15, + ACTIONS(2376), 12, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_LT2, anon_sym_PIPE, - [48234] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2358), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2362), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2364), 14, - anon_sym_SEMI, + [48693] = 6, + ACTIONS(3205), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [48263] = 8, - ACTIONS(2352), 1, - anon_sym_COLON, - ACTIONS(3183), 1, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(3187), 1, - anon_sym_LPAREN, - ACTIONS(3191), 1, - anon_sym_COLON_COLON, STATE(1276), 1, sym_type_arguments, - STATE(1303), 1, + STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2350), 12, + ACTIONS(2394), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -105198,69 +106049,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [48300] = 4, + [48725] = 17, + ACTIONS(3229), 1, + anon_sym_const, + ACTIONS(3231), 1, + anon_sym_enum, + ACTIONS(3233), 1, + anon_sym_fn, + ACTIONS(3235), 1, + anon_sym_mod, + ACTIONS(3237), 1, + anon_sym_static, + ACTIONS(3239), 1, + anon_sym_struct, + ACTIONS(3241), 1, + anon_sym_trait, + ACTIONS(3243), 1, + anon_sym_type, + ACTIONS(3245), 1, + anon_sym_union, + ACTIONS(3247), 1, + anon_sym_unsafe, + ACTIONS(3249), 1, + anon_sym_use, + ACTIONS(3251), 1, + anon_sym_extern, + STATE(1458), 1, + sym_extern_modifier, + STATE(1491), 1, + aux_sym_function_modifiers_repeat1, + STATE(2469), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2382), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2386), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2388), 14, - anon_sym_SEMI, + ACTIONS(3227), 2, + anon_sym_async, + anon_sym_default, + [48779] = 6, + ACTIONS(3205), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [48329] = 4, - ACTIONS(2368), 1, - anon_sym_COLON, + ACTIONS(3211), 1, + anon_sym_LT2, + STATE(1276), 1, + sym_type_arguments, + STATE(1300), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2372), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2366), 15, + ACTIONS(2380), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_LT2, anon_sym_PIPE, - [48358] = 6, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, + [48811] = 6, + ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(1277), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + STATE(1276), 1, sym_type_arguments, - STATE(1299), 1, + STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2398), 13, + ACTIONS(2426), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105274,166 +106138,171 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [48390] = 17, - ACTIONS(3195), 1, + [48843] = 17, + ACTIONS(3253), 1, anon_sym_const, - ACTIONS(3197), 1, + ACTIONS(3255), 1, anon_sym_enum, - ACTIONS(3199), 1, + ACTIONS(3257), 1, anon_sym_fn, - ACTIONS(3201), 1, + ACTIONS(3259), 1, anon_sym_mod, - ACTIONS(3203), 1, + ACTIONS(3261), 1, anon_sym_static, - ACTIONS(3205), 1, + ACTIONS(3263), 1, anon_sym_struct, - ACTIONS(3207), 1, + ACTIONS(3265), 1, anon_sym_trait, - ACTIONS(3209), 1, + ACTIONS(3267), 1, anon_sym_type, - ACTIONS(3211), 1, + ACTIONS(3269), 1, anon_sym_union, - ACTIONS(3213), 1, + ACTIONS(3271), 1, anon_sym_unsafe, - ACTIONS(3215), 1, + ACTIONS(3273), 1, anon_sym_use, - ACTIONS(3217), 1, + ACTIONS(3275), 1, anon_sym_extern, - STATE(1446), 1, + STATE(1428), 1, sym_extern_modifier, - STATE(1466), 1, + STATE(1491), 1, aux_sym_function_modifiers_repeat1, - STATE(2424), 1, + STATE(2412), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3193), 2, + ACTIONS(3227), 2, anon_sym_async, anon_sym_default, - [48444] = 17, - ACTIONS(3219), 1, + [48897] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2398), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LT2, + anon_sym_PIPE, + [48920] = 3, + ACTIONS(3277), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2991), 15, + anon_sym_async, anon_sym_const, - ACTIONS(3221), 1, + anon_sym_default, anon_sym_enum, - ACTIONS(3223), 1, anon_sym_fn, - ACTIONS(3225), 1, anon_sym_mod, - ACTIONS(3227), 1, anon_sym_static, - ACTIONS(3229), 1, anon_sym_struct, - ACTIONS(3231), 1, anon_sym_trait, - ACTIONS(3233), 1, anon_sym_type, - ACTIONS(3235), 1, anon_sym_union, - ACTIONS(3237), 1, anon_sym_unsafe, - ACTIONS(3239), 1, anon_sym_use, - ACTIONS(3241), 1, anon_sym_extern, - STATE(1448), 1, - sym_extern_modifier, - STATE(1466), 1, - aux_sym_function_modifiers_repeat1, - STATE(2321), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3193), 2, - anon_sym_async, - anon_sym_default, - [48498] = 6, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, - anon_sym_LPAREN, - STATE(1277), 1, - sym_type_arguments, - STATE(1299), 1, - sym_parameters, + sym_identifier, + [48945] = 3, + ACTIONS(2500), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2402), 13, + ACTIONS(2498), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_PIPE, - [48530] = 6, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, - anon_sym_LPAREN, - STATE(1277), 1, - sym_type_arguments, - STATE(1299), 1, - sym_parameters, + [48969] = 3, + ACTIONS(2490), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 13, + ACTIONS(2488), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_PIPE, - [48562] = 3, - ACTIONS(3243), 1, + [48993] = 13, + ACTIONS(3207), 1, + anon_sym_BANG, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3217), 1, + anon_sym_LBRACE, + ACTIONS(3225), 1, + anon_sym_AT, + ACTIONS(3279), 1, anon_sym_LPAREN, + ACTIONS(3281), 1, + anon_sym_RBRACK, + ACTIONS(3284), 1, + anon_sym_COLON_COLON, + STATE(1285), 1, + sym_type_arguments, + STATE(1307), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2991), 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, - [48587] = 2, + ACTIONS(2360), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3213), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [49037] = 3, + ACTIONS(2524), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2382), 16, + ACTIONS(2522), 14, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_for, @@ -105441,34 +106310,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [49061] = 13, + ACTIONS(3207), 1, + anon_sym_BANG, + ACTIONS(3211), 1, anon_sym_LT2, + ACTIONS(3213), 1, anon_sym_PIPE, - [48610] = 3, + ACTIONS(3217), 1, + anon_sym_LBRACE, + ACTIONS(3219), 1, + anon_sym_COLON, + ACTIONS(3225), 1, + anon_sym_AT, + ACTIONS(3286), 1, + anon_sym_LPAREN, + ACTIONS(3288), 1, + anon_sym_COLON_COLON, + STATE(1285), 1, + sym_type_arguments, + STATE(1307), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2362), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2364), 13, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2360), 3, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_if, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, - anon_sym_PIPE, - [48634] = 2, + [49105] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 15, + ACTIONS(2979), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105484,32 +106363,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [48656] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2378), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2380), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, - anon_sym_PIPE, - [48680] = 2, + [49127] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2983), 15, + ACTIONS(3041), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105525,21 +106383,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [48702] = 6, - ACTIONS(3173), 1, + [49149] = 6, + ACTIONS(3215), 1, anon_sym_LPAREN, - ACTIONS(3245), 1, + ACTIONS(3290), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3177), 2, + ACTIONS(3219), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3181), 2, + ACTIONS(3223), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3171), 9, + ACTIONS(3213), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -105549,42 +106407,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [48732] = 13, - ACTIONS(3171), 1, - anon_sym_PIPE, - ACTIONS(3175), 1, - anon_sym_LBRACE, - ACTIONS(3177), 1, - anon_sym_COLON, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3185), 1, - anon_sym_AT, - ACTIONS(3189), 1, - anon_sym_BANG, - ACTIONS(3247), 1, - anon_sym_LPAREN, - ACTIONS(3249), 1, + [49179] = 3, + ACTIONS(2866), 1, anon_sym_COLON_COLON, - STATE(1276), 1, - sym_type_arguments, - STATE(1303), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3181), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2338), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [48776] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2979), 15, + ACTIONS(2993), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105599,35 +106428,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [48798] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2370), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2372), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, - anon_sym_PIPE, - [48822] = 3, - ACTIONS(2480), 1, + [49203] = 3, + ACTIONS(2486), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2478), 14, + ACTIONS(2484), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105642,8 +106449,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [48846] = 3, - ACTIONS(3251), 1, + [49227] = 3, + ACTIONS(3292), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -105663,34 +106470,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [48870] = 3, - ACTIONS(2540), 1, - anon_sym_COLON, + [49251] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 14, + ACTIONS(2410), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2412), 13, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [48894] = 3, - ACTIONS(2464), 1, + [49275] = 3, + ACTIONS(2562), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2462), 14, + ACTIONS(2560), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105705,34 +106512,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [48918] = 3, - ACTIONS(2468), 1, - anon_sym_COLON, + [49299] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2466), 14, + ACTIONS(2434), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2436), 13, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [48942] = 3, - ACTIONS(2881), 1, - anon_sym_COLON_COLON, + [49323] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2993), 14, + ACTIONS(3071), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -105747,156 +106552,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [48966] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2778), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - sym_mutable_specifier, - anon_sym_PIPE, - sym_self, - [48988] = 14, - ACTIONS(2338), 1, + sym_identifier, + [49345] = 14, + ACTIONS(2360), 1, anon_sym_PLUS, - ACTIONS(3171), 1, + ACTIONS(3207), 1, + anon_sym_BANG, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3213), 1, anon_sym_PIPE, - ACTIONS(3175), 1, + ACTIONS(3217), 1, anon_sym_LBRACE, - ACTIONS(3177), 1, + ACTIONS(3219), 1, anon_sym_COLON, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3185), 1, + ACTIONS(3225), 1, anon_sym_AT, - ACTIONS(3189), 1, - anon_sym_BANG, - ACTIONS(3253), 1, + ACTIONS(3294), 1, anon_sym_LPAREN, - ACTIONS(3258), 1, + ACTIONS(3296), 1, anon_sym_COLON_COLON, - STATE(1276), 1, + STATE(1285), 1, sym_type_arguments, - STATE(1303), 1, + STATE(1307), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, + ACTIONS(3223), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3281), 2, anon_sym_RPAREN, anon_sym_COMMA, - [49034] = 13, - ACTIONS(3175), 1, - anon_sym_LBRACE, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3185), 1, - anon_sym_AT, - ACTIONS(3189), 1, - anon_sym_BANG, - ACTIONS(3255), 1, - anon_sym_RBRACK, - ACTIONS(3260), 1, - anon_sym_LPAREN, - ACTIONS(3262), 1, - anon_sym_COLON_COLON, - STATE(1276), 1, - sym_type_arguments, - STATE(1303), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2338), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3171), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3181), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [49078] = 3, - ACTIONS(2476), 1, - anon_sym_COLON, + [49391] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2474), 14, + ACTIONS(2876), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_COLON_COLON, + sym_mutable_specifier, anon_sym_PIPE, - [49102] = 3, - ACTIONS(3264), 1, - anon_sym_DASH_GT, + sym_self, + [49413] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2494), 13, + ACTIONS(2418), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2420), 13, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [49125] = 2, + [49437] = 4, + ACTIONS(2396), 1, + anon_sym_COLON, + ACTIONS(3298), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2490), 14, + ACTIONS(2394), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49146] = 3, - ACTIONS(3266), 1, + [49462] = 3, + ACTIONS(3300), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2450), 13, + ACTIONS(2554), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105910,32 +106667,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49169] = 4, - ACTIONS(2404), 1, - anon_sym_COLON, - ACTIONS(3268), 1, - anon_sym_COLON_COLON, + [49485] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2402), 12, + ACTIONS(2564), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49194] = 2, + [49506] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2470), 14, + ACTIONS(2474), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -105950,37 +106705,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49215] = 5, - ACTIONS(3274), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3272), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3276), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3270), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [49242] = 4, - ACTIONS(3280), 1, + [49527] = 4, + ACTIONS(3304), 1, anon_sym_pat, - STATE(521), 1, + STATE(520), 1, sym_fragment_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3278), 12, + ACTIONS(3302), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -105993,13 +106726,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [49267] = 3, - ACTIONS(3282), 1, - anon_sym_DASH_GT, + [49552] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 13, + ACTIONS(2530), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106011,13 +106742,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49290] = 2, + [49573] = 3, + ACTIONS(3306), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2530), 14, + ACTIONS(2516), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106029,23 +106763,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49311] = 4, - ACTIONS(2396), 1, - anon_sym_COLON, - ACTIONS(2995), 1, - anon_sym_COLON_COLON, + [49596] = 3, + ACTIONS(3308), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 12, + ACTIONS(2542), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -106053,11 +106785,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49336] = 2, + [49619] = 3, + ACTIONS(2199), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2201), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [49642] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 14, + ACTIONS(2526), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106072,41 +106824,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49357] = 14, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, - anon_sym_LPAREN, - ACTIONS(3189), 1, - anon_sym_BANG, - ACTIONS(3191), 1, - anon_sym_COLON_COLON, - ACTIONS(3284), 1, - anon_sym_COLON, - ACTIONS(3286), 1, - anon_sym_EQ, - ACTIONS(3288), 1, - anon_sym_COMMA, - ACTIONS(3290), 1, - anon_sym_GT, - STATE(1276), 1, - sym_type_arguments, - STATE(1303), 1, - sym_parameters, - STATE(1794), 1, - aux_sym_type_parameters_repeat1, - STATE(1825), 1, - sym_trait_bounds, + [49663] = 3, + ACTIONS(3310), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2338), 2, + ACTIONS(2502), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - [49402] = 4, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [49686] = 4, ACTIONS(2396), 1, anon_sym_COLON, - ACTIONS(3292), 1, + ACTIONS(3312), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -106124,11 +106865,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49427] = 2, + [49711] = 5, + ACTIONS(3318), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2518), 14, + ACTIONS(3316), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3320), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3314), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [49738] = 3, + ACTIONS(3322), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2510), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106140,18 +106905,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49448] = 4, - ACTIONS(2400), 1, + [49761] = 4, + ACTIONS(2382), 1, anon_sym_COLON, - ACTIONS(3268), 1, + ACTIONS(3312), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2398), 12, + ACTIONS(2380), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106164,13 +106928,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49473] = 3, - ACTIONS(3294), 1, + [49786] = 3, + ACTIONS(3324), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2500), 13, + ACTIONS(2548), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106184,19 +106948,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49496] = 3, - ACTIONS(3296), 1, - anon_sym_DASH_GT, + [49809] = 4, + ACTIONS(2396), 1, + anon_sym_COLON, + ACTIONS(2995), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2522), 13, + ACTIONS(2394), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -106204,35 +106969,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49519] = 3, - ACTIONS(2153), 1, - anon_sym_EQ, + [49834] = 3, + ACTIONS(3326), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2155), 13, + ACTIONS(2536), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49542] = 4, - ACTIONS(2396), 1, + [49857] = 4, + ACTIONS(2428), 1, anon_sym_COLON, - ACTIONS(3268), 1, + ACTIONS(3312), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 12, + ACTIONS(2426), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106245,13 +107010,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49567] = 3, - ACTIONS(3298), 1, - anon_sym_DASH_GT, + [49882] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2512), 13, + ACTIONS(2494), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106263,15 +107026,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49590] = 3, - ACTIONS(3300), 1, - anon_sym_DASH_GT, + [49903] = 14, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3207), 1, + anon_sym_BANG, + ACTIONS(3209), 1, + anon_sym_COLON_COLON, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3328), 1, + anon_sym_COLON, + ACTIONS(3330), 1, + anon_sym_EQ, + ACTIONS(3332), 1, + anon_sym_COMMA, + ACTIONS(3334), 1, + anon_sym_GT, + STATE(1285), 1, + sym_type_arguments, + STATE(1307), 1, + sym_parameters, + STATE(1893), 1, + aux_sym_type_parameters_repeat1, + STATE(1894), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2360), 2, + anon_sym_PLUS, + anon_sym_as, + [49948] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2506), 13, + ACTIONS(2782), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106285,11 +107078,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49613] = 2, + [49968] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2686), 13, + ACTIONS(413), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106303,11 +107096,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49633] = 2, + [49988] = 3, + ACTIONS(3338), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 13, + ACTIONS(3336), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50010] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2770), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106321,11 +107133,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49653] = 2, + [50030] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2844), 13, + ACTIONS(2646), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106339,11 +107151,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49673] = 2, + [50050] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2865), 13, + ACTIONS(2756), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106357,11 +107169,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49693] = 2, + [50070] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2869), 13, + ACTIONS(2568), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106375,11 +107187,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49713] = 2, + [50090] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2694), 13, + ACTIONS(2774), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106393,11 +107205,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49733] = 2, + [50110] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2802), 13, + ACTIONS(2426), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106411,11 +107223,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49753] = 2, + [50130] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 13, + ACTIONS(2662), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106429,11 +107241,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49773] = 2, + [50150] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2398), 13, + ACTIONS(2724), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106447,11 +107259,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49793] = 2, + [50170] = 4, + ACTIONS(3219), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3213), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [50194] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2730), 13, + ACTIONS(2402), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2404), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_PIPE, + [50216] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(596), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106465,11 +107316,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49813] = 2, + [50236] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2836), 13, + ACTIONS(427), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106483,11 +107334,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49833] = 2, + [50256] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2402), 13, + ACTIONS(2880), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106501,11 +107352,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49853] = 2, + [50276] = 3, + ACTIONS(3342), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3340), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50298] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2798), 13, + ACTIONS(2899), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106519,49 +107389,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49873] = 3, + [50318] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 2, + ACTIONS(2394), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, anon_sym_EQ, - ACTIONS(2388), 11, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [50338] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2728), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, + anon_sym_GT, anon_sym_PIPE, - [49895] = 3, - ACTIONS(3304), 1, - anon_sym_EQ, + [50358] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3302), 12, + ACTIONS(2630), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [49917] = 2, + [50378] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2786), 13, + ACTIONS(2710), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106575,31 +107461,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49937] = 4, - ACTIONS(3177), 1, - anon_sym_EQ, + [50398] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3171), 10, + ACTIONS(2706), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, + anon_sym_GT, anon_sym_PIPE, - [49961] = 2, + [50418] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2682), 13, + ACTIONS(2732), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106613,30 +107497,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49981] = 3, - ACTIONS(3308), 1, + [50438] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2626), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [50458] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3306), 12, + ACTIONS(2854), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [50003] = 2, + [50478] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2658), 13, + ACTIONS(2380), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106650,7 +107551,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50023] = 2, + [50498] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -106668,11 +107569,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50043] = 2, + [50518] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2754), 13, + ACTIONS(2642), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106686,11 +107587,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50063] = 2, + [50538] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2710), 13, + ACTIONS(2736), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106704,11 +107605,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50083] = 2, + [50558] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2770), 13, + ACTIONS(467), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -106722,173 +107623,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50103] = 2, + [50578] = 4, + ACTIONS(3348), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2758), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3346), 2, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50123] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2698), 13, + ACTIONS(3344), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [50143] = 2, + [50601] = 4, + ACTIONS(3292), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(457), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3352), 2, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50163] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2638), 13, + ACTIONS(3350), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [50183] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(582), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, + [50624] = 3, + ACTIONS(399), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50203] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2794), 13, + ACTIONS(397), 11, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [50223] = 5, - ACTIONS(2386), 1, + [50645] = 5, + ACTIONS(2434), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2382), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3310), 3, + ACTIONS(3354), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2388), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50248] = 5, - ACTIONS(2378), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2374), 3, + ACTIONS(2430), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3313), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2380), 5, + anon_sym_LT2, + ACTIONS(2436), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50273] = 3, - ACTIONS(399), 1, - anon_sym_EQ, + [50670] = 4, + ACTIONS(3348), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(397), 11, + ACTIONS(3352), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3350), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [50294] = 3, + [50693] = 3, ACTIONS(391), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -106906,211 +107736,235 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [50315] = 5, - ACTIONS(2370), 1, + [50714] = 5, + ACTIONS(2418), 1, anon_sym_COLON, - ACTIONS(3316), 1, + ACTIONS(3357), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2366), 5, + ACTIONS(2414), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2372), 5, + ACTIONS(2420), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50340] = 5, - ACTIONS(2370), 1, + [50739] = 5, + ACTIONS(2402), 1, anon_sym_COLON, + ACTIONS(3360), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2366), 3, + ACTIONS(2398), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3316), 3, + ACTIONS(2404), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50764] = 5, + ACTIONS(2410), 1, + anon_sym_COLON, + ACTIONS(3363), 1, anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2406), 5, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_COMMA, - ACTIONS(2372), 5, + anon_sym_LT2, + ACTIONS(2412), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50365] = 3, - ACTIONS(395), 1, - anon_sym_EQ, + [50789] = 4, + ACTIONS(3366), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(393), 11, + ACTIONS(3352), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3350), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [50386] = 4, + [50812] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3319), 2, + ACTIONS(3363), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2358), 4, + ACTIONS(2406), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2364), 6, + ACTIONS(2412), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50409] = 5, - ACTIONS(2378), 1, - anon_sym_COLON, - ACTIONS(3313), 1, - anon_sym_LPAREN, + [50835] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2374), 5, - anon_sym_RPAREN, + ACTIONS(3360), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2398), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2380), 5, + ACTIONS(2404), 6, anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50434] = 5, - ACTIONS(2362), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2358), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3319), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2364), 5, - anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50459] = 4, + [50858] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3313), 2, + ACTIONS(3357), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2374), 4, + ACTIONS(2414), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2380), 6, + ACTIONS(2420), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50482] = 5, - ACTIONS(2386), 1, + [50881] = 5, + ACTIONS(2434), 1, anon_sym_COLON, - ACTIONS(3310), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2382), 5, - anon_sym_RPAREN, + ACTIONS(2430), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2388), 5, + ACTIONS(3354), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2436), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50507] = 4, - ACTIONS(3326), 1, + [50906] = 10, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3215), 1, + anon_sym_LPAREN, + ACTIONS(3217), 1, + anon_sym_LBRACE, + ACTIONS(3221), 1, anon_sym_COLON_COLON, + ACTIONS(3225), 1, + anon_sym_AT, + ACTIONS(3368), 1, + anon_sym_BANG, + STATE(1285), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3324), 2, - anon_sym_COLON, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3213), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + [50941] = 3, + ACTIONS(395), 1, anon_sym_EQ, - ACTIONS(3322), 9, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(393), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [50530] = 5, - ACTIONS(2362), 1, + [50962] = 5, + ACTIONS(2418), 1, anon_sym_COLON, - ACTIONS(3319), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2358), 5, - anon_sym_RPAREN, + ACTIONS(2414), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2364), 5, + ACTIONS(3357), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2420), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50555] = 4, - ACTIONS(3332), 1, + [50987] = 4, + ACTIONS(3374), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3330), 2, + ACTIONS(3372), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3328), 9, + ACTIONS(3370), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107120,54 +107974,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50578] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3310), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2382), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2388), 6, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50601] = 4, + [51010] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3316), 2, + ACTIONS(3354), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2366), 4, + ACTIONS(2430), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2372), 6, + ACTIONS(2436), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50624] = 4, - ACTIONS(3251), 1, + [51033] = 4, + ACTIONS(3292), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3330), 2, + ACTIONS(3346), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3328), 9, + ACTIONS(3344), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107177,54 +108012,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50647] = 4, - ACTIONS(3326), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3336), 2, + [51056] = 5, + ACTIONS(2402), 1, anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3334), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [50670] = 4, - ACTIONS(3332), 1, - anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3340), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3338), 9, - anon_sym_SEMI, + ACTIONS(2398), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3360), 3, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, anon_sym_COMMA, - anon_sym_in, + ACTIONS(2404), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50693] = 4, - ACTIONS(3251), 1, + [51081] = 4, + ACTIONS(3366), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3340), 2, + ACTIONS(3346), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3338), 9, + ACTIONS(3344), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107234,35 +108051,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50716] = 4, - ACTIONS(3342), 1, - anon_sym_COLON_COLON, + [51104] = 5, + ACTIONS(2410), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3340), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3338), 9, - anon_sym_SEMI, + ACTIONS(2406), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3363), 3, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, anon_sym_COMMA, - anon_sym_in, + ACTIONS(2412), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50739] = 4, - ACTIONS(3342), 1, + [51129] = 4, + ACTIONS(3374), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3330), 2, + ACTIONS(3378), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3328), 9, + ACTIONS(3376), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107272,38 +108090,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50762] = 10, - ACTIONS(3173), 1, - anon_sym_LPAREN, - ACTIONS(3175), 1, - anon_sym_LBRACE, - ACTIONS(3179), 1, - anon_sym_COLON_COLON, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3185), 1, - anon_sym_AT, - ACTIONS(3344), 1, + [51152] = 6, + ACTIONS(3380), 1, + anon_sym_COLON, + ACTIONS(3382), 1, anon_sym_BANG, - STATE(1276), 1, - sym_type_arguments, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, + ACTIONS(3320), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3171), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - [50797] = 3, - ACTIONS(3348), 1, + ACTIONS(2388), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [51178] = 3, + ACTIONS(3388), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3346), 10, + ACTIONS(3386), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107314,13 +108127,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50817] = 3, - ACTIONS(3352), 1, + [51198] = 3, + ACTIONS(3392), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3350), 10, + ACTIONS(3390), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107331,13 +108144,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50837] = 3, - ACTIONS(3356), 1, + [51218] = 3, + ACTIONS(3396), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3354), 10, + ACTIONS(3394), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107348,32 +108161,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50857] = 5, - ACTIONS(714), 1, - aux_sym_string_literal_token1, - ACTIONS(3360), 1, - sym_crate, - STATE(1474), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3358), 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, - [50881] = 3, - ACTIONS(3364), 1, + [51238] = 3, + ACTIONS(419), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3362), 10, + ACTIONS(417), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107384,13 +108178,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50901] = 3, - ACTIONS(3368), 1, + [51258] = 3, + ACTIONS(3400), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3366), 10, + ACTIONS(3398), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107401,32 +108195,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50921] = 5, - ACTIONS(714), 1, - aux_sym_string_literal_token1, - ACTIONS(3370), 1, - sym_crate, - STATE(1474), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3358), 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, - [50945] = 3, - ACTIONS(3374), 1, + [51278] = 3, + ACTIONS(3404), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3372), 10, + ACTIONS(3402), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107437,13 +108212,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50965] = 3, - ACTIONS(3378), 1, + [51298] = 3, + ACTIONS(3219), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3376), 10, + ACTIONS(3213), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107454,32 +108229,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50985] = 5, - ACTIONS(714), 1, - aux_sym_string_literal_token1, - ACTIONS(3380), 1, - sym_crate, - STATE(1474), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3358), 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, - [51009] = 3, - ACTIONS(3384), 1, + [51318] = 3, + ACTIONS(3408), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3382), 10, + ACTIONS(3406), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107490,13 +108246,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51029] = 3, - ACTIONS(3388), 1, + [51338] = 3, + ACTIONS(3412), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3386), 10, + ACTIONS(3410), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107507,13 +108263,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51049] = 3, - ACTIONS(3392), 1, + [51358] = 3, + ACTIONS(3416), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3390), 10, + ACTIONS(3414), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107524,13 +108280,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51069] = 3, - ACTIONS(3396), 1, + [51378] = 3, + ACTIONS(3420), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3394), 10, + ACTIONS(3418), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107541,13 +108297,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51089] = 3, - ACTIONS(3400), 1, + [51398] = 3, + ACTIONS(3424), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3398), 10, + ACTIONS(3422), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107558,13 +108314,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51109] = 3, - ACTIONS(3404), 1, + [51418] = 3, + ACTIONS(3428), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3402), 10, + ACTIONS(3426), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107575,13 +108331,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51129] = 3, - ACTIONS(3408), 1, + [51438] = 3, + ACTIONS(3432), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3406), 10, + ACTIONS(3430), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107592,13 +108348,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51149] = 3, - ACTIONS(3412), 1, + [51458] = 5, + ACTIONS(718), 1, + aux_sym_string_literal_token1, + ACTIONS(3436), 1, + sym_crate, + STATE(1507), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3434), 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, + [51482] = 3, + ACTIONS(3346), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3410), 10, + ACTIONS(3344), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107609,13 +108384,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51169] = 3, - ACTIONS(3340), 1, + [51502] = 3, + ACTIONS(3440), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3338), 10, + ACTIONS(3438), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107626,13 +108401,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51189] = 3, - ACTIONS(3416), 1, + [51522] = 3, + ACTIONS(3444), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3414), 10, + ACTIONS(3442), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107643,32 +108418,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51209] = 5, - ACTIONS(714), 1, - aux_sym_string_literal_token1, - ACTIONS(3418), 1, - sym_crate, - STATE(1474), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3358), 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, - [51233] = 3, - ACTIONS(3422), 1, + [51542] = 3, + ACTIONS(3448), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3420), 10, + ACTIONS(3446), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107679,13 +108435,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51253] = 3, - ACTIONS(3426), 1, + [51562] = 3, + ACTIONS(3452), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3424), 10, + ACTIONS(3450), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107696,13 +108452,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51273] = 3, - ACTIONS(3430), 1, + [51582] = 3, + ACTIONS(3456), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3428), 10, + ACTIONS(3454), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107713,13 +108469,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51293] = 3, - ACTIONS(3434), 1, + [51602] = 3, + ACTIONS(3460), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3432), 10, + ACTIONS(3458), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107730,13 +108486,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51313] = 3, - ACTIONS(3438), 1, + [51622] = 3, + ACTIONS(3464), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3436), 10, + ACTIONS(3462), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107747,13 +108503,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51333] = 3, - ACTIONS(3177), 1, + [51642] = 3, + ACTIONS(3468), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3171), 10, + ACTIONS(3466), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107764,13 +108520,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51353] = 3, - ACTIONS(3442), 1, + [51662] = 3, + ACTIONS(3472), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3440), 10, + ACTIONS(3470), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107781,13 +108537,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51373] = 3, - ACTIONS(3446), 1, + [51682] = 3, + ACTIONS(3352), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3444), 10, + ACTIONS(3350), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107798,13 +108554,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51393] = 3, - ACTIONS(411), 1, + [51702] = 3, + ACTIONS(3476), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(409), 10, + ACTIONS(3474), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107815,13 +108571,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51413] = 3, - ACTIONS(3450), 1, + [51722] = 6, + ACTIONS(3380), 1, + anon_sym_COLON, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3478), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3320), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2388), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [51748] = 3, + ACTIONS(3482), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3448), 10, + ACTIONS(3480), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107832,13 +108608,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51433] = 3, - ACTIONS(3454), 1, + [51768] = 3, + ACTIONS(3486), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3452), 10, + ACTIONS(3484), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107849,13 +108625,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51453] = 3, - ACTIONS(3330), 1, + [51788] = 5, + ACTIONS(718), 1, + aux_sym_string_literal_token1, + ACTIONS(3488), 1, + sym_crate, + STATE(1507), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3434), 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, + [51812] = 5, + ACTIONS(718), 1, + aux_sym_string_literal_token1, + ACTIONS(3490), 1, + sym_crate, + STATE(1507), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3434), 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, + [51836] = 3, + ACTIONS(3494), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3328), 10, + ACTIONS(3492), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107866,13 +108680,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51473] = 3, - ACTIONS(3458), 1, + [51856] = 3, + ACTIONS(3498), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3456), 10, + ACTIONS(3496), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107883,13 +108697,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51493] = 3, - ACTIONS(3462), 1, + [51876] = 5, + ACTIONS(718), 1, + aux_sym_string_literal_token1, + ACTIONS(3500), 1, + sym_crate, + STATE(1507), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3434), 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, + [51900] = 3, + ACTIONS(3504), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3460), 10, + ACTIONS(3502), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -107900,145 +108733,252 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51513] = 5, - ACTIONS(3464), 1, - anon_sym_COLON, - ACTIONS(3466), 1, + [51920] = 9, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3207), 1, + anon_sym_BANG, + ACTIONS(3209), 1, anon_sym_COLON_COLON, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3506), 1, + anon_sym_EQ, + STATE(1285), 1, + sym_type_arguments, + STATE(1307), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3276), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2412), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [51536] = 9, - ACTIONS(3183), 1, + ACTIONS(2360), 3, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_GT, + [51951] = 10, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2127), 1, + anon_sym_POUND, + ACTIONS(3508), 1, + sym_identifier, + ACTIONS(3510), 1, + anon_sym_RBRACE, + ACTIONS(3512), 1, + anon_sym_COMMA, + ACTIONS(3514), 1, + sym_crate, + STATE(2025), 1, + sym_field_declaration, + STATE(2318), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1494), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [51984] = 9, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3207), 1, + anon_sym_BANG, + ACTIONS(3209), 1, + anon_sym_COLON_COLON, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(3187), 1, + ACTIONS(3516), 1, + anon_sym_for, + STATE(1285), 1, + sym_type_arguments, + STATE(1307), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2360), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52015] = 9, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3189), 1, + ACTIONS(3207), 1, anon_sym_BANG, - ACTIONS(3191), 1, + ACTIONS(3209), 1, anon_sym_COLON_COLON, - ACTIONS(3468), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3518), 1, anon_sym_for, - STATE(1276), 1, + STATE(1285), 1, sym_type_arguments, - STATE(1303), 1, + STATE(1307), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2338), 3, + ACTIONS(2360), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [51567] = 10, + [52046] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2107), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3470), 1, + ACTIONS(3508), 1, sym_identifier, - ACTIONS(3472), 1, + ACTIONS(3514), 1, + sym_crate, + ACTIONS(3520), 1, anon_sym_RBRACE, - ACTIONS(3474), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - ACTIONS(3476), 1, + STATE(1844), 1, + sym_field_declaration, + STATE(2318), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1492), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52079] = 10, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2127), 1, + anon_sym_POUND, + ACTIONS(3514), 1, sym_crate, - STATE(1774), 1, + ACTIONS(3524), 1, + sym_identifier, + ACTIONS(3526), 1, + anon_sym_RBRACE, + ACTIONS(3528), 1, + anon_sym_COMMA, + STATE(2014), 1, sym_enum_variant, - STATE(2291), 1, + STATE(2459), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1452), 2, + STATE(1486), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [51600] = 9, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, + [52112] = 6, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + STATE(1939), 1, + sym__literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3530), 2, + anon_sym_true, + anon_sym_false, + STATE(965), 2, + sym_string_literal, + sym_boolean_literal, + ACTIONS(89), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + [52137] = 9, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3189), 1, + ACTIONS(3207), 1, anon_sym_BANG, - ACTIONS(3191), 1, + ACTIONS(3209), 1, anon_sym_COLON_COLON, - ACTIONS(3478), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3532), 1, anon_sym_for, - STATE(1276), 1, + STATE(1285), 1, sym_type_arguments, - STATE(1303), 1, + STATE(1307), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2338), 3, + ACTIONS(2360), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [51631] = 9, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, - anon_sym_LPAREN, - ACTIONS(3189), 1, - anon_sym_BANG, - ACTIONS(3191), 1, - anon_sym_COLON_COLON, - ACTIONS(3480), 1, - anon_sym_for, - STATE(1276), 1, - sym_type_arguments, - STATE(1303), 1, - sym_parameters, + [52168] = 6, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + STATE(1941), 1, + sym__literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2338), 3, + ACTIONS(3530), 2, + anon_sym_true, + anon_sym_false, + STATE(965), 2, + sym_string_literal, + sym_boolean_literal, + ACTIONS(89), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + [52193] = 6, + ACTIONS(15), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [51662] = 9, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, + ACTIONS(3265), 1, + anon_sym_trait, + ACTIONS(3534), 1, + anon_sym_impl, + STATE(45), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2388), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52218] = 9, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3189), 1, + ACTIONS(3207), 1, anon_sym_BANG, - ACTIONS(3191), 1, + ACTIONS(3209), 1, anon_sym_COLON_COLON, - ACTIONS(3482), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3536), 1, anon_sym_for, - STATE(1276), 1, + STATE(1285), 1, sym_type_arguments, - STATE(1303), 1, + STATE(1307), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2338), 3, + ACTIONS(2360), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [51693] = 7, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, + [52249] = 7, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3484), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3538), 1, anon_sym_LBRACE, - STATE(1277), 1, + STATE(1276), 1, sym_type_arguments, - STATE(1299), 1, + STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -108049,1361 +108989,1476 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_PLUS, anon_sym_COMMA, - [51720] = 9, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, + [52276] = 9, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3189), 1, + ACTIONS(3207), 1, anon_sym_BANG, - ACTIONS(3191), 1, + ACTIONS(3209), 1, anon_sym_COLON_COLON, - ACTIONS(3486), 1, - anon_sym_EQ, - STATE(1276), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3540), 1, + anon_sym_for, + STATE(1285), 1, sym_type_arguments, - STATE(1303), 1, + STATE(1307), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2338), 3, + ACTIONS(2360), 3, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - [51751] = 8, - ACTIONS(2107), 1, - anon_sym_POUND, - ACTIONS(3488), 1, - sym_identifier, - ACTIONS(3490), 1, - anon_sym_RBRACE, - ACTIONS(3492), 1, - anon_sym_COMMA, - ACTIONS(3494), 1, - anon_sym_DOT_DOT, + anon_sym_where, + [52307] = 9, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3207), 1, + anon_sym_BANG, + ACTIONS(3209), 1, + anon_sym_COLON_COLON, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3542), 1, + anon_sym_for, + STATE(1285), 1, + sym_type_arguments, + STATE(1307), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1702), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1819), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [51780] = 9, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, + ACTIONS(2360), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52338] = 9, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3189), 1, + ACTIONS(3207), 1, anon_sym_BANG, - ACTIONS(3191), 1, + ACTIONS(3209), 1, anon_sym_COLON_COLON, - ACTIONS(3496), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3544), 1, anon_sym_for, - STATE(1276), 1, + STATE(1285), 1, sym_type_arguments, - STATE(1303), 1, + STATE(1307), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2338), 3, + ACTIONS(2360), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [51811] = 6, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3231), 1, - anon_sym_trait, - ACTIONS(3498), 1, - anon_sym_impl, - STATE(66), 1, - sym_block, + [52369] = 5, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3478), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2412), 6, + ACTIONS(3320), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2388), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [51836] = 10, + [52392] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2107), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3470), 1, - sym_identifier, - ACTIONS(3476), 1, + ACTIONS(3514), 1, sym_crate, - ACTIONS(3500), 1, + ACTIONS(3524), 1, + sym_identifier, + ACTIONS(3546), 1, anon_sym_RBRACE, - ACTIONS(3502), 1, + ACTIONS(3548), 1, anon_sym_COMMA, - STATE(1950), 1, + STATE(1987), 1, sym_enum_variant, - STATE(2291), 1, + STATE(2459), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1485), 2, + STATE(1503), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [51869] = 9, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, - anon_sym_LPAREN, - ACTIONS(3189), 1, + [52425] = 5, + ACTIONS(3382), 1, anon_sym_BANG, - ACTIONS(3191), 1, - anon_sym_COLON_COLON, - ACTIONS(3504), 1, - anon_sym_for, - STATE(1276), 1, - sym_type_arguments, - STATE(1303), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2338), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [51900] = 5, - ACTIONS(3464), 1, - anon_sym_COLON, - ACTIONS(3506), 1, + ACTIONS(3384), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3276), 2, + ACTIONS(3320), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2412), 6, + ACTIONS(2388), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [51923] = 9, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, - anon_sym_LPAREN, - ACTIONS(3189), 1, + [52448] = 5, + ACTIONS(3382), 1, anon_sym_BANG, - ACTIONS(3191), 1, + ACTIONS(3550), 1, anon_sym_COLON_COLON, - ACTIONS(3508), 1, - anon_sym_for, - STATE(1276), 1, - sym_type_arguments, - STATE(1303), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2338), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [51954] = 6, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - STATE(1926), 1, - sym__literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3510), 2, - anon_sym_true, - anon_sym_false, - STATE(990), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [51979] = 6, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - STATE(1920), 1, - sym__literal, + ACTIONS(3320), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2388), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52471] = 8, + ACTIONS(2127), 1, + anon_sym_POUND, + ACTIONS(3552), 1, + sym_identifier, + ACTIONS(3554), 1, + anon_sym_RBRACE, + ACTIONS(3556), 1, + anon_sym_COMMA, + ACTIONS(3558), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3510), 2, - anon_sym_true, - anon_sym_false, - STATE(990), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [52004] = 9, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, + STATE(1738), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1905), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [52500] = 9, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3189), 1, + ACTIONS(3207), 1, anon_sym_BANG, - ACTIONS(3191), 1, + ACTIONS(3209), 1, anon_sym_COLON_COLON, - ACTIONS(3512), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3560), 1, anon_sym_for, - STATE(1276), 1, + STATE(1285), 1, sym_type_arguments, - STATE(1303), 1, + STATE(1307), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2338), 3, + ACTIONS(2360), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52035] = 10, + [52531] = 5, + ACTIONS(3562), 1, + anon_sym_SEMI, + ACTIONS(3564), 1, + anon_sym_LBRACE, + STATE(465), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2388), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52553] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2107), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3476), 1, - sym_crate, - ACTIONS(3514), 1, + ACTIONS(3508), 1, sym_identifier, - ACTIONS(3516), 1, + ACTIONS(3514), 1, + sym_crate, + ACTIONS(3566), 1, anon_sym_RBRACE, - ACTIONS(3518), 1, - anon_sym_COMMA, - STATE(1987), 1, + STATE(2085), 1, sym_field_declaration, - STATE(2224), 1, + STATE(2318), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1477), 2, + STATE(1478), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52068] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2107), 1, - anon_sym_POUND, - ACTIONS(3476), 1, - sym_crate, - ACTIONS(3514), 1, + [52583] = 9, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(3568), 1, sym_identifier, - ACTIONS(3520), 1, - anon_sym_RBRACE, - ACTIONS(3522), 1, - anon_sym_COMMA, - STATE(1868), 1, - sym_field_declaration, - STATE(2224), 1, - sym_visibility_modifier, + ACTIONS(3570), 1, + anon_sym_const, + ACTIONS(3572), 1, + anon_sym_GT, + ACTIONS(3574), 1, + sym_metavariable, + STATE(1729), 1, + sym_lifetime, + STATE(1883), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1465), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52101] = 5, - ACTIONS(15), 1, + STATE(2239), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52613] = 5, + ACTIONS(3576), 1, + anon_sym_SEMI, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3524), 1, - sym_identifier, - STATE(45), 1, - sym_block, + STATE(804), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3526), 6, + ACTIONS(2388), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52123] = 9, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(3528), 1, + [52635] = 7, + ACTIONS(2127), 1, + anon_sym_POUND, + ACTIONS(3552), 1, sym_identifier, - ACTIONS(3530), 1, - anon_sym_const, - ACTIONS(3532), 1, - anon_sym_GT, - ACTIONS(3534), 1, - sym_metavariable, - STATE(1732), 1, - sym_lifetime, - STATE(1977), 1, - sym_constrained_type_parameter, + ACTIONS(3558), 1, + anon_sym_DOT_DOT, + ACTIONS(3580), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2036), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52153] = 10, - ACTIONS(3536), 1, + STATE(1738), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2177), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [52661] = 10, + ACTIONS(3582), 1, anon_sym_SEMI, - ACTIONS(3538), 1, + ACTIONS(3584), 1, anon_sym_LPAREN, - ACTIONS(3540), 1, + ACTIONS(3586), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3544), 1, + ACTIONS(3590), 1, anon_sym_LT, - STATE(361), 1, + STATE(371), 1, sym_field_declaration_list, - STATE(1502), 1, + STATE(1521), 1, sym_type_parameters, - STATE(1945), 1, + STATE(1847), 1, sym_ordered_field_declaration_list, - STATE(2085), 1, + STATE(2190), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52185] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2107), 1, - anon_sym_POUND, - ACTIONS(3470), 1, - sym_identifier, - ACTIONS(3476), 1, - sym_crate, - ACTIONS(3546), 1, - anon_sym_RBRACE, - STATE(2055), 1, - sym_enum_variant, - STATE(2291), 1, - sym_visibility_modifier, + [52693] = 10, + ACTIONS(3584), 1, + anon_sym_LPAREN, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3590), 1, + anon_sym_LT, + ACTIONS(3592), 1, + anon_sym_SEMI, + ACTIONS(3594), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_field_declaration_list, + STATE(1541), 1, + sym_type_parameters, + STATE(2034), 1, + sym_ordered_field_declaration_list, + STATE(2045), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1453), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52215] = 5, + [52725] = 5, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3548), 1, + ACTIONS(3596), 1, anon_sym_move, - STATE(51), 1, + STATE(61), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2412), 6, + ACTIONS(2388), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52237] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2107), 1, - anon_sym_POUND, - ACTIONS(3476), 1, - sym_crate, - ACTIONS(3514), 1, + [52747] = 9, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(3568), 1, sym_identifier, - ACTIONS(3550), 1, - anon_sym_RBRACE, - STATE(2167), 1, - sym_field_declaration, - STATE(2224), 1, - sym_visibility_modifier, + ACTIONS(3570), 1, + anon_sym_const, + ACTIONS(3574), 1, + sym_metavariable, + ACTIONS(3598), 1, + anon_sym_GT, + STATE(1729), 1, + sym_lifetime, + STATE(1883), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1478), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52267] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2107), 1, - anon_sym_POUND, - ACTIONS(3476), 1, - sym_crate, - ACTIONS(3514), 1, - sym_identifier, - ACTIONS(3552), 1, - anon_sym_RBRACE, - STATE(2167), 1, - sym_field_declaration, - STATE(2224), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1478), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52297] = 10, - ACTIONS(3538), 1, + STATE(2239), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52777] = 10, + ACTIONS(3584), 1, anon_sym_LPAREN, - ACTIONS(3542), 1, + ACTIONS(3586), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3544), 1, + ACTIONS(3590), 1, anon_sym_LT, - ACTIONS(3554), 1, + ACTIONS(3600), 1, anon_sym_SEMI, - ACTIONS(3556), 1, - anon_sym_LBRACE, - STATE(831), 1, + STATE(261), 1, sym_field_declaration_list, - STATE(1534), 1, + STATE(1542), 1, sym_type_parameters, - STATE(2001), 1, + STATE(1833), 1, sym_ordered_field_declaration_list, - STATE(2013), 1, + STATE(2129), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52329] = 7, - ACTIONS(2107), 1, - anon_sym_POUND, - ACTIONS(3488), 1, + [52809] = 9, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(3568), 1, sym_identifier, - ACTIONS(3494), 1, - anon_sym_DOT_DOT, - ACTIONS(3558), 1, - anon_sym_RBRACE, + ACTIONS(3570), 1, + anon_sym_const, + ACTIONS(3574), 1, + sym_metavariable, + ACTIONS(3602), 1, + anon_sym_GT, + STATE(1729), 1, + sym_lifetime, + STATE(1883), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1702), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2128), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [52355] = 4, - ACTIONS(3560), 1, - anon_sym_COLON_COLON, + STATE(2239), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52839] = 5, + ACTIONS(3564), 1, + anon_sym_LBRACE, + ACTIONS(3604), 1, + anon_sym_SEMI, + STATE(283), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3276), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2412), 6, + ACTIONS(2388), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52375] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2107), 1, - anon_sym_POUND, - ACTIONS(3470), 1, - sym_identifier, - ACTIONS(3476), 1, - sym_crate, - ACTIONS(3562), 1, - anon_sym_RBRACE, - STATE(2055), 1, - sym_enum_variant, - STATE(2291), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1453), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52405] = 7, - ACTIONS(2107), 1, + [52861] = 7, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3488), 1, + ACTIONS(3552), 1, sym_identifier, - ACTIONS(3494), 1, + ACTIONS(3558), 1, anon_sym_DOT_DOT, - ACTIONS(3564), 1, + ACTIONS(3606), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1702), 2, + STATE(1738), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2128), 3, + STATE(2177), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [52431] = 9, + [52887] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2107), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3476), 1, - sym_crate, ACTIONS(3514), 1, + sym_crate, + ACTIONS(3524), 1, sym_identifier, - ACTIONS(3566), 1, + ACTIONS(3608), 1, anon_sym_RBRACE, - STATE(2167), 1, - sym_field_declaration, - STATE(2224), 1, + STATE(2112), 1, + sym_enum_variant, + STATE(2459), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1478), 2, + STATE(1476), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52461] = 9, - ACTIONS(2103), 1, + [52917] = 9, + ACTIONS(2123), 1, anon_sym_SQUOTE, - ACTIONS(3528), 1, + ACTIONS(3568), 1, sym_identifier, - ACTIONS(3530), 1, + ACTIONS(3570), 1, anon_sym_const, - ACTIONS(3534), 1, + ACTIONS(3574), 1, sym_metavariable, - ACTIONS(3568), 1, + ACTIONS(3610), 1, anon_sym_GT, - STATE(1732), 1, + STATE(1730), 1, sym_lifetime, - STATE(1977), 1, + STATE(1883), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2036), 2, + STATE(2239), 2, sym_const_parameter, sym_optional_type_parameter, - [52491] = 5, - ACTIONS(3570), 1, - anon_sym_SEMI, - ACTIONS(3572), 1, - anon_sym_LBRACE, - STATE(349), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2412), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52513] = 9, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(3528), 1, + [52947] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2127), 1, + anon_sym_POUND, + ACTIONS(3508), 1, sym_identifier, - ACTIONS(3530), 1, - anon_sym_const, - ACTIONS(3534), 1, - sym_metavariable, - ACTIONS(3574), 1, - anon_sym_GT, - STATE(1732), 1, - sym_lifetime, - STATE(1977), 1, - sym_constrained_type_parameter, + ACTIONS(3514), 1, + sym_crate, + ACTIONS(3612), 1, + anon_sym_RBRACE, + STATE(2085), 1, + sym_field_declaration, + STATE(2318), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2036), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52543] = 10, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3544), 1, - anon_sym_LT, - ACTIONS(3576), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_field_declaration_list, - STATE(1499), 1, - sym_type_parameters, - STATE(1952), 1, - sym_ordered_field_declaration_list, - STATE(2074), 1, - sym_where_clause, + STATE(1478), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52977] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2127), 1, + anon_sym_POUND, + ACTIONS(3508), 1, + sym_identifier, + ACTIONS(3514), 1, + sym_crate, + ACTIONS(3614), 1, + anon_sym_RBRACE, + STATE(2085), 1, + sym_field_declaration, + STATE(2318), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52575] = 9, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(3528), 1, + STATE(1478), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53007] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2127), 1, + anon_sym_POUND, + ACTIONS(3514), 1, + sym_crate, + ACTIONS(3524), 1, sym_identifier, - ACTIONS(3530), 1, - anon_sym_const, - ACTIONS(3534), 1, - sym_metavariable, - ACTIONS(3578), 1, - anon_sym_GT, - STATE(1732), 1, - sym_lifetime, - STATE(1977), 1, - sym_constrained_type_parameter, + ACTIONS(3616), 1, + anon_sym_RBRACE, + STATE(2112), 1, + sym_enum_variant, + STATE(2459), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2036), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52605] = 4, - ACTIONS(3506), 1, + STATE(1476), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53037] = 7, + ACTIONS(3207), 1, + anon_sym_BANG, + ACTIONS(3215), 1, + anon_sym_LPAREN, + ACTIONS(3219), 1, + anon_sym_COLON, + ACTIONS(3618), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3276), 2, + ACTIONS(3223), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2412), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52625] = 9, + ACTIONS(3213), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [53063] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2107), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3476), 1, - sym_crate, ACTIONS(3514), 1, + sym_crate, + ACTIONS(3524), 1, sym_identifier, - ACTIONS(3580), 1, + ACTIONS(3620), 1, anon_sym_RBRACE, - STATE(2167), 1, - sym_field_declaration, - STATE(2224), 1, + STATE(2112), 1, + sym_enum_variant, + STATE(2459), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1478), 2, + STATE(1476), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52655] = 9, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(3528), 1, - sym_identifier, - ACTIONS(3530), 1, - anon_sym_const, - ACTIONS(3534), 1, - sym_metavariable, - ACTIONS(3582), 1, - anon_sym_GT, - STATE(1725), 1, - sym_lifetime, - STATE(1977), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2036), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52685] = 9, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(3528), 1, + [53093] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2127), 1, + anon_sym_POUND, + ACTIONS(3508), 1, sym_identifier, - ACTIONS(3530), 1, - anon_sym_const, - ACTIONS(3534), 1, - sym_metavariable, - ACTIONS(3584), 1, - anon_sym_GT, - STATE(1732), 1, - sym_lifetime, - STATE(1977), 1, - sym_constrained_type_parameter, + ACTIONS(3514), 1, + sym_crate, + ACTIONS(3622), 1, + anon_sym_RBRACE, + STATE(2085), 1, + sym_field_declaration, + STATE(2318), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2036), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52715] = 9, + STATE(1478), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53123] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2107), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3470), 1, + ACTIONS(3508), 1, sym_identifier, - ACTIONS(3476), 1, + ACTIONS(3514), 1, sym_crate, - ACTIONS(3586), 1, + ACTIONS(3624), 1, anon_sym_RBRACE, - STATE(2055), 1, - sym_enum_variant, - STATE(2291), 1, + STATE(2085), 1, + sym_field_declaration, + STATE(2318), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1453), 2, + STATE(1478), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52745] = 9, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(3528), 1, - sym_identifier, - ACTIONS(3530), 1, - anon_sym_const, - ACTIONS(3534), 1, - sym_metavariable, + [53153] = 10, + ACTIONS(3584), 1, + anon_sym_LPAREN, ACTIONS(3588), 1, - anon_sym_GT, - STATE(1732), 1, - sym_lifetime, - STATE(1977), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2036), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52775] = 9, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(3528), 1, - sym_identifier, - ACTIONS(3530), 1, - anon_sym_const, - ACTIONS(3534), 1, - sym_metavariable, + anon_sym_where, ACTIONS(3590), 1, - anon_sym_GT, - STATE(1732), 1, - sym_lifetime, - STATE(1977), 1, - sym_constrained_type_parameter, + anon_sym_LT, + ACTIONS(3594), 1, + anon_sym_LBRACE, + ACTIONS(3626), 1, + anon_sym_SEMI, + STATE(837), 1, + sym_field_declaration_list, + STATE(1512), 1, + sym_type_parameters, + STATE(1953), 1, + sym_ordered_field_declaration_list, + STATE(2161), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2036), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52805] = 9, - ACTIONS(2103), 1, + [53185] = 9, + ACTIONS(2123), 1, anon_sym_SQUOTE, - ACTIONS(3528), 1, + ACTIONS(3568), 1, sym_identifier, - ACTIONS(3530), 1, + ACTIONS(3570), 1, anon_sym_const, - ACTIONS(3534), 1, + ACTIONS(3574), 1, sym_metavariable, - ACTIONS(3592), 1, + ACTIONS(3628), 1, anon_sym_GT, - STATE(1732), 1, + STATE(1729), 1, sym_lifetime, - STATE(1977), 1, + STATE(1883), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2036), 2, + STATE(2239), 2, sym_const_parameter, sym_optional_type_parameter, - [52835] = 9, + [53215] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2107), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3470), 1, - sym_identifier, - ACTIONS(3476), 1, + ACTIONS(3514), 1, sym_crate, - ACTIONS(3594), 1, + ACTIONS(3524), 1, + sym_identifier, + ACTIONS(3630), 1, anon_sym_RBRACE, - STATE(2055), 1, + STATE(2112), 1, sym_enum_variant, - STATE(2291), 1, + STATE(2459), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1453), 2, + STATE(1476), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52865] = 5, - ACTIONS(3596), 1, - anon_sym_SEMI, - ACTIONS(3598), 1, - anon_sym_LBRACE, - STATE(763), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2412), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52887] = 9, + [53245] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2107), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3470), 1, + ACTIONS(3508), 1, sym_identifier, - ACTIONS(3476), 1, + ACTIONS(3514), 1, sym_crate, - ACTIONS(3600), 1, + ACTIONS(3632), 1, anon_sym_RBRACE, - STATE(2055), 1, - sym_enum_variant, - STATE(2291), 1, + STATE(2085), 1, + sym_field_declaration, + STATE(2318), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1453), 2, + STATE(1478), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52917] = 9, + [53275] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2107), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3476), 1, - sym_crate, ACTIONS(3514), 1, + sym_crate, + ACTIONS(3524), 1, sym_identifier, - ACTIONS(3602), 1, + ACTIONS(3634), 1, anon_sym_RBRACE, - STATE(2167), 1, - sym_field_declaration, - STATE(2224), 1, + STATE(2112), 1, + sym_enum_variant, + STATE(2459), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1478), 2, + STATE(1476), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52947] = 7, - ACTIONS(3173), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - anon_sym_COLON, - ACTIONS(3189), 1, - anon_sym_BANG, - ACTIONS(3604), 1, - anon_sym_COLON_COLON, + [53305] = 9, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(3568), 1, + sym_identifier, + ACTIONS(3570), 1, + anon_sym_const, + ACTIONS(3574), 1, + sym_metavariable, + ACTIONS(3636), 1, + anon_sym_GT, + STATE(1729), 1, + sym_lifetime, + STATE(1883), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3171), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [52973] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2107), 1, - anon_sym_POUND, - ACTIONS(3470), 1, + STATE(2239), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53335] = 9, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(3568), 1, sym_identifier, - ACTIONS(3476), 1, - sym_crate, - ACTIONS(3606), 1, - anon_sym_RBRACE, - STATE(2055), 1, - sym_enum_variant, - STATE(2291), 1, - sym_visibility_modifier, + ACTIONS(3570), 1, + anon_sym_const, + ACTIONS(3574), 1, + sym_metavariable, + ACTIONS(3638), 1, + anon_sym_GT, + STATE(1729), 1, + sym_lifetime, + STATE(1883), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1453), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53003] = 10, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3544), 1, - anon_sym_LT, - ACTIONS(3556), 1, - anon_sym_LBRACE, - ACTIONS(3608), 1, - anon_sym_SEMI, - STATE(913), 1, - sym_field_declaration_list, - STATE(1515), 1, - sym_type_parameters, - STATE(1919), 1, - sym_ordered_field_declaration_list, - STATE(2125), 1, - sym_where_clause, + STATE(2239), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53365] = 9, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(3568), 1, + sym_identifier, + ACTIONS(3570), 1, + anon_sym_const, + ACTIONS(3574), 1, + sym_metavariable, + ACTIONS(3640), 1, + anon_sym_GT, + STATE(1729), 1, + sym_lifetime, + STATE(1883), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53035] = 5, - ACTIONS(3598), 1, + STATE(2239), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53395] = 5, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3642), 1, anon_sym_SEMI, - STATE(940), 1, + STATE(871), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2412), 6, + ACTIONS(2388), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53057] = 9, + [53417] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2107), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3476), 1, - sym_crate, ACTIONS(3514), 1, + sym_crate, + ACTIONS(3524), 1, sym_identifier, - ACTIONS(3612), 1, + ACTIONS(3644), 1, anon_sym_RBRACE, - STATE(2167), 1, - sym_field_declaration, - STATE(2224), 1, + STATE(2112), 1, + sym_enum_variant, + STATE(2459), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1478), 2, + STATE(1476), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53087] = 5, - ACTIONS(3572), 1, + [53447] = 9, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(3568), 1, + sym_identifier, + ACTIONS(3570), 1, + anon_sym_const, + ACTIONS(3574), 1, + sym_metavariable, + ACTIONS(3646), 1, + anon_sym_GT, + STATE(1729), 1, + sym_lifetime, + STATE(1883), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2239), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53477] = 5, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3614), 1, - anon_sym_SEMI, - STATE(457), 1, - sym_declaration_list, + ACTIONS(3648), 1, + sym_identifier, + STATE(47), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2412), 6, + ACTIONS(3650), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53109] = 4, - ACTIONS(3466), 1, + [53499] = 6, + ACTIONS(3550), 1, anon_sym_COLON_COLON, + ACTIONS(3652), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3276), 2, + ACTIONS(2394), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3314), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3320), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2412), 6, + [53522] = 7, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3655), 1, + anon_sym_for, + STATE(1276), 1, + sym_type_arguments, + STATE(1300), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2394), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53547] = 5, + ACTIONS(3660), 1, + anon_sym_fn, + ACTIONS(3662), 1, + anon_sym_extern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1464), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3657), 4, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, anon_sym_unsafe, - anon_sym_extern, - [53129] = 9, - ACTIONS(3542), 1, + [53568] = 6, + ACTIONS(3314), 1, + anon_sym_PIPE, + ACTIONS(3316), 1, + anon_sym_COLON, + ACTIONS(3478), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3320), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2394), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [53591] = 8, + ACTIONS(802), 1, + anon_sym_DOT_DOT, + ACTIONS(3665), 1, + sym_identifier, + ACTIONS(3667), 1, + anon_sym_RBRACE, + ACTIONS(3669), 1, + anon_sym_COMMA, + ACTIONS(3671), 1, + anon_sym_ref, + ACTIONS(3673), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1930), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [53618] = 7, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3675), 1, + anon_sym_for, + STATE(1276), 1, + sym_type_arguments, + STATE(1300), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2394), 3, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3572), 1, + [53643] = 7, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3677), 1, + anon_sym_for, + STATE(1276), 1, + sym_type_arguments, + STATE(1300), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2394), 3, anon_sym_LBRACE, - ACTIONS(3616), 1, + anon_sym_PLUS, + anon_sym_where, + [53668] = 7, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3679), 1, + anon_sym_for, + STATE(1276), 1, + sym_type_arguments, + STATE(1300), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2394), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53693] = 9, + ACTIONS(3578), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3681), 1, anon_sym_COLON, - ACTIONS(3618), 1, + ACTIONS(3683), 1, anon_sym_LT, - STATE(422), 1, + STATE(891), 1, sym_declaration_list, - STATE(1588), 1, + STATE(1592), 1, sym_type_parameters, - STATE(1700), 1, + STATE(1766), 1, sym_trait_bounds, - STATE(2155), 1, + STATE(2109), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53158] = 4, - ACTIONS(870), 1, + [53722] = 7, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3685), 1, + anon_sym_for, + STATE(1276), 1, + sym_type_arguments, + STATE(1300), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2394), 3, anon_sym_LBRACE, - STATE(1387), 1, - sym_block, + anon_sym_PLUS, + anon_sym_where, + [53747] = 6, + ACTIONS(3215), 1, + anon_sym_LPAREN, + ACTIONS(3290), 1, + anon_sym_COLON_COLON, + ACTIONS(3368), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2412), 6, - anon_sym_async, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3213), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + [53770] = 4, + ACTIONS(3689), 1, + anon_sym_PLUS, + STATE(1490), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3687), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [53789] = 8, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(3570), 1, anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53177] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2107), 1, - anon_sym_POUND, - ACTIONS(3470), 1, + ACTIONS(3691), 1, sym_identifier, - ACTIONS(3476), 1, - sym_crate, - STATE(1996), 1, - sym_enum_variant, - STATE(2291), 1, - sym_visibility_modifier, + ACTIONS(3693), 1, + sym_metavariable, + STATE(1615), 1, + sym_lifetime, + STATE(1728), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1055), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53204] = 8, + STATE(1830), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53816] = 6, + ACTIONS(3207), 1, + anon_sym_BANG, + ACTIONS(3215), 1, + anon_sym_LPAREN, + ACTIONS(3695), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3213), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [53839] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2107), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3470), 1, - sym_identifier, - ACTIONS(3476), 1, + ACTIONS(3514), 1, sym_crate, - STATE(2112), 1, + ACTIONS(3524), 1, + sym_identifier, + STATE(2215), 1, sym_enum_variant, - STATE(2291), 1, + STATE(2459), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1055), 2, + STATE(1077), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53231] = 4, - ACTIONS(3622), 1, - anon_sym_PLUS, - STATE(1488), 1, - aux_sym_trait_bounds_repeat1, + [53866] = 7, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3697), 1, + anon_sym_for, + STATE(1276), 1, + sym_type_arguments, + STATE(1300), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3620), 6, - anon_sym_SEMI, + ACTIONS(2394), 3, anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [53250] = 5, - ACTIONS(3627), 1, - anon_sym_fn, - ACTIONS(3629), 1, - anon_sym_extern, + [53891] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2127), 1, + anon_sym_POUND, + ACTIONS(3508), 1, + sym_identifier, + ACTIONS(3514), 1, + sym_crate, + STATE(2226), 1, + sym_field_declaration, + STATE(2318), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1455), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3624), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [53271] = 8, + STATE(1077), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53918] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2107), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3470), 1, + ACTIONS(3508), 1, sym_identifier, - ACTIONS(3476), 1, + ACTIONS(3514), 1, sym_crate, - STATE(2055), 1, - sym_enum_variant, - STATE(2291), 1, + STATE(2085), 1, + sym_field_declaration, + STATE(2318), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1453), 2, + STATE(1478), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53298] = 6, - ACTIONS(3173), 1, - anon_sym_LPAREN, - ACTIONS(3189), 1, - anon_sym_BANG, - ACTIONS(3632), 1, + [53945] = 7, + ACTIONS(2394), 1, + anon_sym_PLUS, + ACTIONS(3314), 1, + anon_sym_PIPE, + ACTIONS(3316), 1, + anon_sym_COLON, + ACTIONS(3384), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, + ACTIONS(3320), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3171), 3, - anon_sym_RBRACK, + ACTIONS(3652), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_PIPE, - [53321] = 8, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(3530), 1, - anon_sym_const, - ACTIONS(3634), 1, - sym_identifier, - ACTIONS(3636), 1, - sym_metavariable, - STATE(1607), 1, - sym_lifetime, - STATE(1731), 1, - sym_constrained_type_parameter, + [53970] = 9, + ACTIONS(3564), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3681), 1, + anon_sym_COLON, + ACTIONS(3683), 1, + anon_sym_LT, + STATE(337), 1, + sym_declaration_list, + STATE(1572), 1, + sym_type_parameters, + STATE(1701), 1, + sym_trait_bounds, + STATE(2149), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1980), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53348] = 4, - ACTIONS(3638), 1, - anon_sym_PLUS, - STATE(1488), 1, - aux_sym_trait_bounds_repeat1, + [53999] = 4, + ACTIONS(718), 1, + aux_sym_string_literal_token1, + STATE(1507), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3620), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [53367] = 4, - ACTIONS(3640), 1, + ACTIONS(3434), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54018] = 4, + ACTIONS(3701), 1, anon_sym_PLUS, - STATE(1488), 1, + STATE(1473), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3620), 6, + ACTIONS(3699), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [53386] = 9, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3572), 1, + [54037] = 9, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3616), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3681), 1, anon_sym_COLON, - ACTIONS(3618), 1, + ACTIONS(3683), 1, anon_sym_LT, - STATE(271), 1, + STATE(845), 1, sym_declaration_list, - STATE(1582), 1, + STATE(1569), 1, sym_type_parameters, - STATE(1713), 1, + STATE(1699), 1, sym_trait_bounds, - STATE(2169), 1, + STATE(2157), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53415] = 6, - ACTIONS(3560), 1, - anon_sym_COLON_COLON, - ACTIONS(3642), 1, - anon_sym_RBRACK, + [54066] = 4, + ACTIONS(3703), 1, + anon_sym_PLUS, + STATE(1473), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 2, + ACTIONS(3699), 6, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3270), 2, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3276), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [53438] = 7, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, - anon_sym_LPAREN, - ACTIONS(3645), 1, - anon_sym_for, - STATE(1277), 1, - sym_type_arguments, - STATE(1299), 1, - sym_parameters, + anon_sym_GT, + [54085] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2127), 1, + anon_sym_POUND, + ACTIONS(3514), 1, + sym_crate, + ACTIONS(3524), 1, + sym_identifier, + STATE(1850), 1, + sym_enum_variant, + STATE(2459), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, + STATE(1077), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54112] = 4, + ACTIONS(3689), 1, anon_sym_PLUS, + STATE(1473), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3699), 6, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_where, - [53463] = 9, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3598), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54131] = 9, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3616), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3681), 1, anon_sym_COLON, - ACTIONS(3618), 1, + ACTIONS(3683), 1, anon_sym_LT, - STATE(916), 1, + STATE(255), 1, sym_declaration_list, - STATE(1587), 1, + STATE(1578), 1, sym_type_parameters, - STATE(1735), 1, + STATE(1759), 1, sym_trait_bounds, - STATE(2124), 1, + STATE(2122), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53492] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2107), 1, - anon_sym_POUND, - ACTIONS(3476), 1, - sym_crate, - ACTIONS(3514), 1, - sym_identifier, - STATE(1949), 1, - sym_field_declaration, - STATE(2224), 1, - sym_visibility_modifier, + [54160] = 8, + ACTIONS(3705), 1, + anon_sym_LPAREN, + ACTIONS(3710), 1, + anon_sym_LBRACE, + ACTIONS(3713), 1, + anon_sym_LBRACK, + STATE(1489), 1, + aux_sym_macro_definition_repeat1, + STATE(2416), 1, + sym_macro_rule, + STATE(2454), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1055), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53519] = 5, - ACTIONS(3649), 1, + ACTIONS(3708), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [54187] = 4, + ACTIONS(3718), 1, + anon_sym_PLUS, + STATE(1490), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3716), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54206] = 5, + ACTIONS(3723), 1, anon_sym_fn, - ACTIONS(3651), 1, + ACTIONS(3725), 1, anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1455), 2, + STATE(1464), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(3647), 4, + ACTIONS(3721), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - [53540] = 7, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, - anon_sym_LPAREN, - ACTIONS(3653), 1, - anon_sym_for, - STATE(1277), 1, - sym_type_arguments, - STATE(1299), 1, - sym_parameters, + [54227] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2127), 1, + anon_sym_POUND, + ACTIONS(3508), 1, + sym_identifier, + ACTIONS(3514), 1, + sym_crate, + STATE(1923), 1, + sym_field_declaration, + STATE(2318), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53565] = 6, - ACTIONS(3270), 1, - anon_sym_PIPE, - ACTIONS(3272), 1, - anon_sym_COLON, - ACTIONS(3506), 1, - anon_sym_COLON_COLON, + STATE(1077), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54254] = 8, + ACTIONS(802), 1, + anon_sym_DOT_DOT, + ACTIONS(3665), 1, + sym_identifier, + ACTIONS(3671), 1, + anon_sym_ref, + ACTIONS(3673), 1, + sym_mutable_specifier, + ACTIONS(3727), 1, + anon_sym_RBRACE, + ACTIONS(3729), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3276), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2394), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [53588] = 7, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, + STATE(1926), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [54281] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2127), 1, + anon_sym_POUND, + ACTIONS(3508), 1, + sym_identifier, + ACTIONS(3514), 1, + sym_crate, + STATE(1990), 1, + sym_field_declaration, + STATE(2318), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1077), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54308] = 7, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3655), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3731), 1, anon_sym_for, - STATE(1277), 1, + STATE(1276), 1, sym_type_arguments, - STATE(1299), 1, + STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -109412,31 +110467,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53613] = 4, - ACTIONS(3207), 1, - anon_sym_trait, - ACTIONS(3657), 1, - anon_sym_impl, + [54333] = 4, + ACTIONS(3298), 1, + anon_sym_COLON_COLON, + ACTIONS(3382), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2412), 6, + ACTIONS(2388), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53632] = 7, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, + [54352] = 4, + ACTIONS(874), 1, + anon_sym_LBRACE, + STATE(1374), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2388), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54371] = 7, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3659), 1, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3733), 1, anon_sym_for, - STATE(1277), 1, + STATE(1276), 1, sym_type_arguments, - STATE(1299), 1, + STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -109445,277 +110515,301 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53657] = 6, - ACTIONS(2107), 1, - anon_sym_POUND, - ACTIONS(3488), 1, - sym_identifier, - ACTIONS(3494), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1702), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2128), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [53680] = 8, - ACTIONS(2103), 1, + [54396] = 8, + ACTIONS(2123), 1, anon_sym_SQUOTE, - ACTIONS(3528), 1, + ACTIONS(3568), 1, sym_identifier, - ACTIONS(3530), 1, + ACTIONS(3570), 1, anon_sym_const, - ACTIONS(3534), 1, + ACTIONS(3574), 1, sym_metavariable, - STATE(1732), 1, + STATE(1729), 1, sym_lifetime, - STATE(1977), 1, + STATE(1883), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2036), 2, + STATE(2239), 2, sym_const_parameter, sym_optional_type_parameter, - [53707] = 2, + [54423] = 4, + ACTIONS(3374), 1, + anon_sym_COLON_COLON, + ACTIONS(3735), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3661), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2388), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53722] = 7, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, - anon_sym_LPAREN, - ACTIONS(3663), 1, - anon_sym_for, - STATE(1277), 1, - sym_type_arguments, - STATE(1299), 1, - sym_parameters, + [54442] = 4, + ACTIONS(3241), 1, + anon_sym_trait, + ACTIONS(3737), 1, + anon_sym_impl, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53747] = 8, + ACTIONS(2388), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54461] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2107), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3476), 1, - sym_crate, ACTIONS(3514), 1, + sym_crate, + ACTIONS(3524), 1, sym_identifier, - STATE(2167), 1, - sym_field_declaration, - STATE(2224), 1, + STATE(2112), 1, + sym_enum_variant, + STATE(2459), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1478), 2, + STATE(1476), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53774] = 8, + [54488] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2107), 1, + ACTIONS(2127), 1, anon_sym_POUND, - ACTIONS(3476), 1, - sym_crate, ACTIONS(3514), 1, + sym_crate, + ACTIONS(3524), 1, sym_identifier, - STATE(1965), 1, - sym_field_declaration, - STATE(2224), 1, + STATE(2026), 1, + sym_enum_variant, + STATE(2459), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1055), 2, + STATE(1077), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53801] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2107), 1, - anon_sym_POUND, - ACTIONS(3476), 1, - sym_crate, - ACTIONS(3514), 1, - sym_identifier, - STATE(2149), 1, - sym_field_declaration, - STATE(2224), 1, - sym_visibility_modifier, + [54515] = 4, + ACTIONS(2478), 1, + anon_sym_COLON_COLON, + ACTIONS(3739), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1055), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53828] = 7, - ACTIONS(2394), 1, - anon_sym_PLUS, - ACTIONS(3270), 1, - anon_sym_PIPE, - ACTIONS(3272), 1, + ACTIONS(2388), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54534] = 9, + ACTIONS(3564), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3681), 1, anon_sym_COLON, - ACTIONS(3466), 1, - anon_sym_COLON_COLON, + ACTIONS(3683), 1, + anon_sym_LT, + STATE(376), 1, + sym_declaration_list, + STATE(1593), 1, + sym_type_parameters, + STATE(1711), 1, + sym_trait_bounds, + STATE(2191), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3276), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3642), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53853] = 8, - ACTIONS(806), 1, - anon_sym_DOT_DOT, - ACTIONS(3665), 1, + [54563] = 8, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(3570), 1, + anon_sym_const, + ACTIONS(3741), 1, sym_identifier, - ACTIONS(3667), 1, - anon_sym_RBRACE, - ACTIONS(3669), 1, - anon_sym_COMMA, - ACTIONS(3671), 1, - anon_sym_ref, - ACTIONS(3673), 1, - sym_mutable_specifier, + ACTIONS(3743), 1, + sym_metavariable, + STATE(1644), 1, + sym_lifetime, + STATE(1713), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1811), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [53880] = 4, - ACTIONS(3677), 1, - anon_sym_PLUS, - STATE(1481), 1, - aux_sym_trait_bounds_repeat1, + STATE(1940), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54590] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3675), 6, + ACTIONS(3745), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [53899] = 9, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3598), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54605] = 9, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3616), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3681), 1, anon_sym_COLON, - ACTIONS(3618), 1, + ACTIONS(3683), 1, anon_sym_LT, - STATE(846), 1, + STATE(945), 1, sym_declaration_list, - STATE(1570), 1, + STATE(1613), 1, sym_type_parameters, - STATE(1694), 1, + STATE(1739), 1, sym_trait_bounds, - STATE(2022), 1, + STATE(2041), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53928] = 9, - ACTIONS(3542), 1, + [54634] = 8, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(3570), 1, + anon_sym_const, + ACTIONS(3691), 1, + sym_identifier, + ACTIONS(3693), 1, + sym_metavariable, + STATE(1649), 1, + sym_lifetime, + STATE(1728), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1830), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54661] = 6, + ACTIONS(2127), 1, + anon_sym_POUND, + ACTIONS(3552), 1, + sym_identifier, + ACTIONS(3558), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1738), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2177), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [54684] = 6, + ACTIONS(3747), 1, + anon_sym_LPAREN, + ACTIONS(3751), 1, + anon_sym_EQ, + ACTIONS(3753), 1, + anon_sym_COLON_COLON, + STATE(1819), 1, + sym_meta_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3749), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [54706] = 8, + ACTIONS(3584), 1, + anon_sym_LPAREN, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3598), 1, + ACTIONS(3594), 1, anon_sym_LBRACE, - ACTIONS(3616), 1, - anon_sym_COLON, - ACTIONS(3618), 1, - anon_sym_LT, - STATE(872), 1, - sym_declaration_list, - STATE(1577), 1, - sym_type_parameters, - STATE(1751), 1, - sym_trait_bounds, - STATE(2072), 1, + ACTIONS(3755), 1, + anon_sym_SEMI, + STATE(936), 1, + sym_field_declaration_list, + STATE(2027), 1, + sym_ordered_field_declaration_list, + STATE(2060), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53957] = 4, - ACTIONS(714), 1, - aux_sym_string_literal_token1, - STATE(1474), 1, - sym_string_literal, + [54732] = 3, + ACTIONS(2478), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3358), 6, + ACTIONS(2388), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53976] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2107), 1, - anon_sym_POUND, - ACTIONS(3470), 1, - sym_identifier, - ACTIONS(3476), 1, - sym_crate, - STATE(1995), 1, - sym_enum_variant, - STATE(2291), 1, - sym_visibility_modifier, + [54748] = 8, + ACTIONS(3757), 1, + anon_sym_LPAREN, + ACTIONS(3759), 1, + anon_sym_RPAREN, + ACTIONS(3761), 1, + anon_sym_LBRACE, + ACTIONS(3763), 1, + anon_sym_LBRACK, + STATE(1489), 1, + aux_sym_macro_definition_repeat1, + STATE(2169), 1, + sym_macro_rule, + STATE(2454), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1055), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54003] = 8, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(3530), 1, - anon_sym_const, - ACTIONS(3634), 1, - sym_identifier, - ACTIONS(3636), 1, - sym_metavariable, - STATE(1558), 1, - sym_lifetime, - STATE(1731), 1, - sym_constrained_type_parameter, + [54774] = 8, + ACTIONS(3757), 1, + anon_sym_LPAREN, + ACTIONS(3761), 1, + anon_sym_LBRACE, + ACTIONS(3763), 1, + anon_sym_LBRACK, + ACTIONS(3765), 1, + anon_sym_RPAREN, + STATE(1523), 1, + aux_sym_macro_definition_repeat1, + STATE(2202), 1, + sym_macro_rule, + STATE(2454), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1980), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54030] = 8, - ACTIONS(806), 1, + [54800] = 7, + ACTIONS(802), 1, anon_sym_DOT_DOT, ACTIONS(3665), 1, sym_identifier, @@ -109723,284 +110817,295 @@ static uint16_t ts_small_parse_table[] = { anon_sym_ref, ACTIONS(3673), 1, sym_mutable_specifier, - ACTIONS(3680), 1, + ACTIONS(3767), 1, anon_sym_RBRACE, - ACTIONS(3682), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1817), 2, + STATE(2066), 2, sym_field_pattern, sym_remaining_field_pattern, - [54057] = 4, - ACTIONS(3622), 1, - anon_sym_PLUS, - STATE(1481), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3684), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54076] = 8, - ACTIONS(3686), 1, + [54824] = 8, + ACTIONS(3757), 1, anon_sym_LPAREN, - ACTIONS(3691), 1, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3694), 1, + ACTIONS(3763), 1, anon_sym_LBRACK, - STATE(1489), 1, + ACTIONS(3769), 1, + anon_sym_RPAREN, + STATE(1519), 1, aux_sym_macro_definition_repeat1, - STATE(2278), 1, + STATE(2204), 1, sym_macro_rule, - STATE(2394), 1, + STATE(2454), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3689), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [54103] = 7, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, - anon_sym_LPAREN, - ACTIONS(3697), 1, - anon_sym_for, - STATE(1277), 1, - sym_type_arguments, - STATE(1299), 1, - sym_parameters, + [54850] = 3, + ACTIONS(3771), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54128] = 9, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3572), 1, + ACTIONS(2388), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54866] = 8, + ACTIONS(3757), 1, + anon_sym_LPAREN, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3616), 1, - anon_sym_COLON, - ACTIONS(3618), 1, - anon_sym_LT, - STATE(366), 1, - sym_declaration_list, - STATE(1576), 1, - sym_type_parameters, - STATE(1743), 1, - sym_trait_bounds, - STATE(2108), 1, - sym_where_clause, + ACTIONS(3763), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_RPAREN, + STATE(1489), 1, + aux_sym_macro_definition_repeat1, + STATE(2180), 1, + sym_macro_rule, + STATE(2454), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54157] = 7, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, - anon_sym_LPAREN, - ACTIONS(3699), 1, - anon_sym_for, - STATE(1277), 1, - sym_type_arguments, - STATE(1299), 1, - sym_parameters, + [54892] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, + ACTIONS(3775), 7, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54182] = 6, - ACTIONS(3173), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54906] = 8, + ACTIONS(3584), 1, anon_sym_LPAREN, - ACTIONS(3245), 1, - anon_sym_COLON_COLON, - ACTIONS(3344), 1, - anon_sym_BANG, + ACTIONS(3586), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3777), 1, + anon_sym_SEMI, + STATE(276), 1, + sym_field_declaration_list, + STATE(1840), 1, + sym_ordered_field_declaration_list, + STATE(2164), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3171), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - [54205] = 7, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, - anon_sym_LPAREN, - ACTIONS(3701), 1, - anon_sym_for, - STATE(1277), 1, - sym_type_arguments, - STATE(1299), 1, - sym_parameters, + [54932] = 7, + ACTIONS(802), 1, + anon_sym_DOT_DOT, + ACTIONS(3665), 1, + sym_identifier, + ACTIONS(3671), 1, + anon_sym_ref, + ACTIONS(3673), 1, + sym_mutable_specifier, + ACTIONS(3779), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, + STATE(2066), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [54956] = 8, + ACTIONS(3757), 1, + anon_sym_LPAREN, + ACTIONS(3761), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54230] = 8, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(3530), 1, - anon_sym_const, - ACTIONS(3703), 1, - sym_identifier, - ACTIONS(3705), 1, - sym_metavariable, - STATE(1617), 1, - sym_lifetime, - STATE(1723), 1, - sym_constrained_type_parameter, + ACTIONS(3763), 1, + anon_sym_LBRACK, + ACTIONS(3781), 1, + anon_sym_RPAREN, + STATE(1489), 1, + aux_sym_macro_definition_repeat1, + STATE(2179), 1, + sym_macro_rule, + STATE(2454), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1906), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54257] = 6, - ACTIONS(3707), 1, - anon_sym_LPAREN, - ACTIONS(3711), 1, - anon_sym_EQ, - ACTIONS(3713), 1, - anon_sym_COLON_COLON, - STATE(1918), 1, - sym_meta_arguments, + [54982] = 3, + ACTIONS(3783), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3709), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [54279] = 8, - ACTIONS(3715), 1, + ACTIONS(3650), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54998] = 8, + ACTIONS(3757), 1, anon_sym_LPAREN, - ACTIONS(3717), 1, - anon_sym_RPAREN, - ACTIONS(3719), 1, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3721), 1, + ACTIONS(3763), 1, anon_sym_LBRACK, - STATE(1500), 1, + ACTIONS(3785), 1, + anon_sym_RBRACE, + STATE(1489), 1, aux_sym_macro_definition_repeat1, - STATE(2168), 1, + STATE(2055), 1, sym_macro_rule, - STATE(2394), 1, + STATE(2454), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54305] = 3, - ACTIONS(3723), 1, - anon_sym_trait, + [55024] = 3, + ACTIONS(3298), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2412), 6, + ACTIONS(2388), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54321] = 8, - ACTIONS(3538), 1, + [55040] = 8, + ACTIONS(3757), 1, anon_sym_LPAREN, - ACTIONS(3540), 1, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3725), 1, - anon_sym_SEMI, - STATE(414), 1, - sym_field_declaration_list, - STATE(1900), 1, - sym_ordered_field_declaration_list, - STATE(2145), 1, - sym_where_clause, + ACTIONS(3763), 1, + anon_sym_LBRACK, + ACTIONS(3787), 1, + anon_sym_RBRACE, + STATE(1533), 1, + aux_sym_macro_definition_repeat1, + STATE(2111), 1, + sym_macro_rule, + STATE(2454), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54347] = 8, - ACTIONS(3715), 1, + [55066] = 8, + ACTIONS(3757), 1, anon_sym_LPAREN, - ACTIONS(3719), 1, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3721), 1, + ACTIONS(3763), 1, anon_sym_LBRACK, - ACTIONS(3727), 1, - anon_sym_RPAREN, - STATE(1489), 1, + ACTIONS(3789), 1, + anon_sym_RBRACE, + STATE(1525), 1, aux_sym_macro_definition_repeat1, - STATE(2148), 1, + STATE(2121), 1, sym_macro_rule, - STATE(2394), 1, + STATE(2454), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54373] = 8, - ACTIONS(3715), 1, + [55092] = 6, + ACTIONS(3584), 1, + anon_sym_LPAREN, + ACTIONS(3594), 1, + anon_sym_LBRACE, + ACTIONS(3793), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3791), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1984), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [55114] = 8, + ACTIONS(3757), 1, anon_sym_LPAREN, - ACTIONS(3719), 1, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3721), 1, + ACTIONS(3763), 1, anon_sym_LBRACK, - ACTIONS(3729), 1, + ACTIONS(3795), 1, anon_sym_RBRACE, STATE(1489), 1, aux_sym_macro_definition_repeat1, - STATE(2020), 1, + STATE(2172), 1, sym_macro_rule, - STATE(2394), 1, + STATE(2454), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54399] = 8, - ACTIONS(3538), 1, + [55140] = 3, + ACTIONS(3797), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3650), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55156] = 7, + ACTIONS(3207), 1, + anon_sym_BANG, + ACTIONS(3213), 1, + anon_sym_PIPE, + ACTIONS(3215), 1, anon_sym_LPAREN, - ACTIONS(3540), 1, + ACTIONS(3219), 1, + anon_sym_COLON, + ACTIONS(3799), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55180] = 8, + ACTIONS(3757), 1, + anon_sym_LPAREN, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3731), 1, - anon_sym_SEMI, - STATE(309), 1, - sym_field_declaration_list, - STATE(1873), 1, - sym_ordered_field_declaration_list, - STATE(2008), 1, - sym_where_clause, + ACTIONS(3763), 1, + anon_sym_LBRACK, + ACTIONS(3801), 1, + anon_sym_RBRACE, + STATE(1489), 1, + aux_sym_macro_definition_repeat1, + STATE(2057), 1, + sym_macro_rule, + STATE(2454), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54425] = 2, + [55206] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3733), 7, + ACTIONS(3716), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -110008,28 +111113,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54439] = 7, - ACTIONS(806), 1, - anon_sym_DOT_DOT, - ACTIONS(3665), 1, - sym_identifier, - ACTIONS(3671), 1, - anon_sym_ref, - ACTIONS(3673), 1, - sym_mutable_specifier, - ACTIONS(3735), 1, + [55220] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3716), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55234] = 8, + ACTIONS(3757), 1, + anon_sym_LPAREN, + ACTIONS(3761), 1, + anon_sym_LBRACE, + ACTIONS(3763), 1, + anon_sym_LBRACK, + ACTIONS(3803), 1, anon_sym_RBRACE, + STATE(1547), 1, + aux_sym_macro_definition_repeat1, + STATE(2050), 1, + sym_macro_rule, + STATE(2454), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2202), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54463] = 2, + [55260] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3675), 7, + ACTIONS(3716), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -110037,27 +111155,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54477] = 6, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3556), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_EQ, + [55274] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3737), 2, - anon_sym_RBRACE, + ACTIONS(3716), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - STATE(1883), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [54499] = 2, + anon_sym_GT, + [55288] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3675), 7, + ACTIONS(3716), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -110065,79 +111179,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54513] = 8, - ACTIONS(3715), 1, + [55302] = 8, + ACTIONS(3757), 1, anon_sym_LPAREN, - ACTIONS(3719), 1, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3721), 1, + ACTIONS(3763), 1, anon_sym_LBRACK, - ACTIONS(3741), 1, - anon_sym_RBRACE, + ACTIONS(3805), 1, + anon_sym_RPAREN, STATE(1489), 1, aux_sym_macro_definition_repeat1, - STATE(2039), 1, + STATE(2178), 1, sym_macro_rule, - STATE(2394), 1, + STATE(2454), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54539] = 2, + [55328] = 8, + ACTIONS(3584), 1, + anon_sym_LPAREN, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3594), 1, + anon_sym_LBRACE, + ACTIONS(3807), 1, + anon_sym_SEMI, + STATE(895), 1, + sym_field_declaration_list, + STATE(1980), 1, + sym_ordered_field_declaration_list, + STATE(2106), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3675), 7, - anon_sym_SEMI, + [55354] = 8, + ACTIONS(3584), 1, + anon_sym_LPAREN, + ACTIONS(3586), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(3588), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54553] = 3, - ACTIONS(3743), 1, - anon_sym_trait, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2412), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54569] = 3, - ACTIONS(2436), 1, - anon_sym_COLON_COLON, + ACTIONS(3809), 1, + anon_sym_SEMI, + STATE(334), 1, + sym_field_declaration_list, + STATE(1951), 1, + sym_ordered_field_declaration_list, + STATE(2158), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2412), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54585] = 2, + [55380] = 8, + ACTIONS(3757), 1, + anon_sym_LPAREN, + ACTIONS(3761), 1, + anon_sym_LBRACE, + ACTIONS(3763), 1, + anon_sym_LBRACK, + ACTIONS(3811), 1, + anon_sym_RPAREN, + STATE(1540), 1, + aux_sym_macro_definition_repeat1, + STATE(2101), 1, + sym_macro_rule, + STATE(2454), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3675), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54599] = 2, + [55406] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3675), 7, + ACTIONS(3813), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -110145,39 +111263,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54613] = 3, - ACTIONS(3292), 1, - anon_sym_COLON_COLON, + [55420] = 3, + ACTIONS(3815), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2412), 6, + ACTIONS(3650), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54629] = 8, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3556), 1, - anon_sym_LBRACE, - ACTIONS(3745), 1, - anon_sym_SEMI, - STATE(859), 1, - sym_field_declaration_list, - STATE(1989), 1, - sym_ordered_field_declaration_list, - STATE(2029), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54655] = 7, - ACTIONS(806), 1, + [55436] = 7, + ACTIONS(802), 1, anon_sym_DOT_DOT, ACTIONS(3665), 1, sym_identifier, @@ -110185,95 +111285,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_ref, ACTIONS(3673), 1, sym_mutable_specifier, - ACTIONS(3747), 1, + ACTIONS(3817), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2202), 2, + STATE(2066), 2, sym_field_pattern, sym_remaining_field_pattern, - [54679] = 8, - ACTIONS(3715), 1, + [55460] = 8, + ACTIONS(3757), 1, anon_sym_LPAREN, - ACTIONS(3719), 1, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3721), 1, + ACTIONS(3763), 1, anon_sym_LBRACK, - ACTIONS(3749), 1, - anon_sym_RPAREN, + ACTIONS(3819), 1, + anon_sym_RBRACE, STATE(1489), 1, aux_sym_macro_definition_repeat1, - STATE(2043), 1, + STATE(2181), 1, sym_macro_rule, - STATE(2394), 1, + STATE(2454), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54705] = 6, - ACTIONS(3707), 1, + [55486] = 6, + ACTIONS(3747), 1, anon_sym_LPAREN, - ACTIONS(3711), 1, - anon_sym_EQ, ACTIONS(3751), 1, + anon_sym_EQ, + ACTIONS(3821), 1, anon_sym_COLON_COLON, - STATE(1918), 1, + STATE(1819), 1, sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3709), 3, + ACTIONS(3749), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [54727] = 6, - ACTIONS(3538), 1, + [55508] = 8, + ACTIONS(3757), 1, anon_sym_LPAREN, - ACTIONS(3556), 1, + ACTIONS(3761), 1, anon_sym_LBRACE, - ACTIONS(3755), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3753), 2, + ACTIONS(3763), 1, + anon_sym_LBRACK, + ACTIONS(3823), 1, anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1979), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [54749] = 6, - ACTIONS(3707), 1, - anon_sym_LPAREN, - ACTIONS(3711), 1, - anon_sym_EQ, - ACTIONS(3757), 1, - anon_sym_COLON_COLON, - STATE(1918), 1, - sym_meta_arguments, + STATE(1530), 1, + aux_sym_macro_definition_repeat1, + STATE(2117), 1, + sym_macro_rule, + STATE(2454), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3709), 3, + [55534] = 8, + ACTIONS(3757), 1, + anon_sym_LPAREN, + ACTIONS(3761), 1, + anon_sym_LBRACE, + ACTIONS(3763), 1, + anon_sym_LBRACK, + ACTIONS(3825), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [54771] = 3, - ACTIONS(3759), 1, - sym_identifier, + STATE(1514), 1, + aux_sym_macro_definition_repeat1, + STATE(2138), 1, + sym_macro_rule, + STATE(2454), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3526), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54787] = 7, - ACTIONS(806), 1, + [55560] = 7, + ACTIONS(802), 1, anon_sym_DOT_DOT, ACTIONS(3665), 1, sym_identifier, @@ -110281,1696 +111372,1673 @@ static uint16_t ts_small_parse_table[] = { anon_sym_ref, ACTIONS(3673), 1, sym_mutable_specifier, - ACTIONS(3761), 1, + ACTIONS(3827), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2202), 2, + STATE(2066), 2, sym_field_pattern, sym_remaining_field_pattern, - [54811] = 3, - ACTIONS(3763), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3526), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54827] = 3, - ACTIONS(3765), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3526), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54843] = 3, - ACTIONS(3326), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2412), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54859] = 3, - ACTIONS(3767), 1, - sym_identifier, + [55584] = 3, + ACTIONS(3829), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3526), 6, + ACTIONS(2388), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54875] = 6, - ACTIONS(3326), 1, - anon_sym_COLON_COLON, - ACTIONS(3707), 1, + [55600] = 6, + ACTIONS(3747), 1, anon_sym_LPAREN, - ACTIONS(3771), 1, + ACTIONS(3751), 1, anon_sym_EQ, - STATE(1914), 1, + ACTIONS(3831), 1, + anon_sym_COLON_COLON, + STATE(1819), 1, sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3769), 3, + ACTIONS(3749), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [54897] = 8, - ACTIONS(3715), 1, + [55622] = 6, + ACTIONS(3584), 1, anon_sym_LPAREN, - ACTIONS(3719), 1, - anon_sym_LBRACE, - ACTIONS(3721), 1, - anon_sym_LBRACK, - ACTIONS(3773), 1, - anon_sym_RBRACE, - STATE(1501), 1, - aux_sym_macro_definition_repeat1, - STATE(2083), 1, - sym_macro_rule, - STATE(2394), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54923] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3775), 7, - anon_sym_SEMI, + ACTIONS(3594), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, + ACTIONS(3835), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54937] = 8, - ACTIONS(3715), 1, - anon_sym_LPAREN, - ACTIONS(3719), 1, - anon_sym_LBRACE, - ACTIONS(3721), 1, - anon_sym_LBRACK, - ACTIONS(3777), 1, - anon_sym_RBRACE, - STATE(1508), 1, - aux_sym_macro_definition_repeat1, - STATE(2060), 1, - sym_macro_rule, - STATE(2394), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54963] = 8, - ACTIONS(3715), 1, - anon_sym_LPAREN, - ACTIONS(3719), 1, - anon_sym_LBRACE, - ACTIONS(3721), 1, - anon_sym_LBRACK, - ACTIONS(3779), 1, - anon_sym_RPAREN, - STATE(1517), 1, - aux_sym_macro_definition_repeat1, - STATE(2068), 1, - sym_macro_rule, - STATE(2394), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54989] = 7, - ACTIONS(3171), 1, - anon_sym_PIPE, - ACTIONS(3173), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - anon_sym_COLON, - ACTIONS(3189), 1, - anon_sym_BANG, - ACTIONS(3781), 1, - anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [55013] = 7, - ACTIONS(806), 1, - anon_sym_DOT_DOT, - ACTIONS(3665), 1, - sym_identifier, - ACTIONS(3671), 1, - anon_sym_ref, - ACTIONS(3673), 1, - sym_mutable_specifier, - ACTIONS(3783), 1, + ACTIONS(3833), 2, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2202), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55037] = 8, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3556), 1, - anon_sym_LBRACE, - ACTIONS(3785), 1, - anon_sym_SEMI, - STATE(733), 1, + anon_sym_COMMA, + STATE(1848), 2, sym_field_declaration_list, - STATE(1955), 1, sym_ordered_field_declaration_list, - STATE(2069), 1, - sym_where_clause, + [55644] = 6, + ACTIONS(3374), 1, + anon_sym_COLON_COLON, + ACTIONS(3747), 1, + anon_sym_LPAREN, + ACTIONS(3839), 1, + anon_sym_EQ, + STATE(1816), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55063] = 7, - ACTIONS(3544), 1, - anon_sym_LT, - ACTIONS(3616), 1, - anon_sym_COLON, - ACTIONS(3787), 1, - anon_sym_SEMI, - ACTIONS(3789), 1, - anon_sym_EQ, - STATE(2231), 1, - sym_trait_bounds, - STATE(2339), 1, - sym_type_parameters, + ACTIONS(3837), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [55666] = 3, + ACTIONS(3841), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55086] = 7, - ACTIONS(3542), 1, + ACTIONS(3650), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55682] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3791), 1, + ACTIONS(3843), 1, anon_sym_SEMI, - ACTIONS(3793), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, - anon_sym_PLUS, - STATE(848), 1, + ACTIONS(3847), 1, + anon_sym_DASH_GT, + STATE(339), 1, sym_block, - STATE(1916), 1, + STATE(1964), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55109] = 7, - ACTIONS(3542), 1, + [55705] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(3797), 1, + ACTIONS(3849), 1, anon_sym_SEMI, - ACTIONS(3799), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(275), 1, + ACTIONS(3853), 1, + anon_sym_DASH_GT, + STATE(828), 1, sym_block, - STATE(1812), 1, + STATE(1961), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55132] = 7, - ACTIONS(3286), 1, - anon_sym_EQ, - ACTIONS(3288), 1, - anon_sym_COMMA, - ACTIONS(3290), 1, - anon_sym_GT, - ACTIONS(3616), 1, - anon_sym_COLON, - STATE(1794), 1, - aux_sym_type_parameters_repeat1, - STATE(1825), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55155] = 6, - ACTIONS(806), 1, - anon_sym_DOT_DOT, - ACTIONS(3665), 1, + [55728] = 7, + ACTIONS(3157), 1, + anon_sym_LBRACE, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3855), 1, sym_identifier, - ACTIONS(3671), 1, - anon_sym_ref, - ACTIONS(3673), 1, - sym_mutable_specifier, + ACTIONS(3857), 1, + anon_sym_STAR, + STATE(1813), 1, + sym_use_list, + STATE(2322), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2202), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55176] = 7, - ACTIONS(3542), 1, + [55751] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3793), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(3801), 1, + ACTIONS(3859), 1, anon_sym_SEMI, - ACTIONS(3803), 1, + ACTIONS(3861), 1, anon_sym_DASH_GT, - STATE(861), 1, - sym_block, - STATE(1940), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55199] = 7, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(3805), 1, - anon_sym_SEMI, - STATE(308), 1, + STATE(463), 1, sym_block, - STATE(1826), 1, + STATE(1947), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55222] = 5, - ACTIONS(3809), 1, + [55774] = 5, + ACTIONS(3865), 1, anon_sym_COLON, - ACTIONS(3811), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3181), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [55241] = 4, - ACTIONS(3811), 1, + ACTIONS(3867), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, + ACTIONS(3223), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2394), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [55258] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3350), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2490), 4, + ACTIONS(3863), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH_GT, - [55273] = 7, - ACTIONS(3542), 1, + [55793] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3799), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3813), 1, + ACTIONS(3869), 1, anon_sym_SEMI, - ACTIONS(3815), 1, - anon_sym_DASH_GT, - STATE(331), 1, + ACTIONS(3871), 1, + anon_sym_PLUS, + STATE(741), 1, sym_block, - STATE(1923), 1, + STATE(1946), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55296] = 7, - ACTIONS(3540), 1, + [55816] = 7, + ACTIONS(3157), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3544), 1, - anon_sym_LT, - STATE(269), 1, - sym_field_declaration_list, - STATE(1748), 1, - sym_type_parameters, - STATE(2031), 1, - sym_where_clause, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3855), 1, + sym_identifier, + ACTIONS(3857), 1, + anon_sym_STAR, + STATE(1813), 1, + sym_use_list, + STATE(2364), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55319] = 7, - ACTIONS(3542), 1, + [55839] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3799), 1, + ACTIONS(3590), 1, + anon_sym_LT, + ACTIONS(3594), 1, anon_sym_LBRACE, - ACTIONS(3817), 1, - anon_sym_SEMI, - ACTIONS(3819), 1, - anon_sym_DASH_GT, - STATE(444), 1, - sym_block, - STATE(1783), 1, + STATE(963), 1, + sym_field_declaration_list, + STATE(1757), 1, + sym_type_parameters, + STATE(2047), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55342] = 6, - ACTIONS(2995), 1, - anon_sym_COLON_COLON, - ACTIONS(3821), 1, - anon_sym_COMMA, - ACTIONS(3823), 1, - anon_sym_GT, - STATE(1827), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_as, - [55363] = 4, - ACTIONS(3825), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3181), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2394), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [55380] = 7, - ACTIONS(3542), 1, + [55862] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3544), 1, + ACTIONS(3590), 1, anon_sym_LT, - ACTIONS(3827), 1, + ACTIONS(3873), 1, anon_sym_LBRACE, - STATE(267), 1, + STATE(949), 1, sym_enum_variant_list, - STATE(1696), 1, + STATE(1743), 1, sym_type_parameters, - STATE(2162), 1, + STATE(2044), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55403] = 7, - ACTIONS(2227), 1, - anon_sym_PLUS, - ACTIONS(3616), 1, - anon_sym_COLON, - ACTIONS(3821), 1, - anon_sym_COMMA, - ACTIONS(3823), 1, - anon_sym_GT, - STATE(1827), 1, - aux_sym_type_parameters_repeat1, - STATE(1828), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55426] = 4, - ACTIONS(3829), 1, - anon_sym_RBRACK, + [55885] = 7, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3851), 1, + anon_sym_LBRACE, + ACTIONS(3875), 1, + anon_sym_SEMI, + ACTIONS(3877), 1, + anon_sym_DASH_GT, + STATE(774), 1, + sym_block, + STATE(1952), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3424), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2534), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [55443] = 7, - ACTIONS(3542), 1, + [55908] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3793), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(3832), 1, + ACTIONS(3879), 1, anon_sym_SEMI, - STATE(770), 1, + STATE(367), 1, sym_block, - STATE(1943), 1, + STATE(2012), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55466] = 7, - ACTIONS(3542), 1, + [55931] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3544), 1, - anon_sym_LT, - ACTIONS(3827), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, - STATE(260), 1, - sym_enum_variant_list, - STATE(1746), 1, - sym_type_parameters, - STATE(2081), 1, + ACTIONS(3881), 1, + anon_sym_SEMI, + ACTIONS(3883), 1, + anon_sym_DASH_GT, + STATE(436), 1, + sym_block, + STATE(1957), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55489] = 4, - ACTIONS(3834), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3350), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2490), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [55506] = 7, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(3799), 1, + [55954] = 7, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3837), 1, - anon_sym_SEMI, - STATE(335), 1, - sym_block, - STATE(1776), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3681), 1, + anon_sym_COLON, + STATE(940), 1, + sym_declaration_list, + STATE(1725), 1, + sym_trait_bounds, + STATE(2058), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55529] = 7, - ACTIONS(3542), 1, + [55977] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(3799), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(3839), 1, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(3885), 1, anon_sym_SEMI, - STATE(319), 1, + STATE(382), 1, sym_block, - STATE(1832), 1, + STATE(1853), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55552] = 7, - ACTIONS(3616), 1, - anon_sym_COLON, - ACTIONS(3841), 1, + [56000] = 4, + ACTIONS(3887), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3398), 2, anon_sym_COMMA, - ACTIONS(3843), 1, - anon_sym_GT, - STATE(1827), 1, - aux_sym_type_parameters_repeat1, - STATE(1828), 1, + anon_sym_PIPE, + ACTIONS(2564), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [56017] = 7, + ACTIONS(3564), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3681), 1, + anon_sym_COLON, + STATE(460), 1, + sym_declaration_list, + STATE(1709), 1, sym_trait_bounds, - STATE(1983), 1, - aux_sym_for_lifetimes_repeat1, + STATE(2168), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55575] = 4, + [56040] = 7, + ACTIONS(3588), 1, + anon_sym_where, ACTIONS(3845), 1, - anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, + anon_sym_SEMI, + STATE(411), 1, + sym_block, + STATE(1884), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2394), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [55592] = 5, - ACTIONS(3809), 1, - anon_sym_COLON, + [56063] = 7, + ACTIONS(3588), 1, + anon_sym_where, ACTIONS(3845), 1, - anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(3892), 1, + anon_sym_SEMI, + STATE(364), 1, + sym_block, + STATE(1845), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [55611] = 7, - ACTIONS(3542), 1, + [56086] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(3799), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(3847), 1, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(3894), 1, anon_sym_SEMI, - STATE(249), 1, + STATE(345), 1, sym_block, - STATE(1859), 1, + STATE(1834), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55634] = 4, + [56109] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2490), 2, + ACTIONS(2530), 2, anon_sym_PLUS, anon_sym_DASH_GT, - ACTIONS(3350), 2, + ACTIONS(3474), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(3834), 2, + ACTIONS(3896), 2, anon_sym_RPAREN, anon_sym_COMMA, - [55651] = 7, - ACTIONS(3542), 1, + [56126] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3793), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3849), 1, + ACTIONS(3899), 1, anon_sym_SEMI, - ACTIONS(3851), 1, + ACTIONS(3901), 1, anon_sym_DASH_GT, - STATE(742), 1, + STATE(952), 1, sym_block, - STATE(1958), 1, + STATE(2018), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55674] = 7, - ACTIONS(3540), 1, + [56149] = 7, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3544), 1, - anon_sym_LT, - STATE(373), 1, - sym_field_declaration_list, - STATE(1724), 1, - sym_type_parameters, - STATE(2134), 1, + ACTIONS(3681), 1, + anon_sym_COLON, + STATE(322), 1, + sym_declaration_list, + STATE(1774), 1, + sym_trait_bounds, + STATE(2198), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55697] = 7, - ACTIONS(3542), 1, + [56172] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(3799), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3853), 1, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(3903), 1, anon_sym_SEMI, - STATE(449), 1, + STATE(782), 1, sym_block, - STATE(1785), 1, + STATE(1955), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55720] = 3, + [56195] = 7, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3590), 1, + anon_sym_LT, + ACTIONS(3873), 1, + anon_sym_LBRACE, + STATE(808), 1, + sym_enum_variant_list, + STATE(1719), 1, + sym_type_parameters, + STATE(2205), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3424), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2534), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, + [56218] = 7, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3845), 1, + anon_sym_LBRACE, + ACTIONS(3905), 1, + anon_sym_SEMI, + ACTIONS(3907), 1, anon_sym_DASH_GT, - [55735] = 7, - ACTIONS(3123), 1, + STATE(400), 1, + sym_block, + STATE(1868), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56241] = 7, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3590), 1, + anon_sym_LT, + ACTIONS(3909), 1, anon_sym_LBRACE, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3855), 1, - sym_identifier, - ACTIONS(3857), 1, - anon_sym_STAR, - STATE(1911), 1, - sym_use_list, - STATE(2318), 1, - sym_type_arguments, + STATE(275), 1, + sym_enum_variant_list, + STATE(1712), 1, + sym_type_parameters, + STATE(2054), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55758] = 5, - ACTIONS(3861), 1, + [56264] = 5, + ACTIONS(3913), 1, anon_sym_COLON, - ACTIONS(3863), 1, + ACTIONS(3915), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, + ACTIONS(3223), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3859), 2, + ACTIONS(3911), 2, anon_sym_RPAREN, anon_sym_COMMA, - [55777] = 7, - ACTIONS(3542), 1, + [56283] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3544), 1, - anon_sym_LT, - ACTIONS(3865), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(780), 1, - sym_enum_variant_list, - STATE(1678), 1, - sym_type_parameters, - STATE(2050), 1, + ACTIONS(3917), 1, + anon_sym_SEMI, + ACTIONS(3919), 1, + anon_sym_DASH_GT, + STATE(849), 1, + sym_block, + STATE(1970), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55800] = 7, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3598), 1, - anon_sym_LBRACE, - ACTIONS(3616), 1, - anon_sym_COLON, - STATE(746), 1, - sym_declaration_list, - STATE(1745), 1, - sym_trait_bounds, - STATE(2059), 1, - sym_where_clause, + [56306] = 4, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55823] = 7, - ACTIONS(3123), 1, - anon_sym_LBRACE, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3855), 1, - sym_identifier, - ACTIONS(3857), 1, - anon_sym_STAR, - STATE(1911), 1, - sym_use_list, - STATE(2319), 1, - sym_type_arguments, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2394), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [56323] = 4, + ACTIONS(3896), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55846] = 7, - ACTIONS(3544), 1, - anon_sym_LT, - ACTIONS(3616), 1, - anon_sym_COLON, - ACTIONS(3867), 1, + ACTIONS(3474), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2530), 3, anon_sym_SEMI, - ACTIONS(3869), 1, - anon_sym_EQ, - STATE(2352), 1, - sym_trait_bounds, - STATE(2391), 1, - sym_type_parameters, + anon_sym_PLUS, + anon_sym_DASH_GT, + [56340] = 7, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3851), 1, + anon_sym_LBRACE, + ACTIONS(3921), 1, + anon_sym_SEMI, + ACTIONS(3923), 1, + anon_sym_DASH_GT, + STATE(909), 1, + sym_block, + STATE(1998), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55869] = 7, - ACTIONS(3542), 1, + [56363] = 7, + ACTIONS(3586), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3544), 1, + ACTIONS(3590), 1, anon_sym_LT, - ACTIONS(3556), 1, - anon_sym_LBRACE, - STATE(728), 1, + STATE(266), 1, sym_field_declaration_list, - STATE(1742), 1, + STATE(1744), 1, sym_type_parameters, - STATE(2119), 1, + STATE(2139), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55892] = 7, - ACTIONS(3542), 1, + [56386] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3799), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(3925), 1, anon_sym_SEMI, - ACTIONS(3873), 1, - anon_sym_DASH_GT, - STATE(391), 1, + STATE(757), 1, sym_block, - STATE(1793), 1, + STATE(1950), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55915] = 7, - ACTIONS(3542), 1, + [56409] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3799), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(3875), 1, + ACTIONS(3927), 1, anon_sym_SEMI, - ACTIONS(3877), 1, + ACTIONS(3929), 1, anon_sym_DASH_GT, - STATE(403), 1, + STATE(325), 1, sym_block, - STATE(1795), 1, + STATE(1945), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55938] = 7, - ACTIONS(3542), 1, + [56432] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3572), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(3616), 1, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(3931), 1, + anon_sym_SEMI, + STATE(448), 1, + sym_block, + STATE(1915), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56455] = 7, + ACTIONS(3578), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3681), 1, anon_sym_COLON, - STATE(292), 1, + STATE(833), 1, sym_declaration_list, - STATE(1699), 1, + STATE(1704), 1, sym_trait_bounds, - STATE(2186), 1, + STATE(2142), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55961] = 7, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3598), 1, + [56478] = 7, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3616), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3681), 1, anon_sym_COLON, - STATE(905), 1, + STATE(268), 1, sym_declaration_list, - STATE(1744), 1, + STATE(1742), 1, sym_trait_bounds, - STATE(2104), 1, + STATE(2146), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55984] = 7, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3793), 1, + [56501] = 7, + ACTIONS(3586), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(3879), 1, - anon_sym_SEMI, - STATE(804), 1, - sym_block, - STATE(1913), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3590), 1, + anon_sym_LT, + STATE(384), 1, + sym_field_declaration_list, + STATE(1772), 1, + sym_type_parameters, + STATE(2203), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56007] = 7, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(3881), 1, - anon_sym_SEMI, - ACTIONS(3883), 1, - anon_sym_DASH_GT, - STATE(255), 1, - sym_block, - STATE(1807), 1, - sym_where_clause, + [56524] = 4, + ACTIONS(3933), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56030] = 7, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3793), 1, - anon_sym_LBRACE, - ACTIONS(3885), 1, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2394), 3, anon_sym_SEMI, - ACTIONS(3887), 1, - anon_sym_DASH_GT, - STATE(911), 1, - sym_block, - STATE(1932), 1, - sym_where_clause, + anon_sym_RBRACK, + anon_sym_PLUS, + [56541] = 7, + ACTIONS(2247), 1, + anon_sym_PLUS, + ACTIONS(3681), 1, + anon_sym_COLON, + ACTIONS(3935), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_GT, + STATE(1890), 1, + sym_trait_bounds, + STATE(1892), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56053] = 7, - ACTIONS(3542), 1, + [56564] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3793), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3889), 1, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(3939), 1, anon_sym_SEMI, - ACTIONS(3891), 1, - anon_sym_DASH_GT, - STATE(907), 1, + STATE(748), 1, sym_block, - STATE(1961), 1, + STATE(1949), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56076] = 7, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3572), 1, - anon_sym_LBRACE, - ACTIONS(3616), 1, + [56587] = 5, + ACTIONS(3913), 1, anon_sym_COLON, - STATE(394), 1, - sym_declaration_list, - STATE(1747), 1, - sym_trait_bounds, - STATE(2096), 1, - sym_where_clause, + ACTIONS(3941), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56099] = 7, - ACTIONS(3542), 1, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3911), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56606] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3793), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(3893), 1, + ACTIONS(3943), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(814), 1, sym_block, - STATE(1928), 1, + STATE(1960), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56122] = 7, - ACTIONS(3542), 1, + [56629] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2564), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3398), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3887), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56646] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3793), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(3895), 1, + ACTIONS(3945), 1, anon_sym_SEMI, - STATE(788), 1, + STATE(881), 1, sym_block, - STATE(1910), 1, + STATE(1975), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56145] = 7, - ACTIONS(3286), 1, + [56669] = 7, + ACTIONS(3330), 1, anon_sym_EQ, - ACTIONS(3616), 1, + ACTIONS(3681), 1, anon_sym_COLON, - ACTIONS(3897), 1, + ACTIONS(3947), 1, anon_sym_COMMA, - ACTIONS(3899), 1, + ACTIONS(3949), 1, anon_sym_GT, - STATE(1825), 1, + STATE(1894), 1, sym_trait_bounds, - STATE(1970), 1, + STATE(2007), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56168] = 7, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3793), 1, - anon_sym_LBRACE, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(3901), 1, - anon_sym_SEMI, - STATE(944), 1, - sym_block, - STATE(1925), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56191] = 7, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3598), 1, - anon_sym_LBRACE, - ACTIONS(3616), 1, + [56692] = 7, + ACTIONS(3590), 1, + anon_sym_LT, + ACTIONS(3681), 1, anon_sym_COLON, - STATE(855), 1, - sym_declaration_list, - STATE(1719), 1, + ACTIONS(3951), 1, + anon_sym_SEMI, + ACTIONS(3953), 1, + anon_sym_EQ, + STATE(2338), 1, + sym_type_parameters, + STATE(2339), 1, sym_trait_bounds, - STATE(2027), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56214] = 7, - ACTIONS(3542), 1, + [56715] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3572), 1, + ACTIONS(3590), 1, + anon_sym_LT, + ACTIONS(3909), 1, anon_sym_LBRACE, - ACTIONS(3616), 1, - anon_sym_COLON, - STATE(364), 1, - sym_declaration_list, - STATE(1726), 1, - sym_trait_bounds, - STATE(2121), 1, + STATE(257), 1, + sym_enum_variant_list, + STATE(1756), 1, + sym_type_parameters, + STATE(2128), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56237] = 7, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(3903), 1, - anon_sym_SEMI, - ACTIONS(3905), 1, - anon_sym_DASH_GT, - STATE(404), 1, - sym_block, - STATE(1909), 1, - sym_where_clause, + [56738] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56260] = 7, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3544), 1, - anon_sym_LT, - ACTIONS(3556), 1, - anon_sym_LBRACE, - STATE(827), 1, - sym_field_declaration_list, - STATE(1706), 1, - sym_type_parameters, - STATE(2015), 1, - sym_where_clause, + ACTIONS(3398), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2564), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [56753] = 6, + ACTIONS(2995), 1, + anon_sym_COLON_COLON, + ACTIONS(3935), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_GT, + STATE(1892), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56283] = 7, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3793), 1, - anon_sym_LBRACE, - ACTIONS(3907), 1, - anon_sym_SEMI, - ACTIONS(3909), 1, - anon_sym_DASH_GT, - STATE(798), 1, - sym_block, - STATE(1984), 1, - sym_where_clause, + ACTIONS(2394), 2, + anon_sym_PLUS, + anon_sym_as, + [56774] = 6, + ACTIONS(802), 1, + anon_sym_DOT_DOT, + ACTIONS(3665), 1, + sym_identifier, + ACTIONS(3671), 1, + anon_sym_ref, + ACTIONS(3673), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56306] = 7, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3793), 1, - anon_sym_LBRACE, - ACTIONS(3911), 1, - anon_sym_SEMI, - ACTIONS(3913), 1, - anon_sym_DASH_GT, - STATE(897), 1, - sym_block, - STATE(1922), 1, - sym_where_clause, + STATE(2066), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56795] = 4, + ACTIONS(3941), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56329] = 7, - ACTIONS(3542), 1, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2394), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [56812] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3544), 1, + ACTIONS(3590), 1, anon_sym_LT, - ACTIONS(3865), 1, + ACTIONS(3594), 1, anon_sym_LBRACE, - STATE(838), 1, - sym_enum_variant_list, - STATE(1705), 1, + STATE(858), 1, + sym_field_declaration_list, + STATE(1702), 1, sym_type_parameters, - STATE(2011), 1, + STATE(2151), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56352] = 4, + [56835] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3424), 2, + ACTIONS(3474), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(3829), 2, + ACTIONS(2530), 4, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [56369] = 6, - ACTIONS(3542), 1, + anon_sym_DASH_GT, + [56850] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3572), 1, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, - anon_sym_PLUS, - STATE(288), 1, - sym_declaration_list, - STATE(2154), 1, + ACTIONS(3955), 1, + anon_sym_SEMI, + ACTIONS(3957), 1, + anon_sym_DASH_GT, + STATE(294), 1, + sym_block, + STATE(1861), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56389] = 5, - ACTIONS(764), 1, - anon_sym_RPAREN, - ACTIONS(3915), 1, + [56873] = 7, + ACTIONS(3330), 1, + anon_sym_EQ, + ACTIONS(3332), 1, anon_sym_COMMA, - STATE(1944), 1, - aux_sym_parameters_repeat1, + ACTIONS(3334), 1, + anon_sym_GT, + ACTIONS(3681), 1, + anon_sym_COLON, + STATE(1893), 1, + aux_sym_type_parameters_repeat1, + STATE(1894), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3171), 2, + [56896] = 7, + ACTIONS(3578), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3681), 1, anon_sym_COLON, - anon_sym_PIPE, - [56407] = 4, - ACTIONS(2798), 1, - anon_sym_PLUS, + STATE(904), 1, + sym_declaration_list, + STATE(1776), 1, + sym_trait_bounds, + STATE(2096), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3366), 2, + [56919] = 7, + ACTIONS(3590), 1, + anon_sym_LT, + ACTIONS(3681), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3917), 2, - anon_sym_RPAREN, + ACTIONS(3959), 1, + anon_sym_SEMI, + ACTIONS(3961), 1, + anon_sym_EQ, + STATE(2380), 1, + sym_trait_bounds, + STATE(2436), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56942] = 7, + ACTIONS(3681), 1, + anon_sym_COLON, + ACTIONS(3963), 1, anon_sym_COMMA, - [56423] = 4, - ACTIONS(3268), 1, - anon_sym_COLON_COLON, - ACTIONS(3659), 1, - anon_sym_for, + ACTIONS(3965), 1, + anon_sym_GT, + STATE(1879), 1, + aux_sym_for_lifetimes_repeat1, + STATE(1890), 1, + sym_trait_bounds, + STATE(1892), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [56439] = 6, - ACTIONS(3542), 1, + [56965] = 7, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3598), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, - anon_sym_PLUS, - STATE(768), 1, - sym_declaration_list, - STATE(2044), 1, + ACTIONS(3967), 1, + anon_sym_SEMI, + ACTIONS(3969), 1, + anon_sym_DASH_GT, + STATE(901), 1, + sym_block, + STATE(1983), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56459] = 6, - ACTIONS(3542), 1, + [56988] = 5, + ACTIONS(3380), 1, + anon_sym_COLON, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3478), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3320), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [57006] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3971), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3598), 1, + anon_sym_EQ, + anon_sym_COMMA, + [57018] = 6, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(776), 1, + STATE(923), 1, sym_declaration_list, - STATE(2041), 1, + STATE(2076), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56479] = 6, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3191), 1, - anon_sym_COLON_COLON, - ACTIONS(3284), 1, - anon_sym_COLON, - STATE(1276), 1, - sym_type_arguments, - STATE(2000), 1, - sym_trait_bounds, + [57038] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56499] = 2, + ACTIONS(3973), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [57050] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3920), 5, + ACTIONS(3975), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [56511] = 6, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3572), 1, + [57062] = 6, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(295), 1, + STATE(873), 1, sym_declaration_list, - STATE(2156), 1, + STATE(2126), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56531] = 2, + [57082] = 4, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3689), 5, - anon_sym_LPAREN, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3977), 2, anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_COMMA, + [57098] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3979), 5, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - [56543] = 4, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_if, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [57110] = 4, + ACTIONS(3981), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1037), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [56559] = 2, + ACTIONS(2880), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3390), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [57126] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3924), 5, + ACTIONS(3984), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [56571] = 6, - ACTIONS(3616), 1, - anon_sym_COLON, - ACTIONS(3821), 1, + [57138] = 5, + ACTIONS(3986), 1, + anon_sym_RPAREN, + ACTIONS(3989), 1, anon_sym_COMMA, - ACTIONS(3823), 1, - anon_sym_GT, - STATE(1827), 1, - aux_sym_type_parameters_repeat1, - STATE(1828), 1, - sym_trait_bounds, + STATE(1854), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56591] = 2, + ACTIONS(3213), 2, + anon_sym_COLON, + anon_sym_PIPE, + [57156] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3926), 5, + ACTIONS(3992), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [56603] = 4, - ACTIONS(3268), 1, + [57168] = 4, + ACTIONS(3996), 1, + anon_sym_as, + ACTIONS(3998), 1, anon_sym_COLON_COLON, - ACTIONS(3701), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [56619] = 2, + ACTIONS(3994), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [57184] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3928), 5, + ACTIONS(4000), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [56631] = 5, - ACTIONS(3930), 1, - anon_sym_RPAREN, - ACTIONS(3932), 1, + [57196] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4002), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - STATE(1991), 1, - aux_sym_parameters_repeat1, + [57208] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3171), 2, - anon_sym_COLON, - anon_sym_PIPE, - [56649] = 6, - ACTIONS(3542), 1, + ACTIONS(4004), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3598), 1, + anon_sym_EQ, + anon_sym_COMMA, + [57220] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(949), 1, + STATE(375), 1, sym_declaration_list, - STATE(2116), 1, + STATE(2053), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56669] = 4, - ACTIONS(3268), 1, - anon_sym_COLON_COLON, - ACTIONS(3663), 1, - anon_sym_for, + [57240] = 6, + ACTIONS(3564), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, + anon_sym_PLUS, + STATE(373), 1, + sym_declaration_list, + STATE(2042), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [56685] = 2, + [57260] = 5, + ACTIONS(4006), 1, + anon_sym_RPAREN, + ACTIONS(4008), 1, + anon_sym_COMMA, + STATE(1854), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3213), 2, + anon_sym_COLON, + anon_sym_PIPE, + [57278] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3934), 5, + ACTIONS(4010), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [56697] = 5, - ACTIONS(3936), 1, + [57290] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3708), 5, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(3939), 1, - anon_sym_COMMA, - STATE(2002), 1, - aux_sym_parameters_repeat1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + [57302] = 4, + ACTIONS(3312), 1, + anon_sym_COLON_COLON, + ACTIONS(3733), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3171), 2, - anon_sym_COLON, - anon_sym_PIPE, - [56715] = 6, - ACTIONS(3542), 1, + ACTIONS(2394), 3, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3598), 1, + [57318] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(951), 1, + STATE(256), 1, sym_declaration_list, - STATE(2117), 1, + STATE(2127), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56735] = 6, - ACTIONS(3616), 1, - anon_sym_COLON, - ACTIONS(3942), 1, - anon_sym_COMMA, - ACTIONS(3944), 1, - anon_sym_GT, - STATE(1828), 1, - sym_trait_bounds, - STATE(1972), 1, - aux_sym_type_parameters_repeat1, + [57338] = 4, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56755] = 5, - ACTIONS(3946), 1, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3863), 2, anon_sym_RPAREN, - ACTIONS(3948), 1, anon_sym_COMMA, - STATE(2002), 1, - aux_sym_parameters_repeat1, + [57354] = 6, + ACTIONS(3209), 1, + anon_sym_COLON_COLON, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3328), 1, + anon_sym_COLON, + STATE(1285), 1, + sym_type_arguments, + STATE(1852), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57374] = 4, + ACTIONS(2880), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3171), 2, + ACTIONS(3390), 2, anon_sym_COLON, anon_sym_PIPE, - [56773] = 6, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3598), 1, + ACTIONS(3981), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57390] = 6, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(842), 1, + STATE(911), 1, sym_declaration_list, - STATE(2097), 1, + STATE(2093), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56793] = 6, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3598), 1, - anon_sym_LBRACE, - ACTIONS(3795), 1, - anon_sym_PLUS, - STATE(834), 1, - sym_declaration_list, - STATE(2094), 1, - sym_where_clause, + [57410] = 6, + ACTIONS(3681), 1, + anon_sym_COLON, + ACTIONS(4012), 1, + anon_sym_COMMA, + ACTIONS(4014), 1, + anon_sym_GT, + STATE(1890), 1, + sym_trait_bounds, + STATE(2009), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56813] = 6, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3598), 1, + [57430] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(849), 1, + STATE(300), 1, sym_declaration_list, - STATE(2023), 1, + STATE(2220), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56833] = 4, - ACTIONS(3268), 1, - anon_sym_COLON_COLON, - ACTIONS(3699), 1, - anon_sym_for, + [57450] = 5, + ACTIONS(3330), 1, + anon_sym_EQ, + ACTIONS(3681), 1, + anon_sym_COLON, + STATE(1894), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, + ACTIONS(4016), 2, + anon_sym_COMMA, + anon_sym_GT, + [57468] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [56849] = 6, - ACTIONS(3542), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3572), 1, - anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(406), 1, + STATE(315), 1, sym_declaration_list, - STATE(2177), 1, + STATE(2206), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56869] = 6, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3598), 1, + [57488] = 6, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(808), 1, + STATE(827), 1, sym_declaration_list, - STATE(2088), 1, + STATE(2170), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56889] = 6, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3598), 1, - anon_sym_LBRACE, - ACTIONS(3795), 1, - anon_sym_PLUS, - STATE(805), 1, - sym_declaration_list, - STATE(2087), 1, - sym_where_clause, + [57508] = 6, + ACTIONS(3681), 1, + anon_sym_COLON, + ACTIONS(3935), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_GT, + STATE(1890), 1, + sym_trait_bounds, + STATE(1892), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56909] = 4, - ACTIONS(3917), 1, - anon_sym_RBRACK, + [57528] = 4, + ACTIONS(3312), 1, + anon_sym_COLON_COLON, + ACTIONS(3697), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2798), 2, - anon_sym_SEMI, + ACTIONS(2394), 3, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3366), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [56925] = 2, + anon_sym_where, + [57544] = 4, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(4018), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(43), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [57560] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3950), 5, + ACTIONS(4020), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [56937] = 2, + [57572] = 4, + ACTIONS(3996), 1, + anon_sym_as, + ACTIONS(4022), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3952), 5, + ACTIONS(3994), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [56949] = 2, + [57588] = 5, + ACTIONS(772), 1, + anon_sym_RPAREN, + ACTIONS(4024), 1, + anon_sym_COMMA, + STATE(1976), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3954), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3213), 2, + anon_sym_COLON, + anon_sym_PIPE, + [57606] = 5, + ACTIONS(4026), 1, + anon_sym_RPAREN, + ACTIONS(4028), 1, anon_sym_COMMA, - [56961] = 6, - ACTIONS(2340), 1, - anon_sym_LPAREN, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3191), 1, + STATE(2022), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3213), 2, + anon_sym_COLON, + anon_sym_PIPE, + [57624] = 4, + ACTIONS(3312), 1, anon_sym_COLON_COLON, - STATE(877), 1, - sym_parameters, - STATE(1276), 1, - sym_type_arguments, + ACTIONS(3685), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56981] = 6, - ACTIONS(3542), 1, + ACTIONS(2394), 3, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3598), 1, + [57640] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(884), 1, + STATE(423), 1, sym_declaration_list, - STATE(2042), 1, + STATE(2105), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57001] = 4, - ACTIONS(3845), 1, - anon_sym_COLON_COLON, + [57660] = 6, + ACTIONS(3564), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, + anon_sym_PLUS, + STATE(299), 1, + sym_declaration_list, + STATE(2243), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3956), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57017] = 5, - ACTIONS(3286), 1, - anon_sym_EQ, - ACTIONS(3616), 1, - anon_sym_COLON, - STATE(1825), 1, - sym_trait_bounds, + [57680] = 6, + ACTIONS(3578), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, + anon_sym_PLUS, + STATE(790), 1, + sym_declaration_list, + STATE(2154), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3958), 2, - anon_sym_COMMA, - anon_sym_GT, - [57035] = 6, - ACTIONS(3542), 1, + [57700] = 6, + ACTIONS(3564), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3572), 1, + ACTIONS(3871), 1, + anon_sym_PLUS, + STATE(347), 1, + sym_declaration_list, + STATE(2120), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57720] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(344), 1, + STATE(426), 1, sym_declaration_list, - STATE(2161), 1, + STATE(2123), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57740] = 5, + ACTIONS(3380), 1, + anon_sym_COLON, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3320), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [57758] = 6, + ACTIONS(3578), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, + anon_sym_PLUS, + STATE(789), 1, + sym_declaration_list, + STATE(2155), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57055] = 4, - ACTIONS(3268), 1, - anon_sym_COLON_COLON, - ACTIONS(3655), 1, - anon_sym_for, + [57778] = 4, + ACTIONS(644), 1, + anon_sym_LBRACE, + ACTIONS(4030), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, + STATE(217), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [57794] = 6, + ACTIONS(3578), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57071] = 6, - ACTIONS(3542), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3572), 1, - anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(272), 1, + STATE(931), 1, sym_declaration_list, - STATE(2173), 1, + STATE(2081), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57091] = 4, - ACTIONS(3845), 1, + [57814] = 4, + ACTIONS(4034), 1, + anon_sym_as, + ACTIONS(4036), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3859), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57107] = 6, - ACTIONS(3960), 1, - anon_sym_RPAREN, - ACTIONS(3962), 1, - anon_sym_COLON, - ACTIONS(3964), 1, + ACTIONS(4032), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3966), 1, - anon_sym_PIPE, - STATE(2005), 1, - aux_sym_tuple_pattern_repeat1, + [57830] = 4, + ACTIONS(3312), 1, + anon_sym_COLON_COLON, + ACTIONS(3731), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57127] = 6, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3572), 1, + ACTIONS(2394), 3, anon_sym_LBRACE, - ACTIONS(3795), 1, anon_sym_PLUS, - STATE(365), 1, - sym_declaration_list, - STATE(2073), 1, - sym_where_clause, + anon_sym_where, + [57846] = 6, + ACTIONS(2362), 1, + anon_sym_LPAREN, + ACTIONS(3209), 1, + anon_sym_COLON_COLON, + ACTIONS(3211), 1, + anon_sym_LT2, + STATE(925), 1, + sym_parameters, + STATE(1285), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57866] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57147] = 4, - ACTIONS(3268), 1, + ACTIONS(3390), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2880), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [57880] = 4, + ACTIONS(3312), 1, anon_sym_COLON_COLON, - ACTIONS(3645), 1, + ACTIONS(3679), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, @@ -111979,48 +113047,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57163] = 6, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3572), 1, - anon_sym_LBRACE, - ACTIONS(3795), 1, - anon_sym_PLUS, - STATE(367), 1, - sym_declaration_list, - STATE(2067), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57183] = 2, + [57896] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3968), 5, + ACTIONS(4038), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57195] = 6, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3572), 1, + [57908] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(337), 1, + STATE(420), 1, sym_declaration_list, - STATE(2017), 1, + STATE(2232), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57215] = 4, - ACTIONS(3268), 1, + [57928] = 4, + ACTIONS(3312), 1, anon_sym_COLON_COLON, - ACTIONS(3653), 1, + ACTIONS(3677), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, @@ -112029,108 +113083,110 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57231] = 6, - ACTIONS(3542), 1, + [57944] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4040), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3572), 1, + anon_sym_EQ, + anon_sym_COMMA, + [57956] = 6, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(387), 1, + STATE(857), 1, sym_declaration_list, - STATE(2092), 1, + STATE(2037), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57251] = 2, + [57976] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3970), 5, + ACTIONS(4042), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57263] = 2, + [57988] = 4, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(4044), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3972), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57275] = 6, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, - anon_sym_LPAREN, - ACTIONS(3191), 1, + STATE(979), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [58004] = 4, + ACTIONS(3312), 1, anon_sym_COLON_COLON, - STATE(1276), 1, - sym_type_arguments, - STATE(1298), 1, - sym_parameters, + ACTIONS(3675), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57295] = 6, - ACTIONS(3542), 1, + ACTIONS(2394), 3, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3598), 1, + [58020] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(750), 1, + STATE(302), 1, sym_declaration_list, - STATE(2056), 1, + STATE(2224), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57315] = 4, - ACTIONS(15), 1, + [58040] = 6, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3974), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(62), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [57331] = 6, - ACTIONS(3542), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3572), 1, - anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(407), 1, + STATE(944), 1, sym_declaration_list, - STATE(2178), 1, + STATE(2040), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57351] = 2, + [58060] = 6, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3209), 1, + anon_sym_COLON_COLON, + ACTIONS(3211), 1, + anon_sym_LT2, + STATE(1285), 1, + sym_type_arguments, + STATE(1301), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3976), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57363] = 4, - ACTIONS(3268), 1, + [58080] = 4, + ACTIONS(3312), 1, anon_sym_COLON_COLON, - ACTIONS(3697), 1, + ACTIONS(3655), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, @@ -112139,8387 +113195,8559 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57379] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3978), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57391] = 4, - ACTIONS(640), 1, + [58096] = 6, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3980), 1, - anon_sym_if, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, + anon_sym_PLUS, + STATE(860), 1, + sym_declaration_list, + STATE(2132), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(229), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [57407] = 4, - ACTIONS(3984), 1, + [58116] = 4, + ACTIONS(3996), 1, anon_sym_as, - ACTIONS(3986), 1, + ACTIONS(4046), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3982), 3, + ACTIONS(3994), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [57423] = 6, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3572), 1, + [58132] = 6, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(347), 1, + STATE(874), 1, sym_declaration_list, - STATE(2046), 1, + STATE(2125), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57443] = 4, - ACTIONS(3990), 1, - anon_sym_as, - ACTIONS(3992), 1, + [58152] = 4, + ACTIONS(3941), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3988), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3977), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [57459] = 4, - ACTIONS(3990), 1, - anon_sym_as, - ACTIONS(3994), 1, - anon_sym_COLON_COLON, + [58168] = 5, + ACTIONS(778), 1, + anon_sym_RPAREN, + ACTIONS(4048), 1, + anon_sym_COMMA, + STATE(2011), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3988), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(3213), 2, + anon_sym_COLON, + anon_sym_PIPE, + [58186] = 6, + ACTIONS(4050), 1, + anon_sym_RPAREN, + ACTIONS(4052), 1, + anon_sym_COLON, + ACTIONS(4054), 1, anon_sym_COMMA, - [57475] = 6, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3572), 1, + ACTIONS(4056), 1, + anon_sym_PIPE, + STATE(1867), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58206] = 6, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(354), 1, + STATE(938), 1, sym_declaration_list, - STATE(2014), 1, + STATE(2078), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57495] = 4, - ACTIONS(3990), 1, - anon_sym_as, - ACTIONS(3996), 1, + [58226] = 4, + ACTIONS(3941), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3988), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3863), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [57511] = 6, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3598), 1, + [58242] = 6, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(3795), 1, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3871), 1, anon_sym_PLUS, - STATE(881), 1, + STATE(418), 1, sym_declaration_list, - STATE(2131), 1, + STATE(2235), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57531] = 3, + [58262] = 5, + ACTIONS(2362), 1, + anon_sym_LPAREN, + ACTIONS(3211), 1, + anon_sym_LT2, + STATE(928), 1, + sym_parameters, + STATE(1276), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3366), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2798), 3, - anon_sym_RPAREN, - anon_sym_PLUS, + [58279] = 4, + ACTIONS(4060), 1, anon_sym_COMMA, - [57545] = 2, + STATE(1693), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3998), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57557] = 5, - ACTIONS(770), 1, + ACTIONS(4058), 2, anon_sym_RPAREN, - ACTIONS(4000), 1, - anon_sym_COMMA, - STATE(1861), 1, - aux_sym_parameters_repeat1, + anon_sym_RBRACK, + [58294] = 5, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3211), 1, + anon_sym_LT2, + STATE(1276), 1, + sym_type_arguments, + STATE(1309), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3171), 2, - anon_sym_COLON, - anon_sym_PIPE, - [57575] = 4, - ACTIONS(3811), 1, + [58311] = 4, + ACTIONS(3318), 1, anon_sym_COLON_COLON, + ACTIONS(4063), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, + ACTIONS(3320), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3956), 2, + [58326] = 5, + ACTIONS(4065), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, + anon_sym_LBRACE, + ACTIONS(4069), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58343] = 5, + ACTIONS(778), 1, anon_sym_RPAREN, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4048), 1, anon_sym_COMMA, - [57591] = 4, - ACTIONS(3811), 1, - anon_sym_COLON_COLON, + STATE(2011), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3859), 2, + [58360] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4058), 3, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [57607] = 5, - ACTIONS(3187), 1, - anon_sym_LPAREN, - ACTIONS(3544), 1, - anon_sym_LT, - STATE(1580), 1, - sym_parameters, - STATE(2142), 1, - sym_type_parameters, + [58373] = 5, + ACTIONS(3578), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + STATE(939), 1, + sym_declaration_list, + STATE(2059), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57624] = 5, - ACTIONS(3966), 1, + [58390] = 5, + ACTIONS(3402), 1, anon_sym_PIPE, - ACTIONS(4002), 1, + ACTIONS(4071), 1, anon_sym_SEMI, - ACTIONS(4004), 1, + ACTIONS(4073), 1, anon_sym_COLON, - ACTIONS(4006), 1, + ACTIONS(4075), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57641] = 5, - ACTIONS(3966), 1, - anon_sym_PIPE, - ACTIONS(4008), 1, - anon_sym_RBRACK, - ACTIONS(4010), 1, - anon_sym_COMMA, - STATE(1800), 1, - aux_sym_tuple_pattern_repeat1, + [58407] = 5, + ACTIONS(3564), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + STATE(459), 1, + sym_declaration_list, + STATE(2167), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57658] = 4, - ACTIONS(4012), 1, - anon_sym_DQUOTE, - STATE(1695), 1, - aux_sym_string_literal_repeat1, + [58424] = 5, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3594), 1, + anon_sym_LBRACE, + STATE(943), 1, + sym_field_declaration_list, + STATE(2231), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4014), 2, - sym__string_content, - sym_escape_sequence, - [57673] = 5, - ACTIONS(3962), 1, - anon_sym_COLON, - ACTIONS(4016), 1, - anon_sym_COMMA, - ACTIONS(4018), 1, - anon_sym_PIPE, - STATE(1823), 1, - aux_sym_closure_parameters_repeat1, + [58441] = 5, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3590), 1, + anon_sym_LT, + STATE(1616), 1, + sym_parameters, + STATE(2185), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57690] = 5, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4020), 1, - anon_sym_RPAREN, - ACTIONS(4022), 1, - anon_sym_COMMA, - STATE(1953), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [58458] = 5, + ACTIONS(3578), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + STATE(777), 1, + sym_declaration_list, + STATE(2160), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57707] = 4, - ACTIONS(3809), 1, - anon_sym_COLON, - ACTIONS(3863), 1, + [58475] = 4, + ACTIONS(3318), 1, anon_sym_COLON_COLON, + ACTIONS(3739), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, + ACTIONS(3320), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [57722] = 5, - ACTIONS(3123), 1, + [58490] = 5, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3590), 1, + anon_sym_LT, + STATE(1557), 1, + sym_parameters, + STATE(2043), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58507] = 5, + ACTIONS(3157), 1, anon_sym_LBRACE, ACTIONS(3855), 1, sym_identifier, ACTIONS(3857), 1, anon_sym_STAR, - STATE(1911), 1, + STATE(1813), 1, sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57739] = 4, - ACTIONS(3274), 1, - anon_sym_COLON_COLON, - ACTIONS(3464), 1, + [58524] = 5, + ACTIONS(3402), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_SEMI, + ACTIONS(4079), 1, anon_sym_COLON, + ACTIONS(4081), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3276), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [57754] = 5, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3187), 1, - anon_sym_LPAREN, - STATE(1277), 1, - sym_type_arguments, - STATE(1283), 1, - sym_parameters, + [58541] = 5, + ACTIONS(3564), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, + anon_sym_where, + STATE(405), 1, + sym_declaration_list, + STATE(2216), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57771] = 5, - ACTIONS(3542), 1, + [58558] = 4, + ACTIONS(4083), 1, + anon_sym_COMMA, + STATE(1714), 1, + aux_sym_where_clause_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2804), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [58573] = 5, + ACTIONS(3564), 1, + anon_sym_LBRACE, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3865), 1, + STATE(269), 1, + sym_declaration_list, + STATE(2153), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58590] = 5, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3909), 1, + anon_sym_LBRACE, + STATE(249), 1, + sym_enum_variant_list, + STATE(2073), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58607] = 5, + ACTIONS(4012), 1, + anon_sym_COMMA, + ACTIONS(4014), 1, + anon_sym_GT, + ACTIONS(4085), 1, + anon_sym_EQ, + STATE(2009), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58624] = 4, + ACTIONS(4089), 1, + anon_sym_COMMA, + STATE(1714), 1, + aux_sym_where_clause_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4087), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [58639] = 4, + ACTIONS(4094), 1, + anon_sym_COMMA, + STATE(1710), 1, + aux_sym_where_clause_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4092), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [58654] = 3, + ACTIONS(4096), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4098), 3, + sym_self, + sym_super, + sym_crate, + [58667] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(986), 1, + sym_line_comment, + ACTIONS(4100), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4102), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [58682] = 5, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4104), 1, + anon_sym_RPAREN, + ACTIONS(4106), 1, + anon_sym_COMMA, + STATE(2005), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58699] = 5, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3873), 1, anon_sym_LBRACE, - STATE(920), 1, + STATE(889), 1, sym_enum_variant_list, - STATE(2075), 1, + STATE(2094), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57788] = 4, - ACTIONS(3274), 1, + [58716] = 5, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4108), 1, + anon_sym_RPAREN, + ACTIONS(4110), 1, + anon_sym_COMMA, + STATE(1919), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58733] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(986), 1, + sym_line_comment, + ACTIONS(4112), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4114), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [58748] = 4, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3384), 1, anon_sym_COLON_COLON, - ACTIONS(4024), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3276), 2, + ACTIONS(3320), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [57803] = 3, + [58763] = 5, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4006), 1, + anon_sym_RPAREN, + ACTIONS(4008), 1, + anon_sym_COMMA, + STATE(1854), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3171), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4026), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57816] = 4, - ACTIONS(3861), 1, - anon_sym_COLON, - ACTIONS(3863), 1, - anon_sym_COLON_COLON, + [58780] = 5, + ACTIONS(3205), 1, + anon_sym_LPAREN, + ACTIONS(3590), 1, + anon_sym_LT, + STATE(1558), 1, + sym_parameters, + STATE(2163), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [57831] = 5, - ACTIONS(3123), 1, + [58797] = 5, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(4028), 1, - sym_identifier, - ACTIONS(4030), 1, - anon_sym_STAR, - STATE(1905), 1, - sym_use_list, + ACTIONS(3588), 1, + anon_sym_where, + STATE(915), 1, + sym_declaration_list, + STATE(2090), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57848] = 4, - ACTIONS(4034), 1, - anon_sym_COMMA, - STATE(1683), 1, - aux_sym_where_clause_repeat1, + [58814] = 4, + ACTIONS(3318), 1, + anon_sym_COLON_COLON, + ACTIONS(3380), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4032), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [57863] = 5, - ACTIONS(3187), 1, + ACTIONS(3320), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [58829] = 5, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3544), 1, + ACTIONS(3590), 1, anon_sym_LT, - STATE(1581), 1, + STATE(1587), 1, sym_parameters, - STATE(2181), 1, + STATE(2209), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57880] = 5, - ACTIONS(4037), 1, - anon_sym_LPAREN, - ACTIONS(4039), 1, - anon_sym_LBRACE, - ACTIONS(4041), 1, - anon_sym_LBRACK, - STATE(740), 1, - sym_token_tree, + [58846] = 5, + ACTIONS(3935), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_GT, + ACTIONS(4085), 1, + anon_sym_EQ, + STATE(1892), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57897] = 4, - ACTIONS(4043), 1, - anon_sym_COMMA, - STATE(1683), 1, - aux_sym_where_clause_repeat1, + [58863] = 4, + ACTIONS(3681), 1, + anon_sym_COLON, + STATE(1890), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2736), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [57912] = 3, - ACTIONS(4045), 1, - anon_sym_in, + ACTIONS(4116), 2, + anon_sym_COMMA, + anon_sym_GT, + [58878] = 4, + ACTIONS(3681), 1, + anon_sym_COLON, + STATE(1890), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4047), 3, - sym_self, - sym_super, - sym_crate, - [57925] = 5, - ACTIONS(4049), 1, + ACTIONS(4118), 2, + anon_sym_COMMA, + anon_sym_GT, + [58893] = 5, + ACTIONS(4121), 1, anon_sym_LPAREN, - ACTIONS(4051), 1, + ACTIONS(4123), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, + ACTIONS(4125), 1, anon_sym_LBRACK, - STATE(68), 1, + STATE(1974), 1, sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57942] = 4, - ACTIONS(3464), 1, - anon_sym_COLON, - ACTIONS(3506), 1, - anon_sym_COLON_COLON, + [58910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3276), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [57957] = 3, - ACTIONS(4055), 1, + ACTIONS(3213), 2, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3406), 3, + anon_sym_PIPE, + ACTIONS(4127), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_PIPE, - [57970] = 3, - ACTIONS(4057), 1, - anon_sym_in, + [58923] = 5, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4129), 1, + anon_sym_RPAREN, + ACTIONS(4131), 1, + anon_sym_COMMA, + STATE(1911), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4059), 3, - sym_self, - sym_super, - sym_crate, - [57983] = 5, - ACTIONS(3966), 1, - anon_sym_PIPE, - ACTIONS(4061), 1, - anon_sym_SEMI, - ACTIONS(4063), 1, + [58940] = 4, + ACTIONS(3867), 1, + anon_sym_COLON_COLON, + ACTIONS(3913), 1, anon_sym_COLON, - ACTIONS(4065), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58000] = 4, - ACTIONS(4067), 1, - anon_sym_DQUOTE, - STATE(1693), 1, - aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4069), 2, - sym__string_content, - sym_escape_sequence, - [58015] = 5, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3598), 1, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [58955] = 5, + ACTIONS(4121), 1, + anon_sym_LPAREN, + ACTIONS(4123), 1, anon_sym_LBRACE, - STATE(747), 1, - sym_declaration_list, - STATE(2058), 1, - sym_where_clause, + ACTIONS(4125), 1, + anon_sym_LBRACK, + STATE(1038), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58032] = 4, - ACTIONS(4072), 1, + [58972] = 4, + ACTIONS(4133), 1, anon_sym_DQUOTE, - STATE(1693), 1, + STATE(1749), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4074), 2, + ACTIONS(4135), 2, sym__string_content, sym_escape_sequence, - [58047] = 5, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3827), 1, - anon_sym_LBRACE, - STATE(425), 1, - sym_enum_variant_list, - STATE(2021), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58064] = 5, - ACTIONS(3187), 1, + [58987] = 5, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3544), 1, + ACTIONS(3590), 1, anon_sym_LT, - STATE(1563), 1, + STATE(1590), 1, sym_parameters, - STATE(2150), 1, + STATE(2118), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58081] = 5, - ACTIONS(4076), 1, - anon_sym_LPAREN, - ACTIONS(4078), 1, - anon_sym_LBRACE, - ACTIONS(4080), 1, - anon_sym_LBRACK, - STATE(971), 1, - sym_token_tree, + [59004] = 4, + ACTIONS(2127), 1, + anon_sym_POUND, + ACTIONS(4137), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58098] = 5, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3572), 1, + STATE(1077), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [59019] = 5, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(381), 1, - sym_declaration_list, - STATE(2086), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58115] = 5, - ACTIONS(3542), 1, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3572), 1, - anon_sym_LBRACE, - STATE(323), 1, + STATE(905), 1, sym_declaration_list, - STATE(2123), 1, + STATE(2095), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58132] = 5, - ACTIONS(3966), 1, - anon_sym_PIPE, - ACTIONS(4082), 1, + [59036] = 5, + ACTIONS(772), 1, anon_sym_RPAREN, - ACTIONS(4084), 1, - anon_sym_COMMA, - STATE(1797), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58149] = 4, - ACTIONS(2107), 1, - anon_sym_POUND, - ACTIONS(4086), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1055), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [58164] = 5, - ACTIONS(3795), 1, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4088), 1, - anon_sym_RPAREN, - ACTIONS(4090), 1, + ACTIONS(4024), 1, anon_sym_COMMA, - STATE(1897), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(1976), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58181] = 5, - ACTIONS(3187), 1, + [59053] = 5, + ACTIONS(3205), 1, anon_sym_LPAREN, - ACTIONS(3544), 1, + ACTIONS(3590), 1, anon_sym_LT, - STATE(1589), 1, + STATE(1560), 1, sym_parameters, - STATE(2093), 1, + STATE(2147), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58198] = 5, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3865), 1, + [59070] = 5, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(738), 1, - sym_enum_variant_list, - STATE(2066), 1, + ACTIONS(3588), 1, + anon_sym_where, + STATE(312), 1, + sym_declaration_list, + STATE(2211), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58215] = 5, - ACTIONS(3542), 1, + [59087] = 5, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3556), 1, + ACTIONS(3873), 1, anon_sym_LBRACE, - STATE(730), 1, - sym_field_declaration_list, - STATE(2071), 1, + STATE(899), 1, + sym_enum_variant_list, + STATE(2103), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58232] = 5, - ACTIONS(2227), 1, - anon_sym_PLUS, - ACTIONS(4092), 1, - anon_sym_COMMA, - ACTIONS(4094), 1, - anon_sym_GT, - STATE(1994), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58249] = 5, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4092), 1, - anon_sym_COMMA, - ACTIONS(4094), 1, - anon_sym_GT, - STATE(1994), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58266] = 3, - ACTIONS(3966), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4096), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [58279] = 5, - ACTIONS(4098), 1, - anon_sym_LPAREN, - ACTIONS(4100), 1, + [59104] = 5, + ACTIONS(3586), 1, anon_sym_LBRACE, - ACTIONS(4102), 1, - anon_sym_LBRACK, - STATE(1311), 1, - sym_token_tree, + ACTIONS(3588), 1, + anon_sym_where, + STATE(336), 1, + sym_field_declaration_list, + STATE(2152), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58296] = 4, - ACTIONS(4104), 1, + [59121] = 4, + ACTIONS(4139), 1, anon_sym_DQUOTE, - STATE(1693), 1, + STATE(1788), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4074), 2, + ACTIONS(4141), 2, sym__string_content, sym_escape_sequence, - [58311] = 4, + [59136] = 4, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3320), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59151] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(928), 1, + ACTIONS(986), 1, sym_line_comment, - ACTIONS(4106), 1, + ACTIONS(4143), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4108), 3, + ACTIONS(4145), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [58326] = 5, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3572), 1, - anon_sym_LBRACE, - STATE(390), 1, - sym_declaration_list, - STATE(2095), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58343] = 5, - ACTIONS(770), 1, - anon_sym_RPAREN, - ACTIONS(3795), 1, + [59166] = 5, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4000), 1, + ACTIONS(4147), 1, + anon_sym_RPAREN, + ACTIONS(4149), 1, anon_sym_COMMA, - STATE(1861), 1, - aux_sym_parameters_repeat1, + STATE(2000), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58360] = 4, - ACTIONS(4110), 1, + [59183] = 4, + ACTIONS(4151), 1, anon_sym_DQUOTE, - STATE(1693), 1, + STATE(1749), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4074), 2, + ACTIONS(4153), 2, sym__string_content, sym_escape_sequence, - [58375] = 4, - ACTIONS(4112), 1, - anon_sym_COMMA, - STATE(1716), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4096), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [58390] = 5, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4115), 1, + [59198] = 5, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4156), 1, anon_sym_RPAREN, - ACTIONS(4117), 1, + ACTIONS(4158), 1, anon_sym_COMMA, - STATE(1968), 1, - aux_sym_tuple_type_repeat1, + STATE(1959), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58407] = 4, - ACTIONS(4119), 1, - anon_sym_DQUOTE, - STATE(1711), 1, - aux_sym_string_literal_repeat1, + [59215] = 5, + ACTIONS(4160), 1, + anon_sym_LPAREN, + ACTIONS(4162), 1, + anon_sym_LBRACE, + ACTIONS(4164), 1, + anon_sym_LBRACK, + STATE(793), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4121), 2, - sym__string_content, - sym_escape_sequence, - [58422] = 5, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3598), 1, + [59232] = 5, + ACTIONS(4160), 1, + anon_sym_LPAREN, + ACTIONS(4162), 1, anon_sym_LBRACE, - STATE(753), 1, - sym_declaration_list, - STATE(2053), 1, - sym_where_clause, + ACTIONS(4164), 1, + anon_sym_LBRACK, + STATE(794), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58439] = 5, - ACTIONS(764), 1, - anon_sym_RPAREN, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(3915), 1, - anon_sym_COMMA, - STATE(1944), 1, - aux_sym_parameters_repeat1, + [59249] = 5, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4166), 1, + anon_sym_SEMI, + ACTIONS(4168), 1, + anon_sym_COLON, + ACTIONS(4170), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58456] = 5, - ACTIONS(3187), 1, - anon_sym_LPAREN, - ACTIONS(3544), 1, - anon_sym_LT, - STATE(1575), 1, - sym_parameters, - STATE(2158), 1, - sym_type_parameters, - ACTIONS(3), 2, + [59266] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(986), 1, sym_line_comment, - [58473] = 5, - ACTIONS(3960), 1, - anon_sym_RPAREN, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3966), 1, + ACTIONS(4172), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4174), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59281] = 5, + ACTIONS(4056), 1, anon_sym_PIPE, - STATE(2005), 1, + ACTIONS(4176), 1, + anon_sym_RBRACK, + ACTIONS(4178), 1, + anon_sym_COMMA, + STATE(1956), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58490] = 5, - ACTIONS(3942), 1, - anon_sym_COMMA, - ACTIONS(3944), 1, - anon_sym_GT, - ACTIONS(4123), 1, - anon_sym_EQ, - STATE(1972), 1, - aux_sym_type_parameters_repeat1, + [59298] = 5, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(3909), 1, + anon_sym_LBRACE, + STATE(327), 1, + sym_enum_variant_list, + STATE(2166), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58507] = 5, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3542), 1, + [59315] = 5, + ACTIONS(3588), 1, anon_sym_where, - STATE(274), 1, + ACTIONS(3594), 1, + anon_sym_LBRACE, + STATE(892), 1, sym_field_declaration_list, - STATE(2174), 1, + STATE(2108), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58524] = 4, - ACTIONS(3616), 1, - anon_sym_COLON, - STATE(1828), 1, - sym_trait_bounds, + [59332] = 5, + ACTIONS(3157), 1, + anon_sym_LBRACE, + ACTIONS(4180), 1, + sym_identifier, + ACTIONS(4182), 1, + anon_sym_STAR, + STATE(1804), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4125), 2, - anon_sym_COMMA, - anon_sym_GT, - [58539] = 5, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3572), 1, + [59349] = 5, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(430), 1, + ACTIONS(3588), 1, + anon_sym_where, + STATE(321), 1, sym_declaration_list, - STATE(2076), 1, + STATE(2201), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58556] = 5, - ACTIONS(2340), 1, - anon_sym_LPAREN, - ACTIONS(3183), 1, - anon_sym_LT2, - STATE(875), 1, - sym_parameters, - STATE(1277), 1, - sym_type_arguments, + [59366] = 5, + ACTIONS(2247), 1, + anon_sym_PLUS, + ACTIONS(4184), 1, + anon_sym_COMMA, + ACTIONS(4186), 1, + anon_sym_GT, + STATE(1872), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58573] = 5, - ACTIONS(3406), 1, - anon_sym_PIPE, - ACTIONS(4128), 1, - anon_sym_SEMI, - ACTIONS(4130), 1, - anon_sym_COLON, - ACTIONS(4132), 1, - anon_sym_EQ, + [59383] = 5, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4184), 1, + anon_sym_COMMA, + ACTIONS(4186), 1, + anon_sym_GT, + STATE(1872), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58590] = 4, - ACTIONS(3464), 1, - anon_sym_COLON, - ACTIONS(3466), 1, + [59400] = 4, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3478), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3276), 2, + ACTIONS(3320), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [58605] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, + [59415] = 3, + ACTIONS(4188), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4134), 3, + ACTIONS(3402), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [58618] = 5, - ACTIONS(3821), 1, + [59428] = 5, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4026), 1, + anon_sym_RPAREN, + ACTIONS(4028), 1, anon_sym_COMMA, - ACTIONS(3823), 1, - anon_sym_GT, - ACTIONS(4123), 1, - anon_sym_EQ, - STATE(1827), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58635] = 4, - ACTIONS(3616), 1, - anon_sym_COLON, - STATE(1828), 1, - sym_trait_bounds, + STATE(2022), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4136), 2, - anon_sym_COMMA, - anon_sym_GT, - [58650] = 3, - ACTIONS(3795), 1, + [59445] = 5, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4138), 3, + ACTIONS(4190), 1, anon_sym_RPAREN, + ACTIONS(4192), 1, anon_sym_COMMA, - anon_sym_PIPE, - [58663] = 4, - ACTIONS(3), 1, + STATE(1901), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(928), 1, sym_line_comment, - ACTIONS(4140), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4142), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [58678] = 5, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3598), 1, + [59462] = 5, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(857), 1, + ACTIONS(3588), 1, + anon_sym_where, + STATE(836), 1, sym_declaration_list, - STATE(2028), 1, + STATE(2141), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58695] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, + [59479] = 4, + ACTIONS(3865), 1, + anon_sym_COLON, + ACTIONS(3867), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4144), 3, - anon_sym_RPAREN, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59494] = 5, + ACTIONS(4052), 1, + anon_sym_COLON, + ACTIONS(4194), 1, anon_sym_COMMA, + ACTIONS(4196), 1, anon_sym_PIPE, - [58708] = 4, - ACTIONS(4146), 1, - anon_sym_DQUOTE, - STATE(1715), 1, - aux_sym_string_literal_repeat1, + STATE(1898), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4148), 2, - sym__string_content, - sym_escape_sequence, - [58723] = 3, + [59511] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3171), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4150), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58736] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(928), 1, - sym_line_comment, - ACTIONS(4152), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4154), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [58751] = 3, - ACTIONS(3795), 1, + ACTIONS(3213), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4198), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59524] = 3, + ACTIONS(3871), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4156), 3, + ACTIONS(4200), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [58764] = 5, - ACTIONS(3795), 1, + [59537] = 3, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(3946), 1, - anon_sym_RPAREN, - ACTIONS(3948), 1, - anon_sym_COMMA, - STATE(2002), 1, - aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58781] = 5, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3556), 1, + ACTIONS(4202), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [59550] = 5, + ACTIONS(3586), 1, anon_sym_LBRACE, - STATE(850), 1, + ACTIONS(3588), 1, + anon_sym_where, + STATE(262), 1, sym_field_declaration_list, - STATE(2024), 1, + STATE(2130), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58798] = 5, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3572), 1, - anon_sym_LBRACE, - STATE(303), 1, - sym_declaration_list, - STATE(2188), 1, - sym_where_clause, + [59567] = 5, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3681), 1, + anon_sym_COLON, + STATE(1276), 1, + sym_type_arguments, + STATE(1851), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58815] = 5, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3598), 1, + [59584] = 5, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(926), 1, + ACTIONS(3588), 1, + anon_sym_where, + STATE(433), 1, sym_declaration_list, - STATE(2122), 1, + STATE(2174), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58832] = 5, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3598), 1, - anon_sym_LBRACE, - STATE(845), 1, - sym_declaration_list, - STATE(2098), 1, - sym_where_clause, + [59601] = 5, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4204), 1, + anon_sym_SEMI, + ACTIONS(4206), 1, + anon_sym_COLON, + ACTIONS(4208), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58849] = 5, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3827), 1, + [59618] = 5, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(409), 1, - sym_enum_variant_list, + ACTIONS(3588), 1, + anon_sym_where, + STATE(854), 1, + sym_declaration_list, STATE(2136), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58866] = 5, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3572), 1, + [59635] = 5, + ACTIONS(4121), 1, + anon_sym_LPAREN, + ACTIONS(4123), 1, anon_sym_LBRACE, - STATE(281), 1, - sym_declaration_list, - STATE(2197), 1, - sym_where_clause, + ACTIONS(4125), 1, + anon_sym_LBRACK, + STATE(1074), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58883] = 5, - ACTIONS(3540), 1, - anon_sym_LBRACE, - ACTIONS(3542), 1, - anon_sym_where, - STATE(421), 1, - sym_field_declaration_list, - STATE(2152), 1, - sym_where_clause, + [59652] = 5, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4210), 1, + anon_sym_COMMA, + ACTIONS(4212), 1, + anon_sym_GT, + STATE(2013), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58900] = 5, - ACTIONS(3187), 1, + [59669] = 5, + ACTIONS(4214), 1, anon_sym_LPAREN, - ACTIONS(3544), 1, - anon_sym_LT, - STATE(1574), 1, - sym_parameters, - STATE(2159), 1, - sym_type_parameters, + ACTIONS(4216), 1, + anon_sym_LBRACE, + ACTIONS(4218), 1, + anon_sym_LBRACK, + STATE(1345), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58917] = 5, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(3930), 1, - anon_sym_RPAREN, - ACTIONS(3932), 1, - anon_sym_COMMA, - STATE(1991), 1, - aux_sym_parameters_repeat1, + [59686] = 4, + ACTIONS(4220), 1, + anon_sym_DQUOTE, + STATE(1749), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58934] = 5, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(3598), 1, + ACTIONS(4135), 2, + sym__string_content, + sym_escape_sequence, + [59701] = 5, + ACTIONS(4214), 1, + anon_sym_LPAREN, + ACTIONS(4216), 1, anon_sym_LBRACE, - STATE(903), 1, - sym_declaration_list, - STATE(2103), 1, - sym_where_clause, + ACTIONS(4218), 1, + anon_sym_LBRACK, + STATE(1316), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58951] = 5, - ACTIONS(3795), 1, + [59718] = 5, + ACTIONS(2247), 1, anon_sym_PLUS, - ACTIONS(4158), 1, + ACTIONS(4210), 1, anon_sym_COMMA, - ACTIONS(4160), 1, + ACTIONS(4212), 1, anon_sym_GT, - STATE(1981), 1, + STATE(2013), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58968] = 5, - ACTIONS(2227), 1, + [59735] = 3, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4158), 1, - anon_sym_COMMA, - ACTIONS(4160), 1, - anon_sym_GT, - STATE(1981), 1, - aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58985] = 5, - ACTIONS(4076), 1, - anon_sym_LPAREN, - ACTIONS(4078), 1, - anon_sym_LBRACE, - ACTIONS(4080), 1, - anon_sym_LBRACK, - STATE(1891), 1, - sym_token_tree, + ACTIONS(4222), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [59748] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59002] = 5, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3616), 1, - anon_sym_COLON, - STATE(1277), 1, - sym_type_arguments, - STATE(1999), 1, - sym_trait_bounds, + ACTIONS(4224), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [59761] = 4, + ACTIONS(4226), 1, + anon_sym_DQUOTE, + STATE(1780), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59019] = 5, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4162), 1, + ACTIONS(4228), 2, + sym__string_content, + sym_escape_sequence, + [59776] = 5, + ACTIONS(4050), 1, anon_sym_RPAREN, - ACTIONS(4164), 1, + ACTIONS(4054), 1, anon_sym_COMMA, - STATE(1838), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4056), 1, + anon_sym_PIPE, + STATE(1867), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59036] = 4, - ACTIONS(3), 1, + [59793] = 3, + ACTIONS(4230), 1, + anon_sym_in, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(928), 1, sym_line_comment, - ACTIONS(4166), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4168), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59051] = 4, - ACTIONS(4172), 1, - anon_sym_COMMA, - STATE(1686), 1, - aux_sym_where_clause_repeat1, + ACTIONS(4232), 3, + sym_self, + sym_super, + sym_crate, + [59806] = 4, + ACTIONS(4234), 1, + anon_sym_DQUOTE, + STATE(1749), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4170), 2, - anon_sym_SEMI, + ACTIONS(4135), 2, + sym__string_content, + sym_escape_sequence, + [59821] = 4, + ACTIONS(4236), 1, + anon_sym_DQUOTE, + STATE(1736), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4238), 2, + sym__string_content, + sym_escape_sequence, + [59836] = 5, + ACTIONS(4065), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, anon_sym_LBRACE, - [59066] = 5, - ACTIONS(3795), 1, + ACTIONS(4069), 1, + anon_sym_LBRACK, + STATE(59), 1, + sym_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59853] = 3, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4174), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4240), 2, anon_sym_RPAREN, - ACTIONS(4176), 1, anon_sym_COMMA, - STATE(1818), 1, - aux_sym_tuple_type_repeat1, + [59865] = 4, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + ACTIONS(4242), 1, + anon_sym_GT, + STATE(2046), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59083] = 5, - ACTIONS(3406), 1, - anon_sym_PIPE, - ACTIONS(4178), 1, - anon_sym_SEMI, - ACTIONS(4180), 1, - anon_sym_COLON, - ACTIONS(4182), 1, - anon_sym_EQ, + [59879] = 3, + ACTIONS(4244), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59100] = 4, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(4184), 1, - sym_identifier, - STATE(2318), 1, - sym_type_arguments, + ACTIONS(4246), 2, + anon_sym_default, + anon_sym_union, + [59891] = 4, + ACTIONS(628), 1, + anon_sym_RBRACK, + ACTIONS(2945), 1, + anon_sym_COMMA, + STATE(2002), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59114] = 4, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(4186), 1, - sym_identifier, - STATE(2318), 1, - sym_type_arguments, + [59905] = 4, + ACTIONS(3173), 1, + anon_sym_RBRACE, + ACTIONS(4248), 1, + anon_sym_COMMA, + STATE(1934), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59128] = 4, - ACTIONS(2227), 1, - anon_sym_PLUS, - ACTIONS(4188), 1, - sym_mutable_specifier, - ACTIONS(4190), 1, - sym_self, + [59919] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59142] = 4, - ACTIONS(3946), 1, - anon_sym_RPAREN, - ACTIONS(3948), 1, + ACTIONS(4250), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2002), 1, - aux_sym_parameters_repeat1, + [59929] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59156] = 2, + ACTIONS(2688), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [59939] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4192), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [59166] = 4, - ACTIONS(4194), 1, - sym_identifier, - ACTIONS(4196), 1, - anon_sym_ref, - ACTIONS(4198), 1, - sym_mutable_specifier, + ACTIONS(2696), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [59949] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59180] = 4, - ACTIONS(4200), 1, - anon_sym_RPAREN, - ACTIONS(4202), 1, + ACTIONS(4252), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1767), 1, - aux_sym_meta_arguments_repeat1, + [59959] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59194] = 4, - ACTIONS(4205), 1, + ACTIONS(2660), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [59969] = 4, + ACTIONS(4254), 1, sym_identifier, - ACTIONS(4207), 1, + ACTIONS(4256), 1, anon_sym_ref, - ACTIONS(4209), 1, + ACTIONS(4258), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59208] = 4, - ACTIONS(3268), 1, - anon_sym_COLON_COLON, - ACTIONS(3284), 1, + [59983] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2742), 3, + anon_sym_LBRACE, anon_sym_COLON, - STATE(1999), 1, - sym_trait_bounds, + anon_sym_where, + [59993] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2750), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [60003] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59222] = 4, - ACTIONS(4211), 1, + ACTIONS(4260), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [60013] = 4, + ACTIONS(4262), 1, sym_identifier, - ACTIONS(4213), 1, + ACTIONS(4264), 1, anon_sym_ref, - ACTIONS(4215), 1, + ACTIONS(4266), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59236] = 2, + [60027] = 4, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(4268), 1, + sym_identifier, + STATE(2364), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4217), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59246] = 4, - ACTIONS(3284), 1, - anon_sym_COLON, - ACTIONS(3292), 1, - anon_sym_COLON_COLON, - STATE(1999), 1, - sym_trait_bounds, + [60041] = 4, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(4268), 1, + sym_identifier, + STATE(2322), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59260] = 4, - ACTIONS(3544), 1, - anon_sym_LT, - ACTIONS(4219), 1, - anon_sym_EQ, - STATE(2393), 1, - sym_type_parameters, + [60055] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59274] = 4, - ACTIONS(4221), 1, + ACTIONS(4270), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4223), 1, anon_sym_COMMA, - STATE(1993), 1, - aux_sym_enum_variant_list_repeat2, + [60065] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59288] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, + ACTIONS(2716), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [60075] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4225), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [59300] = 4, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(4227), 1, - anon_sym_SEMI, - STATE(278), 1, - sym_block, + ACTIONS(4272), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60085] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59314] = 4, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4229), 1, + ACTIONS(4274), 3, anon_sym_SEMI, - ACTIONS(4231), 1, - anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + [60095] = 4, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(4276), 1, + sym_identifier, + STATE(2322), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59328] = 4, - ACTIONS(628), 1, - anon_sym_RBRACK, - ACTIONS(4233), 1, - anon_sym_COMMA, - STATE(1779), 1, - aux_sym_array_expression_repeat1, + [60109] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59342] = 4, - ACTIONS(3001), 1, - anon_sym_RBRACK, - ACTIONS(4235), 1, + ACTIONS(4278), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1779), 1, - aux_sym_array_expression_repeat1, + [60119] = 4, + ACTIONS(4280), 1, + anon_sym_for, + ACTIONS(4282), 1, + anon_sym_loop, + ACTIONS(4284), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59356] = 4, - ACTIONS(3544), 1, + [60133] = 4, + ACTIONS(3590), 1, anon_sym_LT, - ACTIONS(4238), 1, + ACTIONS(4286), 1, anon_sym_EQ, - STATE(2403), 1, + STATE(2448), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59370] = 4, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4240), 1, - anon_sym_SEMI, - ACTIONS(4242), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59384] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, + [60147] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4244), 2, + ACTIONS(4288), 3, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [59396] = 4, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(4246), 1, - anon_sym_SEMI, - STATE(299), 1, - sym_block, + [60157] = 4, + ACTIONS(2370), 1, + anon_sym_LT2, + ACTIONS(4290), 1, + sym_identifier, + STATE(747), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59410] = 3, - ACTIONS(3966), 1, - anon_sym_PIPE, + [60171] = 4, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3855), 1, + sym_identifier, + STATE(2322), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4248), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [59422] = 4, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(4250), 1, - anon_sym_SEMI, - STATE(416), 1, - sym_block, + [60185] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59436] = 4, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(3795), 1, - anon_sym_PLUS, - STATE(1048), 1, - sym_block, + ACTIONS(4292), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [60195] = 4, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(4276), 1, + sym_identifier, + STATE(2364), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59450] = 2, + [60209] = 4, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3855), 1, + sym_identifier, + STATE(2364), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4252), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59460] = 3, - ACTIONS(2995), 1, - anon_sym_COLON_COLON, + [60223] = 4, + ACTIONS(4294), 1, + sym_identifier, + ACTIONS(4296), 1, + anon_sym_await, + ACTIONS(4298), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4254), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59472] = 3, - ACTIONS(3795), 1, + [60237] = 4, + ACTIONS(3871), 1, anon_sym_PLUS, + ACTIONS(4300), 1, + anon_sym_SEMI, + ACTIONS(4302), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4150), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59484] = 3, - ACTIONS(3825), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3181), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59496] = 3, - ACTIONS(3506), 1, - anon_sym_COLON_COLON, + [60251] = 3, + ACTIONS(4052), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3276), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59508] = 3, - ACTIONS(3966), 1, + ACTIONS(4304), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [60263] = 4, + ACTIONS(4304), 1, anon_sym_PIPE, + ACTIONS(4306), 1, + anon_sym_COMMA, + STATE(1825), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4256), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [59520] = 4, - ACTIONS(3799), 1, + [60277] = 4, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(4258), 1, - anon_sym_SEMI, - STATE(460), 1, + ACTIONS(3871), 1, + anon_sym_PLUS, + STATE(1006), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59534] = 4, - ACTIONS(3584), 1, - anon_sym_GT, - ACTIONS(4260), 1, + [60291] = 4, + ACTIONS(3606), 1, + anon_sym_RBRACE, + ACTIONS(4309), 1, anon_sym_COMMA, - STATE(1974), 1, - aux_sym_type_parameters_repeat1, + STATE(1944), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59548] = 4, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(4262), 1, - anon_sym_SEMI, - STATE(338), 1, - sym_block, + [60305] = 3, + ACTIONS(4311), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59562] = 2, + ACTIONS(4313), 2, + anon_sym_default, + anon_sym_union, + [60317] = 3, + ACTIONS(4317), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4264), 3, - anon_sym_SEMI, + ACTIONS(4315), 2, anon_sym_RBRACE, anon_sym_COMMA, - [59572] = 4, - ACTIONS(2215), 1, - anon_sym_RPAREN, - ACTIONS(4266), 1, + [60329] = 4, + ACTIONS(3935), 1, anon_sym_COMMA, - STATE(1716), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(3937), 1, + anon_sym_GT, + STATE(1892), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59586] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, + [60343] = 3, + ACTIONS(3933), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4268), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59598] = 4, - ACTIONS(4270), 1, - anon_sym_for, - ACTIONS(4272), 1, - anon_sym_loop, - ACTIONS(4274), 1, - anon_sym_while, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60355] = 4, + ACTIONS(4319), 1, + sym_identifier, + ACTIONS(4321), 1, + anon_sym_ref, + ACTIONS(4323), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59612] = 4, - ACTIONS(2211), 1, - anon_sym_RBRACK, - ACTIONS(4276), 1, - anon_sym_COMMA, - STATE(1716), 1, - aux_sym_tuple_pattern_repeat1, + [60369] = 4, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(4325), 1, + anon_sym_SEMI, + STATE(2373), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59626] = 4, - ACTIONS(3572), 1, + [60383] = 4, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(4278), 1, + ACTIONS(4327), 1, anon_sym_SEMI, - STATE(266), 1, - sym_declaration_list, + STATE(338), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60397] = 4, + ACTIONS(4329), 1, + anon_sym_for, + ACTIONS(4331), 1, + anon_sym_loop, + ACTIONS(4333), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59640] = 3, - ACTIONS(3845), 1, + [60411] = 3, + ACTIONS(3915), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, + ACTIONS(3223), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59652] = 3, - ACTIONS(3560), 1, - anon_sym_COLON_COLON, + [60423] = 4, + ACTIONS(371), 1, + anon_sym_RPAREN, + ACTIONS(2955), 1, + anon_sym_COMMA, + STATE(1965), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3276), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59664] = 4, - ACTIONS(2390), 1, + [60437] = 4, + ACTIONS(2422), 1, anon_sym_LBRACE, - ACTIONS(4280), 1, + ACTIONS(4335), 1, anon_sym_COLON_COLON, - STATE(965), 1, + STATE(1082), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59678] = 4, + [60451] = 4, + ACTIONS(4337), 1, + sym_identifier, + ACTIONS(4339), 1, + anon_sym_ref, + ACTIONS(4341), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60465] = 4, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(4343), 1, + anon_sym_SEMI, + STATE(2306), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60479] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4345), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60491] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4347), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [60501] = 4, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(4282), 1, + ACTIONS(4349), 1, anon_sym_move, - STATE(972), 1, + STATE(1071), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59692] = 2, + [60515] = 4, + ACTIONS(4351), 1, + anon_sym_RBRACE, + ACTIONS(4353), 1, + anon_sym_COMMA, + STATE(1921), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4284), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [59702] = 4, - ACTIONS(3799), 1, + [60529] = 4, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(4286), 1, + ACTIONS(4355), 1, anon_sym_SEMI, STATE(343), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59716] = 2, + [60543] = 4, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4357), 1, + anon_sym_SEMI, + ACTIONS(4359), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4288), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59726] = 3, - ACTIONS(3274), 1, - anon_sym_COLON_COLON, + [60557] = 4, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(4361), 1, + anon_sym_SEMI, + STATE(2405), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3276), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59738] = 3, - ACTIONS(4292), 1, - anon_sym_COLON, + [60571] = 3, + ACTIONS(4365), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4290), 2, + ACTIONS(4363), 2, anon_sym_RBRACE, anon_sym_COMMA, - [59750] = 4, - ACTIONS(4294), 1, + [60583] = 4, + ACTIONS(3608), 1, anon_sym_RBRACE, - ACTIONS(4296), 1, - anon_sym_COMMA, - STATE(1998), 1, - aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59764] = 4, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(4298), 1, - anon_sym_SEMI, - STATE(316), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59778] = 4, - ACTIONS(2943), 1, - anon_sym_RPAREN, - ACTIONS(4300), 1, + ACTIONS(4367), 1, anon_sym_COMMA, - STATE(1767), 1, - aux_sym_meta_arguments_repeat1, + STATE(1979), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59792] = 4, - ACTIONS(4092), 1, + [60597] = 4, + ACTIONS(3608), 1, + anon_sym_RBRACE, + ACTIONS(4367), 1, anon_sym_COMMA, - ACTIONS(4094), 1, - anon_sym_GT, - STATE(1994), 1, - aux_sym_type_arguments_repeat1, + STATE(1985), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59806] = 2, + [60611] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4302), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4369), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - [59816] = 2, + [60621] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4304), 3, + ACTIONS(4371), 3, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [59826] = 4, - ACTIONS(4306), 1, - anon_sym_RBRACE, - ACTIONS(4308), 1, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(1992), 1, - aux_sym_struct_pattern_repeat1, + [60631] = 4, + ACTIONS(3845), 1, + anon_sym_LBRACE, + ACTIONS(4373), 1, + anon_sym_SEMI, + STATE(350), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59840] = 4, - ACTIONS(2287), 1, + [60645] = 4, + ACTIONS(778), 1, anon_sym_RPAREN, - ACTIONS(4310), 1, + ACTIONS(4048), 1, anon_sym_COMMA, - STATE(1988), 1, - aux_sym_tuple_type_repeat1, + STATE(2008), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59854] = 4, - ACTIONS(4312), 1, - anon_sym_RBRACE, - ACTIONS(4314), 1, - anon_sym_COMMA, - STATE(1936), 1, - aux_sym_field_initializer_list_repeat1, + [60659] = 4, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4375), 1, + anon_sym_EQ_GT, + ACTIONS(4377), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59868] = 3, - ACTIONS(4318), 1, - anon_sym_COLON, + [60673] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4316), 2, - anon_sym_RBRACE, + ACTIONS(4379), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [59880] = 3, - ACTIONS(3863), 1, - anon_sym_COLON_COLON, + [60683] = 4, + ACTIONS(778), 1, + anon_sym_RPAREN, + ACTIONS(4048), 1, + anon_sym_COMMA, + STATE(2011), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59892] = 4, - ACTIONS(4320), 1, - anon_sym_COMMA, - ACTIONS(4322), 1, - anon_sym_GT, - STATE(1983), 1, - aux_sym_for_lifetimes_repeat1, + [60697] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59906] = 4, - ACTIONS(4016), 1, + ACTIONS(4381), 2, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(4324), 1, - anon_sym_PIPE, - STATE(1933), 1, - aux_sym_closure_parameters_repeat1, + [60709] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59920] = 4, - ACTIONS(3183), 1, + ACTIONS(4383), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [60719] = 4, + ACTIONS(2370), 1, anon_sym_LT2, - ACTIONS(3484), 1, - anon_sym_LBRACE, - STATE(1277), 1, + ACTIONS(4290), 1, + sym_identifier, + STATE(763), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59934] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4326), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [59944] = 4, - ACTIONS(3799), 1, + [60733] = 4, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(4328), 1, + ACTIONS(4385), 1, anon_sym_SEMI, - STATE(328), 1, + STATE(359), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59958] = 4, - ACTIONS(3574), 1, - anon_sym_GT, - ACTIONS(4330), 1, + [60747] = 4, + ACTIONS(4387), 1, + anon_sym_RBRACE, + ACTIONS(4389), 1, anon_sym_COMMA, - STATE(1974), 1, - aux_sym_type_parameters_repeat1, + STATE(1795), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59972] = 2, + [60761] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4332), 3, + ACTIONS(4391), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60771] = 4, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4393), 1, + anon_sym_SEMI, + ACTIONS(4395), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [59982] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4334), 3, + [60785] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4397), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [59992] = 4, - ACTIONS(3602), 1, - anon_sym_RBRACE, - ACTIONS(4336), 1, - anon_sym_COMMA, - STATE(1831), 1, - aux_sym_field_declaration_list_repeat1, + [60795] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60006] = 4, - ACTIONS(4338), 1, + ACTIONS(4399), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4340), 1, anon_sym_COMMA, - STATE(1831), 1, - aux_sym_field_declaration_list_repeat1, + [60805] = 4, + ACTIONS(2235), 1, + anon_sym_RPAREN, + ACTIONS(4401), 1, + anon_sym_COMMA, + STATE(1693), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60020] = 4, - ACTIONS(3799), 1, + [60819] = 4, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(4343), 1, + ACTIONS(4403), 1, anon_sym_SEMI, - STATE(378), 1, + STATE(366), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60034] = 4, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4345), 1, - anon_sym_SEMI, - ACTIONS(4347), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60048] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, + [60833] = 3, + ACTIONS(4407), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4349), 2, + ACTIONS(4405), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [60060] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, + [60845] = 3, + ACTIONS(3318), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4351), 2, + ACTIONS(3320), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60857] = 4, + ACTIONS(3767), 1, anon_sym_RBRACE, + ACTIONS(4409), 1, anon_sym_COMMA, - [60072] = 4, - ACTIONS(4353), 1, - anon_sym_RPAREN, - ACTIONS(4355), 1, - anon_sym_COMMA, - STATE(1836), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60086] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, + STATE(2021), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4358), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60098] = 4, - ACTIONS(4360), 1, - anon_sym_RPAREN, - ACTIONS(4362), 1, + [60871] = 4, + ACTIONS(904), 1, + anon_sym_GT, + ACTIONS(4411), 1, anon_sym_COMMA, - STATE(1836), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2032), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60112] = 4, - ACTIONS(3966), 1, - anon_sym_PIPE, - ACTIONS(4364), 1, - anon_sym_EQ_GT, - ACTIONS(4366), 1, - anon_sym_if, + [60885] = 4, + ACTIONS(4413), 1, + anon_sym_for, + ACTIONS(4415), 1, + anon_sym_loop, + ACTIONS(4417), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60126] = 4, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4368), 1, - anon_sym_SEMI, - ACTIONS(4370), 1, - anon_sym_EQ, + [60899] = 4, + ACTIONS(3779), 1, + anon_sym_RBRACE, + ACTIONS(4419), 1, + anon_sym_COMMA, + STATE(2021), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60140] = 4, - ACTIONS(3572), 1, - anon_sym_LBRACE, - ACTIONS(4372), 1, - anon_sym_SEMI, - STATE(352), 1, - sym_declaration_list, + [60913] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60154] = 4, - ACTIONS(3019), 1, + ACTIONS(4421), 2, anon_sym_RPAREN, - ACTIONS(4374), 1, anon_sym_COMMA, - STATE(1842), 1, - aux_sym_arguments_repeat1, + [60925] = 4, + ACTIONS(644), 1, + anon_sym_LBRACE, + ACTIONS(4423), 1, + anon_sym_move, + STATE(231), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60168] = 4, - ACTIONS(4377), 1, + [60939] = 4, + ACTIONS(4421), 1, + anon_sym_RPAREN, + ACTIONS(4425), 1, anon_sym_COMMA, - ACTIONS(4380), 1, - anon_sym_GT, - STATE(1843), 1, - aux_sym_for_lifetimes_repeat1, + STATE(1877), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60182] = 4, - ACTIONS(2103), 1, + [60953] = 4, + ACTIONS(2123), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4428), 1, anon_sym_GT, - STATE(2184), 1, + STATE(2046), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60196] = 4, - ACTIONS(4384), 1, - anon_sym_for, - ACTIONS(4386), 1, - anon_sym_loop, - ACTIONS(4388), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60210] = 4, - ACTIONS(4390), 1, - anon_sym_COMMA, - ACTIONS(4393), 1, + [60967] = 4, + ACTIONS(4428), 1, anon_sym_GT, - STATE(1846), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4430), 1, + anon_sym_COMMA, + STATE(2035), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60224] = 4, - ACTIONS(640), 1, - anon_sym_LBRACE, - ACTIONS(4395), 1, - anon_sym_move, - STATE(226), 1, - sym_block, + [60981] = 4, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4432), 1, + anon_sym_SEMI, + ACTIONS(4434), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60238] = 3, - ACTIONS(2227), 1, + [60995] = 3, + ACTIONS(3871), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4393), 2, + ACTIONS(4436), 2, anon_sym_COMMA, anon_sym_GT, - [60250] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, + [61007] = 3, + ACTIONS(3941), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4393), 2, - anon_sym_COMMA, - anon_sym_GT, - [60262] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61019] = 3, + ACTIONS(4085), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4397), 2, + ACTIONS(4116), 2, anon_sym_COMMA, anon_sym_GT, - [60274] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4399), 3, + [61031] = 4, + ACTIONS(3845), 1, + anon_sym_LBRACE, + ACTIONS(4438), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [60284] = 4, - ACTIONS(4401), 1, - anon_sym_RBRACE, - ACTIONS(4403), 1, - anon_sym_COMMA, - STATE(1852), 1, - aux_sym_struct_pattern_repeat1, + STATE(378), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60298] = 4, - ACTIONS(3123), 1, - anon_sym_LBRACE, - ACTIONS(4406), 1, - sym_identifier, - STATE(1796), 1, - sym_use_list, + [61045] = 4, + ACTIONS(4116), 1, + anon_sym_GT, + ACTIONS(4440), 1, + anon_sym_COMMA, + STATE(1885), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60312] = 3, - ACTIONS(3811), 1, - anon_sym_COLON_COLON, + [61059] = 4, + ACTIONS(4443), 1, + anon_sym_RPAREN, + ACTIONS(4445), 1, + anon_sym_COMMA, + STATE(1886), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60324] = 3, - ACTIONS(3466), 1, + [61073] = 4, + ACTIONS(2422), 1, + anon_sym_LBRACE, + ACTIONS(4448), 1, anon_sym_COLON_COLON, + STATE(1082), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3276), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60336] = 4, - ACTIONS(3795), 1, + [61087] = 3, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4408), 1, - anon_sym_SEMI, - ACTIONS(4410), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60350] = 3, - ACTIONS(3966), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4412), 2, - anon_sym_RBRACE, + ACTIONS(4450), 2, anon_sym_COMMA, - [60362] = 3, - ACTIONS(4416), 1, - anon_sym_COLON, + anon_sym_GT, + [61099] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4414), 2, - anon_sym_RBRACE, + ACTIONS(4452), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [60374] = 4, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(4418), 1, - anon_sym_SEMI, - STATE(452), 1, - sym_block, + [61109] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60388] = 4, - ACTIONS(2390), 1, - anon_sym_LBRACE, - ACTIONS(4420), 1, + ACTIONS(4454), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [61119] = 3, + ACTIONS(3867), 1, anon_sym_COLON_COLON, - STATE(965), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60402] = 4, - ACTIONS(776), 1, - anon_sym_RPAREN, - ACTIONS(4422), 1, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61131] = 4, + ACTIONS(3640), 1, + anon_sym_GT, + ACTIONS(4456), 1, anon_sym_COMMA, - STATE(1867), 1, - aux_sym_parameters_repeat1, + STATE(1885), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60416] = 4, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4424), 1, - anon_sym_as, - ACTIONS(4426), 1, + [61145] = 4, + ACTIONS(3628), 1, anon_sym_GT, + ACTIONS(4458), 1, + anon_sym_COMMA, + STATE(1885), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60430] = 3, - ACTIONS(2995), 1, - anon_sym_COLON_COLON, + [61159] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3956), 2, - anon_sym_RPAREN, + ACTIONS(4460), 3, + anon_sym_EQ, anon_sym_COMMA, - [60442] = 4, - ACTIONS(3183), 1, + anon_sym_GT, + [61169] = 4, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(4428), 1, + ACTIONS(4462), 1, sym_identifier, - STATE(2318), 1, + STATE(2364), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60456] = 4, - ACTIONS(3183), 1, + [61183] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4464), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61195] = 4, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(4428), 1, + ACTIONS(4462), 1, sym_identifier, - STATE(2319), 1, + STATE(2322), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60470] = 4, - ACTIONS(4016), 1, + [61209] = 4, + ACTIONS(4194), 1, anon_sym_COMMA, - ACTIONS(4430), 1, + ACTIONS(4466), 1, anon_sym_PIPE, - STATE(1823), 1, + STATE(1825), 1, aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60484] = 4, - ACTIONS(4026), 1, - anon_sym_RPAREN, - ACTIONS(4432), 1, - anon_sym_COMMA, - STATE(1867), 1, - aux_sym_parameters_repeat1, + [61223] = 4, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(3538), 1, + anon_sym_LBRACE, + STATE(1276), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60498] = 4, - ACTIONS(4435), 1, - anon_sym_RBRACE, - ACTIONS(4437), 1, + [61237] = 4, + ACTIONS(3578), 1, + anon_sym_LBRACE, + ACTIONS(4468), 1, + anon_sym_SEMI, + STATE(834), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61251] = 4, + ACTIONS(4470), 1, + anon_sym_RPAREN, + ACTIONS(4472), 1, anon_sym_COMMA, - STATE(1951), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1997), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60512] = 3, - ACTIONS(3795), 1, + [61265] = 3, + ACTIONS(3871), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4026), 2, + ACTIONS(4474), 2, anon_sym_RPAREN, anon_sym_COMMA, - [60524] = 4, - ACTIONS(3598), 1, - anon_sym_LBRACE, - ACTIONS(4439), 1, + [61277] = 4, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4476), 1, anon_sym_SEMI, - STATE(902), 1, - sym_declaration_list, + ACTIONS(4478), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60538] = 2, + [61291] = 3, + ACTIONS(4482), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4032), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4480), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [60548] = 4, - ACTIONS(2348), 1, - anon_sym_LT2, - ACTIONS(4441), 1, - sym_identifier, - STATE(741), 1, - sym_type_arguments, + [61303] = 4, + ACTIONS(4484), 1, + anon_sym_RBRACE, + ACTIONS(4486), 1, + anon_sym_COMMA, + STATE(1827), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60562] = 4, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(4443), 1, - anon_sym_SEMI, - STATE(2383), 1, - sym_where_clause, + [61317] = 4, + ACTIONS(4488), 1, + anon_sym_COMMA, + ACTIONS(4490), 1, + anon_sym_GT, + STATE(1879), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60576] = 4, - ACTIONS(3183), 1, + [61331] = 4, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(4445), 1, + ACTIONS(4492), 1, sym_identifier, - STATE(2318), 1, + STATE(2364), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60590] = 4, - ACTIONS(3183), 1, + [61345] = 4, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(4445), 1, + ACTIONS(4492), 1, sym_identifier, - STATE(2319), 1, + STATE(2322), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60604] = 4, - ACTIONS(4447), 1, - sym_identifier, - ACTIONS(4449), 1, - anon_sym_ref, - ACTIONS(4451), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60618] = 4, - ACTIONS(4453), 1, - anon_sym_RBRACE, - ACTIONS(4455), 1, - anon_sym_COMMA, - STATE(1895), 1, - aux_sym_use_list_repeat1, + [61359] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60632] = 4, - ACTIONS(3600), 1, + ACTIONS(4494), 2, anon_sym_RBRACE, - ACTIONS(4457), 1, anon_sym_COMMA, - STATE(1884), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60646] = 2, + [61371] = 4, + ACTIONS(3374), 1, + anon_sym_COLON_COLON, + ACTIONS(3735), 1, + anon_sym_BANG, + ACTIONS(4496), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4459), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [61385] = 4, + ACTIONS(2315), 1, + anon_sym_RPAREN, + ACTIONS(4498), 1, anon_sym_COMMA, - [60656] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2822), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [60666] = 2, + STATE(1877), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2558), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [60676] = 4, - ACTIONS(2348), 1, + [61399] = 4, + ACTIONS(2370), 1, anon_sym_LT2, - ACTIONS(4461), 1, + ACTIONS(4500), 1, sym_identifier, - STATE(1189), 1, + STATE(1209), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60690] = 3, - ACTIONS(4465), 1, + [61413] = 4, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4502), 1, + anon_sym_SEMI, + ACTIONS(4504), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4463), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [60702] = 4, - ACTIONS(4467), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, + [61427] = 4, + ACTIONS(4194), 1, anon_sym_COMMA, - STATE(1884), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(4506), 1, + anon_sym_PIPE, + STATE(1898), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60716] = 4, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(4472), 1, - sym_identifier, - STATE(2318), 1, - sym_type_arguments, + [61441] = 4, + ACTIONS(3845), 1, + anon_sym_LBRACE, + ACTIONS(4508), 1, + anon_sym_SEMI, + STATE(392), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60730] = 4, - ACTIONS(3183), 1, + [61455] = 4, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(4472), 1, + ACTIONS(4510), 1, sym_identifier, - STATE(2319), 1, + STATE(2364), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60744] = 4, - ACTIONS(4474), 1, - sym_identifier, - ACTIONS(4476), 1, - anon_sym_await, - ACTIONS(4478), 1, - sym_integer_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60758] = 4, - ACTIONS(2348), 1, + [61469] = 4, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(4461), 1, + ACTIONS(4510), 1, sym_identifier, - STATE(1222), 1, + STATE(2322), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60772] = 4, - ACTIONS(2348), 1, + [61483] = 4, + ACTIONS(2370), 1, anon_sym_LT2, - ACTIONS(4441), 1, + ACTIONS(4500), 1, sym_identifier, - STATE(774), 1, + STATE(1230), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60786] = 4, - ACTIONS(4480), 1, - anon_sym_for, - ACTIONS(4482), 1, - anon_sym_loop, - ACTIONS(4484), 1, - anon_sym_while, + [61497] = 4, + ACTIONS(4512), 1, + anon_sym_RPAREN, + ACTIONS(4514), 1, + anon_sym_COMMA, + STATE(1997), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60800] = 2, + [61511] = 3, + ACTIONS(2995), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4486), 3, - anon_sym_SEMI, + ACTIONS(4516), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [61523] = 4, + ACTIONS(3622), 1, anon_sym_RBRACE, - [60810] = 4, - ACTIONS(638), 1, - anon_sym_RBRACK, - ACTIONS(2913), 1, + ACTIONS(4518), 1, anon_sym_COMMA, - STATE(1779), 1, - aux_sym_array_expression_repeat1, + STATE(1993), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61537] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60824] = 4, - ACTIONS(379), 1, + ACTIONS(4127), 2, anon_sym_RPAREN, - ACTIONS(4488), 1, anon_sym_COMMA, - STATE(1842), 1, - aux_sym_arguments_repeat1, + [61549] = 4, + ACTIONS(3622), 1, + anon_sym_RBRACE, + ACTIONS(4518), 1, + anon_sym_COMMA, + STATE(1988), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60838] = 2, + [61563] = 4, + ACTIONS(3564), 1, + anon_sym_LBRACE, + ACTIONS(4520), 1, + anon_sym_SEMI, + STATE(259), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4490), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [61577] = 4, + ACTIONS(4184), 1, anon_sym_COMMA, - [60848] = 4, - ACTIONS(3141), 1, + ACTIONS(4186), 1, + anon_sym_GT, + STATE(1872), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61591] = 4, + ACTIONS(4522), 1, anon_sym_RBRACE, - ACTIONS(4492), 1, + ACTIONS(4524), 1, anon_sym_COMMA, - STATE(1935), 1, - aux_sym_use_list_repeat1, + STATE(1871), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60862] = 2, + [61605] = 3, + ACTIONS(4528), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4494), 3, - anon_sym_SEMI, + ACTIONS(4526), 2, anon_sym_RBRACE, anon_sym_COMMA, - [60872] = 4, - ACTIONS(4496), 1, - anon_sym_RPAREN, - ACTIONS(4498), 1, + [61617] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4530), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [61627] = 4, + ACTIONS(3590), 1, + anon_sym_LT, + ACTIONS(4532), 1, + anon_sym_EQ, + STATE(2389), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61641] = 4, + ACTIONS(4534), 1, + anon_sym_RBRACE, + ACTIONS(4536), 1, anon_sym_COMMA, - STATE(1836), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(1874), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60886] = 4, - ACTIONS(3183), 1, + [61655] = 4, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(4500), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(2319), 1, + STATE(2364), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60900] = 4, - ACTIONS(3183), 1, + [61669] = 4, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(4184), 1, + ACTIONS(4540), 1, sym_identifier, - STATE(2319), 1, + STATE(2322), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60914] = 4, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(4502), 1, - anon_sym_SEMI, - STATE(2328), 1, - sym_where_clause, + [61683] = 4, + ACTIONS(3211), 1, + anon_sym_LT2, + ACTIONS(4538), 1, + sym_identifier, + STATE(2322), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60928] = 4, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4504), 1, - anon_sym_SEMI, - ACTIONS(4506), 1, - anon_sym_EQ, + [61697] = 4, + ACTIONS(4542), 1, + anon_sym_RBRACE, + ACTIONS(4544), 1, + anon_sym_COMMA, + STATE(1934), 1, + aux_sym_use_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61711] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60942] = 4, - ACTIONS(3183), 1, + ACTIONS(4547), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [61721] = 4, + ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(4500), 1, + ACTIONS(4540), 1, sym_identifier, - STATE(2318), 1, + STATE(2364), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60956] = 2, + [61735] = 4, + ACTIONS(4549), 1, + anon_sym_RPAREN, + ACTIONS(4551), 1, + anon_sym_COMMA, + STATE(1962), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4508), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [60966] = 4, - ACTIONS(3795), 1, + [61749] = 4, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4510), 1, + ACTIONS(4553), 1, anon_sym_SEMI, - ACTIONS(4512), 1, + ACTIONS(4555), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60980] = 2, + [61763] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4514), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4557), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [60990] = 4, - ACTIONS(3942), 1, + [61773] = 4, + ACTIONS(4012), 1, anon_sym_COMMA, - ACTIONS(3944), 1, + ACTIONS(4014), 1, anon_sym_GT, - STATE(1972), 1, + STATE(2009), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61004] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4516), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61014] = 2, + [61787] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4518), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4559), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [61024] = 4, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(4520), 1, - anon_sym_SEMI, - STATE(251), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61038] = 4, - ACTIONS(3793), 1, + [61797] = 4, + ACTIONS(3564), 1, anon_sym_LBRACE, - ACTIONS(4522), 1, + ACTIONS(4561), 1, anon_sym_SEMI, - STATE(783), 1, - sym_block, + STATE(362), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61052] = 2, + [61811] = 4, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4563), 1, + anon_sym_as, + ACTIONS(4565), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4524), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61062] = 4, - ACTIONS(4526), 1, + [61825] = 4, + ACTIONS(4567), 1, anon_sym_RBRACE, - ACTIONS(4528), 1, + ACTIONS(4569), 1, anon_sym_COMMA, - STATE(1912), 1, + STATE(1944), 1, aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61076] = 4, - ACTIONS(3793), 1, + [61839] = 4, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(4531), 1, + ACTIONS(4572), 1, anon_sym_SEMI, - STATE(921), 1, + STATE(440), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61090] = 2, + [61853] = 4, + ACTIONS(3851), 1, + anon_sym_LBRACE, + ACTIONS(4574), 1, + anon_sym_SEMI, + STATE(736), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4533), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61100] = 4, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3855), 1, - sym_identifier, - STATE(2319), 1, - sym_type_arguments, + [61867] = 4, + ACTIONS(3845), 1, + anon_sym_LBRACE, + ACTIONS(4576), 1, + anon_sym_SEMI, + STATE(398), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61114] = 4, - ACTIONS(3793), 1, - anon_sym_LBRACE, - ACTIONS(4535), 1, + [61881] = 4, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4578), 1, anon_sym_SEMI, - STATE(794), 1, - sym_block, + ACTIONS(4580), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61128] = 4, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(4537), 1, - sym_identifier, - STATE(2319), 1, - sym_type_arguments, + [61895] = 4, + ACTIONS(3851), 1, + anon_sym_LBRACE, + ACTIONS(4582), 1, + anon_sym_SEMI, + STATE(739), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61142] = 2, + [61909] = 4, + ACTIONS(3851), 1, + anon_sym_LBRACE, + ACTIONS(4584), 1, + anon_sym_SEMI, + STATE(743), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4539), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61152] = 4, - ACTIONS(3542), 1, + [61923] = 4, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(4541), 1, + ACTIONS(4586), 1, anon_sym_SEMI, - STATE(2422), 1, + STATE(2378), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61166] = 2, + [61937] = 4, + ACTIONS(3851), 1, + anon_sym_LBRACE, + ACTIONS(4588), 1, + anon_sym_SEMI, + STATE(750), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4543), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61176] = 4, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(3855), 1, - sym_identifier, - STATE(2318), 1, - sym_type_arguments, + [61951] = 4, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(4590), 1, + anon_sym_SEMI, + STATE(2471), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61190] = 4, - ACTIONS(3793), 1, - anon_sym_LBRACE, - ACTIONS(4545), 1, + [61965] = 4, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4592), 1, anon_sym_SEMI, - STATE(807), 1, - sym_block, + ACTIONS(4594), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61204] = 4, - ACTIONS(3799), 1, + [61979] = 4, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4547), 1, + ACTIONS(4596), 1, anon_sym_SEMI, - STATE(455), 1, + STATE(755), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61218] = 4, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4549), 1, - anon_sym_SEMI, - ACTIONS(4551), 1, - anon_sym_EQ, + [61993] = 4, + ACTIONS(2245), 1, + anon_sym_RBRACK, + ACTIONS(4598), 1, + anon_sym_COMMA, + STATE(1693), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61232] = 4, - ACTIONS(3793), 1, + [62007] = 4, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(4553), 1, + ACTIONS(4600), 1, anon_sym_SEMI, - STATE(829), 1, + STATE(413), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61246] = 2, + [62021] = 4, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(3871), 1, + anon_sym_PLUS, + STATE(1050), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4555), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61256] = 4, - ACTIONS(4557), 1, + [62035] = 4, + ACTIONS(2233), 1, anon_sym_RPAREN, - ACTIONS(4559), 1, + ACTIONS(4602), 1, anon_sym_COMMA, - STATE(1813), 1, - aux_sym_meta_arguments_repeat1, + STATE(1693), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61270] = 4, - ACTIONS(3793), 1, + [62049] = 4, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4561), 1, + ACTIONS(4604), 1, anon_sym_SEMI, - STATE(882), 1, + STATE(766), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61284] = 3, - ACTIONS(3962), 1, - anon_sym_COLON, + [62063] = 4, + ACTIONS(3851), 1, + anon_sym_LBRACE, + ACTIONS(4606), 1, + anon_sym_SEMI, + STATE(771), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4563), 2, + [62077] = 4, + ACTIONS(2959), 1, + anon_sym_RPAREN, + ACTIONS(4608), 1, anon_sym_COMMA, - anon_sym_PIPE, - [61296] = 4, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(4537), 1, - sym_identifier, - STATE(2318), 1, - sym_type_arguments, + STATE(1886), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61310] = 2, + [62091] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4565), 3, + ACTIONS(4610), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [61320] = 4, - ACTIONS(3793), 1, + [62101] = 4, + ACTIONS(3845), 1, anon_sym_LBRACE, - ACTIONS(4567), 1, + ACTIONS(4612), 1, anon_sym_SEMI, - STATE(893), 1, + STATE(297), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61334] = 4, - ACTIONS(4563), 1, - anon_sym_PIPE, - ACTIONS(4569), 1, + [62115] = 4, + ACTIONS(3029), 1, + anon_sym_RPAREN, + ACTIONS(4614), 1, anon_sym_COMMA, - STATE(1933), 1, - aux_sym_closure_parameters_repeat1, + STATE(1965), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61348] = 4, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(3795), 1, - anon_sym_PLUS, - STATE(984), 1, - sym_block, + [62129] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61362] = 4, - ACTIONS(4572), 1, + ACTIONS(4617), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4574), 1, anon_sym_COMMA, - STATE(1935), 1, - aux_sym_use_list_repeat1, + [62139] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61376] = 4, - ACTIONS(3558), 1, - anon_sym_RBRACE, - ACTIONS(4577), 1, + ACTIONS(4619), 2, anon_sym_COMMA, - STATE(1912), 1, - aux_sym_field_initializer_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61390] = 4, - ACTIONS(3598), 1, + anon_sym_GT, + [62151] = 4, + ACTIONS(3578), 1, anon_sym_LBRACE, - ACTIONS(4579), 1, + ACTIONS(4621), 1, anon_sym_SEMI, - STATE(835), 1, + STATE(956), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61404] = 3, - ACTIONS(4583), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4581), 2, - anon_sym_RBRACE, + [62165] = 4, + ACTIONS(387), 1, + anon_sym_RPAREN, + ACTIONS(4623), 1, anon_sym_COMMA, - [61416] = 2, + STATE(1965), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4585), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61426] = 4, - ACTIONS(3793), 1, + [62179] = 4, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4587), 1, + ACTIONS(4625), 1, anon_sym_SEMI, - STATE(947), 1, + STATE(785), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61440] = 4, - ACTIONS(3580), 1, + [62193] = 4, + ACTIONS(3612), 1, anon_sym_RBRACE, - ACTIONS(4589), 1, + ACTIONS(4627), 1, anon_sym_COMMA, - STATE(1831), 1, + STATE(1993), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61454] = 4, - ACTIONS(3795), 1, + [62207] = 4, + ACTIONS(2247), 1, + anon_sym_PLUS, + ACTIONS(4629), 1, + sym_mutable_specifier, + ACTIONS(4631), 1, + sym_self, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62221] = 4, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4591), 1, + ACTIONS(4633), 1, anon_sym_SEMI, - ACTIONS(4593), 1, + ACTIONS(4635), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61468] = 4, - ACTIONS(3793), 1, + [62235] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4637), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [62245] = 4, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4595), 1, + ACTIONS(4639), 1, anon_sym_SEMI, - STATE(924), 1, + STATE(812), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61482] = 4, - ACTIONS(768), 1, + [62259] = 4, + ACTIONS(774), 1, anon_sym_RPAREN, - ACTIONS(4597), 1, + ACTIONS(4641), 1, anon_sym_COMMA, - STATE(1867), 1, + STATE(2008), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61496] = 4, - ACTIONS(3542), 1, + [62273] = 4, + ACTIONS(3620), 1, + anon_sym_RBRACE, + ACTIONS(4643), 1, + anon_sym_COMMA, + STATE(1979), 1, + aux_sym_enum_variant_list_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62287] = 4, + ACTIONS(4006), 1, + anon_sym_RPAREN, + ACTIONS(4008), 1, + anon_sym_COMMA, + STATE(1854), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62301] = 4, + ACTIONS(4645), 1, + anon_sym_RBRACE, + ACTIONS(4647), 1, + anon_sym_COMMA, + STATE(1979), 1, + aux_sym_enum_variant_list_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62315] = 4, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(4599), 1, + ACTIONS(4650), 1, anon_sym_SEMI, - STATE(2222), 1, + STATE(2387), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61510] = 4, - ACTIONS(3795), 1, + [62329] = 4, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4601), 1, + ACTIONS(4652), 1, anon_sym_SEMI, - ACTIONS(4603), 1, - anon_sym_RBRACK, + ACTIONS(4654), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61524] = 4, - ACTIONS(3606), 1, - anon_sym_RBRACE, - ACTIONS(4605), 1, - anon_sym_COMMA, - STATE(1884), 1, - aux_sym_enum_variant_list_repeat2, + [62343] = 4, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4656), 1, + anon_sym_SEMI, + ACTIONS(4658), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61538] = 4, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4607), 1, + [62357] = 4, + ACTIONS(3851), 1, + anon_sym_LBRACE, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4609), 1, + STATE(847), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62371] = 3, + ACTIONS(4664), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61552] = 4, - ACTIONS(3566), 1, + ACTIONS(4662), 2, anon_sym_RBRACE, - ACTIONS(4611), 1, anon_sym_COMMA, - STATE(1830), 1, - aux_sym_field_declaration_list_repeat1, + [62383] = 4, + ACTIONS(3634), 1, + anon_sym_RBRACE, + ACTIONS(4666), 1, + anon_sym_COMMA, + STATE(1979), 1, + aux_sym_enum_variant_list_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62397] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61566] = 4, - ACTIONS(4613), 1, + ACTIONS(4668), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4615), 1, anon_sym_COMMA, - STATE(1997), 1, + [62407] = 4, + ACTIONS(4670), 1, + anon_sym_RBRACE, + ACTIONS(4672), 1, + anon_sym_COMMA, + STATE(2028), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61580] = 4, - ACTIONS(3566), 1, + [62421] = 4, + ACTIONS(3624), 1, anon_sym_RBRACE, - ACTIONS(4611), 1, + ACTIONS(4674), 1, anon_sym_COMMA, - STATE(1831), 1, + STATE(1993), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61594] = 4, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(4617), 1, - anon_sym_SEMI, - STATE(2329), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61608] = 4, - ACTIONS(4619), 1, - anon_sym_RPAREN, - ACTIONS(4621), 1, - anon_sym_COMMA, - STATE(1836), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [62435] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61622] = 4, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4623), 1, + ACTIONS(4087), 3, anon_sym_SEMI, - ACTIONS(4625), 1, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + [62445] = 4, + ACTIONS(3614), 1, + anon_sym_RBRACE, + ACTIONS(4676), 1, + anon_sym_COMMA, + STATE(1971), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61636] = 4, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(4627), 1, - anon_sym_SEMI, - STATE(2373), 1, - sym_where_clause, + [62459] = 4, + ACTIONS(3614), 1, + anon_sym_RBRACE, + ACTIONS(4676), 1, + anon_sym_COMMA, + STATE(1993), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61650] = 4, - ACTIONS(3795), 1, + [62473] = 4, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4629), 1, + ACTIONS(4678), 1, anon_sym_SEMI, - ACTIONS(4631), 1, + ACTIONS(4680), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61664] = 4, - ACTIONS(3930), 1, + [62487] = 4, + ACTIONS(4682), 1, + anon_sym_RBRACE, + ACTIONS(4684), 1, + anon_sym_COMMA, + STATE(1993), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62501] = 4, + ACTIONS(4026), 1, anon_sym_RPAREN, - ACTIONS(3932), 1, + ACTIONS(4028), 1, anon_sym_COMMA, - STATE(1991), 1, + STATE(2022), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61678] = 4, - ACTIONS(3793), 1, - anon_sym_LBRACE, - ACTIONS(4633), 1, - anon_sym_SEMI, - STATE(867), 1, - sym_block, + [62515] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61692] = 4, - ACTIONS(381), 1, + ACTIONS(4198), 2, anon_sym_RPAREN, - ACTIONS(2941), 1, anon_sym_COMMA, - STATE(1842), 1, - aux_sym_arguments_repeat1, + [62527] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61706] = 2, + ACTIONS(4687), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62539] = 4, + ACTIONS(4689), 1, + anon_sym_RPAREN, + ACTIONS(4691), 1, + anon_sym_COMMA, + STATE(1997), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2692), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [61716] = 4, - ACTIONS(3793), 1, + [62553] = 4, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4635), 1, + ACTIONS(4694), 1, anon_sym_SEMI, - STATE(796), 1, + STATE(950), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61730] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2708), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [61740] = 4, - ACTIONS(3795), 1, + [62567] = 4, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4637), 1, + ACTIONS(4696), 1, anon_sym_SEMI, - ACTIONS(4639), 1, + ACTIONS(4698), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61754] = 4, - ACTIONS(4158), 1, + [62581] = 4, + ACTIONS(4700), 1, + anon_sym_RPAREN, + ACTIONS(4702), 1, anon_sym_COMMA, - ACTIONS(4160), 1, + STATE(1997), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62595] = 4, + ACTIONS(4210), 1, + anon_sym_COMMA, + ACTIONS(4212), 1, anon_sym_GT, - STATE(1981), 1, + STATE(2013), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61768] = 4, - ACTIONS(3552), 1, - anon_sym_RBRACE, - ACTIONS(4641), 1, + [62609] = 4, + ACTIONS(3079), 1, + anon_sym_RBRACK, + ACTIONS(4704), 1, anon_sym_COMMA, - STATE(1941), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2002), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61782] = 4, - ACTIONS(3552), 1, - anon_sym_RBRACE, - ACTIONS(4641), 1, - anon_sym_COMMA, - STATE(1831), 1, - aux_sym_field_declaration_list_repeat1, + [62623] = 4, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4707), 1, + anon_sym_SEMI, + ACTIONS(4709), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61796] = 4, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - ACTIONS(4643), 1, - anon_sym_GT, - STATE(2184), 1, - sym_lifetime, + [62637] = 4, + ACTIONS(636), 1, + anon_sym_RBRACK, + ACTIONS(4711), 1, + anon_sym_COMMA, + STATE(2002), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61810] = 4, - ACTIONS(2295), 1, + [62651] = 4, + ACTIONS(2321), 1, anon_sym_RPAREN, - ACTIONS(4645), 1, + ACTIONS(4713), 1, anon_sym_COMMA, - STATE(1988), 1, + STATE(1877), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61824] = 4, - ACTIONS(3795), 1, + [62665] = 4, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4647), 1, + ACTIONS(4715), 1, anon_sym_SEMI, - ACTIONS(4649), 1, + ACTIONS(4717), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61838] = 4, - ACTIONS(3568), 1, + [62679] = 4, + ACTIONS(3636), 1, anon_sym_GT, - ACTIONS(4651), 1, + ACTIONS(4719), 1, anon_sym_COMMA, - STATE(1974), 1, + STATE(1885), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61852] = 4, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4653), 1, - anon_sym_SEMI, - ACTIONS(4655), 1, - anon_sym_EQ, + [62693] = 4, + ACTIONS(4198), 1, + anon_sym_RPAREN, + ACTIONS(4721), 1, + anon_sym_COMMA, + STATE(2008), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61866] = 4, - ACTIONS(3592), 1, + [62707] = 4, + ACTIONS(3638), 1, anon_sym_GT, - ACTIONS(4657), 1, + ACTIONS(4724), 1, anon_sym_COMMA, - STATE(1974), 1, + STATE(1885), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61880] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, + [62721] = 3, + ACTIONS(2995), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4659), 2, + ACTIONS(3977), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [61892] = 4, - ACTIONS(4136), 1, - anon_sym_GT, - ACTIONS(4661), 1, + [62733] = 4, + ACTIONS(768), 1, + anon_sym_RPAREN, + ACTIONS(4726), 1, anon_sym_COMMA, - STATE(1974), 1, - aux_sym_type_parameters_repeat1, + STATE(2008), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61906] = 2, + [62747] = 4, + ACTIONS(3845), 1, + anon_sym_LBRACE, + ACTIONS(4728), 1, + anon_sym_SEMI, + STATE(446), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2676), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [61916] = 2, + [62761] = 4, + ACTIONS(902), 1, + anon_sym_GT, + ACTIONS(4730), 1, + anon_sym_COMMA, + STATE(2032), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2704), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [61926] = 3, - ACTIONS(4123), 1, - anon_sym_EQ, + [62775] = 4, + ACTIONS(4732), 1, + anon_sym_RBRACE, + ACTIONS(4734), 1, + anon_sym_COMMA, + STATE(1849), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4136), 2, - anon_sym_COMMA, - anon_sym_GT, - [61938] = 4, - ACTIONS(3795), 1, + [62789] = 4, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4664), 1, + ACTIONS(4736), 1, anon_sym_SEMI, - ACTIONS(4666), 1, + ACTIONS(4738), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61952] = 3, - ACTIONS(4670), 1, - anon_sym_EQ, + [62803] = 3, + ACTIONS(4742), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4668), 2, + ACTIONS(4740), 2, anon_sym_RBRACE, anon_sym_COMMA, - [61964] = 4, - ACTIONS(3821), 1, - anon_sym_COMMA, - ACTIONS(3823), 1, - anon_sym_GT, - STATE(1827), 1, - aux_sym_type_parameters_repeat1, + [62815] = 4, + ACTIONS(3298), 1, + anon_sym_COLON_COLON, + ACTIONS(3328), 1, + anon_sym_COLON, + STATE(1851), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61978] = 4, - ACTIONS(880), 1, - anon_sym_GT, - ACTIONS(4672), 1, - anon_sym_COMMA, - STATE(1846), 1, - aux_sym_type_arguments_repeat1, + [62829] = 4, + ACTIONS(3851), 1, + anon_sym_LBRACE, + ACTIONS(4744), 1, + anon_sym_SEMI, + STATE(883), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61992] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, + [62843] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4674), 2, + ACTIONS(4746), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [62004] = 4, - ACTIONS(4643), 1, - anon_sym_GT, - ACTIONS(4676), 1, + [62855] = 4, + ACTIONS(772), 1, + anon_sym_RPAREN, + ACTIONS(4024), 1, anon_sym_COMMA, - STATE(1843), 1, - aux_sym_for_lifetimes_repeat1, + STATE(1976), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62018] = 4, - ACTIONS(3793), 1, - anon_sym_LBRACE, - ACTIONS(4678), 1, - anon_sym_SEMI, - STATE(790), 1, - sym_block, + [62869] = 4, + ACTIONS(4748), 1, + anon_sym_RBRACE, + ACTIONS(4750), 1, + anon_sym_COMMA, + STATE(2021), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62032] = 4, - ACTIONS(3795), 1, + [62883] = 4, + ACTIONS(772), 1, + anon_sym_RPAREN, + ACTIONS(4024), 1, + anon_sym_COMMA, + STATE(2008), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62897] = 4, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4680), 1, + ACTIONS(4753), 1, anon_sym_SEMI, - ACTIONS(4682), 1, + ACTIONS(4755), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62046] = 4, - ACTIONS(764), 1, - anon_sym_RPAREN, - ACTIONS(3915), 1, - anon_sym_COMMA, - STATE(1944), 1, - aux_sym_parameters_repeat1, + [62911] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62060] = 4, - ACTIONS(4684), 1, + ACTIONS(4757), 2, + anon_sym_COMMA, + anon_sym_GT, + [62923] = 4, + ACTIONS(4759), 1, anon_sym_RBRACE, - ACTIONS(4686), 1, + ACTIONS(4761), 1, anon_sym_COMMA, - STATE(1966), 1, + STATE(1991), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62074] = 4, - ACTIONS(4688), 1, - anon_sym_RPAREN, - ACTIONS(4690), 1, + [62937] = 4, + ACTIONS(3630), 1, + anon_sym_RBRACE, + ACTIONS(4763), 1, anon_sym_COMMA, - STATE(1988), 1, - aux_sym_tuple_type_repeat1, + STATE(1977), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62088] = 4, - ACTIONS(3542), 1, + [62951] = 4, + ACTIONS(3588), 1, anon_sym_where, - ACTIONS(4693), 1, + ACTIONS(4765), 1, anon_sym_SEMI, - STATE(2409), 1, + STATE(2440), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62102] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, + [62965] = 4, + ACTIONS(3630), 1, + anon_sym_RBRACE, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(1979), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4688), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62114] = 4, - ACTIONS(764), 1, - anon_sym_RPAREN, - ACTIONS(3915), 1, - anon_sym_COMMA, - STATE(1867), 1, - aux_sym_parameters_repeat1, + [62979] = 3, + ACTIONS(2247), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62128] = 4, - ACTIONS(3761), 1, - anon_sym_RBRACE, - ACTIONS(4695), 1, + ACTIONS(4619), 2, anon_sym_COMMA, - STATE(1852), 1, - aux_sym_struct_pattern_repeat1, + anon_sym_GT, + [62991] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62142] = 4, - ACTIONS(3594), 1, + ACTIONS(4767), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4697), 1, anon_sym_COMMA, - STATE(1884), 1, - aux_sym_enum_variant_list_repeat2, + [63001] = 4, + ACTIONS(3157), 1, + anon_sym_LBRACE, + ACTIONS(4769), 1, + sym_identifier, + STATE(1866), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62156] = 4, - ACTIONS(898), 1, + [63015] = 4, + ACTIONS(4619), 1, anon_sym_GT, - ACTIONS(4699), 1, + ACTIONS(4771), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(2032), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62170] = 4, - ACTIONS(3562), 1, - anon_sym_RBRACE, - ACTIONS(4701), 1, - anon_sym_COMMA, - STATE(1947), 1, - aux_sym_enum_variant_list_repeat2, + [63029] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62184] = 4, - ACTIONS(3594), 1, - anon_sym_RBRACE, - ACTIONS(4697), 1, + ACTIONS(4774), 2, anon_sym_COMMA, - STATE(1878), 1, - aux_sym_enum_variant_list_repeat2, + anon_sym_GT, + [63041] = 4, + ACTIONS(3588), 1, + anon_sym_where, + ACTIONS(4776), 1, + anon_sym_SEMI, + STATE(2429), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62198] = 4, - ACTIONS(3562), 1, - anon_sym_RBRACE, - ACTIONS(4701), 1, + [63055] = 4, + ACTIONS(4778), 1, anon_sym_COMMA, - STATE(1884), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(4781), 1, + anon_sym_GT, + STATE(2035), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62212] = 4, - ACTIONS(3783), 1, - anon_sym_RBRACE, - ACTIONS(4703), 1, - anon_sym_COMMA, - STATE(1852), 1, - aux_sym_struct_pattern_repeat1, + [63069] = 4, + ACTIONS(3312), 1, + anon_sym_COLON_COLON, + ACTIONS(3328), 1, + anon_sym_COLON, + STATE(1851), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62226] = 2, + [63083] = 3, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(788), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4705), 3, - anon_sym_SEMI, + [63094] = 3, + ACTIONS(2362), 1, + anon_sym_LPAREN, + STATE(820), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63105] = 3, + ACTIONS(3590), 1, + anon_sym_LT, + STATE(674), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63116] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - anon_sym_COMMA, - [62236] = 2, + STATE(908), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4707), 3, - anon_sym_SEMI, + [63127] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - anon_sym_COMMA, - [62246] = 4, - ACTIONS(3542), 1, - anon_sym_where, - ACTIONS(4709), 1, - anon_sym_SEMI, - STATE(2395), 1, - sym_where_clause, + STATE(906), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62260] = 4, - ACTIONS(770), 1, - anon_sym_RPAREN, - ACTIONS(4000), 1, - anon_sym_COMMA, - STATE(1867), 1, - aux_sym_parameters_repeat1, + [63138] = 3, + ACTIONS(3564), 1, + anon_sym_LBRACE, + STATE(441), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62274] = 4, - ACTIONS(3183), 1, - anon_sym_LT2, - ACTIONS(4186), 1, - sym_identifier, - STATE(2319), 1, - sym_type_arguments, + [63149] = 3, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(1611), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62288] = 4, - ACTIONS(770), 1, - anon_sym_RPAREN, - ACTIONS(4000), 1, - anon_sym_COMMA, - STATE(1861), 1, - aux_sym_parameters_repeat1, + [63160] = 3, + ACTIONS(3873), 1, + anon_sym_LBRACE, + STATE(900), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62302] = 4, - ACTIONS(2217), 1, - anon_sym_RPAREN, - ACTIONS(4711), 1, + [63171] = 3, + ACTIONS(3594), 1, + anon_sym_LBRACE, + STATE(897), 1, + sym_field_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63182] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4781), 2, anon_sym_COMMA, - STATE(1716), 1, - aux_sym_tuple_pattern_repeat1, + anon_sym_GT, + [63191] = 3, + ACTIONS(3594), 1, + anon_sym_LBRACE, + STATE(893), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62316] = 3, - ACTIONS(4715), 1, + [63202] = 3, + ACTIONS(3681), 1, anon_sym_COLON, + STATE(1851), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4713), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62328] = 3, - ACTIONS(4717), 1, + [63213] = 3, + ACTIONS(4783), 1, anon_sym_SEMI, - ACTIONS(4719), 1, + ACTIONS(4785), 1, anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62339] = 3, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(377), 1, - sym_field_declaration_list, + [63224] = 3, + ACTIONS(3819), 1, + anon_sym_RBRACE, + ACTIONS(4787), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63235] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4789), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62350] = 2, + [63246] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4200), 2, - anon_sym_RPAREN, + ACTIONS(4619), 2, anon_sym_COMMA, - [62359] = 2, + anon_sym_GT, + [63255] = 3, + ACTIONS(3564), 1, + anon_sym_LBRACE, + STATE(438), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4721), 2, - sym_identifier, - sym_metavariable, - [62368] = 3, - ACTIONS(3865), 1, + [63266] = 3, + ACTIONS(3909), 1, anon_sym_LBRACE, - STATE(739), 1, + STATE(363), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62379] = 2, + [63277] = 3, + ACTIONS(4787), 1, + anon_sym_SEMI, + ACTIONS(4791), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3859), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62388] = 3, - ACTIONS(3556), 1, + [63288] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4793), 2, + sym_identifier, + sym_metavariable, + [63297] = 3, + ACTIONS(4787), 1, + anon_sym_SEMI, + ACTIONS(4795), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63308] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(736), 1, - sym_field_declaration_list, + STATE(916), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62399] = 3, - ACTIONS(3572), 1, + [63319] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(400), 1, + STATE(917), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62410] = 3, - ACTIONS(3556), 1, + [63330] = 3, + ACTIONS(3594), 1, anon_sym_LBRACE, - STATE(732), 1, + STATE(918), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62421] = 3, - ACTIONS(4723), 1, - anon_sym_SEMI, - ACTIONS(4725), 1, - anon_sym_as, + [63341] = 3, + ACTIONS(3775), 1, + anon_sym_COLON, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62432] = 3, - ACTIONS(3572), 1, - anon_sym_LBRACE, - STATE(341), 1, - sym_declaration_list, + [63352] = 3, + ACTIONS(4797), 1, + sym_identifier, + ACTIONS(4799), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63363] = 3, + ACTIONS(2854), 1, + anon_sym_COLON, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62443] = 3, + [63374] = 3, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(63), 1, + STATE(51), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62454] = 3, - ACTIONS(4727), 1, - sym_identifier, - ACTIONS(4729), 1, - sym_mutable_specifier, + [63385] = 3, + ACTIONS(3831), 1, + anon_sym_COLON_COLON, + ACTIONS(4801), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62465] = 3, - ACTIONS(4731), 1, - anon_sym_SEMI, - ACTIONS(4733), 1, + [63396] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4748), 2, anon_sym_RBRACE, + anon_sym_COMMA, + [63405] = 3, + ACTIONS(3821), 1, + anon_sym_COLON_COLON, + ACTIONS(4801), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62476] = 3, - ACTIONS(3827), 1, - anon_sym_LBRACE, - STATE(322), 1, - sym_enum_variant_list, + [63416] = 3, + ACTIONS(3753), 1, + anon_sym_COLON_COLON, + ACTIONS(4801), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62487] = 3, - ACTIONS(3598), 1, - anon_sym_LBRACE, - STATE(748), 1, - sym_declaration_list, + [63427] = 3, + ACTIONS(3374), 1, + anon_sym_COLON_COLON, + ACTIONS(4803), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62498] = 3, - ACTIONS(3598), 1, - anon_sym_LBRACE, - STATE(749), 1, - sym_declaration_list, + [63438] = 3, + ACTIONS(4254), 1, + sym_identifier, + ACTIONS(4258), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62509] = 3, - ACTIONS(3556), 1, + [63449] = 3, + ACTIONS(2370), 1, + anon_sym_LT2, + STATE(997), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63460] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4805), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63471] = 3, + ACTIONS(3909), 1, anon_sym_LBRACE, - STATE(751), 1, - sym_field_declaration_list, + STATE(289), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62520] = 3, - ACTIONS(3187), 1, + [63482] = 3, + ACTIONS(2362), 1, anon_sym_LPAREN, - STATE(1302), 1, + STATE(932), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62531] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4735), 1, - anon_sym_SEMI, + [63493] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62542] = 3, - ACTIONS(3598), 1, + ACTIONS(3977), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63502] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(754), 1, + STATE(934), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62553] = 3, - ACTIONS(3598), 1, + [63513] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4807), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63524] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(755), 1, + STATE(876), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62564] = 3, - ACTIONS(3556), 1, + [63535] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4809), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63546] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4811), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63557] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(756), 1, - sym_field_declaration_list, + STATE(869), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62575] = 3, - ACTIONS(3616), 1, - anon_sym_COLON, - STATE(1999), 1, - sym_trait_bounds, + [63568] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4813), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62586] = 3, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(417), 1, - sym_field_declaration_list, + [63579] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4815), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62597] = 3, - ACTIONS(4194), 1, - sym_identifier, - ACTIONS(4198), 1, - sym_mutable_specifier, + [63590] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4817), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62608] = 3, - ACTIONS(3751), 1, - anon_sym_COLON_COLON, - ACTIONS(4737), 1, - anon_sym_RPAREN, + [63601] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62619] = 3, - ACTIONS(3757), 1, - anon_sym_COLON_COLON, - ACTIONS(4737), 1, - anon_sym_RPAREN, + ACTIONS(4682), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63610] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62630] = 3, - ACTIONS(3713), 1, - anon_sym_COLON_COLON, - ACTIONS(4737), 1, + ACTIONS(4198), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [63619] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62641] = 2, + ACTIONS(4819), 2, + sym_identifier, + sym_metavariable, + [63628] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4821), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4136), 2, - anon_sym_COMMA, - anon_sym_GT, - [62650] = 3, - ACTIONS(3326), 1, - anon_sym_COLON_COLON, - ACTIONS(4739), 1, - anon_sym_RPAREN, + [63639] = 3, + ACTIONS(2728), 1, + anon_sym_COLON, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62661] = 3, - ACTIONS(3544), 1, - anon_sym_LT, - STATE(660), 1, - sym_type_parameters, + [63650] = 3, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(863), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62672] = 3, - ACTIONS(4731), 1, + [63661] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4823), 1, anon_sym_SEMI, - ACTIONS(4741), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62683] = 3, - ACTIONS(2340), 1, - anon_sym_LPAREN, - STATE(769), 1, - sym_parameters, + [63672] = 3, + ACTIONS(2724), 1, + anon_sym_COLON, + ACTIONS(3871), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62694] = 3, - ACTIONS(3598), 1, + [63683] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(802), 1, + STATE(859), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62705] = 3, - ACTIONS(3598), 1, + [63694] = 3, + ACTIONS(3873), 1, anon_sym_LBRACE, - STATE(772), 1, - sym_declaration_list, + STATE(734), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62716] = 3, - ACTIONS(4731), 1, - anon_sym_SEMI, - ACTIONS(4743), 1, - anon_sym_RPAREN, + [63705] = 3, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(856), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62727] = 3, - ACTIONS(3598), 1, + [63716] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(812), 1, + STATE(855), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62738] = 3, - ACTIONS(3966), 1, + [63727] = 3, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(4745), 1, + ACTIONS(4825), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62749] = 3, - ACTIONS(3572), 1, - anon_sym_LBRACE, - STATE(418), 1, - sym_declaration_list, + [63738] = 3, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(1906), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62760] = 3, - ACTIONS(3966), 1, + [63749] = 3, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(4747), 1, - anon_sym_in, + ACTIONS(4827), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62771] = 3, - ACTIONS(3966), 1, - anon_sym_PIPE, - ACTIONS(4749), 1, - anon_sym_EQ, + [63760] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4829), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62782] = 3, - ACTIONS(3966), 1, - anon_sym_PIPE, - ACTIONS(4751), 1, - anon_sym_EQ, + [63771] = 3, + ACTIONS(3805), 1, + anon_sym_RPAREN, + ACTIONS(4787), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62793] = 3, - ACTIONS(3865), 1, - anon_sym_LBRACE, - STATE(925), 1, - sym_enum_variant_list, + [63782] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62804] = 3, - ACTIONS(3966), 1, + ACTIONS(4304), 2, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(4753), 1, - anon_sym_in, + [63791] = 3, + ACTIONS(3873), 1, + anon_sym_LBRACE, + STATE(844), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62815] = 3, - ACTIONS(3966), 1, - anon_sym_PIPE, - ACTIONS(4755), 1, - anon_sym_EQ, + [63802] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62826] = 3, - ACTIONS(3598), 1, + ACTIONS(4831), 2, + sym_identifier, + sym_metavariable, + [63811] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(830), 1, + STATE(421), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62837] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4757), 1, - anon_sym_SEMI, + [63822] = 3, + ACTIONS(3594), 1, + anon_sym_LBRACE, + STATE(841), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62848] = 2, + [63833] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4833), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4467), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62857] = 3, - ACTIONS(3598), 1, + [63844] = 3, + ACTIONS(3594), 1, anon_sym_LBRACE, - STATE(836), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62868] = 3, - ACTIONS(3966), 1, - anon_sym_PIPE, - ACTIONS(4759), 1, - anon_sym_in, + STATE(839), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62879] = 3, - ACTIONS(3598), 1, + [63855] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(843), 1, + STATE(838), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62890] = 3, - ACTIONS(3598), 1, - anon_sym_LBRACE, - STATE(844), 1, - sym_declaration_list, + [63866] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62901] = 3, - ACTIONS(3741), 1, + ACTIONS(4835), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63875] = 3, + ACTIONS(3801), 1, anon_sym_RBRACE, - ACTIONS(4731), 1, + ACTIONS(4787), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62912] = 2, + [63886] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4761), 2, - sym_identifier, - sym_metavariable, - [62921] = 3, - ACTIONS(2730), 1, + ACTIONS(4645), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63895] = 3, + ACTIONS(2642), 1, anon_sym_COLON, - ACTIONS(3795), 1, + ACTIONS(3871), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62932] = 3, - ACTIONS(3966), 1, + [63906] = 3, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(4763), 1, - anon_sym_EQ, + ACTIONS(4837), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62943] = 3, - ACTIONS(3966), 1, - anon_sym_PIPE, - ACTIONS(4765), 1, - anon_sym_in, + [63917] = 3, + ACTIONS(4839), 1, + anon_sym_LBRACK, + ACTIONS(4841), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63928] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62954] = 3, - ACTIONS(4767), 1, + ACTIONS(4843), 2, + sym_identifier, + sym_metavariable, + [63937] = 3, + ACTIONS(3795), 1, + anon_sym_RBRACE, + ACTIONS(4787), 1, anon_sym_SEMI, - ACTIONS(4769), 1, - anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62965] = 3, - ACTIONS(3865), 1, - anon_sym_LBRACE, - STATE(874), 1, - sym_enum_variant_list, + [63948] = 3, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(1568), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62976] = 3, - ACTIONS(3572), 1, + [63959] = 3, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(1311), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63970] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(279), 1, + STATE(298), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62987] = 3, - ACTIONS(3749), 1, - anon_sym_RPAREN, - ACTIONS(4731), 1, + [63981] = 3, + ACTIONS(3785), 1, + anon_sym_RBRACE, + ACTIONS(4787), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62998] = 3, - ACTIONS(3556), 1, + [63992] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(887), 1, - sym_field_declaration_list, + STATE(317), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63009] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4771), 1, - anon_sym_SEMI, + [64003] = 3, + ACTIONS(3564), 1, + anon_sym_LBRACE, + STATE(417), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63020] = 3, - ACTIONS(3556), 1, - anon_sym_LBRACE, - STATE(896), 1, - sym_field_declaration_list, + [64014] = 3, + ACTIONS(4337), 1, + sym_identifier, + ACTIONS(4341), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63031] = 3, - ACTIONS(3598), 1, + [64025] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(899), 1, + STATE(806), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63042] = 3, - ACTIONS(3572), 1, + [64036] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(253), 1, + STATE(805), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63053] = 3, - ACTIONS(3540), 1, + [64047] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(412), 1, - sym_field_declaration_list, + STATE(316), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63064] = 3, - ACTIONS(3865), 1, + [64058] = 3, + ACTIONS(3909), 1, anon_sym_LBRACE, - STATE(817), 1, + STATE(326), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63075] = 3, - ACTIONS(3572), 1, + [64069] = 3, + ACTIONS(3586), 1, anon_sym_LBRACE, - STATE(293), 1, - sym_declaration_list, + STATE(329), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63086] = 3, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - STATE(2184), 1, - sym_lifetime, + [64080] = 3, + ACTIONS(3586), 1, + anon_sym_LBRACE, + STATE(314), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63097] = 3, - ACTIONS(3966), 1, - anon_sym_PIPE, - ACTIONS(4773), 1, - anon_sym_EQ, + [64091] = 3, + ACTIONS(279), 1, + anon_sym_LBRACE, + STATE(1032), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63108] = 3, - ACTIONS(15), 1, + [64102] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(54), 1, - sym_block, + STATE(792), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63119] = 3, - ACTIONS(2103), 1, - anon_sym_SQUOTE, - STATE(1822), 1, - sym_lifetime, + [64113] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4845), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63130] = 3, - ACTIONS(3827), 1, - anon_sym_LBRACE, - STATE(408), 1, - sym_enum_variant_list, + [64124] = 3, + ACTIONS(4052), 1, + anon_sym_COLON, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64135] = 3, + ACTIONS(4847), 1, + anon_sym_LBRACK, + ACTIONS(4849), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63141] = 2, + [64146] = 3, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(787), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4775), 2, - sym_identifier, - sym_metavariable, - [63150] = 3, - ACTIONS(3729), 1, - anon_sym_RBRACE, - ACTIONS(4731), 1, + [64157] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4851), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63161] = 2, + [64168] = 3, + ACTIONS(3759), 1, + anon_sym_RPAREN, + ACTIONS(4787), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4777), 2, - sym_identifier, - sym_metavariable, - [63170] = 3, - ACTIONS(3540), 1, + [64179] = 3, + ACTIONS(3586), 1, anon_sym_LBRACE, - STATE(312), 1, + STATE(335), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63181] = 3, - ACTIONS(3572), 1, - anon_sym_LBRACE, - STATE(298), 1, - sym_declaration_list, + [64190] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4853), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63192] = 3, - ACTIONS(3598), 1, + [64201] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(934), 1, + STATE(779), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63203] = 3, - ACTIONS(3598), 1, + [64212] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(935), 1, + STATE(778), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63214] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4779), 1, - anon_sym_SEMI, + [64223] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(86), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63225] = 3, - ACTIONS(3966), 1, - anon_sym_PIPE, - ACTIONS(4781), 1, - anon_sym_in, + [64234] = 3, + ACTIONS(4855), 1, + anon_sym_SEMI, + ACTIONS(4857), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63236] = 3, - ACTIONS(3966), 1, - anon_sym_PIPE, - ACTIONS(4783), 1, - anon_sym_EQ, + [64245] = 3, + ACTIONS(4859), 1, + anon_sym_SEMI, + ACTIONS(4861), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63247] = 3, - ACTIONS(3572), 1, + [64256] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(290), 1, + STATE(311), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63258] = 3, - ACTIONS(3187), 1, + [64267] = 3, + ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(1579), 1, + STATE(1581), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63269] = 3, - ACTIONS(3598), 1, - anon_sym_LBRACE, - STATE(948), 1, - sym_declaration_list, + [64278] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4863), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63280] = 3, - ACTIONS(3572), 1, + [64289] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(285), 1, + STATE(455), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63291] = 3, - ACTIONS(3572), 1, + [64300] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(282), 1, - sym_declaration_list, + STATE(65), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63302] = 3, - ACTIONS(3598), 1, + [64311] = 3, + ACTIONS(3594), 1, anon_sym_LBRACE, - STATE(952), 1, - sym_declaration_list, + STATE(942), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63313] = 3, - ACTIONS(3598), 1, + [64322] = 3, + ACTIONS(3586), 1, anon_sym_LBRACE, - STATE(953), 1, - sym_declaration_list, + STATE(453), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63324] = 3, - ACTIONS(279), 1, + [64333] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(1017), 1, - sym_block, + STATE(310), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63335] = 3, - ACTIONS(2694), 1, - anon_sym_COLON, - ACTIONS(3795), 1, - anon_sym_PLUS, + [64344] = 3, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(760), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63346] = 3, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4787), 1, - anon_sym_BANG, + [64355] = 3, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(759), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63357] = 3, - ACTIONS(3795), 1, + [64366] = 3, + ACTIONS(3871), 1, anon_sym_PLUS, - ACTIONS(4789), 1, + ACTIONS(4865), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63368] = 3, - ACTIONS(3598), 1, + [64377] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(938), 1, + STATE(937), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63379] = 3, - ACTIONS(3598), 1, + [64388] = 3, + ACTIONS(3586), 1, anon_sym_LBRACE, - STATE(936), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63390] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4572), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63399] = 2, + STATE(451), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4791), 2, - sym_identifier, - sym_metavariable, - [63408] = 2, + [64399] = 3, + ACTIONS(4867), 1, + anon_sym_LT, + STATE(609), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4150), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63417] = 3, - ACTIONS(3572), 1, + [64410] = 3, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(304), 1, + STATE(752), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63428] = 3, - ACTIONS(2698), 1, - anon_sym_COLON, - ACTIONS(3795), 1, - anon_sym_PLUS, + [64421] = 3, + ACTIONS(3594), 1, + anon_sym_LBRACE, + STATE(933), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63439] = 3, - ACTIONS(4793), 1, - anon_sym_LBRACK, - ACTIONS(4795), 1, - anon_sym_BANG, + [64432] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4869), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63450] = 3, - ACTIONS(3962), 1, - anon_sym_COLON, - ACTIONS(3966), 1, - anon_sym_PIPE, + [64443] = 3, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(1566), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63461] = 2, + [64454] = 3, + ACTIONS(3586), 1, + anon_sym_LBRACE, + STATE(309), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4797), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63470] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(86), 1, - sym_closure_parameters, + [64465] = 3, + ACTIONS(2422), 1, + anon_sym_LBRACE, + STATE(1082), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63481] = 3, - ACTIONS(2844), 1, - anon_sym_COLON, - ACTIONS(3795), 1, - anon_sym_PLUS, + [64476] = 3, + ACTIONS(3909), 1, + anon_sym_LBRACE, + STATE(444), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63492] = 2, + [64487] = 3, + ACTIONS(3564), 1, + anon_sym_LBRACE, + STATE(408), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4563), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [63501] = 3, - ACTIONS(3598), 1, + [64498] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(868), 1, + STATE(406), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63512] = 3, - ACTIONS(3598), 1, - anon_sym_LBRACE, - STATE(866), 1, - sym_declaration_list, + [64509] = 3, + ACTIONS(4787), 1, + anon_sym_SEMI, + ACTIONS(4871), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63523] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4799), 1, - anon_sym_GT, + [64520] = 3, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(924), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63534] = 3, - ACTIONS(3556), 1, + [64531] = 3, + ACTIONS(644), 1, anon_sym_LBRACE, - STATE(852), 1, - sym_field_declaration_list, + STATE(229), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63545] = 3, - ACTIONS(4801), 1, - sym_identifier, - ACTIONS(4803), 1, - sym_mutable_specifier, + [64542] = 3, + ACTIONS(4787), 1, + anon_sym_SEMI, + ACTIONS(4873), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63556] = 3, - ACTIONS(3572), 1, + [64553] = 3, + ACTIONS(644), 1, anon_sym_LBRACE, - STATE(395), 1, - sym_declaration_list, + STATE(235), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63567] = 3, - ACTIONS(3598), 1, + [64564] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(823), 1, + STATE(415), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63578] = 3, - ACTIONS(3572), 1, - anon_sym_LBRACE, - STATE(371), 1, - sym_declaration_list, + [64575] = 3, + ACTIONS(2362), 1, + anon_sym_LPAREN, + STATE(922), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63589] = 3, - ACTIONS(3598), 1, + [64586] = 3, + ACTIONS(644), 1, anon_sym_LBRACE, - STATE(858), 1, - sym_declaration_list, + STATE(226), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63600] = 3, - ACTIONS(3556), 1, - anon_sym_LBRACE, - STATE(862), 1, - sym_field_declaration_list, + [64597] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63611] = 3, - ACTIONS(3342), 1, - anon_sym_COLON_COLON, - ACTIONS(4805), 1, - anon_sym_BANG, + ACTIONS(4567), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64606] = 3, + ACTIONS(4787), 1, + anon_sym_SEMI, + ACTIONS(4875), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63622] = 3, - ACTIONS(2390), 1, - anon_sym_LBRACE, - STATE(965), 1, - sym_field_initializer_list, + [64617] = 3, + ACTIONS(4787), 1, + anon_sym_SEMI, + ACTIONS(4877), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63633] = 2, + [64628] = 3, + ACTIONS(4787), 1, + anon_sym_SEMI, + ACTIONS(4879), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4526), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63642] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4807), 1, + [64639] = 3, + ACTIONS(4787), 1, anon_sym_SEMI, + ACTIONS(4881), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63653] = 3, - ACTIONS(4809), 1, + [64650] = 3, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4885), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63664] = 3, - ACTIONS(3598), 1, - anon_sym_LBRACE, - STATE(879), 1, - sym_declaration_list, + [64661] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63675] = 3, - ACTIONS(2340), 1, + ACTIONS(4887), 2, + sym_identifier, + sym_metavariable, + [64670] = 3, + ACTIONS(4889), 1, anon_sym_LPAREN, - STATE(886), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63686] = 3, - ACTIONS(640), 1, + ACTIONS(4891), 1, anon_sym_LBRACE, - STATE(217), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63697] = 3, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(283), 1, - sym_field_declaration_list, + [64681] = 3, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(1584), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63708] = 3, - ACTIONS(640), 1, - anon_sym_LBRACE, - STATE(215), 1, - sym_block, + [64692] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63719] = 3, - ACTIONS(3827), 1, + ACTIONS(2157), 2, + anon_sym_COMMA, + anon_sym_GT, + [64701] = 3, + ACTIONS(279), 1, anon_sym_LBRACE, - STATE(368), 1, - sym_enum_variant_list, + STATE(1072), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63730] = 3, - ACTIONS(4813), 1, - sym_identifier, - ACTIONS(4815), 1, - sym_mutable_specifier, + [64712] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63741] = 3, - ACTIONS(640), 1, + ACTIONS(4542), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64721] = 3, + ACTIONS(279), 1, anon_sym_LBRACE, - STATE(223), 1, + STATE(1084), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63752] = 3, - ACTIONS(279), 1, + [64732] = 3, + ACTIONS(3586), 1, anon_sym_LBRACE, - STATE(975), 1, - sym_block, + STATE(279), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63763] = 3, - ACTIONS(279), 1, + [64743] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(1025), 1, - sym_block, + STATE(270), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63774] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(49), 1, - sym_block, + [64754] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63785] = 3, - ACTIONS(3187), 1, - anon_sym_LPAREN, - STATE(1592), 1, - sym_parameters, + ACTIONS(4893), 2, + sym_identifier, + sym_metavariable, + [64763] = 3, + ACTIONS(3831), 1, + anon_sym_COLON_COLON, + ACTIONS(4895), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63796] = 3, - ACTIONS(3332), 1, - anon_sym_COLON_COLON, - ACTIONS(4805), 1, + [64774] = 3, + ACTIONS(3207), 1, anon_sym_BANG, + ACTIONS(4897), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63807] = 3, - ACTIONS(3326), 1, + [64785] = 3, + ACTIONS(3821), 1, anon_sym_COLON_COLON, - ACTIONS(4817), 1, - sym_identifier, + ACTIONS(4895), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63818] = 3, - ACTIONS(3540), 1, + [64796] = 3, + ACTIONS(644), 1, anon_sym_LBRACE, - STATE(289), 1, - sym_field_declaration_list, + STATE(213), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63829] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4819), 1, - anon_sym_SEMI, + [64807] = 3, + ACTIONS(3753), 1, + anon_sym_COLON_COLON, + ACTIONS(4895), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63840] = 2, + [64818] = 3, + ACTIONS(3564), 1, + anon_sym_LBRACE, + STATE(430), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4821), 2, - sym_float_literal, - sym_integer_literal, - [63849] = 3, - ACTIONS(4731), 1, - anon_sym_SEMI, - ACTIONS(4823), 1, - anon_sym_RPAREN, + [64829] = 3, + ACTIONS(4899), 1, + sym_identifier, + ACTIONS(4901), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63860] = 2, + [64840] = 3, + ACTIONS(3374), 1, + anon_sym_COLON_COLON, + ACTIONS(4903), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4825), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63869] = 3, - ACTIONS(3187), 1, - anon_sym_LPAREN, - STATE(1540), 1, - sym_parameters, + [64851] = 3, + ACTIONS(3564), 1, + anon_sym_LBRACE, + STATE(427), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63880] = 2, + [64862] = 3, + ACTIONS(3781), 1, + anon_sym_RPAREN, + ACTIONS(4787), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4827), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63889] = 3, - ACTIONS(3540), 1, + [64873] = 3, + ACTIONS(3586), 1, anon_sym_LBRACE, - STATE(300), 1, + STATE(263), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63900] = 3, - ACTIONS(3966), 1, - anon_sym_PIPE, - ACTIONS(4829), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63911] = 3, - ACTIONS(3572), 1, - anon_sym_LBRACE, - STATE(363), 1, - sym_declaration_list, + [64884] = 3, + ACTIONS(3773), 1, + anon_sym_RPAREN, + ACTIONS(4787), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63922] = 3, - ACTIONS(3572), 1, + [64895] = 3, + ACTIONS(3873), 1, anon_sym_LBRACE, - STATE(306), 1, - sym_declaration_list, + STATE(879), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63933] = 3, - ACTIONS(3572), 1, + [64906] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(369), 1, + STATE(425), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63944] = 3, - ACTIONS(640), 1, + [64917] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(232), 1, + STATE(66), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63955] = 3, - ACTIONS(3187), 1, + [64928] = 3, + ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(1545), 1, + STATE(1295), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63966] = 3, - ACTIONS(3187), 1, + [64939] = 3, + ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(1547), 1, + STATE(1577), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63977] = 2, + [64950] = 3, + ACTIONS(3871), 1, + anon_sym_PLUS, + ACTIONS(4905), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4831), 2, - anon_sym_const, - sym_mutable_specifier, - [63986] = 3, - ACTIONS(3572), 1, + [64961] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(348), 1, + STATE(416), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63997] = 3, - ACTIONS(3827), 1, + [64972] = 3, + ACTIONS(279), 1, anon_sym_LBRACE, - STATE(427), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64008] = 3, - ACTIONS(3966), 1, - anon_sym_PIPE, - ACTIONS(4833), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64019] = 3, - ACTIONS(3187), 1, - anon_sym_LPAREN, - STATE(1290), 1, - sym_parameters, + STATE(1085), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64030] = 3, - ACTIONS(3187), 1, - anon_sym_LPAREN, - STATE(1285), 1, - sym_parameters, + [64983] = 3, + ACTIONS(4907), 1, + sym_identifier, + ACTIONS(4909), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64041] = 3, - ACTIONS(4835), 1, - anon_sym_SEMI, - ACTIONS(4837), 1, - anon_sym_as, + [64994] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(83), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64052] = 2, + [65005] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4338), 2, + ACTIONS(4911), 2, anon_sym_RBRACE, anon_sym_COMMA, - [64061] = 3, - ACTIONS(3727), 1, - anon_sym_RPAREN, - ACTIONS(4731), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64072] = 3, - ACTIONS(3572), 1, + [65014] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(389), 1, + STATE(372), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64083] = 2, + [65025] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4913), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2159), 2, - anon_sym_COMMA, - anon_sym_GT, - [64092] = 3, - ACTIONS(3326), 1, - anon_sym_COLON_COLON, - ACTIONS(4839), 1, - anon_sym_RPAREN, + [65036] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64103] = 3, - ACTIONS(2348), 1, - anon_sym_LT2, - STATE(1060), 1, - sym_type_arguments, + ACTIONS(4127), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65045] = 3, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4915), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64114] = 3, - ACTIONS(3572), 1, + [65056] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(388), 1, + STATE(369), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64125] = 3, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(386), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64136] = 3, - ACTIONS(3795), 1, - anon_sym_PLUS, - ACTIONS(4841), 1, - anon_sym_SEMI, + [65067] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64147] = 3, - ACTIONS(3189), 1, + ACTIONS(4917), 2, + anon_sym_const, + sym_mutable_specifier, + [65076] = 3, + ACTIONS(3368), 1, anon_sym_BANG, - ACTIONS(4843), 1, + ACTIONS(4919), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64158] = 3, - ACTIONS(3572), 1, - anon_sym_LBRACE, - STATE(432), 1, - sym_declaration_list, + [65087] = 3, + ACTIONS(3348), 1, + anon_sym_COLON_COLON, + ACTIONS(4921), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64169] = 3, - ACTIONS(3572), 1, + [65098] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(438), 1, + STATE(381), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64180] = 3, - ACTIONS(279), 1, - anon_sym_LBRACE, - STATE(1012), 1, - sym_block, + [65109] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64191] = 3, - ACTIONS(4447), 1, - sym_identifier, - ACTIONS(4451), 1, + ACTIONS(4923), 2, + anon_sym_const, sym_mutable_specifier, + [65118] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64202] = 3, - ACTIONS(3187), 1, - anon_sym_LPAREN, - STATE(1591), 1, - sym_parameters, + ACTIONS(4925), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65127] = 3, + ACTIONS(2478), 1, + anon_sym_COLON_COLON, + ACTIONS(3739), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64213] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(80), 1, - sym_closure_parameters, + [65138] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64224] = 3, - ACTIONS(3713), 1, - anon_sym_COLON_COLON, - ACTIONS(4845), 1, + ACTIONS(3863), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [65147] = 3, + ACTIONS(3298), 1, + anon_sym_COLON_COLON, + ACTIONS(3382), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64235] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4380), 2, - anon_sym_COMMA, - anon_sym_GT, - [64244] = 2, + [65158] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3956), 2, + ACTIONS(4443), 2, anon_sym_RPAREN, anon_sym_COMMA, - [64253] = 3, - ACTIONS(3572), 1, + [65167] = 3, + ACTIONS(3594), 1, anon_sym_LBRACE, - STATE(380), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64264] = 2, + STATE(912), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4847), 2, - anon_sym_const, - sym_mutable_specifier, - [64273] = 3, - ACTIONS(3572), 1, + [65178] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(379), 1, + STATE(386), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64284] = 2, + [65189] = 3, + ACTIONS(3205), 1, + anon_sym_LPAREN, + STATE(1304), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4026), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64293] = 3, - ACTIONS(2340), 1, - anon_sym_LPAREN, - STATE(803), 1, - sym_parameters, + [65200] = 3, + ACTIONS(644), 1, + anon_sym_LBRACE, + STATE(224), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64304] = 3, - ACTIONS(4849), 1, - anon_sym_LPAREN, - ACTIONS(4851), 1, + [65211] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, + STATE(385), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64315] = 3, - ACTIONS(870), 1, + [65222] = 3, + ACTIONS(4927), 1, + anon_sym_LPAREN, + ACTIONS(4929), 1, anon_sym_LBRACE, - STATE(1387), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64326] = 3, - ACTIONS(640), 1, + [65233] = 3, + ACTIONS(4931), 1, + anon_sym_LPAREN, + ACTIONS(4933), 1, anon_sym_LBRACE, - STATE(218), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64337] = 3, - ACTIONS(3966), 1, - anon_sym_PIPE, - ACTIONS(4853), 1, - anon_sym_EQ, + [65244] = 3, + ACTIONS(4935), 1, + anon_sym_SEMI, + ACTIONS(4937), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64348] = 3, - ACTIONS(3344), 1, - anon_sym_BANG, - ACTIONS(4855), 1, - anon_sym_COLON_COLON, + [65255] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64359] = 3, - ACTIONS(3757), 1, + ACTIONS(4116), 2, + anon_sym_COMMA, + anon_sym_GT, + [65264] = 3, + ACTIONS(3366), 1, anon_sym_COLON_COLON, - ACTIONS(4845), 1, - anon_sym_RPAREN, + ACTIONS(4921), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64370] = 3, - ACTIONS(3572), 1, + [65275] = 3, + ACTIONS(279), 1, anon_sym_LBRACE, - STATE(357), 1, - sym_declaration_list, + STATE(1075), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64381] = 3, - ACTIONS(3751), 1, - anon_sym_COLON_COLON, - ACTIONS(4845), 1, - anon_sym_RPAREN, + [65286] = 3, + ACTIONS(874), 1, + anon_sym_LBRACE, + STATE(1374), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64392] = 3, - ACTIONS(279), 1, + [65297] = 3, + ACTIONS(3564), 1, anon_sym_LBRACE, - STATE(1053), 1, - sym_block, + STATE(301), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64403] = 3, - ACTIONS(4857), 1, - anon_sym_LT, - STATE(648), 1, - sym_type_parameters, + [65308] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64414] = 2, + ACTIONS(4939), 2, + sym_float_literal, + sym_integer_literal, + [65317] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4859), 2, + ACTIONS(4941), 2, anon_sym_const, sym_mutable_specifier, - [64423] = 2, + [65326] = 3, + ACTIONS(2123), 1, + anon_sym_SQUOTE, + STATE(2046), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4401), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64432] = 3, - ACTIONS(3775), 1, - anon_sym_COLON, - ACTIONS(3795), 1, + [65337] = 2, + ACTIONS(2261), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64443] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4861), 2, - sym_identifier, - sym_metavariable, - [64452] = 2, + [65345] = 2, + ACTIONS(4943), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4393), 2, - anon_sym_COMMA, - anon_sym_GT, - [64461] = 2, - ACTIONS(4863), 1, - anon_sym_RPAREN, + [65353] = 2, + ACTIONS(4534), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64469] = 2, - ACTIONS(3326), 1, - anon_sym_COLON_COLON, + [65361] = 2, + ACTIONS(4945), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64477] = 2, - ACTIONS(4461), 1, + [65369] = 2, + ACTIONS(4947), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64485] = 2, - ACTIONS(4865), 1, + [65377] = 2, + ACTIONS(4510), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64493] = 2, - ACTIONS(4867), 1, + [65385] = 2, + ACTIONS(4949), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64501] = 2, - ACTIONS(4869), 1, + [65393] = 2, + ACTIONS(4951), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64509] = 2, - ACTIONS(4453), 1, - anon_sym_RBRACE, + [65401] = 2, + ACTIONS(4953), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64517] = 2, - ACTIONS(4871), 1, + [65409] = 2, + ACTIONS(4268), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64525] = 2, - ACTIONS(4873), 1, - sym_identifier, + [65417] = 2, + ACTIONS(4955), 1, + anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64533] = 2, - ACTIONS(4875), 1, - sym_identifier, + [65425] = 2, + ACTIONS(4957), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64541] = 2, - ACTIONS(4877), 1, - anon_sym_SEMI, + [65433] = 2, + ACTIONS(4959), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64549] = 2, - ACTIONS(4445), 1, - sym_identifier, + [65441] = 2, + ACTIONS(4961), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64557] = 2, - ACTIONS(4879), 1, - sym_identifier, + [65449] = 2, + ACTIONS(4963), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64565] = 2, - ACTIONS(4881), 1, - anon_sym_RBRACK, + [65457] = 2, + ACTIONS(4965), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64573] = 2, - ACTIONS(4883), 1, + [65465] = 2, + ACTIONS(4500), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64581] = 2, - ACTIONS(4441), 1, + [65473] = 2, + ACTIONS(4967), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64589] = 2, - ACTIONS(4885), 1, - anon_sym_SEMI, + [65481] = 2, + ACTIONS(4492), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64597] = 2, - ACTIONS(4887), 1, + [65489] = 2, + ACTIONS(4969), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64605] = 2, - ACTIONS(4889), 1, - sym_identifier, + [65497] = 2, + ACTIONS(3374), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64613] = 2, - ACTIONS(4891), 1, - sym_identifier, + [65505] = 2, + ACTIONS(4971), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64621] = 2, - ACTIONS(2243), 1, - anon_sym_PLUS, + [65513] = 2, + ACTIONS(4973), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64629] = 2, - ACTIONS(4893), 1, - sym_identifier, + [65521] = 2, + ACTIONS(4975), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64637] = 2, - ACTIONS(4895), 1, - anon_sym_COLON, + [65529] = 2, + ACTIONS(4484), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64645] = 2, - ACTIONS(4428), 1, + [65537] = 2, + ACTIONS(4977), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64653] = 2, - ACTIONS(4897), 1, + [65545] = 2, + ACTIONS(4979), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64661] = 2, - ACTIONS(4899), 1, - anon_sym_SEMI, + [65553] = 2, + ACTIONS(4462), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64669] = 2, - ACTIONS(4901), 1, + [65561] = 2, + ACTIONS(4981), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64677] = 2, - ACTIONS(4903), 1, + [65569] = 2, + ACTIONS(4983), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64685] = 2, - ACTIONS(4905), 1, - anon_sym_RBRACK, + [65577] = 2, + ACTIONS(4985), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64693] = 2, - ACTIONS(4426), 1, - anon_sym_GT, + [65585] = 2, + ACTIONS(3312), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64701] = 2, - ACTIONS(4435), 1, - anon_sym_RBRACE, + [65593] = 2, + ACTIONS(3867), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64709] = 2, - ACTIONS(4907), 1, + [65601] = 2, + ACTIONS(4987), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64717] = 2, - ACTIONS(4909), 1, + [65609] = 2, + ACTIONS(4989), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64725] = 2, - ACTIONS(4911), 1, + [65617] = 2, + ACTIONS(4991), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64733] = 2, - ACTIONS(4913), 1, + [65625] = 2, + ACTIONS(4993), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64741] = 2, - ACTIONS(4915), 1, - sym_identifier, + [65633] = 2, + ACTIONS(4995), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64749] = 2, - ACTIONS(4917), 1, - anon_sym_LBRACK, + [65641] = 2, + ACTIONS(4997), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64757] = 2, - ACTIONS(4919), 1, + [65649] = 2, + ACTIONS(3111), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64765] = 2, - ACTIONS(3091), 1, + [65657] = 2, + ACTIONS(3292), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64773] = 2, - ACTIONS(4921), 1, - anon_sym_SEMI, + [65665] = 2, + ACTIONS(4999), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64781] = 2, - ACTIONS(3251), 1, + [65673] = 2, + ACTIONS(2995), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64789] = 2, - ACTIONS(4923), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64797] = 2, - ACTIONS(4925), 1, - anon_sym_RPAREN, + [65681] = 2, + ACTIONS(5001), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64805] = 2, - ACTIONS(4927), 1, + [65689] = 2, + ACTIONS(5003), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64813] = 2, - ACTIONS(4929), 1, - sym_identifier, + [65697] = 2, + ACTIONS(5005), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64821] = 2, - ACTIONS(4931), 1, - anon_sym_COLON, + [65705] = 2, + ACTIONS(5007), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64829] = 2, - ACTIONS(2995), 1, - anon_sym_COLON_COLON, + [65713] = 2, + ACTIONS(4769), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64837] = 2, - ACTIONS(4933), 1, - anon_sym_COLON_COLON, + [65721] = 2, + ACTIONS(5009), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64845] = 2, - ACTIONS(2436), 1, - anon_sym_COLON_COLON, + [65729] = 2, + ACTIONS(5011), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64853] = 2, - ACTIONS(4935), 1, - anon_sym_fn, + [65737] = 2, + ACTIONS(5013), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64861] = 2, - ACTIONS(4937), 1, + [65745] = 2, + ACTIONS(5015), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64869] = 2, - ACTIONS(4939), 1, + [65753] = 2, + ACTIONS(5017), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64877] = 2, - ACTIONS(4406), 1, + [65761] = 2, + ACTIONS(5019), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64885] = 2, - ACTIONS(4941), 1, + [65769] = 2, + ACTIONS(5021), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64893] = 2, - ACTIONS(4943), 1, + [65777] = 2, + ACTIONS(5023), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64901] = 2, - ACTIONS(4945), 1, - sym_identifier, + [65785] = 2, + ACTIONS(5025), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64909] = 2, - ACTIONS(4947), 1, + [65793] = 2, + ACTIONS(5027), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64917] = 2, - ACTIONS(4949), 1, + [65801] = 2, + ACTIONS(5029), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64925] = 2, - ACTIONS(4951), 1, - sym_identifier, + [65809] = 2, + ACTIONS(5031), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64933] = 2, - ACTIONS(4082), 1, - anon_sym_RPAREN, + [65817] = 2, + ACTIONS(5033), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64941] = 2, - ACTIONS(4953), 1, - anon_sym_RBRACK, + [65825] = 2, + ACTIONS(5035), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64949] = 2, - ACTIONS(4186), 1, + [65833] = 2, + ACTIONS(5037), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64957] = 2, - ACTIONS(4955), 1, + [65841] = 2, + ACTIONS(5039), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64965] = 2, - ACTIONS(4957), 1, - anon_sym_COLON, + [65849] = 2, + ACTIONS(2478), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64973] = 2, - ACTIONS(4959), 1, - sym_identifier, + [65857] = 2, + ACTIONS(5041), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64981] = 2, - ACTIONS(4855), 1, + [65865] = 2, + ACTIONS(4919), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64989] = 2, - ACTIONS(4472), 1, + [65873] = 2, + ACTIONS(5043), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64997] = 2, - ACTIONS(4961), 1, + [65881] = 2, + ACTIONS(5045), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65005] = 2, - ACTIONS(4963), 1, + [65889] = 2, + ACTIONS(5047), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65013] = 2, - ACTIONS(4965), 1, - anon_sym_RBRACK, + [65897] = 2, + ACTIONS(5049), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65021] = 2, - ACTIONS(4967), 1, + [65905] = 2, + ACTIONS(5051), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65029] = 2, - ACTIONS(4969), 1, - sym_identifier, + [65913] = 2, + ACTIONS(5053), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65037] = 2, - ACTIONS(4731), 1, - anon_sym_SEMI, + [65921] = 2, + ACTIONS(5055), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65045] = 2, - ACTIONS(4971), 1, - sym_identifier, + [65929] = 2, + ACTIONS(4387), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65053] = 2, - ACTIONS(4973), 1, - sym_identifier, + [65937] = 2, + ACTIONS(2472), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65061] = 2, - ACTIONS(2227), 1, - anon_sym_PLUS, + [65945] = 2, + ACTIONS(5057), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65069] = 2, - ACTIONS(4975), 1, - anon_sym_SEMI, + [65953] = 2, + ACTIONS(5059), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65077] = 2, - ACTIONS(4977), 1, + [65961] = 2, + ACTIONS(5061), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65085] = 2, - ACTIONS(4979), 1, + [65969] = 2, + ACTIONS(5063), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65093] = 2, - ACTIONS(4981), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65101] = 2, - ACTIONS(4983), 1, + [65977] = 2, + ACTIONS(2951), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65109] = 2, - ACTIONS(4985), 1, + [65985] = 2, + ACTIONS(5065), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65117] = 2, - ACTIONS(4987), 1, - anon_sym_EQ_GT, + [65993] = 2, + ACTIONS(5067), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65125] = 2, - ACTIONS(4989), 1, + [66001] = 2, + ACTIONS(5069), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65133] = 2, - ACTIONS(4991), 1, - anon_sym_RBRACK, + [66009] = 2, + ACTIONS(5071), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65141] = 2, - ACTIONS(4993), 1, - sym_identifier, + [66017] = 2, + ACTIONS(2247), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65149] = 2, - ACTIONS(4995), 1, - anon_sym_fn, + [66025] = 2, + ACTIONS(5073), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65157] = 2, - ACTIONS(2171), 1, - anon_sym_EQ_GT, + [66033] = 2, + ACTIONS(4290), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65165] = 2, - ACTIONS(4997), 1, - anon_sym_COLON_COLON, + [66041] = 2, + ACTIONS(5075), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65173] = 2, - ACTIONS(4999), 1, - anon_sym_COLON_COLON, + [66049] = 2, + ACTIONS(4540), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65181] = 2, - ACTIONS(5001), 1, + [66057] = 2, + ACTIONS(5077), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65189] = 2, - ACTIONS(3292), 1, - anon_sym_COLON_COLON, + [66065] = 2, + ACTIONS(5079), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65197] = 2, - ACTIONS(5003), 1, - anon_sym_LT, + [66073] = 2, + ACTIONS(5081), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66081] = 2, + ACTIONS(5083), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65205] = 2, - ACTIONS(638), 1, + [66089] = 2, + ACTIONS(363), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65213] = 2, - ACTIONS(3855), 1, - sym_identifier, + [66097] = 2, + ACTIONS(5085), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65221] = 2, - ACTIONS(5005), 1, + [66105] = 2, + ACTIONS(4538), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65229] = 2, - ACTIONS(5007), 1, + [66113] = 2, + ACTIONS(5087), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66121] = 2, + ACTIONS(4351), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65237] = 2, - ACTIONS(5009), 1, - sym_identifier, + [66129] = 2, + ACTIONS(5089), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65245] = 2, - ACTIONS(5011), 1, + [66137] = 2, + ACTIONS(5091), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65253] = 2, - ACTIONS(5013), 1, + [66145] = 2, + ACTIONS(5093), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65261] = 2, - ACTIONS(5015), 1, - anon_sym_RBRACK, + [66153] = 2, + ACTIONS(5095), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65269] = 2, - ACTIONS(5017), 1, + [66161] = 2, + ACTIONS(5097), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65277] = 2, - ACTIONS(5019), 1, + [66169] = 2, + ACTIONS(5099), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65285] = 2, - ACTIONS(4500), 1, - sym_identifier, + [66177] = 2, + ACTIONS(4050), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65293] = 2, - ACTIONS(3268), 1, - anon_sym_COLON_COLON, + [66185] = 2, + ACTIONS(5101), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65301] = 2, - ACTIONS(3863), 1, - anon_sym_COLON_COLON, + [66193] = 2, + ACTIONS(5103), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65309] = 2, - ACTIONS(5021), 1, - sym_identifier, + [66201] = 2, + ACTIONS(4549), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65317] = 2, - ACTIONS(4184), 1, + [66209] = 2, + ACTIONS(5105), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65325] = 2, - ACTIONS(5023), 1, - anon_sym_COLON, + [66217] = 2, + ACTIONS(4565), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65333] = 2, - ACTIONS(4312), 1, + [66225] = 2, + ACTIONS(4522), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65341] = 2, - ACTIONS(4306), 1, - anon_sym_RBRACE, + [66233] = 2, + ACTIONS(5107), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65349] = 2, - ACTIONS(5025), 1, + [66241] = 2, + ACTIONS(5109), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66249] = 2, + ACTIONS(4881), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66257] = 2, + ACTIONS(5111), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65357] = 2, - ACTIONS(2460), 1, - anon_sym_COLON_COLON, + [66265] = 2, + ACTIONS(5113), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65365] = 2, - ACTIONS(2432), 1, + [66273] = 2, + ACTIONS(2464), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65373] = 2, - ACTIONS(5027), 1, - sym_identifier, + [66281] = 2, + ACTIONS(5115), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65381] = 2, - ACTIONS(5029), 1, - anon_sym_fn, + [66289] = 2, + ACTIONS(4873), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65389] = 2, - ACTIONS(5031), 1, - sym_identifier, + [66297] = 2, + ACTIONS(5117), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65397] = 2, - ACTIONS(5033), 1, + [66305] = 2, + ACTIONS(5119), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65405] = 2, - ACTIONS(5035), 1, - sym_identifier, + [66313] = 2, + ACTIONS(5121), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65413] = 2, - ACTIONS(5037), 1, - sym_identifier, + [66321] = 2, + ACTIONS(3821), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65421] = 2, - ACTIONS(4008), 1, - anon_sym_RBRACK, + [66329] = 2, + ACTIONS(5123), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65429] = 2, - ACTIONS(5039), 1, + [66337] = 2, + ACTIONS(5125), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65437] = 2, - ACTIONS(5041), 1, + [66345] = 2, + ACTIONS(5127), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65445] = 2, - ACTIONS(5043), 1, - anon_sym_SEMI, + [66353] = 2, + ACTIONS(5129), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65453] = 2, - ACTIONS(5045), 1, - sym_identifier, + [66361] = 2, + ACTIONS(2179), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65461] = 2, - ACTIONS(363), 1, - anon_sym_RBRACK, + [66369] = 2, + ACTIONS(3257), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65469] = 2, - ACTIONS(5047), 1, - anon_sym_LBRACK, + [66377] = 2, + ACTIONS(5131), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65477] = 2, - ACTIONS(5049), 1, - sym_identifier, + [66385] = 2, + ACTIONS(5133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65485] = 2, - ACTIONS(5051), 1, - sym_identifier, + [66393] = 2, + ACTIONS(2866), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65493] = 2, - ACTIONS(5053), 1, - sym_identifier, + [66401] = 2, + ACTIONS(5135), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65501] = 2, - ACTIONS(5055), 1, - anon_sym_fn, + [66409] = 2, + ACTIONS(5137), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65509] = 2, - ACTIONS(4028), 1, + [66417] = 2, + ACTIONS(5139), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65517] = 2, - ACTIONS(5057), 1, - anon_sym_COLON, + [66425] = 2, + ACTIONS(5141), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65525] = 2, - ACTIONS(5059), 1, - anon_sym_EQ, + [66433] = 2, + ACTIONS(5143), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65533] = 2, - ACTIONS(5061), 1, - anon_sym_RPAREN, + [66441] = 2, + ACTIONS(3795), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65541] = 2, - ACTIONS(3757), 1, - anon_sym_COLON_COLON, + [66449] = 2, + ACTIONS(5145), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65549] = 2, - ACTIONS(5063), 1, + [66457] = 2, + ACTIONS(5147), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65557] = 2, - ACTIONS(5065), 1, - anon_sym_COLON, + [66465] = 2, + ACTIONS(5149), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65565] = 2, - ACTIONS(4294), 1, - anon_sym_RBRACE, + [66473] = 2, + ACTIONS(5151), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65573] = 2, - ACTIONS(2438), 1, - anon_sym_COLON_COLON, + [66481] = 2, + ACTIONS(5153), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65581] = 2, - ACTIONS(5067), 1, + [66489] = 2, + ACTIONS(2480), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65589] = 2, - ACTIONS(3223), 1, - anon_sym_fn, + [66497] = 2, + ACTIONS(5155), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65597] = 2, - ACTIONS(5069), 1, - sym_identifier, + [66505] = 2, + ACTIONS(628), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65605] = 2, - ACTIONS(3960), 1, - anon_sym_RPAREN, + [66513] = 2, + ACTIONS(5157), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65613] = 2, - ACTIONS(5071), 1, - ts_builtin_sym_end, + [66521] = 2, + ACTIONS(2175), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65621] = 2, - ACTIONS(2881), 1, - anon_sym_COLON_COLON, + [66529] = 2, + ACTIONS(5159), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65629] = 2, - ACTIONS(5073), 1, - anon_sym_SEMI, + [66537] = 2, + ACTIONS(5161), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65637] = 2, - ACTIONS(5075), 1, - anon_sym_SEMI, + [66545] = 2, + ACTIONS(5163), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65645] = 2, - ACTIONS(4537), 1, - sym_identifier, + [66553] = 2, + ACTIONS(3785), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65653] = 2, - ACTIONS(5077), 1, + [66561] = 2, + ACTIONS(5165), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65661] = 2, - ACTIONS(5079), 1, + [66569] = 2, + ACTIONS(5167), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65669] = 2, - ACTIONS(5081), 1, - sym_identifier, + [66577] = 2, + ACTIONS(5169), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65677] = 2, - ACTIONS(5083), 1, + [66585] = 2, + ACTIONS(5171), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65685] = 2, - ACTIONS(5085), 1, - anon_sym_RBRACK, + [66593] = 2, + ACTIONS(5173), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65693] = 2, - ACTIONS(5087), 1, + [66601] = 2, + ACTIONS(5175), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65701] = 2, - ACTIONS(4557), 1, + [66609] = 2, + ACTIONS(5177), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65709] = 2, - ACTIONS(3811), 1, + [66617] = 2, + ACTIONS(3941), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65717] = 2, - ACTIONS(5089), 1, + [66625] = 2, + ACTIONS(5179), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65725] = 2, - ACTIONS(4843), 1, - anon_sym_COLON_COLON, + [66633] = 2, + ACTIONS(5181), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65733] = 2, - ACTIONS(3845), 1, + [66641] = 2, + ACTIONS(3915), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65741] = 2, - ACTIONS(5091), 1, + [66649] = 2, + ACTIONS(5183), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65749] = 2, - ACTIONS(5093), 1, - sym_identifier, + [66657] = 2, + ACTIONS(5185), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65757] = 2, - ACTIONS(3825), 1, + [66665] = 2, + ACTIONS(3933), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65765] = 2, - ACTIONS(5095), 1, + [66673] = 2, + ACTIONS(5187), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65773] = 2, - ACTIONS(5097), 1, - sym_identifier, + [66681] = 2, + ACTIONS(4897), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65781] = 2, - ACTIONS(5099), 1, - anon_sym_LPAREN, + [66689] = 2, + ACTIONS(4787), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65789] = 2, - ACTIONS(5101), 1, + [66697] = 2, + ACTIONS(3801), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65797] = 2, - ACTIONS(5103), 1, - anon_sym_SEMI, + [66705] = 2, + ACTIONS(3855), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65805] = 2, - ACTIONS(5105), 1, + [66713] = 2, + ACTIONS(5189), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65813] = 2, - ACTIONS(5107), 1, + [66721] = 2, + ACTIONS(5191), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65821] = 2, - ACTIONS(5109), 1, + [66729] = 2, + ACTIONS(5193), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65829] = 2, - ACTIONS(5111), 1, + [66737] = 2, + ACTIONS(5195), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65837] = 2, - ACTIONS(5113), 1, - sym_identifier, + [66745] = 2, + ACTIONS(5197), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65845] = 2, - ACTIONS(3729), 1, - anon_sym_SEMI, + [66753] = 2, + ACTIONS(5199), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65853] = 2, - ACTIONS(2917), 1, - anon_sym_RPAREN, + [66761] = 2, + ACTIONS(3298), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65861] = 2, - ACTIONS(5115), 1, + [66769] = 2, + ACTIONS(5201), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65869] = 2, - ACTIONS(5117), 1, + [66777] = 2, + ACTIONS(5203), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65877] = 2, - ACTIONS(5119), 1, + [66785] = 2, + ACTIONS(5205), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65885] = 2, - ACTIONS(5121), 1, - anon_sym_RPAREN, + [66793] = 2, + ACTIONS(5207), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65893] = 2, - ACTIONS(3741), 1, + [66801] = 2, + ACTIONS(3819), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65901] = 2, - ACTIONS(4613), 1, - anon_sym_RBRACE, + [66809] = 2, + ACTIONS(5209), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65909] = 2, - ACTIONS(5123), 1, + [66817] = 2, + ACTIONS(5211), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65917] = 2, - ACTIONS(5125), 1, - anon_sym_COLON, + [66825] = 2, + ACTIONS(5213), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65925] = 2, - ACTIONS(5127), 1, + [66833] = 2, + ACTIONS(5215), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65933] = 2, - ACTIONS(5129), 1, + [66841] = 2, + ACTIONS(5217), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65941] = 2, - ACTIONS(5131), 1, + [66849] = 2, + ACTIONS(5219), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65949] = 2, - ACTIONS(3930), 1, - anon_sym_RPAREN, + [66857] = 2, + ACTIONS(4670), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65957] = 2, - ACTIONS(5133), 1, - anon_sym_EQ, + [66865] = 2, + ACTIONS(5221), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65965] = 2, - ACTIONS(5135), 1, - anon_sym_EQ_GT, + [66873] = 2, + ACTIONS(4006), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65973] = 2, - ACTIONS(5137), 1, + [66881] = 2, + ACTIONS(5223), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65981] = 2, - ACTIONS(5139), 1, + [66889] = 2, + ACTIONS(5225), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65989] = 2, - ACTIONS(5141), 1, - anon_sym_RBRACE, + [66897] = 2, + ACTIONS(5227), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65997] = 2, - ACTIONS(5143), 1, + [66905] = 2, + ACTIONS(5229), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66005] = 2, - ACTIONS(5145), 1, + [66913] = 2, + ACTIONS(5231), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66013] = 2, - ACTIONS(5147), 1, - anon_sym_EQ_GT, + [66921] = 2, + ACTIONS(4180), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66021] = 2, - ACTIONS(4221), 1, - anon_sym_RBRACE, + [66929] = 2, + ACTIONS(5233), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66029] = 2, - ACTIONS(2993), 1, + [66937] = 2, + ACTIONS(4276), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66037] = 2, - ACTIONS(5149), 1, + [66945] = 2, + ACTIONS(5235), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66045] = 2, - ACTIONS(5151), 1, - anon_sym_EQ_GT, + [66953] = 2, + ACTIONS(4026), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66053] = 2, - ACTIONS(5153), 1, + [66961] = 2, + ACTIONS(5237), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66061] = 2, - ACTIONS(5155), 1, - anon_sym_COLON, + [66969] = 2, + ACTIONS(5239), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66069] = 2, - ACTIONS(5157), 1, + [66977] = 2, + ACTIONS(5241), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66077] = 2, - ACTIONS(5159), 1, + [66985] = 2, + ACTIONS(5243), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66085] = 2, - ACTIONS(5161), 1, - anon_sym_SEMI, + [66993] = 2, + ACTIONS(5245), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66093] = 2, - ACTIONS(2203), 1, - anon_sym_EQ_GT, + [67001] = 2, + ACTIONS(5247), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66101] = 2, - ACTIONS(5163), 1, - anon_sym_LPAREN, + [67009] = 2, + ACTIONS(4732), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66109] = 2, - ACTIONS(4741), 1, - anon_sym_SEMI, + [67017] = 2, + ACTIONS(2993), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66117] = 2, - ACTIONS(5165), 1, - anon_sym_RBRACE, + [67025] = 2, + ACTIONS(5249), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66125] = 2, - ACTIONS(5167), 1, + [67033] = 2, + ACTIONS(5251), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66133] = 2, - ACTIONS(5169), 1, - anon_sym_RPAREN, + [67041] = 2, + ACTIONS(5253), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66141] = 2, - ACTIONS(3199), 1, + [67049] = 2, + ACTIONS(3233), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66149] = 2, - ACTIONS(5171), 1, + [67057] = 2, + ACTIONS(5255), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66157] = 2, - ACTIONS(5173), 1, + [67065] = 2, + ACTIONS(5257), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66165] = 2, - ACTIONS(5175), 1, + [67073] = 2, + ACTIONS(5259), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66173] = 2, - ACTIONS(4684), 1, - anon_sym_RBRACE, + [67081] = 2, + ACTIONS(5261), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66181] = 2, - ACTIONS(5177), 1, - sym_identifier, + [67089] = 2, + ACTIONS(4759), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66189] = 2, - ACTIONS(5179), 1, - anon_sym_SEMI, + [67097] = 2, + ACTIONS(4176), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66197] = 2, - ACTIONS(5181), 1, + [67105] = 2, + ACTIONS(5263), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66205] = 2, - ACTIONS(5183), 1, + [67113] = 2, + ACTIONS(5265), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66213] = 2, - ACTIONS(5185), 1, + [67121] = 2, + ACTIONS(5267), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66221] = 2, - ACTIONS(5187), 1, - sym_identifier, + [67129] = 2, + ACTIONS(5269), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66229] = 2, - ACTIONS(5189), 1, + [67137] = 2, + ACTIONS(5271), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66237] = 2, - ACTIONS(5191), 1, + [67145] = 2, + ACTIONS(5273), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66245] = 2, - ACTIONS(4733), 1, - anon_sym_SEMI, + [67153] = 2, + ACTIONS(5275), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66253] = 2, - ACTIONS(5193), 1, - sym_identifier, + [67161] = 2, + ACTIONS(4156), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66261] = 2, - ACTIONS(5195), 1, - sym_identifier, + [67169] = 2, + ACTIONS(4795), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66269] = 2, - ACTIONS(5197), 1, - sym_self, + [67177] = 2, + ACTIONS(5277), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66277] = 2, - ACTIONS(3946), 1, - anon_sym_RPAREN, + [67185] = 2, + ACTIONS(5279), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66285] = 2, - ACTIONS(5199), 1, - sym_identifier, + [67193] = 2, + ACTIONS(4791), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(589)] = 0, - [SMALL_STATE(590)] = 129, - [SMALL_STATE(591)] = 258, - [SMALL_STATE(592)] = 387, - [SMALL_STATE(593)] = 516, - [SMALL_STATE(594)] = 645, - [SMALL_STATE(595)] = 774, - [SMALL_STATE(596)] = 903, - [SMALL_STATE(597)] = 1032, - [SMALL_STATE(598)] = 1161, - [SMALL_STATE(599)] = 1290, - [SMALL_STATE(600)] = 1419, - [SMALL_STATE(601)] = 1548, - [SMALL_STATE(602)] = 1677, - [SMALL_STATE(603)] = 1806, - [SMALL_STATE(604)] = 1935, - [SMALL_STATE(605)] = 2064, - [SMALL_STATE(606)] = 2193, - [SMALL_STATE(607)] = 2322, - [SMALL_STATE(608)] = 2451, - [SMALL_STATE(609)] = 2580, - [SMALL_STATE(610)] = 2709, - [SMALL_STATE(611)] = 2838, - [SMALL_STATE(612)] = 2967, - [SMALL_STATE(613)] = 3096, - [SMALL_STATE(614)] = 3225, - [SMALL_STATE(615)] = 3354, - [SMALL_STATE(616)] = 3483, - [SMALL_STATE(617)] = 3612, - [SMALL_STATE(618)] = 3741, - [SMALL_STATE(619)] = 3870, - [SMALL_STATE(620)] = 3999, - [SMALL_STATE(621)] = 4128, - [SMALL_STATE(622)] = 4257, - [SMALL_STATE(623)] = 4386, - [SMALL_STATE(624)] = 4515, - [SMALL_STATE(625)] = 4644, - [SMALL_STATE(626)] = 4773, - [SMALL_STATE(627)] = 4902, - [SMALL_STATE(628)] = 5031, - [SMALL_STATE(629)] = 5160, - [SMALL_STATE(630)] = 5289, - [SMALL_STATE(631)] = 5418, - [SMALL_STATE(632)] = 5547, - [SMALL_STATE(633)] = 5676, - [SMALL_STATE(634)] = 5805, - [SMALL_STATE(635)] = 5934, - [SMALL_STATE(636)] = 6063, - [SMALL_STATE(637)] = 6192, - [SMALL_STATE(638)] = 6321, - [SMALL_STATE(639)] = 6450, - [SMALL_STATE(640)] = 6579, - [SMALL_STATE(641)] = 6708, - [SMALL_STATE(642)] = 6837, - [SMALL_STATE(643)] = 6966, - [SMALL_STATE(644)] = 7095, - [SMALL_STATE(645)] = 7224, - [SMALL_STATE(646)] = 7353, - [SMALL_STATE(647)] = 7482, - [SMALL_STATE(648)] = 7611, - [SMALL_STATE(649)] = 7740, - [SMALL_STATE(650)] = 7869, - [SMALL_STATE(651)] = 7998, - [SMALL_STATE(652)] = 8127, - [SMALL_STATE(653)] = 8256, - [SMALL_STATE(654)] = 8385, - [SMALL_STATE(655)] = 8514, - [SMALL_STATE(656)] = 8643, - [SMALL_STATE(657)] = 8772, - [SMALL_STATE(658)] = 8901, - [SMALL_STATE(659)] = 9030, - [SMALL_STATE(660)] = 9159, - [SMALL_STATE(661)] = 9288, - [SMALL_STATE(662)] = 9417, - [SMALL_STATE(663)] = 9546, - [SMALL_STATE(664)] = 9675, - [SMALL_STATE(665)] = 9804, - [SMALL_STATE(666)] = 9933, - [SMALL_STATE(667)] = 10062, - [SMALL_STATE(668)] = 10191, - [SMALL_STATE(669)] = 10320, - [SMALL_STATE(670)] = 10449, - [SMALL_STATE(671)] = 10578, - [SMALL_STATE(672)] = 10707, - [SMALL_STATE(673)] = 10836, - [SMALL_STATE(674)] = 10965, - [SMALL_STATE(675)] = 11094, - [SMALL_STATE(676)] = 11223, - [SMALL_STATE(677)] = 11352, - [SMALL_STATE(678)] = 11481, - [SMALL_STATE(679)] = 11610, - [SMALL_STATE(680)] = 11739, - [SMALL_STATE(681)] = 11868, - [SMALL_STATE(682)] = 11997, - [SMALL_STATE(683)] = 12126, - [SMALL_STATE(684)] = 12255, - [SMALL_STATE(685)] = 12384, - [SMALL_STATE(686)] = 12513, - [SMALL_STATE(687)] = 12644, - [SMALL_STATE(688)] = 12773, - [SMALL_STATE(689)] = 12902, - [SMALL_STATE(690)] = 13031, - [SMALL_STATE(691)] = 13160, - [SMALL_STATE(692)] = 13289, - [SMALL_STATE(693)] = 13418, - [SMALL_STATE(694)] = 13547, - [SMALL_STATE(695)] = 13676, - [SMALL_STATE(696)] = 13805, - [SMALL_STATE(697)] = 13934, - [SMALL_STATE(698)] = 14004, - [SMALL_STATE(699)] = 14069, - [SMALL_STATE(700)] = 14134, - [SMALL_STATE(701)] = 14199, - [SMALL_STATE(702)] = 14264, - [SMALL_STATE(703)] = 14326, - [SMALL_STATE(704)] = 14396, - [SMALL_STATE(705)] = 14463, - [SMALL_STATE(706)] = 14530, - [SMALL_STATE(707)] = 14590, - [SMALL_STATE(708)] = 14650, - [SMALL_STATE(709)] = 14710, - [SMALL_STATE(710)] = 14770, - [SMALL_STATE(711)] = 14826, - [SMALL_STATE(712)] = 14882, - [SMALL_STATE(713)] = 14946, - [SMALL_STATE(714)] = 15002, - [SMALL_STATE(715)] = 15066, - [SMALL_STATE(716)] = 15130, - [SMALL_STATE(717)] = 15186, - [SMALL_STATE(718)] = 15242, - [SMALL_STATE(719)] = 15306, - [SMALL_STATE(720)] = 15365, - [SMALL_STATE(721)] = 15424, - [SMALL_STATE(722)] = 15483, - [SMALL_STATE(723)] = 15540, - [SMALL_STATE(724)] = 15597, - [SMALL_STATE(725)] = 15654, - [SMALL_STATE(726)] = 15709, - [SMALL_STATE(727)] = 15766, - [SMALL_STATE(728)] = 15825, - [SMALL_STATE(729)] = 15879, - [SMALL_STATE(730)] = 15933, - [SMALL_STATE(731)] = 15987, - [SMALL_STATE(732)] = 16041, - [SMALL_STATE(733)] = 16095, - [SMALL_STATE(734)] = 16149, - [SMALL_STATE(735)] = 16203, - [SMALL_STATE(736)] = 16257, - [SMALL_STATE(737)] = 16311, - [SMALL_STATE(738)] = 16365, - [SMALL_STATE(739)] = 16419, - [SMALL_STATE(740)] = 16473, - [SMALL_STATE(741)] = 16527, - [SMALL_STATE(742)] = 16583, - [SMALL_STATE(743)] = 16637, - [SMALL_STATE(744)] = 16691, - [SMALL_STATE(745)] = 16747, - [SMALL_STATE(746)] = 16801, - [SMALL_STATE(747)] = 16855, - [SMALL_STATE(748)] = 16909, - [SMALL_STATE(749)] = 16963, - [SMALL_STATE(750)] = 17017, - [SMALL_STATE(751)] = 17071, - [SMALL_STATE(752)] = 17125, - [SMALL_STATE(753)] = 17179, - [SMALL_STATE(754)] = 17233, - [SMALL_STATE(755)] = 17287, - [SMALL_STATE(756)] = 17341, - [SMALL_STATE(757)] = 17395, - [SMALL_STATE(758)] = 17449, - [SMALL_STATE(759)] = 17505, - [SMALL_STATE(760)] = 17561, - [SMALL_STATE(761)] = 17615, - [SMALL_STATE(762)] = 17669, - [SMALL_STATE(763)] = 17723, - [SMALL_STATE(764)] = 17777, - [SMALL_STATE(765)] = 17833, - [SMALL_STATE(766)] = 17887, - [SMALL_STATE(767)] = 17941, - [SMALL_STATE(768)] = 17995, - [SMALL_STATE(769)] = 18049, - [SMALL_STATE(770)] = 18105, - [SMALL_STATE(771)] = 18159, - [SMALL_STATE(772)] = 18213, - [SMALL_STATE(773)] = 18267, - [SMALL_STATE(774)] = 18321, - [SMALL_STATE(775)] = 18377, - [SMALL_STATE(776)] = 18431, - [SMALL_STATE(777)] = 18485, - [SMALL_STATE(778)] = 18539, - [SMALL_STATE(779)] = 18593, - [SMALL_STATE(780)] = 18647, - [SMALL_STATE(781)] = 18701, - [SMALL_STATE(782)] = 18755, - [SMALL_STATE(783)] = 18809, - [SMALL_STATE(784)] = 18863, - [SMALL_STATE(785)] = 18917, - [SMALL_STATE(786)] = 18971, - [SMALL_STATE(787)] = 19025, - [SMALL_STATE(788)] = 19079, - [SMALL_STATE(789)] = 19133, - [SMALL_STATE(790)] = 19187, - [SMALL_STATE(791)] = 19241, - [SMALL_STATE(792)] = 19295, - [SMALL_STATE(793)] = 19349, - [SMALL_STATE(794)] = 19403, - [SMALL_STATE(795)] = 19457, - [SMALL_STATE(796)] = 19511, - [SMALL_STATE(797)] = 19565, - [SMALL_STATE(798)] = 19619, - [SMALL_STATE(799)] = 19673, - [SMALL_STATE(800)] = 19727, - [SMALL_STATE(801)] = 19781, - [SMALL_STATE(802)] = 19835, - [SMALL_STATE(803)] = 19889, - [SMALL_STATE(804)] = 19945, - [SMALL_STATE(805)] = 19999, - [SMALL_STATE(806)] = 20053, - [SMALL_STATE(807)] = 20107, - [SMALL_STATE(808)] = 20161, - [SMALL_STATE(809)] = 20215, - [SMALL_STATE(810)] = 20271, - [SMALL_STATE(811)] = 20325, - [SMALL_STATE(812)] = 20381, - [SMALL_STATE(813)] = 20435, - [SMALL_STATE(814)] = 20489, - [SMALL_STATE(815)] = 20543, - [SMALL_STATE(816)] = 20597, - [SMALL_STATE(817)] = 20651, - [SMALL_STATE(818)] = 20705, - [SMALL_STATE(819)] = 20759, - [SMALL_STATE(820)] = 20813, - [SMALL_STATE(821)] = 20867, - [SMALL_STATE(822)] = 20921, - [SMALL_STATE(823)] = 20975, - [SMALL_STATE(824)] = 21029, - [SMALL_STATE(825)] = 21083, - [SMALL_STATE(826)] = 21137, - [SMALL_STATE(827)] = 21191, - [SMALL_STATE(828)] = 21245, - [SMALL_STATE(829)] = 21299, - [SMALL_STATE(830)] = 21353, - [SMALL_STATE(831)] = 21407, - [SMALL_STATE(832)] = 21461, - [SMALL_STATE(833)] = 21515, - [SMALL_STATE(834)] = 21569, - [SMALL_STATE(835)] = 21623, - [SMALL_STATE(836)] = 21677, - [SMALL_STATE(837)] = 21731, - [SMALL_STATE(838)] = 21785, - [SMALL_STATE(839)] = 21839, - [SMALL_STATE(840)] = 21893, - [SMALL_STATE(841)] = 21947, - [SMALL_STATE(842)] = 22001, - [SMALL_STATE(843)] = 22055, - [SMALL_STATE(844)] = 22109, - [SMALL_STATE(845)] = 22163, - [SMALL_STATE(846)] = 22217, - [SMALL_STATE(847)] = 22271, - [SMALL_STATE(848)] = 22325, - [SMALL_STATE(849)] = 22379, - [SMALL_STATE(850)] = 22433, - [SMALL_STATE(851)] = 22487, - [SMALL_STATE(852)] = 22541, - [SMALL_STATE(853)] = 22595, - [SMALL_STATE(854)] = 22649, - [SMALL_STATE(855)] = 22703, - [SMALL_STATE(856)] = 22757, - [SMALL_STATE(857)] = 22813, - [SMALL_STATE(858)] = 22867, - [SMALL_STATE(859)] = 22921, - [SMALL_STATE(860)] = 22975, - [SMALL_STATE(861)] = 23029, - [SMALL_STATE(862)] = 23083, - [SMALL_STATE(863)] = 23137, - [SMALL_STATE(864)] = 23191, - [SMALL_STATE(865)] = 23245, - [SMALL_STATE(866)] = 23299, - [SMALL_STATE(867)] = 23353, - [SMALL_STATE(868)] = 23407, - [SMALL_STATE(869)] = 23461, - [SMALL_STATE(870)] = 23515, - [SMALL_STATE(871)] = 23569, - [SMALL_STATE(872)] = 23623, - [SMALL_STATE(873)] = 23677, - [SMALL_STATE(874)] = 23731, - [SMALL_STATE(875)] = 23785, - [SMALL_STATE(876)] = 23841, - [SMALL_STATE(877)] = 23895, - [SMALL_STATE(878)] = 23951, - [SMALL_STATE(879)] = 24007, - [SMALL_STATE(880)] = 24061, - [SMALL_STATE(881)] = 24115, - [SMALL_STATE(882)] = 24169, - [SMALL_STATE(883)] = 24223, - [SMALL_STATE(884)] = 24277, - [SMALL_STATE(885)] = 24331, - [SMALL_STATE(886)] = 24385, - [SMALL_STATE(887)] = 24441, - [SMALL_STATE(888)] = 24495, - [SMALL_STATE(889)] = 24549, - [SMALL_STATE(890)] = 24605, - [SMALL_STATE(891)] = 24659, - [SMALL_STATE(892)] = 24713, - [SMALL_STATE(893)] = 24767, - [SMALL_STATE(894)] = 24821, - [SMALL_STATE(895)] = 24875, - [SMALL_STATE(896)] = 24929, - [SMALL_STATE(897)] = 24983, - [SMALL_STATE(898)] = 25037, - [SMALL_STATE(899)] = 25091, - [SMALL_STATE(900)] = 25145, - [SMALL_STATE(901)] = 25199, - [SMALL_STATE(902)] = 25253, - [SMALL_STATE(903)] = 25307, - [SMALL_STATE(904)] = 25361, - [SMALL_STATE(905)] = 25415, - [SMALL_STATE(906)] = 25469, - [SMALL_STATE(907)] = 25523, - [SMALL_STATE(908)] = 25577, - [SMALL_STATE(909)] = 25631, - [SMALL_STATE(910)] = 25685, - [SMALL_STATE(911)] = 25743, - [SMALL_STATE(912)] = 25797, - [SMALL_STATE(913)] = 25851, - [SMALL_STATE(914)] = 25905, - [SMALL_STATE(915)] = 25959, - [SMALL_STATE(916)] = 26013, - [SMALL_STATE(917)] = 26067, - [SMALL_STATE(918)] = 26121, - [SMALL_STATE(919)] = 26175, - [SMALL_STATE(920)] = 26229, - [SMALL_STATE(921)] = 26283, - [SMALL_STATE(922)] = 26337, - [SMALL_STATE(923)] = 26391, - [SMALL_STATE(924)] = 26445, - [SMALL_STATE(925)] = 26499, - [SMALL_STATE(926)] = 26553, - [SMALL_STATE(927)] = 26607, - [SMALL_STATE(928)] = 26661, - [SMALL_STATE(929)] = 26715, - [SMALL_STATE(930)] = 26769, - [SMALL_STATE(931)] = 26823, - [SMALL_STATE(932)] = 26877, - [SMALL_STATE(933)] = 26931, - [SMALL_STATE(934)] = 26985, - [SMALL_STATE(935)] = 27039, - [SMALL_STATE(936)] = 27093, - [SMALL_STATE(937)] = 27147, - [SMALL_STATE(938)] = 27201, - [SMALL_STATE(939)] = 27255, - [SMALL_STATE(940)] = 27309, - [SMALL_STATE(941)] = 27363, - [SMALL_STATE(942)] = 27417, - [SMALL_STATE(943)] = 27471, - [SMALL_STATE(944)] = 27525, - [SMALL_STATE(945)] = 27579, - [SMALL_STATE(946)] = 27633, - [SMALL_STATE(947)] = 27687, - [SMALL_STATE(948)] = 27741, - [SMALL_STATE(949)] = 27795, - [SMALL_STATE(950)] = 27849, - [SMALL_STATE(951)] = 27903, - [SMALL_STATE(952)] = 27957, - [SMALL_STATE(953)] = 28011, - [SMALL_STATE(954)] = 28065, - [SMALL_STATE(955)] = 28118, - [SMALL_STATE(956)] = 28173, - [SMALL_STATE(957)] = 28226, - [SMALL_STATE(958)] = 28279, - [SMALL_STATE(959)] = 28332, - [SMALL_STATE(960)] = 28385, - [SMALL_STATE(961)] = 28438, - [SMALL_STATE(962)] = 28529, - [SMALL_STATE(963)] = 28582, - [SMALL_STATE(964)] = 28635, - [SMALL_STATE(965)] = 28688, - [SMALL_STATE(966)] = 28741, - [SMALL_STATE(967)] = 28794, - [SMALL_STATE(968)] = 28847, - [SMALL_STATE(969)] = 28900, - [SMALL_STATE(970)] = 28953, - [SMALL_STATE(971)] = 29008, - [SMALL_STATE(972)] = 29061, - [SMALL_STATE(973)] = 29114, - [SMALL_STATE(974)] = 29167, - [SMALL_STATE(975)] = 29222, - [SMALL_STATE(976)] = 29275, - [SMALL_STATE(977)] = 29328, - [SMALL_STATE(978)] = 29381, - [SMALL_STATE(979)] = 29434, - [SMALL_STATE(980)] = 29487, - [SMALL_STATE(981)] = 29546, - [SMALL_STATE(982)] = 29611, - [SMALL_STATE(983)] = 29664, - [SMALL_STATE(984)] = 29717, - [SMALL_STATE(985)] = 29770, - [SMALL_STATE(986)] = 29823, - [SMALL_STATE(987)] = 29876, - [SMALL_STATE(988)] = 29961, - [SMALL_STATE(989)] = 30014, - [SMALL_STATE(990)] = 30067, - [SMALL_STATE(991)] = 30120, - [SMALL_STATE(992)] = 30173, - [SMALL_STATE(993)] = 30226, - [SMALL_STATE(994)] = 30279, - [SMALL_STATE(995)] = 30332, - [SMALL_STATE(996)] = 30385, - [SMALL_STATE(997)] = 30438, - [SMALL_STATE(998)] = 30491, - [SMALL_STATE(999)] = 30544, - [SMALL_STATE(1000)] = 30597, - [SMALL_STATE(1001)] = 30650, - [SMALL_STATE(1002)] = 30703, - [SMALL_STATE(1003)] = 30756, - [SMALL_STATE(1004)] = 30809, - [SMALL_STATE(1005)] = 30862, - [SMALL_STATE(1006)] = 30947, - [SMALL_STATE(1007)] = 31000, - [SMALL_STATE(1008)] = 31065, - [SMALL_STATE(1009)] = 31118, - [SMALL_STATE(1010)] = 31171, - [SMALL_STATE(1011)] = 31224, - [SMALL_STATE(1012)] = 31277, - [SMALL_STATE(1013)] = 31330, - [SMALL_STATE(1014)] = 31383, - [SMALL_STATE(1015)] = 31436, - [SMALL_STATE(1016)] = 31489, - [SMALL_STATE(1017)] = 31544, - [SMALL_STATE(1018)] = 31597, - [SMALL_STATE(1019)] = 31650, - [SMALL_STATE(1020)] = 31739, - [SMALL_STATE(1021)] = 31792, - [SMALL_STATE(1022)] = 31845, - [SMALL_STATE(1023)] = 31898, - [SMALL_STATE(1024)] = 31951, - [SMALL_STATE(1025)] = 32004, - [SMALL_STATE(1026)] = 32057, - [SMALL_STATE(1027)] = 32142, - [SMALL_STATE(1028)] = 32195, - [SMALL_STATE(1029)] = 32248, - [SMALL_STATE(1030)] = 32315, - [SMALL_STATE(1031)] = 32368, - [SMALL_STATE(1032)] = 32421, - [SMALL_STATE(1033)] = 32474, - [SMALL_STATE(1034)] = 32527, - [SMALL_STATE(1035)] = 32592, - [SMALL_STATE(1036)] = 32645, - [SMALL_STATE(1037)] = 32698, - [SMALL_STATE(1038)] = 32751, - [SMALL_STATE(1039)] = 32804, - [SMALL_STATE(1040)] = 32857, - [SMALL_STATE(1041)] = 32910, - [SMALL_STATE(1042)] = 32963, - [SMALL_STATE(1043)] = 33054, - [SMALL_STATE(1044)] = 33119, - [SMALL_STATE(1045)] = 33172, - [SMALL_STATE(1046)] = 33225, - [SMALL_STATE(1047)] = 33278, - [SMALL_STATE(1048)] = 33331, - [SMALL_STATE(1049)] = 33384, - [SMALL_STATE(1050)] = 33437, - [SMALL_STATE(1051)] = 33490, - [SMALL_STATE(1052)] = 33543, - [SMALL_STATE(1053)] = 33596, - [SMALL_STATE(1054)] = 33649, - [SMALL_STATE(1055)] = 33702, - [SMALL_STATE(1056)] = 33759, - [SMALL_STATE(1057)] = 33848, - [SMALL_STATE(1058)] = 33901, - [SMALL_STATE(1059)] = 33954, - [SMALL_STATE(1060)] = 34039, - [SMALL_STATE(1061)] = 34092, - [SMALL_STATE(1062)] = 34145, - [SMALL_STATE(1063)] = 34198, - [SMALL_STATE(1064)] = 34251, - [SMALL_STATE(1065)] = 34304, - [SMALL_STATE(1066)] = 34389, - [SMALL_STATE(1067)] = 34458, - [SMALL_STATE(1068)] = 34531, - [SMALL_STATE(1069)] = 34606, - [SMALL_STATE(1070)] = 34689, - [SMALL_STATE(1071)] = 34770, - [SMALL_STATE(1072)] = 34823, - [SMALL_STATE(1073)] = 34894, - [SMALL_STATE(1074)] = 34949, - [SMALL_STATE(1075)] = 35026, - [SMALL_STATE(1076)] = 35086, - [SMALL_STATE(1077)] = 35138, - [SMALL_STATE(1078)] = 35190, - [SMALL_STATE(1079)] = 35277, - [SMALL_STATE(1080)] = 35362, - [SMALL_STATE(1081)] = 35457, - [SMALL_STATE(1082)] = 35536, - [SMALL_STATE(1083)] = 35587, - [SMALL_STATE(1084)] = 35638, - [SMALL_STATE(1085)] = 35725, - [SMALL_STATE(1086)] = 35812, - [SMALL_STATE(1087)] = 35899, - [SMALL_STATE(1088)] = 35994, - [SMALL_STATE(1089)] = 36079, - [SMALL_STATE(1090)] = 36135, - [SMALL_STATE(1091)] = 36189, - [SMALL_STATE(1092)] = 36281, - [SMALL_STATE(1093)] = 36357, - [SMALL_STATE(1094)] = 36433, - [SMALL_STATE(1095)] = 36509, - [SMALL_STATE(1096)] = 36563, - [SMALL_STATE(1097)] = 36655, - [SMALL_STATE(1098)] = 36731, - [SMALL_STATE(1099)] = 36820, - [SMALL_STATE(1100)] = 36907, - [SMALL_STATE(1101)] = 36994, - [SMALL_STATE(1102)] = 37083, - [SMALL_STATE(1103)] = 37132, - [SMALL_STATE(1104)] = 37181, - [SMALL_STATE(1105)] = 37230, - [SMALL_STATE(1106)] = 37319, - [SMALL_STATE(1107)] = 37368, - [SMALL_STATE(1108)] = 37421, - [SMALL_STATE(1109)] = 37470, - [SMALL_STATE(1110)] = 37559, - [SMALL_STATE(1111)] = 37648, - [SMALL_STATE(1112)] = 37699, - [SMALL_STATE(1113)] = 37788, - [SMALL_STATE(1114)] = 37875, - [SMALL_STATE(1115)] = 37964, - [SMALL_STATE(1116)] = 38053, - [SMALL_STATE(1117)] = 38140, - [SMALL_STATE(1118)] = 38189, - [SMALL_STATE(1119)] = 38278, - [SMALL_STATE(1120)] = 38367, - [SMALL_STATE(1121)] = 38456, - [SMALL_STATE(1122)] = 38545, - [SMALL_STATE(1123)] = 38632, - [SMALL_STATE(1124)] = 38719, - [SMALL_STATE(1125)] = 38806, - [SMALL_STATE(1126)] = 38895, - [SMALL_STATE(1127)] = 38982, - [SMALL_STATE(1128)] = 39071, - [SMALL_STATE(1129)] = 39160, - [SMALL_STATE(1130)] = 39249, - [SMALL_STATE(1131)] = 39336, - [SMALL_STATE(1132)] = 39425, - [SMALL_STATE(1133)] = 39514, - [SMALL_STATE(1134)] = 39603, - [SMALL_STATE(1135)] = 39692, - [SMALL_STATE(1136)] = 39779, - [SMALL_STATE(1137)] = 39868, - [SMALL_STATE(1138)] = 39957, - [SMALL_STATE(1139)] = 40008, - [SMALL_STATE(1140)] = 40097, - [SMALL_STATE(1141)] = 40146, - [SMALL_STATE(1142)] = 40235, - [SMALL_STATE(1143)] = 40324, - [SMALL_STATE(1144)] = 40413, - [SMALL_STATE(1145)] = 40502, - [SMALL_STATE(1146)] = 40591, - [SMALL_STATE(1147)] = 40680, - [SMALL_STATE(1148)] = 40769, - [SMALL_STATE(1149)] = 40858, - [SMALL_STATE(1150)] = 40947, - [SMALL_STATE(1151)] = 41036, - [SMALL_STATE(1152)] = 41125, - [SMALL_STATE(1153)] = 41174, - [SMALL_STATE(1154)] = 41263, - [SMALL_STATE(1155)] = 41352, - [SMALL_STATE(1156)] = 41441, - [SMALL_STATE(1157)] = 41530, - [SMALL_STATE(1158)] = 41619, - [SMALL_STATE(1159)] = 41668, - [SMALL_STATE(1160)] = 41757, - [SMALL_STATE(1161)] = 41846, - [SMALL_STATE(1162)] = 41935, - [SMALL_STATE(1163)] = 42024, - [SMALL_STATE(1164)] = 42113, - [SMALL_STATE(1165)] = 42186, - [SMALL_STATE(1166)] = 42275, - [SMALL_STATE(1167)] = 42361, - [SMALL_STATE(1168)] = 42447, - [SMALL_STATE(1169)] = 42527, - [SMALL_STATE(1170)] = 42613, - [SMALL_STATE(1171)] = 42699, - [SMALL_STATE(1172)] = 42785, - [SMALL_STATE(1173)] = 42871, - [SMALL_STATE(1174)] = 42957, - [SMALL_STATE(1175)] = 43043, - [SMALL_STATE(1176)] = 43129, - [SMALL_STATE(1177)] = 43215, - [SMALL_STATE(1178)] = 43301, - [SMALL_STATE(1179)] = 43387, - [SMALL_STATE(1180)] = 43473, - [SMALL_STATE(1181)] = 43559, - [SMALL_STATE(1182)] = 43645, - [SMALL_STATE(1183)] = 43731, - [SMALL_STATE(1184)] = 43817, - [SMALL_STATE(1185)] = 43903, - [SMALL_STATE(1186)] = 43989, - [SMALL_STATE(1187)] = 44075, - [SMALL_STATE(1188)] = 44161, - [SMALL_STATE(1189)] = 44247, - [SMALL_STATE(1190)] = 44297, - [SMALL_STATE(1191)] = 44383, - [SMALL_STATE(1192)] = 44433, - [SMALL_STATE(1193)] = 44493, - [SMALL_STATE(1194)] = 44579, - [SMALL_STATE(1195)] = 44641, - [SMALL_STATE(1196)] = 44701, - [SMALL_STATE(1197)] = 44781, - [SMALL_STATE(1198)] = 44867, - [SMALL_STATE(1199)] = 44953, - [SMALL_STATE(1200)] = 45039, - [SMALL_STATE(1201)] = 45117, - [SMALL_STATE(1202)] = 45167, - [SMALL_STATE(1203)] = 45253, - [SMALL_STATE(1204)] = 45307, - [SMALL_STATE(1205)] = 45393, - [SMALL_STATE(1206)] = 45465, - [SMALL_STATE(1207)] = 45531, - [SMALL_STATE(1208)] = 45607, - [SMALL_STATE(1209)] = 45667, - [SMALL_STATE(1210)] = 45745, - [SMALL_STATE(1211)] = 45831, - [SMALL_STATE(1212)] = 45901, - [SMALL_STATE(1213)] = 45981, - [SMALL_STATE(1214)] = 46061, - [SMALL_STATE(1215)] = 46147, - [SMALL_STATE(1216)] = 46207, - [SMALL_STATE(1217)] = 46275, - [SMALL_STATE(1218)] = 46339, - [SMALL_STATE(1219)] = 46425, - [SMALL_STATE(1220)] = 46505, - [SMALL_STATE(1221)] = 46583, - [SMALL_STATE(1222)] = 46669, - [SMALL_STATE(1223)] = 46719, - [SMALL_STATE(1224)] = 46769, - [SMALL_STATE(1225)] = 46840, - [SMALL_STATE(1226)] = 46908, - [SMALL_STATE(1227)] = 46976, - [SMALL_STATE(1228)] = 47041, - [SMALL_STATE(1229)] = 47106, - [SMALL_STATE(1230)] = 47171, - [SMALL_STATE(1231)] = 47236, - [SMALL_STATE(1232)] = 47301, - [SMALL_STATE(1233)] = 47341, - [SMALL_STATE(1234)] = 47381, - [SMALL_STATE(1235)] = 47421, - [SMALL_STATE(1236)] = 47476, - [SMALL_STATE(1237)] = 47531, - [SMALL_STATE(1238)] = 47586, - [SMALL_STATE(1239)] = 47641, - [SMALL_STATE(1240)] = 47696, - [SMALL_STATE(1241)] = 47751, - [SMALL_STATE(1242)] = 47806, - [SMALL_STATE(1243)] = 47858, - [SMALL_STATE(1244)] = 47910, - [SMALL_STATE(1245)] = 47940, - [SMALL_STATE(1246)] = 47970, - [SMALL_STATE(1247)] = 48012, - [SMALL_STATE(1248)] = 48052, - [SMALL_STATE(1249)] = 48081, - [SMALL_STATE(1250)] = 48118, - [SMALL_STATE(1251)] = 48147, - [SMALL_STATE(1252)] = 48176, - [SMALL_STATE(1253)] = 48205, - [SMALL_STATE(1254)] = 48234, - [SMALL_STATE(1255)] = 48263, - [SMALL_STATE(1256)] = 48300, - [SMALL_STATE(1257)] = 48329, - [SMALL_STATE(1258)] = 48358, - [SMALL_STATE(1259)] = 48390, - [SMALL_STATE(1260)] = 48444, - [SMALL_STATE(1261)] = 48498, - [SMALL_STATE(1262)] = 48530, - [SMALL_STATE(1263)] = 48562, - [SMALL_STATE(1264)] = 48587, - [SMALL_STATE(1265)] = 48610, - [SMALL_STATE(1266)] = 48634, - [SMALL_STATE(1267)] = 48656, - [SMALL_STATE(1268)] = 48680, - [SMALL_STATE(1269)] = 48702, - [SMALL_STATE(1270)] = 48732, - [SMALL_STATE(1271)] = 48776, - [SMALL_STATE(1272)] = 48798, - [SMALL_STATE(1273)] = 48822, - [SMALL_STATE(1274)] = 48846, - [SMALL_STATE(1275)] = 48870, - [SMALL_STATE(1276)] = 48894, - [SMALL_STATE(1277)] = 48918, - [SMALL_STATE(1278)] = 48942, - [SMALL_STATE(1279)] = 48966, - [SMALL_STATE(1280)] = 48988, - [SMALL_STATE(1281)] = 49034, - [SMALL_STATE(1282)] = 49078, - [SMALL_STATE(1283)] = 49102, - [SMALL_STATE(1284)] = 49125, - [SMALL_STATE(1285)] = 49146, - [SMALL_STATE(1286)] = 49169, - [SMALL_STATE(1287)] = 49194, - [SMALL_STATE(1288)] = 49215, - [SMALL_STATE(1289)] = 49242, - [SMALL_STATE(1290)] = 49267, - [SMALL_STATE(1291)] = 49290, - [SMALL_STATE(1292)] = 49311, - [SMALL_STATE(1293)] = 49336, - [SMALL_STATE(1294)] = 49357, - [SMALL_STATE(1295)] = 49402, - [SMALL_STATE(1296)] = 49427, - [SMALL_STATE(1297)] = 49448, - [SMALL_STATE(1298)] = 49473, - [SMALL_STATE(1299)] = 49496, - [SMALL_STATE(1300)] = 49519, - [SMALL_STATE(1301)] = 49542, - [SMALL_STATE(1302)] = 49567, - [SMALL_STATE(1303)] = 49590, - [SMALL_STATE(1304)] = 49613, - [SMALL_STATE(1305)] = 49633, - [SMALL_STATE(1306)] = 49653, - [SMALL_STATE(1307)] = 49673, - [SMALL_STATE(1308)] = 49693, - [SMALL_STATE(1309)] = 49713, - [SMALL_STATE(1310)] = 49733, - [SMALL_STATE(1311)] = 49753, - [SMALL_STATE(1312)] = 49773, - [SMALL_STATE(1313)] = 49793, - [SMALL_STATE(1314)] = 49813, - [SMALL_STATE(1315)] = 49833, - [SMALL_STATE(1316)] = 49853, - [SMALL_STATE(1317)] = 49873, - [SMALL_STATE(1318)] = 49895, - [SMALL_STATE(1319)] = 49917, - [SMALL_STATE(1320)] = 49937, - [SMALL_STATE(1321)] = 49961, - [SMALL_STATE(1322)] = 49981, - [SMALL_STATE(1323)] = 50003, - [SMALL_STATE(1324)] = 50023, - [SMALL_STATE(1325)] = 50043, - [SMALL_STATE(1326)] = 50063, - [SMALL_STATE(1327)] = 50083, - [SMALL_STATE(1328)] = 50103, - [SMALL_STATE(1329)] = 50123, - [SMALL_STATE(1330)] = 50143, - [SMALL_STATE(1331)] = 50163, - [SMALL_STATE(1332)] = 50183, - [SMALL_STATE(1333)] = 50203, - [SMALL_STATE(1334)] = 50223, - [SMALL_STATE(1335)] = 50248, - [SMALL_STATE(1336)] = 50273, - [SMALL_STATE(1337)] = 50294, - [SMALL_STATE(1338)] = 50315, - [SMALL_STATE(1339)] = 50340, - [SMALL_STATE(1340)] = 50365, - [SMALL_STATE(1341)] = 50386, - [SMALL_STATE(1342)] = 50409, - [SMALL_STATE(1343)] = 50434, - [SMALL_STATE(1344)] = 50459, - [SMALL_STATE(1345)] = 50482, - [SMALL_STATE(1346)] = 50507, - [SMALL_STATE(1347)] = 50530, - [SMALL_STATE(1348)] = 50555, - [SMALL_STATE(1349)] = 50578, - [SMALL_STATE(1350)] = 50601, - [SMALL_STATE(1351)] = 50624, - [SMALL_STATE(1352)] = 50647, - [SMALL_STATE(1353)] = 50670, - [SMALL_STATE(1354)] = 50693, - [SMALL_STATE(1355)] = 50716, - [SMALL_STATE(1356)] = 50739, - [SMALL_STATE(1357)] = 50762, - [SMALL_STATE(1358)] = 50797, - [SMALL_STATE(1359)] = 50817, - [SMALL_STATE(1360)] = 50837, - [SMALL_STATE(1361)] = 50857, - [SMALL_STATE(1362)] = 50881, - [SMALL_STATE(1363)] = 50901, - [SMALL_STATE(1364)] = 50921, - [SMALL_STATE(1365)] = 50945, - [SMALL_STATE(1366)] = 50965, - [SMALL_STATE(1367)] = 50985, - [SMALL_STATE(1368)] = 51009, - [SMALL_STATE(1369)] = 51029, - [SMALL_STATE(1370)] = 51049, - [SMALL_STATE(1371)] = 51069, - [SMALL_STATE(1372)] = 51089, - [SMALL_STATE(1373)] = 51109, - [SMALL_STATE(1374)] = 51129, - [SMALL_STATE(1375)] = 51149, - [SMALL_STATE(1376)] = 51169, - [SMALL_STATE(1377)] = 51189, - [SMALL_STATE(1378)] = 51209, - [SMALL_STATE(1379)] = 51233, - [SMALL_STATE(1380)] = 51253, - [SMALL_STATE(1381)] = 51273, - [SMALL_STATE(1382)] = 51293, - [SMALL_STATE(1383)] = 51313, - [SMALL_STATE(1384)] = 51333, - [SMALL_STATE(1385)] = 51353, - [SMALL_STATE(1386)] = 51373, - [SMALL_STATE(1387)] = 51393, - [SMALL_STATE(1388)] = 51413, - [SMALL_STATE(1389)] = 51433, - [SMALL_STATE(1390)] = 51453, - [SMALL_STATE(1391)] = 51473, - [SMALL_STATE(1392)] = 51493, - [SMALL_STATE(1393)] = 51513, - [SMALL_STATE(1394)] = 51536, - [SMALL_STATE(1395)] = 51567, - [SMALL_STATE(1396)] = 51600, - [SMALL_STATE(1397)] = 51631, - [SMALL_STATE(1398)] = 51662, - [SMALL_STATE(1399)] = 51693, - [SMALL_STATE(1400)] = 51720, - [SMALL_STATE(1401)] = 51751, - [SMALL_STATE(1402)] = 51780, - [SMALL_STATE(1403)] = 51811, - [SMALL_STATE(1404)] = 51836, - [SMALL_STATE(1405)] = 51869, + [SMALL_STATE(594)] = 0, + [SMALL_STATE(595)] = 129, + [SMALL_STATE(596)] = 258, + [SMALL_STATE(597)] = 387, + [SMALL_STATE(598)] = 516, + [SMALL_STATE(599)] = 645, + [SMALL_STATE(600)] = 774, + [SMALL_STATE(601)] = 903, + [SMALL_STATE(602)] = 1032, + [SMALL_STATE(603)] = 1161, + [SMALL_STATE(604)] = 1290, + [SMALL_STATE(605)] = 1419, + [SMALL_STATE(606)] = 1548, + [SMALL_STATE(607)] = 1677, + [SMALL_STATE(608)] = 1806, + [SMALL_STATE(609)] = 1935, + [SMALL_STATE(610)] = 2064, + [SMALL_STATE(611)] = 2193, + [SMALL_STATE(612)] = 2322, + [SMALL_STATE(613)] = 2451, + [SMALL_STATE(614)] = 2580, + [SMALL_STATE(615)] = 2709, + [SMALL_STATE(616)] = 2838, + [SMALL_STATE(617)] = 2967, + [SMALL_STATE(618)] = 3096, + [SMALL_STATE(619)] = 3225, + [SMALL_STATE(620)] = 3354, + [SMALL_STATE(621)] = 3483, + [SMALL_STATE(622)] = 3612, + [SMALL_STATE(623)] = 3741, + [SMALL_STATE(624)] = 3870, + [SMALL_STATE(625)] = 3999, + [SMALL_STATE(626)] = 4128, + [SMALL_STATE(627)] = 4257, + [SMALL_STATE(628)] = 4386, + [SMALL_STATE(629)] = 4515, + [SMALL_STATE(630)] = 4644, + [SMALL_STATE(631)] = 4773, + [SMALL_STATE(632)] = 4902, + [SMALL_STATE(633)] = 5031, + [SMALL_STATE(634)] = 5160, + [SMALL_STATE(635)] = 5289, + [SMALL_STATE(636)] = 5418, + [SMALL_STATE(637)] = 5547, + [SMALL_STATE(638)] = 5676, + [SMALL_STATE(639)] = 5805, + [SMALL_STATE(640)] = 5934, + [SMALL_STATE(641)] = 6063, + [SMALL_STATE(642)] = 6192, + [SMALL_STATE(643)] = 6321, + [SMALL_STATE(644)] = 6450, + [SMALL_STATE(645)] = 6579, + [SMALL_STATE(646)] = 6708, + [SMALL_STATE(647)] = 6837, + [SMALL_STATE(648)] = 6966, + [SMALL_STATE(649)] = 7095, + [SMALL_STATE(650)] = 7224, + [SMALL_STATE(651)] = 7353, + [SMALL_STATE(652)] = 7482, + [SMALL_STATE(653)] = 7611, + [SMALL_STATE(654)] = 7740, + [SMALL_STATE(655)] = 7869, + [SMALL_STATE(656)] = 7998, + [SMALL_STATE(657)] = 8127, + [SMALL_STATE(658)] = 8256, + [SMALL_STATE(659)] = 8385, + [SMALL_STATE(660)] = 8514, + [SMALL_STATE(661)] = 8643, + [SMALL_STATE(662)] = 8772, + [SMALL_STATE(663)] = 8901, + [SMALL_STATE(664)] = 9030, + [SMALL_STATE(665)] = 9159, + [SMALL_STATE(666)] = 9290, + [SMALL_STATE(667)] = 9419, + [SMALL_STATE(668)] = 9548, + [SMALL_STATE(669)] = 9677, + [SMALL_STATE(670)] = 9806, + [SMALL_STATE(671)] = 9935, + [SMALL_STATE(672)] = 10064, + [SMALL_STATE(673)] = 10193, + [SMALL_STATE(674)] = 10322, + [SMALL_STATE(675)] = 10451, + [SMALL_STATE(676)] = 10580, + [SMALL_STATE(677)] = 10709, + [SMALL_STATE(678)] = 10838, + [SMALL_STATE(679)] = 10967, + [SMALL_STATE(680)] = 11096, + [SMALL_STATE(681)] = 11225, + [SMALL_STATE(682)] = 11354, + [SMALL_STATE(683)] = 11483, + [SMALL_STATE(684)] = 11612, + [SMALL_STATE(685)] = 11741, + [SMALL_STATE(686)] = 11870, + [SMALL_STATE(687)] = 11999, + [SMALL_STATE(688)] = 12128, + [SMALL_STATE(689)] = 12257, + [SMALL_STATE(690)] = 12386, + [SMALL_STATE(691)] = 12515, + [SMALL_STATE(692)] = 12644, + [SMALL_STATE(693)] = 12773, + [SMALL_STATE(694)] = 12902, + [SMALL_STATE(695)] = 13031, + [SMALL_STATE(696)] = 13160, + [SMALL_STATE(697)] = 13289, + [SMALL_STATE(698)] = 13418, + [SMALL_STATE(699)] = 13547, + [SMALL_STATE(700)] = 13676, + [SMALL_STATE(701)] = 13805, + [SMALL_STATE(702)] = 13934, + [SMALL_STATE(703)] = 14004, + [SMALL_STATE(704)] = 14069, + [SMALL_STATE(705)] = 14134, + [SMALL_STATE(706)] = 14199, + [SMALL_STATE(707)] = 14264, + [SMALL_STATE(708)] = 14326, + [SMALL_STATE(709)] = 14396, + [SMALL_STATE(710)] = 14463, + [SMALL_STATE(711)] = 14530, + [SMALL_STATE(712)] = 14594, + [SMALL_STATE(713)] = 14656, + [SMALL_STATE(714)] = 14712, + [SMALL_STATE(715)] = 14768, + [SMALL_STATE(716)] = 14832, + [SMALL_STATE(717)] = 14892, + [SMALL_STATE(718)] = 14948, + [SMALL_STATE(719)] = 15008, + [SMALL_STATE(720)] = 15068, + [SMALL_STATE(721)] = 15132, + [SMALL_STATE(722)] = 15196, + [SMALL_STATE(723)] = 15252, + [SMALL_STATE(724)] = 15308, + [SMALL_STATE(725)] = 15368, + [SMALL_STATE(726)] = 15427, + [SMALL_STATE(727)] = 15486, + [SMALL_STATE(728)] = 15543, + [SMALL_STATE(729)] = 15600, + [SMALL_STATE(730)] = 15657, + [SMALL_STATE(731)] = 15714, + [SMALL_STATE(732)] = 15769, + [SMALL_STATE(733)] = 15828, + [SMALL_STATE(734)] = 15882, + [SMALL_STATE(735)] = 15936, + [SMALL_STATE(736)] = 15990, + [SMALL_STATE(737)] = 16044, + [SMALL_STATE(738)] = 16098, + [SMALL_STATE(739)] = 16152, + [SMALL_STATE(740)] = 16206, + [SMALL_STATE(741)] = 16260, + [SMALL_STATE(742)] = 16314, + [SMALL_STATE(743)] = 16368, + [SMALL_STATE(744)] = 16422, + [SMALL_STATE(745)] = 16476, + [SMALL_STATE(746)] = 16530, + [SMALL_STATE(747)] = 16584, + [SMALL_STATE(748)] = 16640, + [SMALL_STATE(749)] = 16694, + [SMALL_STATE(750)] = 16748, + [SMALL_STATE(751)] = 16802, + [SMALL_STATE(752)] = 16856, + [SMALL_STATE(753)] = 16910, + [SMALL_STATE(754)] = 16964, + [SMALL_STATE(755)] = 17018, + [SMALL_STATE(756)] = 17072, + [SMALL_STATE(757)] = 17126, + [SMALL_STATE(758)] = 17180, + [SMALL_STATE(759)] = 17234, + [SMALL_STATE(760)] = 17288, + [SMALL_STATE(761)] = 17342, + [SMALL_STATE(762)] = 17398, + [SMALL_STATE(763)] = 17452, + [SMALL_STATE(764)] = 17508, + [SMALL_STATE(765)] = 17562, + [SMALL_STATE(766)] = 17616, + [SMALL_STATE(767)] = 17670, + [SMALL_STATE(768)] = 17724, + [SMALL_STATE(769)] = 17778, + [SMALL_STATE(770)] = 17832, + [SMALL_STATE(771)] = 17886, + [SMALL_STATE(772)] = 17940, + [SMALL_STATE(773)] = 17994, + [SMALL_STATE(774)] = 18048, + [SMALL_STATE(775)] = 18102, + [SMALL_STATE(776)] = 18156, + [SMALL_STATE(777)] = 18210, + [SMALL_STATE(778)] = 18264, + [SMALL_STATE(779)] = 18318, + [SMALL_STATE(780)] = 18372, + [SMALL_STATE(781)] = 18426, + [SMALL_STATE(782)] = 18480, + [SMALL_STATE(783)] = 18534, + [SMALL_STATE(784)] = 18588, + [SMALL_STATE(785)] = 18642, + [SMALL_STATE(786)] = 18696, + [SMALL_STATE(787)] = 18750, + [SMALL_STATE(788)] = 18804, + [SMALL_STATE(789)] = 18858, + [SMALL_STATE(790)] = 18912, + [SMALL_STATE(791)] = 18966, + [SMALL_STATE(792)] = 19020, + [SMALL_STATE(793)] = 19074, + [SMALL_STATE(794)] = 19128, + [SMALL_STATE(795)] = 19182, + [SMALL_STATE(796)] = 19236, + [SMALL_STATE(797)] = 19290, + [SMALL_STATE(798)] = 19346, + [SMALL_STATE(799)] = 19402, + [SMALL_STATE(800)] = 19458, + [SMALL_STATE(801)] = 19512, + [SMALL_STATE(802)] = 19566, + [SMALL_STATE(803)] = 19620, + [SMALL_STATE(804)] = 19674, + [SMALL_STATE(805)] = 19728, + [SMALL_STATE(806)] = 19782, + [SMALL_STATE(807)] = 19836, + [SMALL_STATE(808)] = 19890, + [SMALL_STATE(809)] = 19944, + [SMALL_STATE(810)] = 19998, + [SMALL_STATE(811)] = 20052, + [SMALL_STATE(812)] = 20108, + [SMALL_STATE(813)] = 20162, + [SMALL_STATE(814)] = 20216, + [SMALL_STATE(815)] = 20270, + [SMALL_STATE(816)] = 20324, + [SMALL_STATE(817)] = 20378, + [SMALL_STATE(818)] = 20432, + [SMALL_STATE(819)] = 20486, + [SMALL_STATE(820)] = 20540, + [SMALL_STATE(821)] = 20596, + [SMALL_STATE(822)] = 20650, + [SMALL_STATE(823)] = 20706, + [SMALL_STATE(824)] = 20764, + [SMALL_STATE(825)] = 20818, + [SMALL_STATE(826)] = 20874, + [SMALL_STATE(827)] = 20930, + [SMALL_STATE(828)] = 20984, + [SMALL_STATE(829)] = 21038, + [SMALL_STATE(830)] = 21094, + [SMALL_STATE(831)] = 21148, + [SMALL_STATE(832)] = 21202, + [SMALL_STATE(833)] = 21256, + [SMALL_STATE(834)] = 21310, + [SMALL_STATE(835)] = 21364, + [SMALL_STATE(836)] = 21418, + [SMALL_STATE(837)] = 21472, + [SMALL_STATE(838)] = 21526, + [SMALL_STATE(839)] = 21580, + [SMALL_STATE(840)] = 21634, + [SMALL_STATE(841)] = 21688, + [SMALL_STATE(842)] = 21742, + [SMALL_STATE(843)] = 21796, + [SMALL_STATE(844)] = 21850, + [SMALL_STATE(845)] = 21904, + [SMALL_STATE(846)] = 21958, + [SMALL_STATE(847)] = 22012, + [SMALL_STATE(848)] = 22066, + [SMALL_STATE(849)] = 22120, + [SMALL_STATE(850)] = 22174, + [SMALL_STATE(851)] = 22228, + [SMALL_STATE(852)] = 22282, + [SMALL_STATE(853)] = 22336, + [SMALL_STATE(854)] = 22390, + [SMALL_STATE(855)] = 22444, + [SMALL_STATE(856)] = 22498, + [SMALL_STATE(857)] = 22552, + [SMALL_STATE(858)] = 22606, + [SMALL_STATE(859)] = 22660, + [SMALL_STATE(860)] = 22714, + [SMALL_STATE(861)] = 22768, + [SMALL_STATE(862)] = 22822, + [SMALL_STATE(863)] = 22876, + [SMALL_STATE(864)] = 22930, + [SMALL_STATE(865)] = 22984, + [SMALL_STATE(866)] = 23038, + [SMALL_STATE(867)] = 23092, + [SMALL_STATE(868)] = 23146, + [SMALL_STATE(869)] = 23200, + [SMALL_STATE(870)] = 23254, + [SMALL_STATE(871)] = 23308, + [SMALL_STATE(872)] = 23362, + [SMALL_STATE(873)] = 23416, + [SMALL_STATE(874)] = 23470, + [SMALL_STATE(875)] = 23524, + [SMALL_STATE(876)] = 23578, + [SMALL_STATE(877)] = 23632, + [SMALL_STATE(878)] = 23686, + [SMALL_STATE(879)] = 23740, + [SMALL_STATE(880)] = 23794, + [SMALL_STATE(881)] = 23848, + [SMALL_STATE(882)] = 23902, + [SMALL_STATE(883)] = 23956, + [SMALL_STATE(884)] = 24010, + [SMALL_STATE(885)] = 24064, + [SMALL_STATE(886)] = 24118, + [SMALL_STATE(887)] = 24172, + [SMALL_STATE(888)] = 24226, + [SMALL_STATE(889)] = 24280, + [SMALL_STATE(890)] = 24334, + [SMALL_STATE(891)] = 24388, + [SMALL_STATE(892)] = 24442, + [SMALL_STATE(893)] = 24496, + [SMALL_STATE(894)] = 24550, + [SMALL_STATE(895)] = 24604, + [SMALL_STATE(896)] = 24658, + [SMALL_STATE(897)] = 24712, + [SMALL_STATE(898)] = 24766, + [SMALL_STATE(899)] = 24820, + [SMALL_STATE(900)] = 24874, + [SMALL_STATE(901)] = 24928, + [SMALL_STATE(902)] = 24982, + [SMALL_STATE(903)] = 25036, + [SMALL_STATE(904)] = 25090, + [SMALL_STATE(905)] = 25144, + [SMALL_STATE(906)] = 25198, + [SMALL_STATE(907)] = 25252, + [SMALL_STATE(908)] = 25306, + [SMALL_STATE(909)] = 25360, + [SMALL_STATE(910)] = 25414, + [SMALL_STATE(911)] = 25472, + [SMALL_STATE(912)] = 25526, + [SMALL_STATE(913)] = 25580, + [SMALL_STATE(914)] = 25634, + [SMALL_STATE(915)] = 25688, + [SMALL_STATE(916)] = 25742, + [SMALL_STATE(917)] = 25796, + [SMALL_STATE(918)] = 25850, + [SMALL_STATE(919)] = 25904, + [SMALL_STATE(920)] = 25958, + [SMALL_STATE(921)] = 26012, + [SMALL_STATE(922)] = 26066, + [SMALL_STATE(923)] = 26122, + [SMALL_STATE(924)] = 26176, + [SMALL_STATE(925)] = 26230, + [SMALL_STATE(926)] = 26286, + [SMALL_STATE(927)] = 26340, + [SMALL_STATE(928)] = 26394, + [SMALL_STATE(929)] = 26450, + [SMALL_STATE(930)] = 26504, + [SMALL_STATE(931)] = 26558, + [SMALL_STATE(932)] = 26612, + [SMALL_STATE(933)] = 26668, + [SMALL_STATE(934)] = 26722, + [SMALL_STATE(935)] = 26776, + [SMALL_STATE(936)] = 26830, + [SMALL_STATE(937)] = 26884, + [SMALL_STATE(938)] = 26938, + [SMALL_STATE(939)] = 26992, + [SMALL_STATE(940)] = 27046, + [SMALL_STATE(941)] = 27100, + [SMALL_STATE(942)] = 27154, + [SMALL_STATE(943)] = 27208, + [SMALL_STATE(944)] = 27262, + [SMALL_STATE(945)] = 27316, + [SMALL_STATE(946)] = 27370, + [SMALL_STATE(947)] = 27424, + [SMALL_STATE(948)] = 27478, + [SMALL_STATE(949)] = 27532, + [SMALL_STATE(950)] = 27586, + [SMALL_STATE(951)] = 27640, + [SMALL_STATE(952)] = 27694, + [SMALL_STATE(953)] = 27748, + [SMALL_STATE(954)] = 27802, + [SMALL_STATE(955)] = 27856, + [SMALL_STATE(956)] = 27910, + [SMALL_STATE(957)] = 27964, + [SMALL_STATE(958)] = 28018, + [SMALL_STATE(959)] = 28072, + [SMALL_STATE(960)] = 28126, + [SMALL_STATE(961)] = 28180, + [SMALL_STATE(962)] = 28234, + [SMALL_STATE(963)] = 28288, + [SMALL_STATE(964)] = 28342, + [SMALL_STATE(965)] = 28396, + [SMALL_STATE(966)] = 28449, + [SMALL_STATE(967)] = 28502, + [SMALL_STATE(968)] = 28555, + [SMALL_STATE(969)] = 28638, + [SMALL_STATE(970)] = 28713, + [SMALL_STATE(971)] = 28794, + [SMALL_STATE(972)] = 28867, + [SMALL_STATE(973)] = 28936, + [SMALL_STATE(974)] = 28989, + [SMALL_STATE(975)] = 29042, + [SMALL_STATE(976)] = 29095, + [SMALL_STATE(977)] = 29180, + [SMALL_STATE(978)] = 29233, + [SMALL_STATE(979)] = 29318, + [SMALL_STATE(980)] = 29371, + [SMALL_STATE(981)] = 29424, + [SMALL_STATE(982)] = 29479, + [SMALL_STATE(983)] = 29532, + [SMALL_STATE(984)] = 29599, + [SMALL_STATE(985)] = 29652, + [SMALL_STATE(986)] = 29717, + [SMALL_STATE(987)] = 29770, + [SMALL_STATE(988)] = 29823, + [SMALL_STATE(989)] = 29876, + [SMALL_STATE(990)] = 29929, + [SMALL_STATE(991)] = 29982, + [SMALL_STATE(992)] = 30035, + [SMALL_STATE(993)] = 30088, + [SMALL_STATE(994)] = 30141, + [SMALL_STATE(995)] = 30226, + [SMALL_STATE(996)] = 30303, + [SMALL_STATE(997)] = 30356, + [SMALL_STATE(998)] = 30409, + [SMALL_STATE(999)] = 30462, + [SMALL_STATE(1000)] = 30533, + [SMALL_STATE(1001)] = 30586, + [SMALL_STATE(1002)] = 30639, + [SMALL_STATE(1003)] = 30704, + [SMALL_STATE(1004)] = 30763, + [SMALL_STATE(1005)] = 30816, + [SMALL_STATE(1006)] = 30869, + [SMALL_STATE(1007)] = 30922, + [SMALL_STATE(1008)] = 30975, + [SMALL_STATE(1009)] = 31028, + [SMALL_STATE(1010)] = 31081, + [SMALL_STATE(1011)] = 31134, + [SMALL_STATE(1012)] = 31187, + [SMALL_STATE(1013)] = 31240, + [SMALL_STATE(1014)] = 31293, + [SMALL_STATE(1015)] = 31348, + [SMALL_STATE(1016)] = 31401, + [SMALL_STATE(1017)] = 31454, + [SMALL_STATE(1018)] = 31507, + [SMALL_STATE(1019)] = 31560, + [SMALL_STATE(1020)] = 31613, + [SMALL_STATE(1021)] = 31666, + [SMALL_STATE(1022)] = 31719, + [SMALL_STATE(1023)] = 31772, + [SMALL_STATE(1024)] = 31825, + [SMALL_STATE(1025)] = 31878, + [SMALL_STATE(1026)] = 31931, + [SMALL_STATE(1027)] = 31984, + [SMALL_STATE(1028)] = 32037, + [SMALL_STATE(1029)] = 32090, + [SMALL_STATE(1030)] = 32181, + [SMALL_STATE(1031)] = 32234, + [SMALL_STATE(1032)] = 32287, + [SMALL_STATE(1033)] = 32340, + [SMALL_STATE(1034)] = 32405, + [SMALL_STATE(1035)] = 32458, + [SMALL_STATE(1036)] = 32543, + [SMALL_STATE(1037)] = 32596, + [SMALL_STATE(1038)] = 32649, + [SMALL_STATE(1039)] = 32702, + [SMALL_STATE(1040)] = 32755, + [SMALL_STATE(1041)] = 32808, + [SMALL_STATE(1042)] = 32861, + [SMALL_STATE(1043)] = 32946, + [SMALL_STATE(1044)] = 32999, + [SMALL_STATE(1045)] = 33052, + [SMALL_STATE(1046)] = 33105, + [SMALL_STATE(1047)] = 33194, + [SMALL_STATE(1048)] = 33259, + [SMALL_STATE(1049)] = 33312, + [SMALL_STATE(1050)] = 33365, + [SMALL_STATE(1051)] = 33418, + [SMALL_STATE(1052)] = 33471, + [SMALL_STATE(1053)] = 33526, + [SMALL_STATE(1054)] = 33579, + [SMALL_STATE(1055)] = 33632, + [SMALL_STATE(1056)] = 33685, + [SMALL_STATE(1057)] = 33738, + [SMALL_STATE(1058)] = 33791, + [SMALL_STATE(1059)] = 33844, + [SMALL_STATE(1060)] = 33897, + [SMALL_STATE(1061)] = 33950, + [SMALL_STATE(1062)] = 34003, + [SMALL_STATE(1063)] = 34056, + [SMALL_STATE(1064)] = 34109, + [SMALL_STATE(1065)] = 34164, + [SMALL_STATE(1066)] = 34217, + [SMALL_STATE(1067)] = 34270, + [SMALL_STATE(1068)] = 34323, + [SMALL_STATE(1069)] = 34376, + [SMALL_STATE(1070)] = 34429, + [SMALL_STATE(1071)] = 34520, + [SMALL_STATE(1072)] = 34573, + [SMALL_STATE(1073)] = 34626, + [SMALL_STATE(1074)] = 34679, + [SMALL_STATE(1075)] = 34732, + [SMALL_STATE(1076)] = 34785, + [SMALL_STATE(1077)] = 34838, + [SMALL_STATE(1078)] = 34895, + [SMALL_STATE(1079)] = 34948, + [SMALL_STATE(1080)] = 35037, + [SMALL_STATE(1081)] = 35090, + [SMALL_STATE(1082)] = 35143, + [SMALL_STATE(1083)] = 35196, + [SMALL_STATE(1084)] = 35249, + [SMALL_STATE(1085)] = 35302, + [SMALL_STATE(1086)] = 35355, + [SMALL_STATE(1087)] = 35415, + [SMALL_STATE(1088)] = 35467, + [SMALL_STATE(1089)] = 35519, + [SMALL_STATE(1090)] = 35606, + [SMALL_STATE(1091)] = 35701, + [SMALL_STATE(1092)] = 35788, + [SMALL_STATE(1093)] = 35839, + [SMALL_STATE(1094)] = 35926, + [SMALL_STATE(1095)] = 35977, + [SMALL_STATE(1096)] = 36056, + [SMALL_STATE(1097)] = 36151, + [SMALL_STATE(1098)] = 36236, + [SMALL_STATE(1099)] = 36321, + [SMALL_STATE(1100)] = 36378, + [SMALL_STATE(1101)] = 36465, + [SMALL_STATE(1102)] = 36519, + [SMALL_STATE(1103)] = 36611, + [SMALL_STATE(1104)] = 36703, + [SMALL_STATE(1105)] = 36759, + [SMALL_STATE(1106)] = 36835, + [SMALL_STATE(1107)] = 36911, + [SMALL_STATE(1108)] = 36987, + [SMALL_STATE(1109)] = 37063, + [SMALL_STATE(1110)] = 37112, + [SMALL_STATE(1111)] = 37201, + [SMALL_STATE(1112)] = 37274, + [SMALL_STATE(1113)] = 37363, + [SMALL_STATE(1114)] = 37412, + [SMALL_STATE(1115)] = 37501, + [SMALL_STATE(1116)] = 37552, + [SMALL_STATE(1117)] = 37641, + [SMALL_STATE(1118)] = 37728, + [SMALL_STATE(1119)] = 37815, + [SMALL_STATE(1120)] = 37904, + [SMALL_STATE(1121)] = 37991, + [SMALL_STATE(1122)] = 38080, + [SMALL_STATE(1123)] = 38169, + [SMALL_STATE(1124)] = 38258, + [SMALL_STATE(1125)] = 38347, + [SMALL_STATE(1126)] = 38396, + [SMALL_STATE(1127)] = 38445, + [SMALL_STATE(1128)] = 38534, + [SMALL_STATE(1129)] = 38583, + [SMALL_STATE(1130)] = 38672, + [SMALL_STATE(1131)] = 38761, + [SMALL_STATE(1132)] = 38850, + [SMALL_STATE(1133)] = 38939, + [SMALL_STATE(1134)] = 38992, + [SMALL_STATE(1135)] = 39041, + [SMALL_STATE(1136)] = 39090, + [SMALL_STATE(1137)] = 39179, + [SMALL_STATE(1138)] = 39268, + [SMALL_STATE(1139)] = 39355, + [SMALL_STATE(1140)] = 39444, + [SMALL_STATE(1141)] = 39533, + [SMALL_STATE(1142)] = 39620, + [SMALL_STATE(1143)] = 39709, + [SMALL_STATE(1144)] = 39796, + [SMALL_STATE(1145)] = 39885, + [SMALL_STATE(1146)] = 39974, + [SMALL_STATE(1147)] = 40063, + [SMALL_STATE(1148)] = 40152, + [SMALL_STATE(1149)] = 40239, + [SMALL_STATE(1150)] = 40328, + [SMALL_STATE(1151)] = 40417, + [SMALL_STATE(1152)] = 40506, + [SMALL_STATE(1153)] = 40595, + [SMALL_STATE(1154)] = 40682, + [SMALL_STATE(1155)] = 40771, + [SMALL_STATE(1156)] = 40860, + [SMALL_STATE(1157)] = 40949, + [SMALL_STATE(1158)] = 40998, + [SMALL_STATE(1159)] = 41087, + [SMALL_STATE(1160)] = 41174, + [SMALL_STATE(1161)] = 41225, + [SMALL_STATE(1162)] = 41314, + [SMALL_STATE(1163)] = 41403, + [SMALL_STATE(1164)] = 41490, + [SMALL_STATE(1165)] = 41579, + [SMALL_STATE(1166)] = 41668, + [SMALL_STATE(1167)] = 41757, + [SMALL_STATE(1168)] = 41810, + [SMALL_STATE(1169)] = 41899, + [SMALL_STATE(1170)] = 41988, + [SMALL_STATE(1171)] = 42077, + [SMALL_STATE(1172)] = 42166, + [SMALL_STATE(1173)] = 42255, + [SMALL_STATE(1174)] = 42304, + [SMALL_STATE(1175)] = 42393, + [SMALL_STATE(1176)] = 42482, + [SMALL_STATE(1177)] = 42571, + [SMALL_STATE(1178)] = 42660, + [SMALL_STATE(1179)] = 42738, + [SMALL_STATE(1180)] = 42816, + [SMALL_STATE(1181)] = 42902, + [SMALL_STATE(1182)] = 42988, + [SMALL_STATE(1183)] = 43074, + [SMALL_STATE(1184)] = 43160, + [SMALL_STATE(1185)] = 43246, + [SMALL_STATE(1186)] = 43332, + [SMALL_STATE(1187)] = 43418, + [SMALL_STATE(1188)] = 43468, + [SMALL_STATE(1189)] = 43548, + [SMALL_STATE(1190)] = 43634, + [SMALL_STATE(1191)] = 43720, + [SMALL_STATE(1192)] = 43806, + [SMALL_STATE(1193)] = 43892, + [SMALL_STATE(1194)] = 43978, + [SMALL_STATE(1195)] = 44028, + [SMALL_STATE(1196)] = 44114, + [SMALL_STATE(1197)] = 44200, + [SMALL_STATE(1198)] = 44260, + [SMALL_STATE(1199)] = 44346, + [SMALL_STATE(1200)] = 44432, + [SMALL_STATE(1201)] = 44518, + [SMALL_STATE(1202)] = 44598, + [SMALL_STATE(1203)] = 44658, + [SMALL_STATE(1204)] = 44712, + [SMALL_STATE(1205)] = 44798, + [SMALL_STATE(1206)] = 44884, + [SMALL_STATE(1207)] = 44970, + [SMALL_STATE(1208)] = 45056, + [SMALL_STATE(1209)] = 45142, + [SMALL_STATE(1210)] = 45192, + [SMALL_STATE(1211)] = 45278, + [SMALL_STATE(1212)] = 45356, + [SMALL_STATE(1213)] = 45442, + [SMALL_STATE(1214)] = 45528, + [SMALL_STATE(1215)] = 45614, + [SMALL_STATE(1216)] = 45676, + [SMALL_STATE(1217)] = 45736, + [SMALL_STATE(1218)] = 45816, + [SMALL_STATE(1219)] = 45888, + [SMALL_STATE(1220)] = 45954, + [SMALL_STATE(1221)] = 46030, + [SMALL_STATE(1222)] = 46110, + [SMALL_STATE(1223)] = 46170, + [SMALL_STATE(1224)] = 46256, + [SMALL_STATE(1225)] = 46342, + [SMALL_STATE(1226)] = 46412, + [SMALL_STATE(1227)] = 46480, + [SMALL_STATE(1228)] = 46544, + [SMALL_STATE(1229)] = 46630, + [SMALL_STATE(1230)] = 46710, + [SMALL_STATE(1231)] = 46760, + [SMALL_STATE(1232)] = 46846, + [SMALL_STATE(1233)] = 46932, + [SMALL_STATE(1234)] = 47018, + [SMALL_STATE(1235)] = 47104, + [SMALL_STATE(1236)] = 47175, + [SMALL_STATE(1237)] = 47243, + [SMALL_STATE(1238)] = 47311, + [SMALL_STATE(1239)] = 47376, + [SMALL_STATE(1240)] = 47441, + [SMALL_STATE(1241)] = 47506, + [SMALL_STATE(1242)] = 47571, + [SMALL_STATE(1243)] = 47636, + [SMALL_STATE(1244)] = 47676, + [SMALL_STATE(1245)] = 47716, + [SMALL_STATE(1246)] = 47756, + [SMALL_STATE(1247)] = 47811, + [SMALL_STATE(1248)] = 47866, + [SMALL_STATE(1249)] = 47921, + [SMALL_STATE(1250)] = 47976, + [SMALL_STATE(1251)] = 48031, + [SMALL_STATE(1252)] = 48086, + [SMALL_STATE(1253)] = 48141, + [SMALL_STATE(1254)] = 48193, + [SMALL_STATE(1255)] = 48245, + [SMALL_STATE(1256)] = 48275, + [SMALL_STATE(1257)] = 48305, + [SMALL_STATE(1258)] = 48345, + [SMALL_STATE(1259)] = 48387, + [SMALL_STATE(1260)] = 48416, + [SMALL_STATE(1261)] = 48445, + [SMALL_STATE(1262)] = 48474, + [SMALL_STATE(1263)] = 48503, + [SMALL_STATE(1264)] = 48532, + [SMALL_STATE(1265)] = 48569, + [SMALL_STATE(1266)] = 48598, + [SMALL_STATE(1267)] = 48627, + [SMALL_STATE(1268)] = 48656, + [SMALL_STATE(1269)] = 48693, + [SMALL_STATE(1270)] = 48725, + [SMALL_STATE(1271)] = 48779, + [SMALL_STATE(1272)] = 48811, + [SMALL_STATE(1273)] = 48843, + [SMALL_STATE(1274)] = 48897, + [SMALL_STATE(1275)] = 48920, + [SMALL_STATE(1276)] = 48945, + [SMALL_STATE(1277)] = 48969, + [SMALL_STATE(1278)] = 48993, + [SMALL_STATE(1279)] = 49037, + [SMALL_STATE(1280)] = 49061, + [SMALL_STATE(1281)] = 49105, + [SMALL_STATE(1282)] = 49127, + [SMALL_STATE(1283)] = 49149, + [SMALL_STATE(1284)] = 49179, + [SMALL_STATE(1285)] = 49203, + [SMALL_STATE(1286)] = 49227, + [SMALL_STATE(1287)] = 49251, + [SMALL_STATE(1288)] = 49275, + [SMALL_STATE(1289)] = 49299, + [SMALL_STATE(1290)] = 49323, + [SMALL_STATE(1291)] = 49345, + [SMALL_STATE(1292)] = 49391, + [SMALL_STATE(1293)] = 49413, + [SMALL_STATE(1294)] = 49437, + [SMALL_STATE(1295)] = 49462, + [SMALL_STATE(1296)] = 49485, + [SMALL_STATE(1297)] = 49506, + [SMALL_STATE(1298)] = 49527, + [SMALL_STATE(1299)] = 49552, + [SMALL_STATE(1300)] = 49573, + [SMALL_STATE(1301)] = 49596, + [SMALL_STATE(1302)] = 49619, + [SMALL_STATE(1303)] = 49642, + [SMALL_STATE(1304)] = 49663, + [SMALL_STATE(1305)] = 49686, + [SMALL_STATE(1306)] = 49711, + [SMALL_STATE(1307)] = 49738, + [SMALL_STATE(1308)] = 49761, + [SMALL_STATE(1309)] = 49786, + [SMALL_STATE(1310)] = 49809, + [SMALL_STATE(1311)] = 49834, + [SMALL_STATE(1312)] = 49857, + [SMALL_STATE(1313)] = 49882, + [SMALL_STATE(1314)] = 49903, + [SMALL_STATE(1315)] = 49948, + [SMALL_STATE(1316)] = 49968, + [SMALL_STATE(1317)] = 49988, + [SMALL_STATE(1318)] = 50010, + [SMALL_STATE(1319)] = 50030, + [SMALL_STATE(1320)] = 50050, + [SMALL_STATE(1321)] = 50070, + [SMALL_STATE(1322)] = 50090, + [SMALL_STATE(1323)] = 50110, + [SMALL_STATE(1324)] = 50130, + [SMALL_STATE(1325)] = 50150, + [SMALL_STATE(1326)] = 50170, + [SMALL_STATE(1327)] = 50194, + [SMALL_STATE(1328)] = 50216, + [SMALL_STATE(1329)] = 50236, + [SMALL_STATE(1330)] = 50256, + [SMALL_STATE(1331)] = 50276, + [SMALL_STATE(1332)] = 50298, + [SMALL_STATE(1333)] = 50318, + [SMALL_STATE(1334)] = 50338, + [SMALL_STATE(1335)] = 50358, + [SMALL_STATE(1336)] = 50378, + [SMALL_STATE(1337)] = 50398, + [SMALL_STATE(1338)] = 50418, + [SMALL_STATE(1339)] = 50438, + [SMALL_STATE(1340)] = 50458, + [SMALL_STATE(1341)] = 50478, + [SMALL_STATE(1342)] = 50498, + [SMALL_STATE(1343)] = 50518, + [SMALL_STATE(1344)] = 50538, + [SMALL_STATE(1345)] = 50558, + [SMALL_STATE(1346)] = 50578, + [SMALL_STATE(1347)] = 50601, + [SMALL_STATE(1348)] = 50624, + [SMALL_STATE(1349)] = 50645, + [SMALL_STATE(1350)] = 50670, + [SMALL_STATE(1351)] = 50693, + [SMALL_STATE(1352)] = 50714, + [SMALL_STATE(1353)] = 50739, + [SMALL_STATE(1354)] = 50764, + [SMALL_STATE(1355)] = 50789, + [SMALL_STATE(1356)] = 50812, + [SMALL_STATE(1357)] = 50835, + [SMALL_STATE(1358)] = 50858, + [SMALL_STATE(1359)] = 50881, + [SMALL_STATE(1360)] = 50906, + [SMALL_STATE(1361)] = 50941, + [SMALL_STATE(1362)] = 50962, + [SMALL_STATE(1363)] = 50987, + [SMALL_STATE(1364)] = 51010, + [SMALL_STATE(1365)] = 51033, + [SMALL_STATE(1366)] = 51056, + [SMALL_STATE(1367)] = 51081, + [SMALL_STATE(1368)] = 51104, + [SMALL_STATE(1369)] = 51129, + [SMALL_STATE(1370)] = 51152, + [SMALL_STATE(1371)] = 51178, + [SMALL_STATE(1372)] = 51198, + [SMALL_STATE(1373)] = 51218, + [SMALL_STATE(1374)] = 51238, + [SMALL_STATE(1375)] = 51258, + [SMALL_STATE(1376)] = 51278, + [SMALL_STATE(1377)] = 51298, + [SMALL_STATE(1378)] = 51318, + [SMALL_STATE(1379)] = 51338, + [SMALL_STATE(1380)] = 51358, + [SMALL_STATE(1381)] = 51378, + [SMALL_STATE(1382)] = 51398, + [SMALL_STATE(1383)] = 51418, + [SMALL_STATE(1384)] = 51438, + [SMALL_STATE(1385)] = 51458, + [SMALL_STATE(1386)] = 51482, + [SMALL_STATE(1387)] = 51502, + [SMALL_STATE(1388)] = 51522, + [SMALL_STATE(1389)] = 51542, + [SMALL_STATE(1390)] = 51562, + [SMALL_STATE(1391)] = 51582, + [SMALL_STATE(1392)] = 51602, + [SMALL_STATE(1393)] = 51622, + [SMALL_STATE(1394)] = 51642, + [SMALL_STATE(1395)] = 51662, + [SMALL_STATE(1396)] = 51682, + [SMALL_STATE(1397)] = 51702, + [SMALL_STATE(1398)] = 51722, + [SMALL_STATE(1399)] = 51748, + [SMALL_STATE(1400)] = 51768, + [SMALL_STATE(1401)] = 51788, + [SMALL_STATE(1402)] = 51812, + [SMALL_STATE(1403)] = 51836, + [SMALL_STATE(1404)] = 51856, + [SMALL_STATE(1405)] = 51876, [SMALL_STATE(1406)] = 51900, - [SMALL_STATE(1407)] = 51923, - [SMALL_STATE(1408)] = 51954, - [SMALL_STATE(1409)] = 51979, - [SMALL_STATE(1410)] = 52004, - [SMALL_STATE(1411)] = 52035, - [SMALL_STATE(1412)] = 52068, - [SMALL_STATE(1413)] = 52101, - [SMALL_STATE(1414)] = 52123, - [SMALL_STATE(1415)] = 52153, - [SMALL_STATE(1416)] = 52185, - [SMALL_STATE(1417)] = 52215, - [SMALL_STATE(1418)] = 52237, - [SMALL_STATE(1419)] = 52267, - [SMALL_STATE(1420)] = 52297, - [SMALL_STATE(1421)] = 52329, - [SMALL_STATE(1422)] = 52355, - [SMALL_STATE(1423)] = 52375, - [SMALL_STATE(1424)] = 52405, - [SMALL_STATE(1425)] = 52431, - [SMALL_STATE(1426)] = 52461, - [SMALL_STATE(1427)] = 52491, - [SMALL_STATE(1428)] = 52513, - [SMALL_STATE(1429)] = 52543, - [SMALL_STATE(1430)] = 52575, - [SMALL_STATE(1431)] = 52605, - [SMALL_STATE(1432)] = 52625, - [SMALL_STATE(1433)] = 52655, - [SMALL_STATE(1434)] = 52685, - [SMALL_STATE(1435)] = 52715, - [SMALL_STATE(1436)] = 52745, - [SMALL_STATE(1437)] = 52775, - [SMALL_STATE(1438)] = 52805, - [SMALL_STATE(1439)] = 52835, - [SMALL_STATE(1440)] = 52865, + [SMALL_STATE(1407)] = 51920, + [SMALL_STATE(1408)] = 51951, + [SMALL_STATE(1409)] = 51984, + [SMALL_STATE(1410)] = 52015, + [SMALL_STATE(1411)] = 52046, + [SMALL_STATE(1412)] = 52079, + [SMALL_STATE(1413)] = 52112, + [SMALL_STATE(1414)] = 52137, + [SMALL_STATE(1415)] = 52168, + [SMALL_STATE(1416)] = 52193, + [SMALL_STATE(1417)] = 52218, + [SMALL_STATE(1418)] = 52249, + [SMALL_STATE(1419)] = 52276, + [SMALL_STATE(1420)] = 52307, + [SMALL_STATE(1421)] = 52338, + [SMALL_STATE(1422)] = 52369, + [SMALL_STATE(1423)] = 52392, + [SMALL_STATE(1424)] = 52425, + [SMALL_STATE(1425)] = 52448, + [SMALL_STATE(1426)] = 52471, + [SMALL_STATE(1427)] = 52500, + [SMALL_STATE(1428)] = 52531, + [SMALL_STATE(1429)] = 52553, + [SMALL_STATE(1430)] = 52583, + [SMALL_STATE(1431)] = 52613, + [SMALL_STATE(1432)] = 52635, + [SMALL_STATE(1433)] = 52661, + [SMALL_STATE(1434)] = 52693, + [SMALL_STATE(1435)] = 52725, + [SMALL_STATE(1436)] = 52747, + [SMALL_STATE(1437)] = 52777, + [SMALL_STATE(1438)] = 52809, + [SMALL_STATE(1439)] = 52839, + [SMALL_STATE(1440)] = 52861, [SMALL_STATE(1441)] = 52887, [SMALL_STATE(1442)] = 52917, [SMALL_STATE(1443)] = 52947, - [SMALL_STATE(1444)] = 52973, - [SMALL_STATE(1445)] = 53003, - [SMALL_STATE(1446)] = 53035, - [SMALL_STATE(1447)] = 53057, - [SMALL_STATE(1448)] = 53087, - [SMALL_STATE(1449)] = 53109, - [SMALL_STATE(1450)] = 53129, - [SMALL_STATE(1451)] = 53158, - [SMALL_STATE(1452)] = 53177, - [SMALL_STATE(1453)] = 53204, - [SMALL_STATE(1454)] = 53231, - [SMALL_STATE(1455)] = 53250, - [SMALL_STATE(1456)] = 53271, - [SMALL_STATE(1457)] = 53298, - [SMALL_STATE(1458)] = 53321, - [SMALL_STATE(1459)] = 53348, - [SMALL_STATE(1460)] = 53367, - [SMALL_STATE(1461)] = 53386, - [SMALL_STATE(1462)] = 53415, - [SMALL_STATE(1463)] = 53438, - [SMALL_STATE(1464)] = 53463, - [SMALL_STATE(1465)] = 53492, - [SMALL_STATE(1466)] = 53519, - [SMALL_STATE(1467)] = 53540, - [SMALL_STATE(1468)] = 53565, - [SMALL_STATE(1469)] = 53588, - [SMALL_STATE(1470)] = 53613, - [SMALL_STATE(1471)] = 53632, - [SMALL_STATE(1472)] = 53657, - [SMALL_STATE(1473)] = 53680, - [SMALL_STATE(1474)] = 53707, - [SMALL_STATE(1475)] = 53722, - [SMALL_STATE(1476)] = 53747, - [SMALL_STATE(1477)] = 53774, - [SMALL_STATE(1478)] = 53801, - [SMALL_STATE(1479)] = 53828, - [SMALL_STATE(1480)] = 53853, - [SMALL_STATE(1481)] = 53880, - [SMALL_STATE(1482)] = 53899, - [SMALL_STATE(1483)] = 53928, - [SMALL_STATE(1484)] = 53957, - [SMALL_STATE(1485)] = 53976, - [SMALL_STATE(1486)] = 54003, - [SMALL_STATE(1487)] = 54030, - [SMALL_STATE(1488)] = 54057, - [SMALL_STATE(1489)] = 54076, - [SMALL_STATE(1490)] = 54103, - [SMALL_STATE(1491)] = 54128, - [SMALL_STATE(1492)] = 54157, - [SMALL_STATE(1493)] = 54182, - [SMALL_STATE(1494)] = 54205, - [SMALL_STATE(1495)] = 54230, - [SMALL_STATE(1496)] = 54257, - [SMALL_STATE(1497)] = 54279, - [SMALL_STATE(1498)] = 54305, - [SMALL_STATE(1499)] = 54321, - [SMALL_STATE(1500)] = 54347, - [SMALL_STATE(1501)] = 54373, - [SMALL_STATE(1502)] = 54399, - [SMALL_STATE(1503)] = 54425, - [SMALL_STATE(1504)] = 54439, - [SMALL_STATE(1505)] = 54463, - [SMALL_STATE(1506)] = 54477, - [SMALL_STATE(1507)] = 54499, - [SMALL_STATE(1508)] = 54513, - [SMALL_STATE(1509)] = 54539, - [SMALL_STATE(1510)] = 54553, - [SMALL_STATE(1511)] = 54569, - [SMALL_STATE(1512)] = 54585, - [SMALL_STATE(1513)] = 54599, - [SMALL_STATE(1514)] = 54613, - [SMALL_STATE(1515)] = 54629, - [SMALL_STATE(1516)] = 54655, - [SMALL_STATE(1517)] = 54679, - [SMALL_STATE(1518)] = 54705, - [SMALL_STATE(1519)] = 54727, - [SMALL_STATE(1520)] = 54749, - [SMALL_STATE(1521)] = 54771, - [SMALL_STATE(1522)] = 54787, - [SMALL_STATE(1523)] = 54811, - [SMALL_STATE(1524)] = 54827, - [SMALL_STATE(1525)] = 54843, - [SMALL_STATE(1526)] = 54859, - [SMALL_STATE(1527)] = 54875, - [SMALL_STATE(1528)] = 54897, - [SMALL_STATE(1529)] = 54923, - [SMALL_STATE(1530)] = 54937, - [SMALL_STATE(1531)] = 54963, - [SMALL_STATE(1532)] = 54989, - [SMALL_STATE(1533)] = 55013, - [SMALL_STATE(1534)] = 55037, - [SMALL_STATE(1535)] = 55063, - [SMALL_STATE(1536)] = 55086, - [SMALL_STATE(1537)] = 55109, - [SMALL_STATE(1538)] = 55132, - [SMALL_STATE(1539)] = 55155, - [SMALL_STATE(1540)] = 55176, - [SMALL_STATE(1541)] = 55199, - [SMALL_STATE(1542)] = 55222, - [SMALL_STATE(1543)] = 55241, - [SMALL_STATE(1544)] = 55258, - [SMALL_STATE(1545)] = 55273, - [SMALL_STATE(1546)] = 55296, - [SMALL_STATE(1547)] = 55319, - [SMALL_STATE(1548)] = 55342, - [SMALL_STATE(1549)] = 55363, - [SMALL_STATE(1550)] = 55380, - [SMALL_STATE(1551)] = 55403, - [SMALL_STATE(1552)] = 55426, - [SMALL_STATE(1553)] = 55443, - [SMALL_STATE(1554)] = 55466, - [SMALL_STATE(1555)] = 55489, - [SMALL_STATE(1556)] = 55506, - [SMALL_STATE(1557)] = 55529, - [SMALL_STATE(1558)] = 55552, - [SMALL_STATE(1559)] = 55575, - [SMALL_STATE(1560)] = 55592, - [SMALL_STATE(1561)] = 55611, - [SMALL_STATE(1562)] = 55634, - [SMALL_STATE(1563)] = 55651, - [SMALL_STATE(1564)] = 55674, - [SMALL_STATE(1565)] = 55697, - [SMALL_STATE(1566)] = 55720, - [SMALL_STATE(1567)] = 55735, - [SMALL_STATE(1568)] = 55758, - [SMALL_STATE(1569)] = 55777, - [SMALL_STATE(1570)] = 55800, - [SMALL_STATE(1571)] = 55823, - [SMALL_STATE(1572)] = 55846, - [SMALL_STATE(1573)] = 55869, - [SMALL_STATE(1574)] = 55892, - [SMALL_STATE(1575)] = 55915, - [SMALL_STATE(1576)] = 55938, - [SMALL_STATE(1577)] = 55961, - [SMALL_STATE(1578)] = 55984, - [SMALL_STATE(1579)] = 56007, - [SMALL_STATE(1580)] = 56030, - [SMALL_STATE(1581)] = 56053, - [SMALL_STATE(1582)] = 56076, - [SMALL_STATE(1583)] = 56099, - [SMALL_STATE(1584)] = 56122, - [SMALL_STATE(1585)] = 56145, - [SMALL_STATE(1586)] = 56168, - [SMALL_STATE(1587)] = 56191, - [SMALL_STATE(1588)] = 56214, - [SMALL_STATE(1589)] = 56237, - [SMALL_STATE(1590)] = 56260, - [SMALL_STATE(1591)] = 56283, - [SMALL_STATE(1592)] = 56306, - [SMALL_STATE(1593)] = 56329, - [SMALL_STATE(1594)] = 56352, - [SMALL_STATE(1595)] = 56369, - [SMALL_STATE(1596)] = 56389, - [SMALL_STATE(1597)] = 56407, - [SMALL_STATE(1598)] = 56423, - [SMALL_STATE(1599)] = 56439, - [SMALL_STATE(1600)] = 56459, - [SMALL_STATE(1601)] = 56479, - [SMALL_STATE(1602)] = 56499, - [SMALL_STATE(1603)] = 56511, - [SMALL_STATE(1604)] = 56531, - [SMALL_STATE(1605)] = 56543, - [SMALL_STATE(1606)] = 56559, - [SMALL_STATE(1607)] = 56571, - [SMALL_STATE(1608)] = 56591, - [SMALL_STATE(1609)] = 56603, - [SMALL_STATE(1610)] = 56619, - [SMALL_STATE(1611)] = 56631, - [SMALL_STATE(1612)] = 56649, - [SMALL_STATE(1613)] = 56669, - [SMALL_STATE(1614)] = 56685, - [SMALL_STATE(1615)] = 56697, - [SMALL_STATE(1616)] = 56715, - [SMALL_STATE(1617)] = 56735, - [SMALL_STATE(1618)] = 56755, - [SMALL_STATE(1619)] = 56773, - [SMALL_STATE(1620)] = 56793, - [SMALL_STATE(1621)] = 56813, - [SMALL_STATE(1622)] = 56833, - [SMALL_STATE(1623)] = 56849, - [SMALL_STATE(1624)] = 56869, - [SMALL_STATE(1625)] = 56889, - [SMALL_STATE(1626)] = 56909, - [SMALL_STATE(1627)] = 56925, - [SMALL_STATE(1628)] = 56937, - [SMALL_STATE(1629)] = 56949, - [SMALL_STATE(1630)] = 56961, - [SMALL_STATE(1631)] = 56981, - [SMALL_STATE(1632)] = 57001, - [SMALL_STATE(1633)] = 57017, - [SMALL_STATE(1634)] = 57035, - [SMALL_STATE(1635)] = 57055, - [SMALL_STATE(1636)] = 57071, - [SMALL_STATE(1637)] = 57091, - [SMALL_STATE(1638)] = 57107, - [SMALL_STATE(1639)] = 57127, - [SMALL_STATE(1640)] = 57147, - [SMALL_STATE(1641)] = 57163, - [SMALL_STATE(1642)] = 57183, - [SMALL_STATE(1643)] = 57195, - [SMALL_STATE(1644)] = 57215, - [SMALL_STATE(1645)] = 57231, - [SMALL_STATE(1646)] = 57251, - [SMALL_STATE(1647)] = 57263, - [SMALL_STATE(1648)] = 57275, - [SMALL_STATE(1649)] = 57295, - [SMALL_STATE(1650)] = 57315, - [SMALL_STATE(1651)] = 57331, - [SMALL_STATE(1652)] = 57351, - [SMALL_STATE(1653)] = 57363, - [SMALL_STATE(1654)] = 57379, - [SMALL_STATE(1655)] = 57391, - [SMALL_STATE(1656)] = 57407, - [SMALL_STATE(1657)] = 57423, - [SMALL_STATE(1658)] = 57443, - [SMALL_STATE(1659)] = 57459, - [SMALL_STATE(1660)] = 57475, - [SMALL_STATE(1661)] = 57495, - [SMALL_STATE(1662)] = 57511, - [SMALL_STATE(1663)] = 57531, - [SMALL_STATE(1664)] = 57545, - [SMALL_STATE(1665)] = 57557, - [SMALL_STATE(1666)] = 57575, - [SMALL_STATE(1667)] = 57591, - [SMALL_STATE(1668)] = 57607, - [SMALL_STATE(1669)] = 57624, - [SMALL_STATE(1670)] = 57641, - [SMALL_STATE(1671)] = 57658, - [SMALL_STATE(1672)] = 57673, - [SMALL_STATE(1673)] = 57690, - [SMALL_STATE(1674)] = 57707, - [SMALL_STATE(1675)] = 57722, - [SMALL_STATE(1676)] = 57739, - [SMALL_STATE(1677)] = 57754, - [SMALL_STATE(1678)] = 57771, - [SMALL_STATE(1679)] = 57788, - [SMALL_STATE(1680)] = 57803, - [SMALL_STATE(1681)] = 57816, - [SMALL_STATE(1682)] = 57831, - [SMALL_STATE(1683)] = 57848, - [SMALL_STATE(1684)] = 57863, - [SMALL_STATE(1685)] = 57880, - [SMALL_STATE(1686)] = 57897, - [SMALL_STATE(1687)] = 57912, - [SMALL_STATE(1688)] = 57925, - [SMALL_STATE(1689)] = 57942, - [SMALL_STATE(1690)] = 57957, - [SMALL_STATE(1691)] = 57970, - [SMALL_STATE(1692)] = 57983, - [SMALL_STATE(1693)] = 58000, - [SMALL_STATE(1694)] = 58015, - [SMALL_STATE(1695)] = 58032, - [SMALL_STATE(1696)] = 58047, - [SMALL_STATE(1697)] = 58064, - [SMALL_STATE(1698)] = 58081, - [SMALL_STATE(1699)] = 58098, - [SMALL_STATE(1700)] = 58115, - [SMALL_STATE(1701)] = 58132, - [SMALL_STATE(1702)] = 58149, - [SMALL_STATE(1703)] = 58164, - [SMALL_STATE(1704)] = 58181, - [SMALL_STATE(1705)] = 58198, - [SMALL_STATE(1706)] = 58215, - [SMALL_STATE(1707)] = 58232, - [SMALL_STATE(1708)] = 58249, - [SMALL_STATE(1709)] = 58266, - [SMALL_STATE(1710)] = 58279, - [SMALL_STATE(1711)] = 58296, - [SMALL_STATE(1712)] = 58311, - [SMALL_STATE(1713)] = 58326, - [SMALL_STATE(1714)] = 58343, - [SMALL_STATE(1715)] = 58360, - [SMALL_STATE(1716)] = 58375, - [SMALL_STATE(1717)] = 58390, - [SMALL_STATE(1718)] = 58407, - [SMALL_STATE(1719)] = 58422, - [SMALL_STATE(1720)] = 58439, - [SMALL_STATE(1721)] = 58456, - [SMALL_STATE(1722)] = 58473, - [SMALL_STATE(1723)] = 58490, - [SMALL_STATE(1724)] = 58507, - [SMALL_STATE(1725)] = 58524, - [SMALL_STATE(1726)] = 58539, - [SMALL_STATE(1727)] = 58556, - [SMALL_STATE(1728)] = 58573, - [SMALL_STATE(1729)] = 58590, - [SMALL_STATE(1730)] = 58605, - [SMALL_STATE(1731)] = 58618, - [SMALL_STATE(1732)] = 58635, - [SMALL_STATE(1733)] = 58650, - [SMALL_STATE(1734)] = 58663, - [SMALL_STATE(1735)] = 58678, - [SMALL_STATE(1736)] = 58695, - [SMALL_STATE(1737)] = 58708, - [SMALL_STATE(1738)] = 58723, - [SMALL_STATE(1739)] = 58736, - [SMALL_STATE(1740)] = 58751, - [SMALL_STATE(1741)] = 58764, - [SMALL_STATE(1742)] = 58781, - [SMALL_STATE(1743)] = 58798, - [SMALL_STATE(1744)] = 58815, - [SMALL_STATE(1745)] = 58832, - [SMALL_STATE(1746)] = 58849, - [SMALL_STATE(1747)] = 58866, - [SMALL_STATE(1748)] = 58883, - [SMALL_STATE(1749)] = 58900, - [SMALL_STATE(1750)] = 58917, - [SMALL_STATE(1751)] = 58934, - [SMALL_STATE(1752)] = 58951, - [SMALL_STATE(1753)] = 58968, - [SMALL_STATE(1754)] = 58985, - [SMALL_STATE(1755)] = 59002, - [SMALL_STATE(1756)] = 59019, - [SMALL_STATE(1757)] = 59036, - [SMALL_STATE(1758)] = 59051, - [SMALL_STATE(1759)] = 59066, - [SMALL_STATE(1760)] = 59083, - [SMALL_STATE(1761)] = 59100, - [SMALL_STATE(1762)] = 59114, - [SMALL_STATE(1763)] = 59128, - [SMALL_STATE(1764)] = 59142, - [SMALL_STATE(1765)] = 59156, - [SMALL_STATE(1766)] = 59166, - [SMALL_STATE(1767)] = 59180, - [SMALL_STATE(1768)] = 59194, - [SMALL_STATE(1769)] = 59208, - [SMALL_STATE(1770)] = 59222, - [SMALL_STATE(1771)] = 59236, - [SMALL_STATE(1772)] = 59246, - [SMALL_STATE(1773)] = 59260, - [SMALL_STATE(1774)] = 59274, - [SMALL_STATE(1775)] = 59288, - [SMALL_STATE(1776)] = 59300, - [SMALL_STATE(1777)] = 59314, - [SMALL_STATE(1778)] = 59328, - [SMALL_STATE(1779)] = 59342, - [SMALL_STATE(1780)] = 59356, - [SMALL_STATE(1781)] = 59370, - [SMALL_STATE(1782)] = 59384, - [SMALL_STATE(1783)] = 59396, - [SMALL_STATE(1784)] = 59410, - [SMALL_STATE(1785)] = 59422, - [SMALL_STATE(1786)] = 59436, - [SMALL_STATE(1787)] = 59450, - [SMALL_STATE(1788)] = 59460, - [SMALL_STATE(1789)] = 59472, - [SMALL_STATE(1790)] = 59484, - [SMALL_STATE(1791)] = 59496, - [SMALL_STATE(1792)] = 59508, - [SMALL_STATE(1793)] = 59520, - [SMALL_STATE(1794)] = 59534, - [SMALL_STATE(1795)] = 59548, - [SMALL_STATE(1796)] = 59562, - [SMALL_STATE(1797)] = 59572, - [SMALL_STATE(1798)] = 59586, - [SMALL_STATE(1799)] = 59598, - [SMALL_STATE(1800)] = 59612, - [SMALL_STATE(1801)] = 59626, - [SMALL_STATE(1802)] = 59640, - [SMALL_STATE(1803)] = 59652, - [SMALL_STATE(1804)] = 59664, - [SMALL_STATE(1805)] = 59678, - [SMALL_STATE(1806)] = 59692, - [SMALL_STATE(1807)] = 59702, - [SMALL_STATE(1808)] = 59716, - [SMALL_STATE(1809)] = 59726, - [SMALL_STATE(1810)] = 59738, - [SMALL_STATE(1811)] = 59750, - [SMALL_STATE(1812)] = 59764, - [SMALL_STATE(1813)] = 59778, - [SMALL_STATE(1814)] = 59792, - [SMALL_STATE(1815)] = 59806, - [SMALL_STATE(1816)] = 59816, - [SMALL_STATE(1817)] = 59826, - [SMALL_STATE(1818)] = 59840, - [SMALL_STATE(1819)] = 59854, - [SMALL_STATE(1820)] = 59868, - [SMALL_STATE(1821)] = 59880, - [SMALL_STATE(1822)] = 59892, - [SMALL_STATE(1823)] = 59906, - [SMALL_STATE(1824)] = 59920, - [SMALL_STATE(1825)] = 59934, - [SMALL_STATE(1826)] = 59944, - [SMALL_STATE(1827)] = 59958, - [SMALL_STATE(1828)] = 59972, - [SMALL_STATE(1829)] = 59982, - [SMALL_STATE(1830)] = 59992, - [SMALL_STATE(1831)] = 60006, - [SMALL_STATE(1832)] = 60020, - [SMALL_STATE(1833)] = 60034, - [SMALL_STATE(1834)] = 60048, - [SMALL_STATE(1835)] = 60060, - [SMALL_STATE(1836)] = 60072, - [SMALL_STATE(1837)] = 60086, - [SMALL_STATE(1838)] = 60098, - [SMALL_STATE(1839)] = 60112, - [SMALL_STATE(1840)] = 60126, - [SMALL_STATE(1841)] = 60140, - [SMALL_STATE(1842)] = 60154, - [SMALL_STATE(1843)] = 60168, - [SMALL_STATE(1844)] = 60182, - [SMALL_STATE(1845)] = 60196, - [SMALL_STATE(1846)] = 60210, - [SMALL_STATE(1847)] = 60224, - [SMALL_STATE(1848)] = 60238, - [SMALL_STATE(1849)] = 60250, - [SMALL_STATE(1850)] = 60262, - [SMALL_STATE(1851)] = 60274, - [SMALL_STATE(1852)] = 60284, - [SMALL_STATE(1853)] = 60298, - [SMALL_STATE(1854)] = 60312, - [SMALL_STATE(1855)] = 60324, - [SMALL_STATE(1856)] = 60336, - [SMALL_STATE(1857)] = 60350, - [SMALL_STATE(1858)] = 60362, - [SMALL_STATE(1859)] = 60374, - [SMALL_STATE(1860)] = 60388, - [SMALL_STATE(1861)] = 60402, - [SMALL_STATE(1862)] = 60416, - [SMALL_STATE(1863)] = 60430, - [SMALL_STATE(1864)] = 60442, - [SMALL_STATE(1865)] = 60456, - [SMALL_STATE(1866)] = 60470, - [SMALL_STATE(1867)] = 60484, - [SMALL_STATE(1868)] = 60498, - [SMALL_STATE(1869)] = 60512, - [SMALL_STATE(1870)] = 60524, - [SMALL_STATE(1871)] = 60538, - [SMALL_STATE(1872)] = 60548, - [SMALL_STATE(1873)] = 60562, - [SMALL_STATE(1874)] = 60576, - [SMALL_STATE(1875)] = 60590, - [SMALL_STATE(1876)] = 60604, - [SMALL_STATE(1877)] = 60618, - [SMALL_STATE(1878)] = 60632, - [SMALL_STATE(1879)] = 60646, - [SMALL_STATE(1880)] = 60656, - [SMALL_STATE(1881)] = 60666, - [SMALL_STATE(1882)] = 60676, - [SMALL_STATE(1883)] = 60690, - [SMALL_STATE(1884)] = 60702, - [SMALL_STATE(1885)] = 60716, - [SMALL_STATE(1886)] = 60730, - [SMALL_STATE(1887)] = 60744, - [SMALL_STATE(1888)] = 60758, - [SMALL_STATE(1889)] = 60772, - [SMALL_STATE(1890)] = 60786, - [SMALL_STATE(1891)] = 60800, - [SMALL_STATE(1892)] = 60810, - [SMALL_STATE(1893)] = 60824, - [SMALL_STATE(1894)] = 60838, - [SMALL_STATE(1895)] = 60848, - [SMALL_STATE(1896)] = 60862, - [SMALL_STATE(1897)] = 60872, - [SMALL_STATE(1898)] = 60886, - [SMALL_STATE(1899)] = 60900, - [SMALL_STATE(1900)] = 60914, - [SMALL_STATE(1901)] = 60928, - [SMALL_STATE(1902)] = 60942, - [SMALL_STATE(1903)] = 60956, - [SMALL_STATE(1904)] = 60966, - [SMALL_STATE(1905)] = 60980, - [SMALL_STATE(1906)] = 60990, - [SMALL_STATE(1907)] = 61004, - [SMALL_STATE(1908)] = 61014, - [SMALL_STATE(1909)] = 61024, - [SMALL_STATE(1910)] = 61038, - [SMALL_STATE(1911)] = 61052, - [SMALL_STATE(1912)] = 61062, - [SMALL_STATE(1913)] = 61076, - [SMALL_STATE(1914)] = 61090, - [SMALL_STATE(1915)] = 61100, - [SMALL_STATE(1916)] = 61114, - [SMALL_STATE(1917)] = 61128, - [SMALL_STATE(1918)] = 61142, - [SMALL_STATE(1919)] = 61152, - [SMALL_STATE(1920)] = 61166, - [SMALL_STATE(1921)] = 61176, - [SMALL_STATE(1922)] = 61190, - [SMALL_STATE(1923)] = 61204, - [SMALL_STATE(1924)] = 61218, - [SMALL_STATE(1925)] = 61232, - [SMALL_STATE(1926)] = 61246, - [SMALL_STATE(1927)] = 61256, - [SMALL_STATE(1928)] = 61270, - [SMALL_STATE(1929)] = 61284, - [SMALL_STATE(1930)] = 61296, - [SMALL_STATE(1931)] = 61310, - [SMALL_STATE(1932)] = 61320, - [SMALL_STATE(1933)] = 61334, - [SMALL_STATE(1934)] = 61348, - [SMALL_STATE(1935)] = 61362, - [SMALL_STATE(1936)] = 61376, - [SMALL_STATE(1937)] = 61390, - [SMALL_STATE(1938)] = 61404, - [SMALL_STATE(1939)] = 61416, - [SMALL_STATE(1940)] = 61426, - [SMALL_STATE(1941)] = 61440, - [SMALL_STATE(1942)] = 61454, - [SMALL_STATE(1943)] = 61468, - [SMALL_STATE(1944)] = 61482, - [SMALL_STATE(1945)] = 61496, - [SMALL_STATE(1946)] = 61510, - [SMALL_STATE(1947)] = 61524, - [SMALL_STATE(1948)] = 61538, - [SMALL_STATE(1949)] = 61552, - [SMALL_STATE(1950)] = 61566, - [SMALL_STATE(1951)] = 61580, - [SMALL_STATE(1952)] = 61594, - [SMALL_STATE(1953)] = 61608, - [SMALL_STATE(1954)] = 61622, - [SMALL_STATE(1955)] = 61636, - [SMALL_STATE(1956)] = 61650, - [SMALL_STATE(1957)] = 61664, - [SMALL_STATE(1958)] = 61678, - [SMALL_STATE(1959)] = 61692, - [SMALL_STATE(1960)] = 61706, - [SMALL_STATE(1961)] = 61716, - [SMALL_STATE(1962)] = 61730, - [SMALL_STATE(1963)] = 61740, - [SMALL_STATE(1964)] = 61754, - [SMALL_STATE(1965)] = 61768, - [SMALL_STATE(1966)] = 61782, - [SMALL_STATE(1967)] = 61796, - [SMALL_STATE(1968)] = 61810, - [SMALL_STATE(1969)] = 61824, - [SMALL_STATE(1970)] = 61838, - [SMALL_STATE(1971)] = 61852, - [SMALL_STATE(1972)] = 61866, - [SMALL_STATE(1973)] = 61880, - [SMALL_STATE(1974)] = 61892, - [SMALL_STATE(1975)] = 61906, - [SMALL_STATE(1976)] = 61916, - [SMALL_STATE(1977)] = 61926, - [SMALL_STATE(1978)] = 61938, - [SMALL_STATE(1979)] = 61952, - [SMALL_STATE(1980)] = 61964, - [SMALL_STATE(1981)] = 61978, - [SMALL_STATE(1982)] = 61992, - [SMALL_STATE(1983)] = 62004, - [SMALL_STATE(1984)] = 62018, - [SMALL_STATE(1985)] = 62032, - [SMALL_STATE(1986)] = 62046, - [SMALL_STATE(1987)] = 62060, - [SMALL_STATE(1988)] = 62074, - [SMALL_STATE(1989)] = 62088, - [SMALL_STATE(1990)] = 62102, - [SMALL_STATE(1991)] = 62114, - [SMALL_STATE(1992)] = 62128, - [SMALL_STATE(1993)] = 62142, - [SMALL_STATE(1994)] = 62156, - [SMALL_STATE(1995)] = 62170, - [SMALL_STATE(1996)] = 62184, - [SMALL_STATE(1997)] = 62198, - [SMALL_STATE(1998)] = 62212, - [SMALL_STATE(1999)] = 62226, - [SMALL_STATE(2000)] = 62236, - [SMALL_STATE(2001)] = 62246, - [SMALL_STATE(2002)] = 62260, - [SMALL_STATE(2003)] = 62274, - [SMALL_STATE(2004)] = 62288, - [SMALL_STATE(2005)] = 62302, - [SMALL_STATE(2006)] = 62316, - [SMALL_STATE(2007)] = 62328, - [SMALL_STATE(2008)] = 62339, - [SMALL_STATE(2009)] = 62350, - [SMALL_STATE(2010)] = 62359, - [SMALL_STATE(2011)] = 62368, - [SMALL_STATE(2012)] = 62379, - [SMALL_STATE(2013)] = 62388, - [SMALL_STATE(2014)] = 62399, - [SMALL_STATE(2015)] = 62410, - [SMALL_STATE(2016)] = 62421, - [SMALL_STATE(2017)] = 62432, - [SMALL_STATE(2018)] = 62443, - [SMALL_STATE(2019)] = 62454, - [SMALL_STATE(2020)] = 62465, - [SMALL_STATE(2021)] = 62476, - [SMALL_STATE(2022)] = 62487, - [SMALL_STATE(2023)] = 62498, - [SMALL_STATE(2024)] = 62509, - [SMALL_STATE(2025)] = 62520, - [SMALL_STATE(2026)] = 62531, - [SMALL_STATE(2027)] = 62542, - [SMALL_STATE(2028)] = 62553, - [SMALL_STATE(2029)] = 62564, - [SMALL_STATE(2030)] = 62575, - [SMALL_STATE(2031)] = 62586, - [SMALL_STATE(2032)] = 62597, - [SMALL_STATE(2033)] = 62608, - [SMALL_STATE(2034)] = 62619, - [SMALL_STATE(2035)] = 62630, - [SMALL_STATE(2036)] = 62641, - [SMALL_STATE(2037)] = 62650, - [SMALL_STATE(2038)] = 62661, - [SMALL_STATE(2039)] = 62672, - [SMALL_STATE(2040)] = 62683, - [SMALL_STATE(2041)] = 62694, - [SMALL_STATE(2042)] = 62705, - [SMALL_STATE(2043)] = 62716, - [SMALL_STATE(2044)] = 62727, - [SMALL_STATE(2045)] = 62738, - [SMALL_STATE(2046)] = 62749, - [SMALL_STATE(2047)] = 62760, - [SMALL_STATE(2048)] = 62771, - [SMALL_STATE(2049)] = 62782, - [SMALL_STATE(2050)] = 62793, - [SMALL_STATE(2051)] = 62804, - [SMALL_STATE(2052)] = 62815, - [SMALL_STATE(2053)] = 62826, - [SMALL_STATE(2054)] = 62837, - [SMALL_STATE(2055)] = 62848, - [SMALL_STATE(2056)] = 62857, - [SMALL_STATE(2057)] = 62868, - [SMALL_STATE(2058)] = 62879, - [SMALL_STATE(2059)] = 62890, - [SMALL_STATE(2060)] = 62901, - [SMALL_STATE(2061)] = 62912, - [SMALL_STATE(2062)] = 62921, - [SMALL_STATE(2063)] = 62932, - [SMALL_STATE(2064)] = 62943, - [SMALL_STATE(2065)] = 62954, - [SMALL_STATE(2066)] = 62965, - [SMALL_STATE(2067)] = 62976, - [SMALL_STATE(2068)] = 62987, - [SMALL_STATE(2069)] = 62998, - [SMALL_STATE(2070)] = 63009, - [SMALL_STATE(2071)] = 63020, - [SMALL_STATE(2072)] = 63031, - [SMALL_STATE(2073)] = 63042, - [SMALL_STATE(2074)] = 63053, - [SMALL_STATE(2075)] = 63064, - [SMALL_STATE(2076)] = 63075, - [SMALL_STATE(2077)] = 63086, - [SMALL_STATE(2078)] = 63097, - [SMALL_STATE(2079)] = 63108, - [SMALL_STATE(2080)] = 63119, - [SMALL_STATE(2081)] = 63130, - [SMALL_STATE(2082)] = 63141, - [SMALL_STATE(2083)] = 63150, - [SMALL_STATE(2084)] = 63161, - [SMALL_STATE(2085)] = 63170, - [SMALL_STATE(2086)] = 63181, - [SMALL_STATE(2087)] = 63192, - [SMALL_STATE(2088)] = 63203, - [SMALL_STATE(2089)] = 63214, - [SMALL_STATE(2090)] = 63225, - [SMALL_STATE(2091)] = 63236, - [SMALL_STATE(2092)] = 63247, - [SMALL_STATE(2093)] = 63258, - [SMALL_STATE(2094)] = 63269, - [SMALL_STATE(2095)] = 63280, - [SMALL_STATE(2096)] = 63291, - [SMALL_STATE(2097)] = 63302, - [SMALL_STATE(2098)] = 63313, - [SMALL_STATE(2099)] = 63324, - [SMALL_STATE(2100)] = 63335, - [SMALL_STATE(2101)] = 63346, - [SMALL_STATE(2102)] = 63357, - [SMALL_STATE(2103)] = 63368, - [SMALL_STATE(2104)] = 63379, - [SMALL_STATE(2105)] = 63390, - [SMALL_STATE(2106)] = 63399, - [SMALL_STATE(2107)] = 63408, - [SMALL_STATE(2108)] = 63417, - [SMALL_STATE(2109)] = 63428, - [SMALL_STATE(2110)] = 63439, - [SMALL_STATE(2111)] = 63450, - [SMALL_STATE(2112)] = 63461, - [SMALL_STATE(2113)] = 63470, - [SMALL_STATE(2114)] = 63481, - [SMALL_STATE(2115)] = 63492, - [SMALL_STATE(2116)] = 63501, - [SMALL_STATE(2117)] = 63512, - [SMALL_STATE(2118)] = 63523, - [SMALL_STATE(2119)] = 63534, - [SMALL_STATE(2120)] = 63545, - [SMALL_STATE(2121)] = 63556, - [SMALL_STATE(2122)] = 63567, - [SMALL_STATE(2123)] = 63578, - [SMALL_STATE(2124)] = 63589, - [SMALL_STATE(2125)] = 63600, - [SMALL_STATE(2126)] = 63611, - [SMALL_STATE(2127)] = 63622, - [SMALL_STATE(2128)] = 63633, - [SMALL_STATE(2129)] = 63642, - [SMALL_STATE(2130)] = 63653, - [SMALL_STATE(2131)] = 63664, - [SMALL_STATE(2132)] = 63675, - [SMALL_STATE(2133)] = 63686, - [SMALL_STATE(2134)] = 63697, - [SMALL_STATE(2135)] = 63708, - [SMALL_STATE(2136)] = 63719, - [SMALL_STATE(2137)] = 63730, - [SMALL_STATE(2138)] = 63741, - [SMALL_STATE(2139)] = 63752, - [SMALL_STATE(2140)] = 63763, - [SMALL_STATE(2141)] = 63774, - [SMALL_STATE(2142)] = 63785, - [SMALL_STATE(2143)] = 63796, - [SMALL_STATE(2144)] = 63807, - [SMALL_STATE(2145)] = 63818, - [SMALL_STATE(2146)] = 63829, - [SMALL_STATE(2147)] = 63840, - [SMALL_STATE(2148)] = 63849, - [SMALL_STATE(2149)] = 63860, - [SMALL_STATE(2150)] = 63869, - [SMALL_STATE(2151)] = 63880, - [SMALL_STATE(2152)] = 63889, - [SMALL_STATE(2153)] = 63900, - [SMALL_STATE(2154)] = 63911, - [SMALL_STATE(2155)] = 63922, - [SMALL_STATE(2156)] = 63933, - [SMALL_STATE(2157)] = 63944, - [SMALL_STATE(2158)] = 63955, - [SMALL_STATE(2159)] = 63966, - [SMALL_STATE(2160)] = 63977, - [SMALL_STATE(2161)] = 63986, - [SMALL_STATE(2162)] = 63997, - [SMALL_STATE(2163)] = 64008, - [SMALL_STATE(2164)] = 64019, - [SMALL_STATE(2165)] = 64030, - [SMALL_STATE(2166)] = 64041, - [SMALL_STATE(2167)] = 64052, - [SMALL_STATE(2168)] = 64061, - [SMALL_STATE(2169)] = 64072, - [SMALL_STATE(2170)] = 64083, - [SMALL_STATE(2171)] = 64092, - [SMALL_STATE(2172)] = 64103, - [SMALL_STATE(2173)] = 64114, - [SMALL_STATE(2174)] = 64125, - [SMALL_STATE(2175)] = 64136, - [SMALL_STATE(2176)] = 64147, - [SMALL_STATE(2177)] = 64158, - [SMALL_STATE(2178)] = 64169, - [SMALL_STATE(2179)] = 64180, - [SMALL_STATE(2180)] = 64191, - [SMALL_STATE(2181)] = 64202, - [SMALL_STATE(2182)] = 64213, - [SMALL_STATE(2183)] = 64224, - [SMALL_STATE(2184)] = 64235, - [SMALL_STATE(2185)] = 64244, - [SMALL_STATE(2186)] = 64253, - [SMALL_STATE(2187)] = 64264, - [SMALL_STATE(2188)] = 64273, - [SMALL_STATE(2189)] = 64284, - [SMALL_STATE(2190)] = 64293, - [SMALL_STATE(2191)] = 64304, - [SMALL_STATE(2192)] = 64315, - [SMALL_STATE(2193)] = 64326, - [SMALL_STATE(2194)] = 64337, - [SMALL_STATE(2195)] = 64348, - [SMALL_STATE(2196)] = 64359, - [SMALL_STATE(2197)] = 64370, - [SMALL_STATE(2198)] = 64381, - [SMALL_STATE(2199)] = 64392, - [SMALL_STATE(2200)] = 64403, - [SMALL_STATE(2201)] = 64414, - [SMALL_STATE(2202)] = 64423, - [SMALL_STATE(2203)] = 64432, - [SMALL_STATE(2204)] = 64443, - [SMALL_STATE(2205)] = 64452, - [SMALL_STATE(2206)] = 64461, - [SMALL_STATE(2207)] = 64469, - [SMALL_STATE(2208)] = 64477, - [SMALL_STATE(2209)] = 64485, - [SMALL_STATE(2210)] = 64493, - [SMALL_STATE(2211)] = 64501, - [SMALL_STATE(2212)] = 64509, - [SMALL_STATE(2213)] = 64517, - [SMALL_STATE(2214)] = 64525, - [SMALL_STATE(2215)] = 64533, - [SMALL_STATE(2216)] = 64541, - [SMALL_STATE(2217)] = 64549, - [SMALL_STATE(2218)] = 64557, - [SMALL_STATE(2219)] = 64565, - [SMALL_STATE(2220)] = 64573, - [SMALL_STATE(2221)] = 64581, - [SMALL_STATE(2222)] = 64589, - [SMALL_STATE(2223)] = 64597, - [SMALL_STATE(2224)] = 64605, - [SMALL_STATE(2225)] = 64613, - [SMALL_STATE(2226)] = 64621, - [SMALL_STATE(2227)] = 64629, - [SMALL_STATE(2228)] = 64637, - [SMALL_STATE(2229)] = 64645, - [SMALL_STATE(2230)] = 64653, - [SMALL_STATE(2231)] = 64661, - [SMALL_STATE(2232)] = 64669, - [SMALL_STATE(2233)] = 64677, - [SMALL_STATE(2234)] = 64685, - [SMALL_STATE(2235)] = 64693, - [SMALL_STATE(2236)] = 64701, - [SMALL_STATE(2237)] = 64709, - [SMALL_STATE(2238)] = 64717, - [SMALL_STATE(2239)] = 64725, - [SMALL_STATE(2240)] = 64733, - [SMALL_STATE(2241)] = 64741, - [SMALL_STATE(2242)] = 64749, - [SMALL_STATE(2243)] = 64757, - [SMALL_STATE(2244)] = 64765, - [SMALL_STATE(2245)] = 64773, - [SMALL_STATE(2246)] = 64781, - [SMALL_STATE(2247)] = 64789, - [SMALL_STATE(2248)] = 64797, - [SMALL_STATE(2249)] = 64805, - [SMALL_STATE(2250)] = 64813, - [SMALL_STATE(2251)] = 64821, - [SMALL_STATE(2252)] = 64829, - [SMALL_STATE(2253)] = 64837, - [SMALL_STATE(2254)] = 64845, - [SMALL_STATE(2255)] = 64853, - [SMALL_STATE(2256)] = 64861, - [SMALL_STATE(2257)] = 64869, - [SMALL_STATE(2258)] = 64877, - [SMALL_STATE(2259)] = 64885, - [SMALL_STATE(2260)] = 64893, - [SMALL_STATE(2261)] = 64901, - [SMALL_STATE(2262)] = 64909, - [SMALL_STATE(2263)] = 64917, - [SMALL_STATE(2264)] = 64925, - [SMALL_STATE(2265)] = 64933, - [SMALL_STATE(2266)] = 64941, - [SMALL_STATE(2267)] = 64949, - [SMALL_STATE(2268)] = 64957, - [SMALL_STATE(2269)] = 64965, - [SMALL_STATE(2270)] = 64973, - [SMALL_STATE(2271)] = 64981, - [SMALL_STATE(2272)] = 64989, - [SMALL_STATE(2273)] = 64997, - [SMALL_STATE(2274)] = 65005, - [SMALL_STATE(2275)] = 65013, - [SMALL_STATE(2276)] = 65021, - [SMALL_STATE(2277)] = 65029, - [SMALL_STATE(2278)] = 65037, - [SMALL_STATE(2279)] = 65045, - [SMALL_STATE(2280)] = 65053, - [SMALL_STATE(2281)] = 65061, - [SMALL_STATE(2282)] = 65069, - [SMALL_STATE(2283)] = 65077, - [SMALL_STATE(2284)] = 65085, - [SMALL_STATE(2285)] = 65093, - [SMALL_STATE(2286)] = 65101, - [SMALL_STATE(2287)] = 65109, - [SMALL_STATE(2288)] = 65117, - [SMALL_STATE(2289)] = 65125, - [SMALL_STATE(2290)] = 65133, - [SMALL_STATE(2291)] = 65141, - [SMALL_STATE(2292)] = 65149, - [SMALL_STATE(2293)] = 65157, - [SMALL_STATE(2294)] = 65165, - [SMALL_STATE(2295)] = 65173, - [SMALL_STATE(2296)] = 65181, - [SMALL_STATE(2297)] = 65189, - [SMALL_STATE(2298)] = 65197, - [SMALL_STATE(2299)] = 65205, - [SMALL_STATE(2300)] = 65213, - [SMALL_STATE(2301)] = 65221, - [SMALL_STATE(2302)] = 65229, - [SMALL_STATE(2303)] = 65237, - [SMALL_STATE(2304)] = 65245, - [SMALL_STATE(2305)] = 65253, - [SMALL_STATE(2306)] = 65261, - [SMALL_STATE(2307)] = 65269, - [SMALL_STATE(2308)] = 65277, - [SMALL_STATE(2309)] = 65285, - [SMALL_STATE(2310)] = 65293, - [SMALL_STATE(2311)] = 65301, - [SMALL_STATE(2312)] = 65309, - [SMALL_STATE(2313)] = 65317, - [SMALL_STATE(2314)] = 65325, - [SMALL_STATE(2315)] = 65333, - [SMALL_STATE(2316)] = 65341, - [SMALL_STATE(2317)] = 65349, - [SMALL_STATE(2318)] = 65357, - [SMALL_STATE(2319)] = 65365, - [SMALL_STATE(2320)] = 65373, - [SMALL_STATE(2321)] = 65381, - [SMALL_STATE(2322)] = 65389, - [SMALL_STATE(2323)] = 65397, - [SMALL_STATE(2324)] = 65405, - [SMALL_STATE(2325)] = 65413, - [SMALL_STATE(2326)] = 65421, - [SMALL_STATE(2327)] = 65429, - [SMALL_STATE(2328)] = 65437, - [SMALL_STATE(2329)] = 65445, - [SMALL_STATE(2330)] = 65453, - [SMALL_STATE(2331)] = 65461, - [SMALL_STATE(2332)] = 65469, - [SMALL_STATE(2333)] = 65477, - [SMALL_STATE(2334)] = 65485, - [SMALL_STATE(2335)] = 65493, - [SMALL_STATE(2336)] = 65501, - [SMALL_STATE(2337)] = 65509, - [SMALL_STATE(2338)] = 65517, - [SMALL_STATE(2339)] = 65525, - [SMALL_STATE(2340)] = 65533, - [SMALL_STATE(2341)] = 65541, - [SMALL_STATE(2342)] = 65549, - [SMALL_STATE(2343)] = 65557, - [SMALL_STATE(2344)] = 65565, - [SMALL_STATE(2345)] = 65573, - [SMALL_STATE(2346)] = 65581, - [SMALL_STATE(2347)] = 65589, - [SMALL_STATE(2348)] = 65597, - [SMALL_STATE(2349)] = 65605, - [SMALL_STATE(2350)] = 65613, - [SMALL_STATE(2351)] = 65621, - [SMALL_STATE(2352)] = 65629, - [SMALL_STATE(2353)] = 65637, - [SMALL_STATE(2354)] = 65645, - [SMALL_STATE(2355)] = 65653, - [SMALL_STATE(2356)] = 65661, - [SMALL_STATE(2357)] = 65669, - [SMALL_STATE(2358)] = 65677, - [SMALL_STATE(2359)] = 65685, - [SMALL_STATE(2360)] = 65693, - [SMALL_STATE(2361)] = 65701, - [SMALL_STATE(2362)] = 65709, - [SMALL_STATE(2363)] = 65717, - [SMALL_STATE(2364)] = 65725, - [SMALL_STATE(2365)] = 65733, - [SMALL_STATE(2366)] = 65741, - [SMALL_STATE(2367)] = 65749, - [SMALL_STATE(2368)] = 65757, - [SMALL_STATE(2369)] = 65765, - [SMALL_STATE(2370)] = 65773, - [SMALL_STATE(2371)] = 65781, - [SMALL_STATE(2372)] = 65789, - [SMALL_STATE(2373)] = 65797, - [SMALL_STATE(2374)] = 65805, - [SMALL_STATE(2375)] = 65813, - [SMALL_STATE(2376)] = 65821, - [SMALL_STATE(2377)] = 65829, - [SMALL_STATE(2378)] = 65837, - [SMALL_STATE(2379)] = 65845, - [SMALL_STATE(2380)] = 65853, - [SMALL_STATE(2381)] = 65861, - [SMALL_STATE(2382)] = 65869, - [SMALL_STATE(2383)] = 65877, - [SMALL_STATE(2384)] = 65885, - [SMALL_STATE(2385)] = 65893, - [SMALL_STATE(2386)] = 65901, - [SMALL_STATE(2387)] = 65909, - [SMALL_STATE(2388)] = 65917, - [SMALL_STATE(2389)] = 65925, - [SMALL_STATE(2390)] = 65933, - [SMALL_STATE(2391)] = 65941, - [SMALL_STATE(2392)] = 65949, - [SMALL_STATE(2393)] = 65957, - [SMALL_STATE(2394)] = 65965, - [SMALL_STATE(2395)] = 65973, - [SMALL_STATE(2396)] = 65981, - [SMALL_STATE(2397)] = 65989, - [SMALL_STATE(2398)] = 65997, - [SMALL_STATE(2399)] = 66005, - [SMALL_STATE(2400)] = 66013, - [SMALL_STATE(2401)] = 66021, - [SMALL_STATE(2402)] = 66029, - [SMALL_STATE(2403)] = 66037, - [SMALL_STATE(2404)] = 66045, - [SMALL_STATE(2405)] = 66053, - [SMALL_STATE(2406)] = 66061, - [SMALL_STATE(2407)] = 66069, - [SMALL_STATE(2408)] = 66077, - [SMALL_STATE(2409)] = 66085, - [SMALL_STATE(2410)] = 66093, - [SMALL_STATE(2411)] = 66101, - [SMALL_STATE(2412)] = 66109, - [SMALL_STATE(2413)] = 66117, - [SMALL_STATE(2414)] = 66125, - [SMALL_STATE(2415)] = 66133, - [SMALL_STATE(2416)] = 66141, - [SMALL_STATE(2417)] = 66149, - [SMALL_STATE(2418)] = 66157, - [SMALL_STATE(2419)] = 66165, - [SMALL_STATE(2420)] = 66173, - [SMALL_STATE(2421)] = 66181, - [SMALL_STATE(2422)] = 66189, - [SMALL_STATE(2423)] = 66197, - [SMALL_STATE(2424)] = 66205, - [SMALL_STATE(2425)] = 66213, - [SMALL_STATE(2426)] = 66221, - [SMALL_STATE(2427)] = 66229, - [SMALL_STATE(2428)] = 66237, - [SMALL_STATE(2429)] = 66245, - [SMALL_STATE(2430)] = 66253, - [SMALL_STATE(2431)] = 66261, - [SMALL_STATE(2432)] = 66269, - [SMALL_STATE(2433)] = 66277, - [SMALL_STATE(2434)] = 66285, + [SMALL_STATE(1444)] = 52977, + [SMALL_STATE(1445)] = 53007, + [SMALL_STATE(1446)] = 53037, + [SMALL_STATE(1447)] = 53063, + [SMALL_STATE(1448)] = 53093, + [SMALL_STATE(1449)] = 53123, + [SMALL_STATE(1450)] = 53153, + [SMALL_STATE(1451)] = 53185, + [SMALL_STATE(1452)] = 53215, + [SMALL_STATE(1453)] = 53245, + [SMALL_STATE(1454)] = 53275, + [SMALL_STATE(1455)] = 53305, + [SMALL_STATE(1456)] = 53335, + [SMALL_STATE(1457)] = 53365, + [SMALL_STATE(1458)] = 53395, + [SMALL_STATE(1459)] = 53417, + [SMALL_STATE(1460)] = 53447, + [SMALL_STATE(1461)] = 53477, + [SMALL_STATE(1462)] = 53499, + [SMALL_STATE(1463)] = 53522, + [SMALL_STATE(1464)] = 53547, + [SMALL_STATE(1465)] = 53568, + [SMALL_STATE(1466)] = 53591, + [SMALL_STATE(1467)] = 53618, + [SMALL_STATE(1468)] = 53643, + [SMALL_STATE(1469)] = 53668, + [SMALL_STATE(1470)] = 53693, + [SMALL_STATE(1471)] = 53722, + [SMALL_STATE(1472)] = 53747, + [SMALL_STATE(1473)] = 53770, + [SMALL_STATE(1474)] = 53789, + [SMALL_STATE(1475)] = 53816, + [SMALL_STATE(1476)] = 53839, + [SMALL_STATE(1477)] = 53866, + [SMALL_STATE(1478)] = 53891, + [SMALL_STATE(1479)] = 53918, + [SMALL_STATE(1480)] = 53945, + [SMALL_STATE(1481)] = 53970, + [SMALL_STATE(1482)] = 53999, + [SMALL_STATE(1483)] = 54018, + [SMALL_STATE(1484)] = 54037, + [SMALL_STATE(1485)] = 54066, + [SMALL_STATE(1486)] = 54085, + [SMALL_STATE(1487)] = 54112, + [SMALL_STATE(1488)] = 54131, + [SMALL_STATE(1489)] = 54160, + [SMALL_STATE(1490)] = 54187, + [SMALL_STATE(1491)] = 54206, + [SMALL_STATE(1492)] = 54227, + [SMALL_STATE(1493)] = 54254, + [SMALL_STATE(1494)] = 54281, + [SMALL_STATE(1495)] = 54308, + [SMALL_STATE(1496)] = 54333, + [SMALL_STATE(1497)] = 54352, + [SMALL_STATE(1498)] = 54371, + [SMALL_STATE(1499)] = 54396, + [SMALL_STATE(1500)] = 54423, + [SMALL_STATE(1501)] = 54442, + [SMALL_STATE(1502)] = 54461, + [SMALL_STATE(1503)] = 54488, + [SMALL_STATE(1504)] = 54515, + [SMALL_STATE(1505)] = 54534, + [SMALL_STATE(1506)] = 54563, + [SMALL_STATE(1507)] = 54590, + [SMALL_STATE(1508)] = 54605, + [SMALL_STATE(1509)] = 54634, + [SMALL_STATE(1510)] = 54661, + [SMALL_STATE(1511)] = 54684, + [SMALL_STATE(1512)] = 54706, + [SMALL_STATE(1513)] = 54732, + [SMALL_STATE(1514)] = 54748, + [SMALL_STATE(1515)] = 54774, + [SMALL_STATE(1516)] = 54800, + [SMALL_STATE(1517)] = 54824, + [SMALL_STATE(1518)] = 54850, + [SMALL_STATE(1519)] = 54866, + [SMALL_STATE(1520)] = 54892, + [SMALL_STATE(1521)] = 54906, + [SMALL_STATE(1522)] = 54932, + [SMALL_STATE(1523)] = 54956, + [SMALL_STATE(1524)] = 54982, + [SMALL_STATE(1525)] = 54998, + [SMALL_STATE(1526)] = 55024, + [SMALL_STATE(1527)] = 55040, + [SMALL_STATE(1528)] = 55066, + [SMALL_STATE(1529)] = 55092, + [SMALL_STATE(1530)] = 55114, + [SMALL_STATE(1531)] = 55140, + [SMALL_STATE(1532)] = 55156, + [SMALL_STATE(1533)] = 55180, + [SMALL_STATE(1534)] = 55206, + [SMALL_STATE(1535)] = 55220, + [SMALL_STATE(1536)] = 55234, + [SMALL_STATE(1537)] = 55260, + [SMALL_STATE(1538)] = 55274, + [SMALL_STATE(1539)] = 55288, + [SMALL_STATE(1540)] = 55302, + [SMALL_STATE(1541)] = 55328, + [SMALL_STATE(1542)] = 55354, + [SMALL_STATE(1543)] = 55380, + [SMALL_STATE(1544)] = 55406, + [SMALL_STATE(1545)] = 55420, + [SMALL_STATE(1546)] = 55436, + [SMALL_STATE(1547)] = 55460, + [SMALL_STATE(1548)] = 55486, + [SMALL_STATE(1549)] = 55508, + [SMALL_STATE(1550)] = 55534, + [SMALL_STATE(1551)] = 55560, + [SMALL_STATE(1552)] = 55584, + [SMALL_STATE(1553)] = 55600, + [SMALL_STATE(1554)] = 55622, + [SMALL_STATE(1555)] = 55644, + [SMALL_STATE(1556)] = 55666, + [SMALL_STATE(1557)] = 55682, + [SMALL_STATE(1558)] = 55705, + [SMALL_STATE(1559)] = 55728, + [SMALL_STATE(1560)] = 55751, + [SMALL_STATE(1561)] = 55774, + [SMALL_STATE(1562)] = 55793, + [SMALL_STATE(1563)] = 55816, + [SMALL_STATE(1564)] = 55839, + [SMALL_STATE(1565)] = 55862, + [SMALL_STATE(1566)] = 55885, + [SMALL_STATE(1567)] = 55908, + [SMALL_STATE(1568)] = 55931, + [SMALL_STATE(1569)] = 55954, + [SMALL_STATE(1570)] = 55977, + [SMALL_STATE(1571)] = 56000, + [SMALL_STATE(1572)] = 56017, + [SMALL_STATE(1573)] = 56040, + [SMALL_STATE(1574)] = 56063, + [SMALL_STATE(1575)] = 56086, + [SMALL_STATE(1576)] = 56109, + [SMALL_STATE(1577)] = 56126, + [SMALL_STATE(1578)] = 56149, + [SMALL_STATE(1579)] = 56172, + [SMALL_STATE(1580)] = 56195, + [SMALL_STATE(1581)] = 56218, + [SMALL_STATE(1582)] = 56241, + [SMALL_STATE(1583)] = 56264, + [SMALL_STATE(1584)] = 56283, + [SMALL_STATE(1585)] = 56306, + [SMALL_STATE(1586)] = 56323, + [SMALL_STATE(1587)] = 56340, + [SMALL_STATE(1588)] = 56363, + [SMALL_STATE(1589)] = 56386, + [SMALL_STATE(1590)] = 56409, + [SMALL_STATE(1591)] = 56432, + [SMALL_STATE(1592)] = 56455, + [SMALL_STATE(1593)] = 56478, + [SMALL_STATE(1594)] = 56501, + [SMALL_STATE(1595)] = 56524, + [SMALL_STATE(1596)] = 56541, + [SMALL_STATE(1597)] = 56564, + [SMALL_STATE(1598)] = 56587, + [SMALL_STATE(1599)] = 56606, + [SMALL_STATE(1600)] = 56629, + [SMALL_STATE(1601)] = 56646, + [SMALL_STATE(1602)] = 56669, + [SMALL_STATE(1603)] = 56692, + [SMALL_STATE(1604)] = 56715, + [SMALL_STATE(1605)] = 56738, + [SMALL_STATE(1606)] = 56753, + [SMALL_STATE(1607)] = 56774, + [SMALL_STATE(1608)] = 56795, + [SMALL_STATE(1609)] = 56812, + [SMALL_STATE(1610)] = 56835, + [SMALL_STATE(1611)] = 56850, + [SMALL_STATE(1612)] = 56873, + [SMALL_STATE(1613)] = 56896, + [SMALL_STATE(1614)] = 56919, + [SMALL_STATE(1615)] = 56942, + [SMALL_STATE(1616)] = 56965, + [SMALL_STATE(1617)] = 56988, + [SMALL_STATE(1618)] = 57006, + [SMALL_STATE(1619)] = 57018, + [SMALL_STATE(1620)] = 57038, + [SMALL_STATE(1621)] = 57050, + [SMALL_STATE(1622)] = 57062, + [SMALL_STATE(1623)] = 57082, + [SMALL_STATE(1624)] = 57098, + [SMALL_STATE(1625)] = 57110, + [SMALL_STATE(1626)] = 57126, + [SMALL_STATE(1627)] = 57138, + [SMALL_STATE(1628)] = 57156, + [SMALL_STATE(1629)] = 57168, + [SMALL_STATE(1630)] = 57184, + [SMALL_STATE(1631)] = 57196, + [SMALL_STATE(1632)] = 57208, + [SMALL_STATE(1633)] = 57220, + [SMALL_STATE(1634)] = 57240, + [SMALL_STATE(1635)] = 57260, + [SMALL_STATE(1636)] = 57278, + [SMALL_STATE(1637)] = 57290, + [SMALL_STATE(1638)] = 57302, + [SMALL_STATE(1639)] = 57318, + [SMALL_STATE(1640)] = 57338, + [SMALL_STATE(1641)] = 57354, + [SMALL_STATE(1642)] = 57374, + [SMALL_STATE(1643)] = 57390, + [SMALL_STATE(1644)] = 57410, + [SMALL_STATE(1645)] = 57430, + [SMALL_STATE(1646)] = 57450, + [SMALL_STATE(1647)] = 57468, + [SMALL_STATE(1648)] = 57488, + [SMALL_STATE(1649)] = 57508, + [SMALL_STATE(1650)] = 57528, + [SMALL_STATE(1651)] = 57544, + [SMALL_STATE(1652)] = 57560, + [SMALL_STATE(1653)] = 57572, + [SMALL_STATE(1654)] = 57588, + [SMALL_STATE(1655)] = 57606, + [SMALL_STATE(1656)] = 57624, + [SMALL_STATE(1657)] = 57640, + [SMALL_STATE(1658)] = 57660, + [SMALL_STATE(1659)] = 57680, + [SMALL_STATE(1660)] = 57700, + [SMALL_STATE(1661)] = 57720, + [SMALL_STATE(1662)] = 57740, + [SMALL_STATE(1663)] = 57758, + [SMALL_STATE(1664)] = 57778, + [SMALL_STATE(1665)] = 57794, + [SMALL_STATE(1666)] = 57814, + [SMALL_STATE(1667)] = 57830, + [SMALL_STATE(1668)] = 57846, + [SMALL_STATE(1669)] = 57866, + [SMALL_STATE(1670)] = 57880, + [SMALL_STATE(1671)] = 57896, + [SMALL_STATE(1672)] = 57908, + [SMALL_STATE(1673)] = 57928, + [SMALL_STATE(1674)] = 57944, + [SMALL_STATE(1675)] = 57956, + [SMALL_STATE(1676)] = 57976, + [SMALL_STATE(1677)] = 57988, + [SMALL_STATE(1678)] = 58004, + [SMALL_STATE(1679)] = 58020, + [SMALL_STATE(1680)] = 58040, + [SMALL_STATE(1681)] = 58060, + [SMALL_STATE(1682)] = 58080, + [SMALL_STATE(1683)] = 58096, + [SMALL_STATE(1684)] = 58116, + [SMALL_STATE(1685)] = 58132, + [SMALL_STATE(1686)] = 58152, + [SMALL_STATE(1687)] = 58168, + [SMALL_STATE(1688)] = 58186, + [SMALL_STATE(1689)] = 58206, + [SMALL_STATE(1690)] = 58226, + [SMALL_STATE(1691)] = 58242, + [SMALL_STATE(1692)] = 58262, + [SMALL_STATE(1693)] = 58279, + [SMALL_STATE(1694)] = 58294, + [SMALL_STATE(1695)] = 58311, + [SMALL_STATE(1696)] = 58326, + [SMALL_STATE(1697)] = 58343, + [SMALL_STATE(1698)] = 58360, + [SMALL_STATE(1699)] = 58373, + [SMALL_STATE(1700)] = 58390, + [SMALL_STATE(1701)] = 58407, + [SMALL_STATE(1702)] = 58424, + [SMALL_STATE(1703)] = 58441, + [SMALL_STATE(1704)] = 58458, + [SMALL_STATE(1705)] = 58475, + [SMALL_STATE(1706)] = 58490, + [SMALL_STATE(1707)] = 58507, + [SMALL_STATE(1708)] = 58524, + [SMALL_STATE(1709)] = 58541, + [SMALL_STATE(1710)] = 58558, + [SMALL_STATE(1711)] = 58573, + [SMALL_STATE(1712)] = 58590, + [SMALL_STATE(1713)] = 58607, + [SMALL_STATE(1714)] = 58624, + [SMALL_STATE(1715)] = 58639, + [SMALL_STATE(1716)] = 58654, + [SMALL_STATE(1717)] = 58667, + [SMALL_STATE(1718)] = 58682, + [SMALL_STATE(1719)] = 58699, + [SMALL_STATE(1720)] = 58716, + [SMALL_STATE(1721)] = 58733, + [SMALL_STATE(1722)] = 58748, + [SMALL_STATE(1723)] = 58763, + [SMALL_STATE(1724)] = 58780, + [SMALL_STATE(1725)] = 58797, + [SMALL_STATE(1726)] = 58814, + [SMALL_STATE(1727)] = 58829, + [SMALL_STATE(1728)] = 58846, + [SMALL_STATE(1729)] = 58863, + [SMALL_STATE(1730)] = 58878, + [SMALL_STATE(1731)] = 58893, + [SMALL_STATE(1732)] = 58910, + [SMALL_STATE(1733)] = 58923, + [SMALL_STATE(1734)] = 58940, + [SMALL_STATE(1735)] = 58955, + [SMALL_STATE(1736)] = 58972, + [SMALL_STATE(1737)] = 58987, + [SMALL_STATE(1738)] = 59004, + [SMALL_STATE(1739)] = 59019, + [SMALL_STATE(1740)] = 59036, + [SMALL_STATE(1741)] = 59053, + [SMALL_STATE(1742)] = 59070, + [SMALL_STATE(1743)] = 59087, + [SMALL_STATE(1744)] = 59104, + [SMALL_STATE(1745)] = 59121, + [SMALL_STATE(1746)] = 59136, + [SMALL_STATE(1747)] = 59151, + [SMALL_STATE(1748)] = 59166, + [SMALL_STATE(1749)] = 59183, + [SMALL_STATE(1750)] = 59198, + [SMALL_STATE(1751)] = 59215, + [SMALL_STATE(1752)] = 59232, + [SMALL_STATE(1753)] = 59249, + [SMALL_STATE(1754)] = 59266, + [SMALL_STATE(1755)] = 59281, + [SMALL_STATE(1756)] = 59298, + [SMALL_STATE(1757)] = 59315, + [SMALL_STATE(1758)] = 59332, + [SMALL_STATE(1759)] = 59349, + [SMALL_STATE(1760)] = 59366, + [SMALL_STATE(1761)] = 59383, + [SMALL_STATE(1762)] = 59400, + [SMALL_STATE(1763)] = 59415, + [SMALL_STATE(1764)] = 59428, + [SMALL_STATE(1765)] = 59445, + [SMALL_STATE(1766)] = 59462, + [SMALL_STATE(1767)] = 59479, + [SMALL_STATE(1768)] = 59494, + [SMALL_STATE(1769)] = 59511, + [SMALL_STATE(1770)] = 59524, + [SMALL_STATE(1771)] = 59537, + [SMALL_STATE(1772)] = 59550, + [SMALL_STATE(1773)] = 59567, + [SMALL_STATE(1774)] = 59584, + [SMALL_STATE(1775)] = 59601, + [SMALL_STATE(1776)] = 59618, + [SMALL_STATE(1777)] = 59635, + [SMALL_STATE(1778)] = 59652, + [SMALL_STATE(1779)] = 59669, + [SMALL_STATE(1780)] = 59686, + [SMALL_STATE(1781)] = 59701, + [SMALL_STATE(1782)] = 59718, + [SMALL_STATE(1783)] = 59735, + [SMALL_STATE(1784)] = 59748, + [SMALL_STATE(1785)] = 59761, + [SMALL_STATE(1786)] = 59776, + [SMALL_STATE(1787)] = 59793, + [SMALL_STATE(1788)] = 59806, + [SMALL_STATE(1789)] = 59821, + [SMALL_STATE(1790)] = 59836, + [SMALL_STATE(1791)] = 59853, + [SMALL_STATE(1792)] = 59865, + [SMALL_STATE(1793)] = 59879, + [SMALL_STATE(1794)] = 59891, + [SMALL_STATE(1795)] = 59905, + [SMALL_STATE(1796)] = 59919, + [SMALL_STATE(1797)] = 59929, + [SMALL_STATE(1798)] = 59939, + [SMALL_STATE(1799)] = 59949, + [SMALL_STATE(1800)] = 59959, + [SMALL_STATE(1801)] = 59969, + [SMALL_STATE(1802)] = 59983, + [SMALL_STATE(1803)] = 59993, + [SMALL_STATE(1804)] = 60003, + [SMALL_STATE(1805)] = 60013, + [SMALL_STATE(1806)] = 60027, + [SMALL_STATE(1807)] = 60041, + [SMALL_STATE(1808)] = 60055, + [SMALL_STATE(1809)] = 60065, + [SMALL_STATE(1810)] = 60075, + [SMALL_STATE(1811)] = 60085, + [SMALL_STATE(1812)] = 60095, + [SMALL_STATE(1813)] = 60109, + [SMALL_STATE(1814)] = 60119, + [SMALL_STATE(1815)] = 60133, + [SMALL_STATE(1816)] = 60147, + [SMALL_STATE(1817)] = 60157, + [SMALL_STATE(1818)] = 60171, + [SMALL_STATE(1819)] = 60185, + [SMALL_STATE(1820)] = 60195, + [SMALL_STATE(1821)] = 60209, + [SMALL_STATE(1822)] = 60223, + [SMALL_STATE(1823)] = 60237, + [SMALL_STATE(1824)] = 60251, + [SMALL_STATE(1825)] = 60263, + [SMALL_STATE(1826)] = 60277, + [SMALL_STATE(1827)] = 60291, + [SMALL_STATE(1828)] = 60305, + [SMALL_STATE(1829)] = 60317, + [SMALL_STATE(1830)] = 60329, + [SMALL_STATE(1831)] = 60343, + [SMALL_STATE(1832)] = 60355, + [SMALL_STATE(1833)] = 60369, + [SMALL_STATE(1834)] = 60383, + [SMALL_STATE(1835)] = 60397, + [SMALL_STATE(1836)] = 60411, + [SMALL_STATE(1837)] = 60423, + [SMALL_STATE(1838)] = 60437, + [SMALL_STATE(1839)] = 60451, + [SMALL_STATE(1840)] = 60465, + [SMALL_STATE(1841)] = 60479, + [SMALL_STATE(1842)] = 60491, + [SMALL_STATE(1843)] = 60501, + [SMALL_STATE(1844)] = 60515, + [SMALL_STATE(1845)] = 60529, + [SMALL_STATE(1846)] = 60543, + [SMALL_STATE(1847)] = 60557, + [SMALL_STATE(1848)] = 60571, + [SMALL_STATE(1849)] = 60583, + [SMALL_STATE(1850)] = 60597, + [SMALL_STATE(1851)] = 60611, + [SMALL_STATE(1852)] = 60621, + [SMALL_STATE(1853)] = 60631, + [SMALL_STATE(1854)] = 60645, + [SMALL_STATE(1855)] = 60659, + [SMALL_STATE(1856)] = 60673, + [SMALL_STATE(1857)] = 60683, + [SMALL_STATE(1858)] = 60697, + [SMALL_STATE(1859)] = 60709, + [SMALL_STATE(1860)] = 60719, + [SMALL_STATE(1861)] = 60733, + [SMALL_STATE(1862)] = 60747, + [SMALL_STATE(1863)] = 60761, + [SMALL_STATE(1864)] = 60771, + [SMALL_STATE(1865)] = 60785, + [SMALL_STATE(1866)] = 60795, + [SMALL_STATE(1867)] = 60805, + [SMALL_STATE(1868)] = 60819, + [SMALL_STATE(1869)] = 60833, + [SMALL_STATE(1870)] = 60845, + [SMALL_STATE(1871)] = 60857, + [SMALL_STATE(1872)] = 60871, + [SMALL_STATE(1873)] = 60885, + [SMALL_STATE(1874)] = 60899, + [SMALL_STATE(1875)] = 60913, + [SMALL_STATE(1876)] = 60925, + [SMALL_STATE(1877)] = 60939, + [SMALL_STATE(1878)] = 60953, + [SMALL_STATE(1879)] = 60967, + [SMALL_STATE(1880)] = 60981, + [SMALL_STATE(1881)] = 60995, + [SMALL_STATE(1882)] = 61007, + [SMALL_STATE(1883)] = 61019, + [SMALL_STATE(1884)] = 61031, + [SMALL_STATE(1885)] = 61045, + [SMALL_STATE(1886)] = 61059, + [SMALL_STATE(1887)] = 61073, + [SMALL_STATE(1888)] = 61087, + [SMALL_STATE(1889)] = 61099, + [SMALL_STATE(1890)] = 61109, + [SMALL_STATE(1891)] = 61119, + [SMALL_STATE(1892)] = 61131, + [SMALL_STATE(1893)] = 61145, + [SMALL_STATE(1894)] = 61159, + [SMALL_STATE(1895)] = 61169, + [SMALL_STATE(1896)] = 61183, + [SMALL_STATE(1897)] = 61195, + [SMALL_STATE(1898)] = 61209, + [SMALL_STATE(1899)] = 61223, + [SMALL_STATE(1900)] = 61237, + [SMALL_STATE(1901)] = 61251, + [SMALL_STATE(1902)] = 61265, + [SMALL_STATE(1903)] = 61277, + [SMALL_STATE(1904)] = 61291, + [SMALL_STATE(1905)] = 61303, + [SMALL_STATE(1906)] = 61317, + [SMALL_STATE(1907)] = 61331, + [SMALL_STATE(1908)] = 61345, + [SMALL_STATE(1909)] = 61359, + [SMALL_STATE(1910)] = 61371, + [SMALL_STATE(1911)] = 61385, + [SMALL_STATE(1912)] = 61399, + [SMALL_STATE(1913)] = 61413, + [SMALL_STATE(1914)] = 61427, + [SMALL_STATE(1915)] = 61441, + [SMALL_STATE(1916)] = 61455, + [SMALL_STATE(1917)] = 61469, + [SMALL_STATE(1918)] = 61483, + [SMALL_STATE(1919)] = 61497, + [SMALL_STATE(1920)] = 61511, + [SMALL_STATE(1921)] = 61523, + [SMALL_STATE(1922)] = 61537, + [SMALL_STATE(1923)] = 61549, + [SMALL_STATE(1924)] = 61563, + [SMALL_STATE(1925)] = 61577, + [SMALL_STATE(1926)] = 61591, + [SMALL_STATE(1927)] = 61605, + [SMALL_STATE(1928)] = 61617, + [SMALL_STATE(1929)] = 61627, + [SMALL_STATE(1930)] = 61641, + [SMALL_STATE(1931)] = 61655, + [SMALL_STATE(1932)] = 61669, + [SMALL_STATE(1933)] = 61683, + [SMALL_STATE(1934)] = 61697, + [SMALL_STATE(1935)] = 61711, + [SMALL_STATE(1936)] = 61721, + [SMALL_STATE(1937)] = 61735, + [SMALL_STATE(1938)] = 61749, + [SMALL_STATE(1939)] = 61763, + [SMALL_STATE(1940)] = 61773, + [SMALL_STATE(1941)] = 61787, + [SMALL_STATE(1942)] = 61797, + [SMALL_STATE(1943)] = 61811, + [SMALL_STATE(1944)] = 61825, + [SMALL_STATE(1945)] = 61839, + [SMALL_STATE(1946)] = 61853, + [SMALL_STATE(1947)] = 61867, + [SMALL_STATE(1948)] = 61881, + [SMALL_STATE(1949)] = 61895, + [SMALL_STATE(1950)] = 61909, + [SMALL_STATE(1951)] = 61923, + [SMALL_STATE(1952)] = 61937, + [SMALL_STATE(1953)] = 61951, + [SMALL_STATE(1954)] = 61965, + [SMALL_STATE(1955)] = 61979, + [SMALL_STATE(1956)] = 61993, + [SMALL_STATE(1957)] = 62007, + [SMALL_STATE(1958)] = 62021, + [SMALL_STATE(1959)] = 62035, + [SMALL_STATE(1960)] = 62049, + [SMALL_STATE(1961)] = 62063, + [SMALL_STATE(1962)] = 62077, + [SMALL_STATE(1963)] = 62091, + [SMALL_STATE(1964)] = 62101, + [SMALL_STATE(1965)] = 62115, + [SMALL_STATE(1966)] = 62129, + [SMALL_STATE(1967)] = 62139, + [SMALL_STATE(1968)] = 62151, + [SMALL_STATE(1969)] = 62165, + [SMALL_STATE(1970)] = 62179, + [SMALL_STATE(1971)] = 62193, + [SMALL_STATE(1972)] = 62207, + [SMALL_STATE(1973)] = 62221, + [SMALL_STATE(1974)] = 62235, + [SMALL_STATE(1975)] = 62245, + [SMALL_STATE(1976)] = 62259, + [SMALL_STATE(1977)] = 62273, + [SMALL_STATE(1978)] = 62287, + [SMALL_STATE(1979)] = 62301, + [SMALL_STATE(1980)] = 62315, + [SMALL_STATE(1981)] = 62329, + [SMALL_STATE(1982)] = 62343, + [SMALL_STATE(1983)] = 62357, + [SMALL_STATE(1984)] = 62371, + [SMALL_STATE(1985)] = 62383, + [SMALL_STATE(1986)] = 62397, + [SMALL_STATE(1987)] = 62407, + [SMALL_STATE(1988)] = 62421, + [SMALL_STATE(1989)] = 62435, + [SMALL_STATE(1990)] = 62445, + [SMALL_STATE(1991)] = 62459, + [SMALL_STATE(1992)] = 62473, + [SMALL_STATE(1993)] = 62487, + [SMALL_STATE(1994)] = 62501, + [SMALL_STATE(1995)] = 62515, + [SMALL_STATE(1996)] = 62527, + [SMALL_STATE(1997)] = 62539, + [SMALL_STATE(1998)] = 62553, + [SMALL_STATE(1999)] = 62567, + [SMALL_STATE(2000)] = 62581, + [SMALL_STATE(2001)] = 62595, + [SMALL_STATE(2002)] = 62609, + [SMALL_STATE(2003)] = 62623, + [SMALL_STATE(2004)] = 62637, + [SMALL_STATE(2005)] = 62651, + [SMALL_STATE(2006)] = 62665, + [SMALL_STATE(2007)] = 62679, + [SMALL_STATE(2008)] = 62693, + [SMALL_STATE(2009)] = 62707, + [SMALL_STATE(2010)] = 62721, + [SMALL_STATE(2011)] = 62733, + [SMALL_STATE(2012)] = 62747, + [SMALL_STATE(2013)] = 62761, + [SMALL_STATE(2014)] = 62775, + [SMALL_STATE(2015)] = 62789, + [SMALL_STATE(2016)] = 62803, + [SMALL_STATE(2017)] = 62815, + [SMALL_STATE(2018)] = 62829, + [SMALL_STATE(2019)] = 62843, + [SMALL_STATE(2020)] = 62855, + [SMALL_STATE(2021)] = 62869, + [SMALL_STATE(2022)] = 62883, + [SMALL_STATE(2023)] = 62897, + [SMALL_STATE(2024)] = 62911, + [SMALL_STATE(2025)] = 62923, + [SMALL_STATE(2026)] = 62937, + [SMALL_STATE(2027)] = 62951, + [SMALL_STATE(2028)] = 62965, + [SMALL_STATE(2029)] = 62979, + [SMALL_STATE(2030)] = 62991, + [SMALL_STATE(2031)] = 63001, + [SMALL_STATE(2032)] = 63015, + [SMALL_STATE(2033)] = 63029, + [SMALL_STATE(2034)] = 63041, + [SMALL_STATE(2035)] = 63055, + [SMALL_STATE(2036)] = 63069, + [SMALL_STATE(2037)] = 63083, + [SMALL_STATE(2038)] = 63094, + [SMALL_STATE(2039)] = 63105, + [SMALL_STATE(2040)] = 63116, + [SMALL_STATE(2041)] = 63127, + [SMALL_STATE(2042)] = 63138, + [SMALL_STATE(2043)] = 63149, + [SMALL_STATE(2044)] = 63160, + [SMALL_STATE(2045)] = 63171, + [SMALL_STATE(2046)] = 63182, + [SMALL_STATE(2047)] = 63191, + [SMALL_STATE(2048)] = 63202, + [SMALL_STATE(2049)] = 63213, + [SMALL_STATE(2050)] = 63224, + [SMALL_STATE(2051)] = 63235, + [SMALL_STATE(2052)] = 63246, + [SMALL_STATE(2053)] = 63255, + [SMALL_STATE(2054)] = 63266, + [SMALL_STATE(2055)] = 63277, + [SMALL_STATE(2056)] = 63288, + [SMALL_STATE(2057)] = 63297, + [SMALL_STATE(2058)] = 63308, + [SMALL_STATE(2059)] = 63319, + [SMALL_STATE(2060)] = 63330, + [SMALL_STATE(2061)] = 63341, + [SMALL_STATE(2062)] = 63352, + [SMALL_STATE(2063)] = 63363, + [SMALL_STATE(2064)] = 63374, + [SMALL_STATE(2065)] = 63385, + [SMALL_STATE(2066)] = 63396, + [SMALL_STATE(2067)] = 63405, + [SMALL_STATE(2068)] = 63416, + [SMALL_STATE(2069)] = 63427, + [SMALL_STATE(2070)] = 63438, + [SMALL_STATE(2071)] = 63449, + [SMALL_STATE(2072)] = 63460, + [SMALL_STATE(2073)] = 63471, + [SMALL_STATE(2074)] = 63482, + [SMALL_STATE(2075)] = 63493, + [SMALL_STATE(2076)] = 63502, + [SMALL_STATE(2077)] = 63513, + [SMALL_STATE(2078)] = 63524, + [SMALL_STATE(2079)] = 63535, + [SMALL_STATE(2080)] = 63546, + [SMALL_STATE(2081)] = 63557, + [SMALL_STATE(2082)] = 63568, + [SMALL_STATE(2083)] = 63579, + [SMALL_STATE(2084)] = 63590, + [SMALL_STATE(2085)] = 63601, + [SMALL_STATE(2086)] = 63610, + [SMALL_STATE(2087)] = 63619, + [SMALL_STATE(2088)] = 63628, + [SMALL_STATE(2089)] = 63639, + [SMALL_STATE(2090)] = 63650, + [SMALL_STATE(2091)] = 63661, + [SMALL_STATE(2092)] = 63672, + [SMALL_STATE(2093)] = 63683, + [SMALL_STATE(2094)] = 63694, + [SMALL_STATE(2095)] = 63705, + [SMALL_STATE(2096)] = 63716, + [SMALL_STATE(2097)] = 63727, + [SMALL_STATE(2098)] = 63738, + [SMALL_STATE(2099)] = 63749, + [SMALL_STATE(2100)] = 63760, + [SMALL_STATE(2101)] = 63771, + [SMALL_STATE(2102)] = 63782, + [SMALL_STATE(2103)] = 63791, + [SMALL_STATE(2104)] = 63802, + [SMALL_STATE(2105)] = 63811, + [SMALL_STATE(2106)] = 63822, + [SMALL_STATE(2107)] = 63833, + [SMALL_STATE(2108)] = 63844, + [SMALL_STATE(2109)] = 63855, + [SMALL_STATE(2110)] = 63866, + [SMALL_STATE(2111)] = 63875, + [SMALL_STATE(2112)] = 63886, + [SMALL_STATE(2113)] = 63895, + [SMALL_STATE(2114)] = 63906, + [SMALL_STATE(2115)] = 63917, + [SMALL_STATE(2116)] = 63928, + [SMALL_STATE(2117)] = 63937, + [SMALL_STATE(2118)] = 63948, + [SMALL_STATE(2119)] = 63959, + [SMALL_STATE(2120)] = 63970, + [SMALL_STATE(2121)] = 63981, + [SMALL_STATE(2122)] = 63992, + [SMALL_STATE(2123)] = 64003, + [SMALL_STATE(2124)] = 64014, + [SMALL_STATE(2125)] = 64025, + [SMALL_STATE(2126)] = 64036, + [SMALL_STATE(2127)] = 64047, + [SMALL_STATE(2128)] = 64058, + [SMALL_STATE(2129)] = 64069, + [SMALL_STATE(2130)] = 64080, + [SMALL_STATE(2131)] = 64091, + [SMALL_STATE(2132)] = 64102, + [SMALL_STATE(2133)] = 64113, + [SMALL_STATE(2134)] = 64124, + [SMALL_STATE(2135)] = 64135, + [SMALL_STATE(2136)] = 64146, + [SMALL_STATE(2137)] = 64157, + [SMALL_STATE(2138)] = 64168, + [SMALL_STATE(2139)] = 64179, + [SMALL_STATE(2140)] = 64190, + [SMALL_STATE(2141)] = 64201, + [SMALL_STATE(2142)] = 64212, + [SMALL_STATE(2143)] = 64223, + [SMALL_STATE(2144)] = 64234, + [SMALL_STATE(2145)] = 64245, + [SMALL_STATE(2146)] = 64256, + [SMALL_STATE(2147)] = 64267, + [SMALL_STATE(2148)] = 64278, + [SMALL_STATE(2149)] = 64289, + [SMALL_STATE(2150)] = 64300, + [SMALL_STATE(2151)] = 64311, + [SMALL_STATE(2152)] = 64322, + [SMALL_STATE(2153)] = 64333, + [SMALL_STATE(2154)] = 64344, + [SMALL_STATE(2155)] = 64355, + [SMALL_STATE(2156)] = 64366, + [SMALL_STATE(2157)] = 64377, + [SMALL_STATE(2158)] = 64388, + [SMALL_STATE(2159)] = 64399, + [SMALL_STATE(2160)] = 64410, + [SMALL_STATE(2161)] = 64421, + [SMALL_STATE(2162)] = 64432, + [SMALL_STATE(2163)] = 64443, + [SMALL_STATE(2164)] = 64454, + [SMALL_STATE(2165)] = 64465, + [SMALL_STATE(2166)] = 64476, + [SMALL_STATE(2167)] = 64487, + [SMALL_STATE(2168)] = 64498, + [SMALL_STATE(2169)] = 64509, + [SMALL_STATE(2170)] = 64520, + [SMALL_STATE(2171)] = 64531, + [SMALL_STATE(2172)] = 64542, + [SMALL_STATE(2173)] = 64553, + [SMALL_STATE(2174)] = 64564, + [SMALL_STATE(2175)] = 64575, + [SMALL_STATE(2176)] = 64586, + [SMALL_STATE(2177)] = 64597, + [SMALL_STATE(2178)] = 64606, + [SMALL_STATE(2179)] = 64617, + [SMALL_STATE(2180)] = 64628, + [SMALL_STATE(2181)] = 64639, + [SMALL_STATE(2182)] = 64650, + [SMALL_STATE(2183)] = 64661, + [SMALL_STATE(2184)] = 64670, + [SMALL_STATE(2185)] = 64681, + [SMALL_STATE(2186)] = 64692, + [SMALL_STATE(2187)] = 64701, + [SMALL_STATE(2188)] = 64712, + [SMALL_STATE(2189)] = 64721, + [SMALL_STATE(2190)] = 64732, + [SMALL_STATE(2191)] = 64743, + [SMALL_STATE(2192)] = 64754, + [SMALL_STATE(2193)] = 64763, + [SMALL_STATE(2194)] = 64774, + [SMALL_STATE(2195)] = 64785, + [SMALL_STATE(2196)] = 64796, + [SMALL_STATE(2197)] = 64807, + [SMALL_STATE(2198)] = 64818, + [SMALL_STATE(2199)] = 64829, + [SMALL_STATE(2200)] = 64840, + [SMALL_STATE(2201)] = 64851, + [SMALL_STATE(2202)] = 64862, + [SMALL_STATE(2203)] = 64873, + [SMALL_STATE(2204)] = 64884, + [SMALL_STATE(2205)] = 64895, + [SMALL_STATE(2206)] = 64906, + [SMALL_STATE(2207)] = 64917, + [SMALL_STATE(2208)] = 64928, + [SMALL_STATE(2209)] = 64939, + [SMALL_STATE(2210)] = 64950, + [SMALL_STATE(2211)] = 64961, + [SMALL_STATE(2212)] = 64972, + [SMALL_STATE(2213)] = 64983, + [SMALL_STATE(2214)] = 64994, + [SMALL_STATE(2215)] = 65005, + [SMALL_STATE(2216)] = 65014, + [SMALL_STATE(2217)] = 65025, + [SMALL_STATE(2218)] = 65036, + [SMALL_STATE(2219)] = 65045, + [SMALL_STATE(2220)] = 65056, + [SMALL_STATE(2221)] = 65067, + [SMALL_STATE(2222)] = 65076, + [SMALL_STATE(2223)] = 65087, + [SMALL_STATE(2224)] = 65098, + [SMALL_STATE(2225)] = 65109, + [SMALL_STATE(2226)] = 65118, + [SMALL_STATE(2227)] = 65127, + [SMALL_STATE(2228)] = 65138, + [SMALL_STATE(2229)] = 65147, + [SMALL_STATE(2230)] = 65158, + [SMALL_STATE(2231)] = 65167, + [SMALL_STATE(2232)] = 65178, + [SMALL_STATE(2233)] = 65189, + [SMALL_STATE(2234)] = 65200, + [SMALL_STATE(2235)] = 65211, + [SMALL_STATE(2236)] = 65222, + [SMALL_STATE(2237)] = 65233, + [SMALL_STATE(2238)] = 65244, + [SMALL_STATE(2239)] = 65255, + [SMALL_STATE(2240)] = 65264, + [SMALL_STATE(2241)] = 65275, + [SMALL_STATE(2242)] = 65286, + [SMALL_STATE(2243)] = 65297, + [SMALL_STATE(2244)] = 65308, + [SMALL_STATE(2245)] = 65317, + [SMALL_STATE(2246)] = 65326, + [SMALL_STATE(2247)] = 65337, + [SMALL_STATE(2248)] = 65345, + [SMALL_STATE(2249)] = 65353, + [SMALL_STATE(2250)] = 65361, + [SMALL_STATE(2251)] = 65369, + [SMALL_STATE(2252)] = 65377, + [SMALL_STATE(2253)] = 65385, + [SMALL_STATE(2254)] = 65393, + [SMALL_STATE(2255)] = 65401, + [SMALL_STATE(2256)] = 65409, + [SMALL_STATE(2257)] = 65417, + [SMALL_STATE(2258)] = 65425, + [SMALL_STATE(2259)] = 65433, + [SMALL_STATE(2260)] = 65441, + [SMALL_STATE(2261)] = 65449, + [SMALL_STATE(2262)] = 65457, + [SMALL_STATE(2263)] = 65465, + [SMALL_STATE(2264)] = 65473, + [SMALL_STATE(2265)] = 65481, + [SMALL_STATE(2266)] = 65489, + [SMALL_STATE(2267)] = 65497, + [SMALL_STATE(2268)] = 65505, + [SMALL_STATE(2269)] = 65513, + [SMALL_STATE(2270)] = 65521, + [SMALL_STATE(2271)] = 65529, + [SMALL_STATE(2272)] = 65537, + [SMALL_STATE(2273)] = 65545, + [SMALL_STATE(2274)] = 65553, + [SMALL_STATE(2275)] = 65561, + [SMALL_STATE(2276)] = 65569, + [SMALL_STATE(2277)] = 65577, + [SMALL_STATE(2278)] = 65585, + [SMALL_STATE(2279)] = 65593, + [SMALL_STATE(2280)] = 65601, + [SMALL_STATE(2281)] = 65609, + [SMALL_STATE(2282)] = 65617, + [SMALL_STATE(2283)] = 65625, + [SMALL_STATE(2284)] = 65633, + [SMALL_STATE(2285)] = 65641, + [SMALL_STATE(2286)] = 65649, + [SMALL_STATE(2287)] = 65657, + [SMALL_STATE(2288)] = 65665, + [SMALL_STATE(2289)] = 65673, + [SMALL_STATE(2290)] = 65681, + [SMALL_STATE(2291)] = 65689, + [SMALL_STATE(2292)] = 65697, + [SMALL_STATE(2293)] = 65705, + [SMALL_STATE(2294)] = 65713, + [SMALL_STATE(2295)] = 65721, + [SMALL_STATE(2296)] = 65729, + [SMALL_STATE(2297)] = 65737, + [SMALL_STATE(2298)] = 65745, + [SMALL_STATE(2299)] = 65753, + [SMALL_STATE(2300)] = 65761, + [SMALL_STATE(2301)] = 65769, + [SMALL_STATE(2302)] = 65777, + [SMALL_STATE(2303)] = 65785, + [SMALL_STATE(2304)] = 65793, + [SMALL_STATE(2305)] = 65801, + [SMALL_STATE(2306)] = 65809, + [SMALL_STATE(2307)] = 65817, + [SMALL_STATE(2308)] = 65825, + [SMALL_STATE(2309)] = 65833, + [SMALL_STATE(2310)] = 65841, + [SMALL_STATE(2311)] = 65849, + [SMALL_STATE(2312)] = 65857, + [SMALL_STATE(2313)] = 65865, + [SMALL_STATE(2314)] = 65873, + [SMALL_STATE(2315)] = 65881, + [SMALL_STATE(2316)] = 65889, + [SMALL_STATE(2317)] = 65897, + [SMALL_STATE(2318)] = 65905, + [SMALL_STATE(2319)] = 65913, + [SMALL_STATE(2320)] = 65921, + [SMALL_STATE(2321)] = 65929, + [SMALL_STATE(2322)] = 65937, + [SMALL_STATE(2323)] = 65945, + [SMALL_STATE(2324)] = 65953, + [SMALL_STATE(2325)] = 65961, + [SMALL_STATE(2326)] = 65969, + [SMALL_STATE(2327)] = 65977, + [SMALL_STATE(2328)] = 65985, + [SMALL_STATE(2329)] = 65993, + [SMALL_STATE(2330)] = 66001, + [SMALL_STATE(2331)] = 66009, + [SMALL_STATE(2332)] = 66017, + [SMALL_STATE(2333)] = 66025, + [SMALL_STATE(2334)] = 66033, + [SMALL_STATE(2335)] = 66041, + [SMALL_STATE(2336)] = 66049, + [SMALL_STATE(2337)] = 66057, + [SMALL_STATE(2338)] = 66065, + [SMALL_STATE(2339)] = 66073, + [SMALL_STATE(2340)] = 66081, + [SMALL_STATE(2341)] = 66089, + [SMALL_STATE(2342)] = 66097, + [SMALL_STATE(2343)] = 66105, + [SMALL_STATE(2344)] = 66113, + [SMALL_STATE(2345)] = 66121, + [SMALL_STATE(2346)] = 66129, + [SMALL_STATE(2347)] = 66137, + [SMALL_STATE(2348)] = 66145, + [SMALL_STATE(2349)] = 66153, + [SMALL_STATE(2350)] = 66161, + [SMALL_STATE(2351)] = 66169, + [SMALL_STATE(2352)] = 66177, + [SMALL_STATE(2353)] = 66185, + [SMALL_STATE(2354)] = 66193, + [SMALL_STATE(2355)] = 66201, + [SMALL_STATE(2356)] = 66209, + [SMALL_STATE(2357)] = 66217, + [SMALL_STATE(2358)] = 66225, + [SMALL_STATE(2359)] = 66233, + [SMALL_STATE(2360)] = 66241, + [SMALL_STATE(2361)] = 66249, + [SMALL_STATE(2362)] = 66257, + [SMALL_STATE(2363)] = 66265, + [SMALL_STATE(2364)] = 66273, + [SMALL_STATE(2365)] = 66281, + [SMALL_STATE(2366)] = 66289, + [SMALL_STATE(2367)] = 66297, + [SMALL_STATE(2368)] = 66305, + [SMALL_STATE(2369)] = 66313, + [SMALL_STATE(2370)] = 66321, + [SMALL_STATE(2371)] = 66329, + [SMALL_STATE(2372)] = 66337, + [SMALL_STATE(2373)] = 66345, + [SMALL_STATE(2374)] = 66353, + [SMALL_STATE(2375)] = 66361, + [SMALL_STATE(2376)] = 66369, + [SMALL_STATE(2377)] = 66377, + [SMALL_STATE(2378)] = 66385, + [SMALL_STATE(2379)] = 66393, + [SMALL_STATE(2380)] = 66401, + [SMALL_STATE(2381)] = 66409, + [SMALL_STATE(2382)] = 66417, + [SMALL_STATE(2383)] = 66425, + [SMALL_STATE(2384)] = 66433, + [SMALL_STATE(2385)] = 66441, + [SMALL_STATE(2386)] = 66449, + [SMALL_STATE(2387)] = 66457, + [SMALL_STATE(2388)] = 66465, + [SMALL_STATE(2389)] = 66473, + [SMALL_STATE(2390)] = 66481, + [SMALL_STATE(2391)] = 66489, + [SMALL_STATE(2392)] = 66497, + [SMALL_STATE(2393)] = 66505, + [SMALL_STATE(2394)] = 66513, + [SMALL_STATE(2395)] = 66521, + [SMALL_STATE(2396)] = 66529, + [SMALL_STATE(2397)] = 66537, + [SMALL_STATE(2398)] = 66545, + [SMALL_STATE(2399)] = 66553, + [SMALL_STATE(2400)] = 66561, + [SMALL_STATE(2401)] = 66569, + [SMALL_STATE(2402)] = 66577, + [SMALL_STATE(2403)] = 66585, + [SMALL_STATE(2404)] = 66593, + [SMALL_STATE(2405)] = 66601, + [SMALL_STATE(2406)] = 66609, + [SMALL_STATE(2407)] = 66617, + [SMALL_STATE(2408)] = 66625, + [SMALL_STATE(2409)] = 66633, + [SMALL_STATE(2410)] = 66641, + [SMALL_STATE(2411)] = 66649, + [SMALL_STATE(2412)] = 66657, + [SMALL_STATE(2413)] = 66665, + [SMALL_STATE(2414)] = 66673, + [SMALL_STATE(2415)] = 66681, + [SMALL_STATE(2416)] = 66689, + [SMALL_STATE(2417)] = 66697, + [SMALL_STATE(2418)] = 66705, + [SMALL_STATE(2419)] = 66713, + [SMALL_STATE(2420)] = 66721, + [SMALL_STATE(2421)] = 66729, + [SMALL_STATE(2422)] = 66737, + [SMALL_STATE(2423)] = 66745, + [SMALL_STATE(2424)] = 66753, + [SMALL_STATE(2425)] = 66761, + [SMALL_STATE(2426)] = 66769, + [SMALL_STATE(2427)] = 66777, + [SMALL_STATE(2428)] = 66785, + [SMALL_STATE(2429)] = 66793, + [SMALL_STATE(2430)] = 66801, + [SMALL_STATE(2431)] = 66809, + [SMALL_STATE(2432)] = 66817, + [SMALL_STATE(2433)] = 66825, + [SMALL_STATE(2434)] = 66833, + [SMALL_STATE(2435)] = 66841, + [SMALL_STATE(2436)] = 66849, + [SMALL_STATE(2437)] = 66857, + [SMALL_STATE(2438)] = 66865, + [SMALL_STATE(2439)] = 66873, + [SMALL_STATE(2440)] = 66881, + [SMALL_STATE(2441)] = 66889, + [SMALL_STATE(2442)] = 66897, + [SMALL_STATE(2443)] = 66905, + [SMALL_STATE(2444)] = 66913, + [SMALL_STATE(2445)] = 66921, + [SMALL_STATE(2446)] = 66929, + [SMALL_STATE(2447)] = 66937, + [SMALL_STATE(2448)] = 66945, + [SMALL_STATE(2449)] = 66953, + [SMALL_STATE(2450)] = 66961, + [SMALL_STATE(2451)] = 66969, + [SMALL_STATE(2452)] = 66977, + [SMALL_STATE(2453)] = 66985, + [SMALL_STATE(2454)] = 66993, + [SMALL_STATE(2455)] = 67001, + [SMALL_STATE(2456)] = 67009, + [SMALL_STATE(2457)] = 67017, + [SMALL_STATE(2458)] = 67025, + [SMALL_STATE(2459)] = 67033, + [SMALL_STATE(2460)] = 67041, + [SMALL_STATE(2461)] = 67049, + [SMALL_STATE(2462)] = 67057, + [SMALL_STATE(2463)] = 67065, + [SMALL_STATE(2464)] = 67073, + [SMALL_STATE(2465)] = 67081, + [SMALL_STATE(2466)] = 67089, + [SMALL_STATE(2467)] = 67097, + [SMALL_STATE(2468)] = 67105, + [SMALL_STATE(2469)] = 67113, + [SMALL_STATE(2470)] = 67121, + [SMALL_STATE(2471)] = 67129, + [SMALL_STATE(2472)] = 67137, + [SMALL_STATE(2473)] = 67145, + [SMALL_STATE(2474)] = 67153, + [SMALL_STATE(2475)] = 67161, + [SMALL_STATE(2476)] = 67169, + [SMALL_STATE(2477)] = 67177, + [SMALL_STATE(2478)] = 67185, + [SMALL_STATE(2479)] = 67193, }; static TSParseActionEntry ts_parse_actions[] = { @@ -120527,2512 +121755,2552 @@ static TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1075), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(258), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2307), - [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(31), - [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4), - [128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(29), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(103), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(970), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2434), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1417), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1413), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(721), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(720), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2431), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2010), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(564), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(75), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(574), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(539), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2018), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(149), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2427), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1263), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1768), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2417), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2414), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2367), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1095), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1403), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1230), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(85), - [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2110), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1367), - [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(588), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2356), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(88), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(512), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2113), - [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(990), - [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1737), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(973), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1073), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2351), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1278), - [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1073), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1086), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(251), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1793), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(33), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(5), + [142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(29), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(95), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(981), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2477), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1435), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1461), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(726), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(712), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2474), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2056), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(563), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(91), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(587), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(557), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2064), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(143), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2462), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1275), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1832), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2403), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2401), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2400), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1099), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1416), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1242), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(77), + [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2135), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1401), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(591), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2386), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(81), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(526), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2143), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(965), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1745), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1054), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1064), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2379), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1284), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1064), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), + [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 136), - [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 136), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 16), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 16), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 138), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 138), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 56), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 56), - [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 126), - [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 126), - [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), - [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 181), - [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 181), - [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 29), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 29), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 87), - [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 87), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 161), - [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 161), - [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(712), - [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(31), - [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(8), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(29), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(103), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(970), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2434), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1805), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2139), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(721), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1016), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(571), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(89), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2179), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(174), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2140), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(79), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(588), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2356), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(88), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(512), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2113), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(990), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1737), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(973), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1073), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2351), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1073), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 1), - [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 1), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 95), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 95), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 222), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 222), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 32), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 32), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 25), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 25), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 205), - [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 205), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 107), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 107), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 147), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 147), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(239), - [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(248), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(362), - [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(360), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2411), - [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(514), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1718), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(513), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(506), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2143), - [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(932), - [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2370), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2207), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1466), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1521), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1525), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2233), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2106), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(578), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(554), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2237), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1263), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1770), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2238), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2239), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2240), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2144), - [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1470), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1231), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2101), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1364), - [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(588), - [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2258), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2246), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1274), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2246), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 132), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 132), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 149), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 149), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 166), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 166), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 121), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 121), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 213), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 213), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 165), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 165), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 79), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 79), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 164), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 164), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 72), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 72), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 72), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 72), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 197), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 197), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 84), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 84), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 79), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 79), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 214), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 214), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 83), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 83), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 13), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 13), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 162), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 162), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 72), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 72), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 72), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 72), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 71), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 71), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 85), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 85), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 48), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 48), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 215), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 215), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 195), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 195), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 116), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 116), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 216), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 216), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 212), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 212), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 210), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 210), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 160), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 160), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 159), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 159), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 47), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 47), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 70), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 70), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 158), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 158), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 217), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 217), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 157), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 157), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 159), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 159), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 156), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 156), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 2), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 2), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 48), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 48), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 218), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 218), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 202), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 202), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 155), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 155), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 167), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 167), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 154), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 154), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 153), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 153), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 219), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 219), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 159), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 159), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 220), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 220), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 69), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 69), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 47), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 47), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 221), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 221), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 48), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 48), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 68), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 68), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 223), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 223), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 47), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 47), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 48), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 48), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 214), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 214), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 13), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 13), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 224), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 224), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 225), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 225), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 89), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 89), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 226), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 226), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 90), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 90), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 116), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 116), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 220), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 220), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 227), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 227), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 91), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 91), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 92), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 92), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 196), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 196), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 49), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 49), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 22), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 22), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 93), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 93), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 195), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 195), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 67), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 67), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 64), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 64), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 228), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 228), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 194), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 194), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 63), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 63), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 164), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 164), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 24), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 24), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 100), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 100), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 102), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 102), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 26), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 26), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 225), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 225), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 106), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 106), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 193), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 193), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 107), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 107), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 13), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 13), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 192), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 192), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 191), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 191), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 13), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 13), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 190), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 190), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 159), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 159), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 189), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 189), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 198), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 198), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 89), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 89), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 13), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 13), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 13), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 13), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 48), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 48), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 90), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 90), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 229), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 229), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 109), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 109), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 90), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 90), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 110), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 110), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 210), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 210), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 171), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 171), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 149), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 149), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 111), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 111), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 90), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 90), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 112), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 112), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 113), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 113), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 172), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 172), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 28), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 28), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 146), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 146), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 116), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 116), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 199), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 199), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 209), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 209), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 145), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 145), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(401), - [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(481), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [1702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(482), - [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(483), - [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2371), - [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(514), - [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1718), - [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(513), - [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(401), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 121), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 121), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 50), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 50), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 122), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 122), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 49), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 49), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 141), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 141), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 140), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 140), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 114), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 114), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 116), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 116), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 72), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 72), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 114), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 114), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 116), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 116), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 174), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 174), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 207), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 207), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 114), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 114), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 138), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 138), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 174), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 174), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 116), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 116), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 124), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 124), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 125), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 125), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 177), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 177), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 48), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 48), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 47), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 47), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 186), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 186), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 185), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 185), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 200), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 200), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 183), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 183), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 182), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 182), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 201), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 201), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 202), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 202), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 203), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 203), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 177), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 177), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 178), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 178), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 171), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 171), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 131), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 131), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 179), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 179), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 91), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 91), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 130), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 130), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 37), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 37), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 131), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 131), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 204), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 204), - [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1357), - [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(511), - [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(510), - [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1288), - [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2192), - [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1809), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2332), - [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(543), - [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(588), - [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2320), - [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1384), - [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(562), - [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(565), - [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1386), - [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2147), - [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1322), - [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1671), - [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1300), - [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1821), - [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1821), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 173), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 173), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2332), - [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 18), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 18), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 18), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 18), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 33), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 33), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 97), + [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 97), + [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), + [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 224), + [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 224), + [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 207), + [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 207), + [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 1), + [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 1), + [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 183), + [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 183), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(720), + [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(33), + [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(16), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(29), + [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(95), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(981), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2477), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1843), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2187), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(726), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(823), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(550), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(73), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2212), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(120), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2189), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(84), + [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(591), + [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2386), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(81), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(526), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2143), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(965), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1745), + [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1054), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1064), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2379), + [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1064), + [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 89), + [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 89), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 163), + [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 163), + [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 128), + [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 128), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 109), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 109), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 149), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 149), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(243), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(318), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), + [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(319), + [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(320), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2374), + [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(513), + [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1785), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(525), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(509), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2240), + [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(795), + [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1828), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2267), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1491), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1531), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1500), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2276), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2116), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(585), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(565), + [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2280), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1275), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1805), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2281), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2282), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2283), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1910), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1501), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1241), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2115), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1385), + [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(591), + [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2294), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2287), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1286), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2287), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 164), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 164), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 81), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 81), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 74), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 74), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 73), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 73), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 74), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 74), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 81), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 81), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 85), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 85), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 86), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 86), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 74), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 74), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 72), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 72), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 2), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 2), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 74), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 74), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 87), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 87), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 71), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 71), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 70), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 70), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 91), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 91), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(287), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(483), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(485), + [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(487), + [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2455), + [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(513), + [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1785), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(525), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(287), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 92), + [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 92), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 93), + [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 93), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 94), + [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 94), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 69), + [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 69), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 102), + [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 102), + [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 108), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 108), + [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 109), + [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 109), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 91), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 91), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 92), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 92), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 111), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 111), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 92), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 92), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 112), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 112), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 113), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 113), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 92), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 92), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 114), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 114), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 115), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 115), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 117), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 117), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 118), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 118), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 123), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 123), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 124), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 124), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 116), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 116), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 118), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 118), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 74), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 74), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 116), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 116), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 125), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 125), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 118), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 118), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 116), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 116), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 118), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 118), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 126), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 126), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 231), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 231), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 227), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 227), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 230), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 230), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 127), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 127), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 229), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 229), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 222), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 222), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 228), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 228), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 226), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 226), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 216), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 216), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 225), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 225), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 93), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 93), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 132), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 132), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 133), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 133), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 223), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 223), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 222), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 222), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 221), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 221), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 134), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 134), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 140), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 140), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 204), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 204), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 220), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 220), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 142), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 142), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 219), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 219), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 212), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 212), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 218), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 218), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 197), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 197), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 217), + [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 217), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 216), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 216), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 215), + [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 215), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 214), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 214), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 147), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 147), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 148), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 148), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 212), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 212), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 211), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 211), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 209), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 209), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 179), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 179), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 151), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 151), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 206), + [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 206), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 173), + [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 173), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 205), + [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 205), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 204), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 204), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 203), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 203), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 202), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 202), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 201), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 201), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 200), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 200), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 199), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 199), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 118), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 118), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 198), + [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 198), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 197), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 197), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 196), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 196), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 166), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 166), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 195), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 195), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 155), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 155), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 156), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 156), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 192), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 192), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 191), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 191), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 157), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 157), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 158), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 158), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 159), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 159), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 160), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 160), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 176), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 176), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 162), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 162), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 188), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 188), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 166), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 166), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 167), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 167), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 187), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 187), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 185), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 185), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 123), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 123), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 168), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 168), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 184), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 184), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 151), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 151), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 161), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 161), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 74), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 74), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 181), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 181), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 133), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 133), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 180), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 180), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 118), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 118), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 161), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 161), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 169), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 169), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 161), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 161), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 176), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 176), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 171), + [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 171), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 172), + [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 172), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 173), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 173), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 174), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 174), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1360), + [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(521), + [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(522), + [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1306), + [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2242), + [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1705), + [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2346), + [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(575), + [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(591), + [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2295), + [1989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1377), + [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(573), + [1995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(572), + [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1406), + [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2244), + [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1331), + [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1789), + [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1302), + [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1891), + [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1891), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 175), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 175), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2346), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 34), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 39), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 35), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 36), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 35), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 43), - [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 43), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 103), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 103), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 45), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 17), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 17), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 66), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 66), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 65), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 65), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 21), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 21), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 62), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 62), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 23), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 23), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 147), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 147), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 147), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 59), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 59), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 107), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 107), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 107), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 119), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 119), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 142), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 142), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 59), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 59), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 57), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 57), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 58), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 58), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 58), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 58), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 59), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 59), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 67), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 67), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 98), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 98), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 101), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 101), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 103), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 103), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 121), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 121), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 20), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 20), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 143), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 143), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 184), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 184), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 88), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 88), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 139), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 139), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 40), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 40), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 137), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 137), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 30), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 30), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 31), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 127), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 127), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 86), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 86), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 96), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 96), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 99), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 99), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2375), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 101), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 101), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 40), - [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 40), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 163), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 149), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 149), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 149), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 139), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 139), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 141), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 141), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 144), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 144), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 145), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 145), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 88), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 88), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 109), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 109), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 109), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 90), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 90), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 129), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 129), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), + [2886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2420), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 186), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 186), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 108), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 108), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 107), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 128), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 206), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 176), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 175), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 147), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 120), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 148), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 33), REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [3313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [3316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), - [3319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 55), - [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 55), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 51), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 51), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 53), - [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 53), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 52), - [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 52), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 52), - [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 52), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 52), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 52), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 53), - [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 53), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 52), - [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 52), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 52), - [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 52), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 53), - [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 53), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 52), - [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 52), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 52), - [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 52), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 53), - [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 53), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 52), - [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 52), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1455), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1484), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(537), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(448), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(447), - [3694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(445), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 46), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 129), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 52), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 52), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 150), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 58), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 99), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [3936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1284), - [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(182), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 187), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 99), - [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 211), - [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 59), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 211), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 150), - [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 20), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 20), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 58), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 187), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1079), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1693), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(544), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [4125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 106), - [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 118), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 81), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 82), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), - [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1164), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 188), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(113), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 58), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 180), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 208), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 27), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 99), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 54), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 60), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 61), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1476), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 89), - [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 152), - [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 151), - [4355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 151), SHIFT_REPEAT(504), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 20), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(42), - [4377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2077), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(236), - [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 135), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1539), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 134), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 133), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [4432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(186), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 26), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1456), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 42), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 73), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 74), - [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 75), - [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 76), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1472), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 77), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 78), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 30), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 117), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(528), - [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1229), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 98), - [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1473), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 97), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(695), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 61), - [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 60), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 94), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 80), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [5071] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 208), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 109), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 110), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 110), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 122), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 178), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 177), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 130), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 149), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 165), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 150), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [3357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [3360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [3363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1464), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1482), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(431), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(429), + [3713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(428), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(538), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 131), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 189), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), + [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1296), + [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(185), + [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 189), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 101), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 213), + [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 152), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 101), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 152), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 213), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(546), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1097), + [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1749), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 83), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 120), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 108), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 75), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 76), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 77), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 78), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 79), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [4306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(543), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 101), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), + [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 210), + [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 96), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(670), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 99), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1499), + [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), + [4445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1111), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), + [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 190), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 182), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [4544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1240), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 119), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1510), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(41), + [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1502), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1479), + [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 154), + [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 153), + [4691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 153), SHIFT_REPEAT(508), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(96), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [4721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(187), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 135), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 136), + [4748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1607), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 137), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(237), + [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 91), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2246), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 82), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [5131] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), }; #ifdef __cplusplus From a4ad4e22f2a4bf5961ea52a26d593085df02c532 Mon Sep 17 00:00:00 2001 From: Calixte Denizet Date: Fri, 20 Mar 2020 10:16:54 +0100 Subject: [PATCH 3/3] Add a test for macros default! and union! --- corpus/macros.txt | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/corpus/macros.txt b/corpus/macros.txt index 17edfd06..ca687d6a 100644 --- a/corpus/macros.txt +++ b/corpus/macros.txt @@ -28,6 +28,8 @@ a!(b + c + +); a!('a'..='z'); a!('\u{0}'..='\u{2}'); a!('lifetime) +default!(a); +union!(a); ---- @@ -50,6 +52,12 @@ a!('lifetime) (macro_invocation (identifier) (token_tree (char_literal) (char_literal))) + (macro_invocation + (identifier) + (token_tree (identifier))) + (macro_invocation + (identifier) + (token_tree (identifier))) (macro_invocation (identifier) (token_tree (identifier))))